feat: add trades history modal to backtest page

This commit is contained in:
shokollm
2026-04-11 05:18:23 +00:00
parent 194c4f8a62
commit 5c9e46e693
4 changed files with 186 additions and 1 deletions

View File

@@ -393,6 +393,7 @@ class BacktestEngine:
"sharpe_ratio": round(sharpe_ratio, 2),
"final_balance": round(final_balance, 2),
"signals": self.signals,
"trades": self.trades, # Include trades in results for storage
}
async def stop(self):