Add progress tracking for backtesting

This commit is contained in:
Matthias
2021-03-11 19:16:18 +01:00
parent 06b6726029
commit 048008756f
5 changed files with 56 additions and 3 deletions

View File

@@ -329,5 +329,7 @@ class BacktestResponse(BaseModel):
status: str
running: bool
status_msg: str
step: str
progress: float
# TODO: Properly type backtestresult...
backtest_result: Optional[Dict[str, Any]]