Add endpoint to fetch market_change data

This commit is contained in:
Matthias
2024-04-16 19:27:55 +02:00
parent c8a5904959
commit 523054e8ea
2 changed files with 29 additions and 5 deletions

View File

@@ -558,6 +558,12 @@ class BacktestMetadataUpdate(BaseModel):
notes: str = ''
class BacktestMarketChange(BaseModel):
columns: List[str]
length: int
data: List[List[Union[str, float, Any]]]
class SysInfo(BaseModel):
cpu_pct: List[float]
ram_pct: float