Implement backtesting with fastapi

This commit is contained in:
Matthias
2021-01-02 15:13:32 +01:00
parent df55259737
commit 5c18c8726d
3 changed files with 113 additions and 9 deletions

View File

@@ -33,6 +33,8 @@ class ApiServer(RPCHandler):
__initialized = False
_rpc: RPC
# Backtesting type: Backtesting
_backtesting = None
_has_rpc: bool = False
_bgtask_running: bool = False
_config: Dict[str, Any] = {}