luohoa97's picture
Deploy BitNet-Transformer Trainer
d5b7ee9 verified
"""Backtest results screen — displays performance metrics and trade log."""
from typing import TYPE_CHECKING
from textual.app import ComposeResult
from textual.binding import Binding
from textual.screen import Screen
from textual.widgets import Header, DataTable, Label, Static, Input, Button, LoadingIndicator
from textual.containers import Vertical, Horizontal, Center
from textual import work
from rich.text import Text
from trading_cli.widgets.ordered_footer import OrderedFooter
from trading_cli.backtest.engine import BacktestResult
class BacktestSummary(Static):
"""Displays key backtest metrics."""
def __init__(self, result: "BacktestResult | None" = None, **kwargs) -> None:
super().__init__(**kwargs)
self._result = result
def set_result(self, result: "BacktestResult") -> None:
self._result = result
self.refresh()
def render(self) -> str:
if not self._result:
return "[dim]No backtest data[/dim]"
r = self._result
pnl = r.final_equity - r.initial_capital
pnl_style = "bold green" if pnl >= 0 else "bold red"
dd_style = "bold red" if r.max_drawdown_pct > 10 else "bold yellow"
sharpe_style = "bold green" if r.sharpe_ratio > 1 else ("bold yellow" if r.sharpe_ratio > 0 else "dim")
# Truncate symbol list if it's too long
display_symbol = r.symbol
if "," in display_symbol and len(display_symbol) > 30:
count = display_symbol.count(",") + 1
display_symbol = f"{display_symbol.split(',')[0]} + {count-1} others"
return (
f"[bold]{display_symbol}[/bold] "
f"[{pnl_style}]P&L: ${pnl:+,.2f} ({r.total_return_pct:+.2f}%)[/{pnl_style}] "
f"[{dd_style}]MaxDD: {r.max_drawdown_pct:.2f}%[/{dd_style}] "
f"[{sharpe_style}]Sharpe: {r.sharpe_ratio:.2f}[/{sharpe_style}] "
f"Win Rate: {r.win_rate:.1f}% "
f"Trades: {r.total_trades} ({r.winning_trades}W / {r.losing_trades}L) "
f"${r.initial_capital:,.0f} → ${r.final_equity:,.0f}"
)
class BacktestScreen(Screen):
"""Screen for viewing backtest results."""
CSS = """
#backtest-container {
height: 1fr;
padding: 0;
margin: 0;
overflow: hidden;
}
#backtest-progress {
height: 1;
padding: 0 1;
color: $text-muted;
text-style: italic;
}
#backtest-controls {
height: auto;
padding: 0 1;
}
#backtest-date-row {
height: auto;
layout: horizontal;
}
#backtest-date-row Input {
width: 1fr;
}
#btn-backtest-run {
width: 100%;
}
#backtest-summary {
height: auto;
padding: 0 1;
color: $text;
}
#backtest-table {
width: 100%;
height: 1fr;
}
"""
BINDINGS = [
Binding("r", "run_backtest", "Run", show=True),
]
_last_symbol: str = ""
_last_result: "BacktestResult | None" = None
_all_results: list["BacktestResult"] = []
def compose(self) -> ComposeResult:
yield Header(show_clock=True)
with Vertical(id="backtest-container"):
with Vertical(id="backtest-controls"):
with Horizontal(id="backtest-date-row"):
yield Input(placeholder="Start date (YYYY-MM-DD)", id="backtest-start-date")
yield Input(placeholder="End date (YYYY-MM-DD)", id="backtest-end-date")
yield Button("🚀 Run", id="btn-backtest-run", variant="success")
yield BacktestSummary(id="backtest-summary")
yield Label("", id="backtest-progress")
yield LoadingIndicator(id="backtest-loading")
yield DataTable(id="backtest-table", cursor_type="row")
yield OrderedFooter()
def on_mount(self) -> None:
tbl = self.query_one("#backtest-table", DataTable)
tbl.add_column("Date", key="date")
tbl.add_column("Action", key="action")
tbl.add_column("Price $", key="price")
tbl.add_column("Qty", key="qty")
tbl.add_column("P&L $", key="pnl")
tbl.add_column("Reason", key="reason")
# Hide loading indicator initially
try:
loader = self.query_one("#backtest-loading", LoadingIndicator)
loader.display = False
except Exception:
pass
# Set progress label initially empty
try:
prog = self.query_one("#backtest-progress", Label)
prog.update("")
except Exception:
pass
def _update_progress(self, text: str) -> None:
"""Update the backtest progress label."""
try:
prog = self.query_one("#backtest-progress", Label)
prog.update(text)
except Exception:
pass
def on_button_pressed(self, event) -> None:
if event.button.id == "btn-backtest-run":
self.action_run_backtest()
def on_input_submitted(self, event: Input.Submitted) -> None:
if event.input.id in ("backtest-start-date", "backtest-end-date"):
self.action_run_backtest()
def action_run_backtest(self) -> None:
# Parse date range
start_date = end_date = None
try:
start_input = self.query_one("#backtest-start-date", Input)
end_input = self.query_one("#backtest-end-date", Input)
if start_input.value.strip():
start_date = start_input.value.strip()
if end_input.value.strip():
end_date = end_input.value.strip()
except Exception:
pass
app = self.app
if not hasattr(app, "config"):
self.app.notify("App not fully initialized", severity="error")
return
# Use full asset universe from adapter (not just 3 hardcoded symbols)
symbols = []
if hasattr(app, "asset_search") and app.asset_search.is_ready:
all_symbols = [a["symbol"] for a in app.asset_search._assets]
# Cap at 50 symbols to keep backtest time reasonable (~2-3 min)
symbols = all_symbols[:50]
if not symbols:
symbols = app.config.get("default_symbols", ["AAPL", "TSLA", "NVDA"])
# Reset accumulated results
self._all_results = []
label = f"{start_date or 'start'}{end_date or 'now'}"
self.app.notify(f"Backtesting {len(symbols)} symbols ({label})", timeout=2)
# Show loading
try:
loader = self.query_one("#backtest-loading", LoadingIndicator)
loader.display = True
except Exception:
pass
# Clear table
tbl = self.query_one("#backtest-table", DataTable)
tbl.clear()
# Update summary to show "Running…"
summary = self.query_one("#backtest-summary", BacktestSummary)
summary._result = None
summary.refresh()
# Run all symbols in a single worker thread
self._execute_backtest(symbols, start_date, end_date)
@work(thread=True, name="backtest-worker", exclusive=True)
def _execute_backtest(self, symbols: list[str], start_date: str | None = None, end_date: str | None = None) -> None:
"""Run backtest for multiple symbols in parallel worker threads."""
try:
app = self.app
from trading_cli.data.market import fetch_ohlcv_yfinance
from trading_cli.backtest.engine import BacktestEngine
from concurrent.futures import ThreadPoolExecutor, as_completed
from datetime import datetime, timedelta
def run_one_symbol(symbol):
"""Run backtest for a single symbol in its own thread."""
try:
# Calculate days needed to cover requested range
if start_date:
try:
sd = datetime.strptime(start_date, "%Y-%m-%d")
days_needed = max(365, (datetime.now() - sd).days + 60)
except ValueError:
days_needed = 730
else:
days_needed = 730
adapter = getattr(app, "adapter", None)
# Always use Alpaca for historical data if available
if adapter:
ohlcv = adapter.fetch_ohlcv(symbol, days=days_needed)
else:
ohlcv = fetch_ohlcv_yfinance(symbol, days=days_needed)
if ohlcv.empty:
return None
cfg = app.config.copy()
# Use higher risk percentage for backtests to fully utilize capital
# Since each backtest is isolated to 1 symbol, allow full portfolio usage
cfg["risk_pct"] = 0.95 # Use 95% of capital per trade
cfg["max_position_pct"] = 1.0 # Allow 100% portfolio size
strategy = getattr(app, "strategy", None)
engine = BacktestEngine(
config=cfg,
finbert=None,
news_fetcher=None,
use_sentiment=False,
strategy=strategy,
progress_callback=None,
debug=False,
)
return engine.run(symbol, ohlcv, start_date=start_date, end_date=end_date, initial_capital=100_000.0)
except Exception as exc:
import logging
logging.getLogger(__name__).error("Backtest %s failed: %s", symbol, exc)
return None
total = len(symbols)
results = []
max_workers = min(8, total) # Cap at 8 parallel threads
with ThreadPoolExecutor(max_workers=max_workers) as executor:
futures = {executor.submit(run_one_symbol, s): s for s in symbols}
for i, future in enumerate(as_completed(futures)):
symbol = futures[future]
result = future.result()
if result:
results.append(result)
self.app.call_from_thread(
self._update_progress,
f"[dim]Backtested {i+1}/{total} symbols…[/dim]",
)
self._all_results = results
self.app.call_from_thread(self._display_all_results)
except Exception as exc:
self.app.call_from_thread(
self.app.notify,
f"Backtest failed: {exc}",
severity="error",
)
import logging
logging.getLogger(__name__).error("Backtest error: %s", exc, exc_info=True)
self.app.call_from_thread(self._hide_loading)
def _hide_loading(self) -> None:
"""Hide the loading indicator."""
try:
loader = self.query_one("#backtest-loading", LoadingIndicator)
loader.display = False
except Exception:
pass
def _display_all_results(self) -> None:
"""Display combined backtest results for all symbols."""
self._hide_loading()
self._update_progress("")
if not self._all_results:
self.app.notify("No results", severity="warning")
return
# Aggregate metrics
total_wins = sum(r.winning_trades for r in self._all_results)
total_losses = sum(r.losing_trades for r in self._all_results)
total_closed_trades = total_wins + total_losses
total_trades = sum(r.total_trades for r in self._all_results)
total_initial = sum(r.initial_capital for r in self._all_results)
total_final = sum(r.final_equity for r in self._all_results)
total_return_pct = ((total_final - total_initial) / total_initial * 100) if total_initial else 0
max_dd_pct = max(r.max_drawdown_pct for r in self._all_results)
sharpe = sum(r.sharpe_ratio for r in self._all_results) / len(self._all_results) if self._all_results else 0
# Win rate: percentage of winning trades among all closed trades
win_rate = (total_wins / total_closed_trades * 100) if total_closed_trades else 0
# Build combined symbol list
symbols_str = ", ".join(r.symbol for r in self._all_results)
# Create a synthetic combined result for the summary widget
combined = BacktestResult(
symbol=symbols_str,
start_date=min(r.start_date for r in self._all_results),
end_date=max(r.end_date for r in self._all_results),
initial_capital=total_initial,
final_equity=total_final,
total_return_pct=total_return_pct,
max_drawdown_pct=max_dd_pct,
sharpe_ratio=sharpe,
win_rate=win_rate,
total_trades=total_trades,
winning_trades=total_wins,
losing_trades=total_losses,
trades=[t for r in self._all_results for t in r.trades],
)
self._last_result = combined
summary = self.query_one("#backtest-summary", BacktestSummary)
summary.set_result(combined)
tbl = self.query_one("#backtest-table", DataTable)
tbl.clear()
for trade in combined.trades:
action_style = "bold green" if trade.action == "BUY" else "bold red"
pnl_val = trade.pnl if trade.pnl is not None else 0
pnl_str = f"{pnl_val:+,.2f}" if pnl_val != 0 else "—"
tbl.add_row(
f"[dim]{trade.symbol}[/dim] {trade.timestamp[:10]}",
Text(trade.action, style=action_style),
f"{trade.price:.2f}",
str(trade.qty),
Text(pnl_str, style="green" if pnl_val > 0 else ("red" if pnl_val < 0 else "dim")),
trade.reason[:50] if trade.reason else "",
)