Properly track bt progress ...

This commit is contained in:
Matthias
2021-03-21 15:56:36 +01:00
parent 03140a0ecb
commit 134c61126e
4 changed files with 53 additions and 28 deletions

View File

@@ -8,7 +8,8 @@ class BacktestState(Enum):
STARTUP = 1
DATALOAD = 2
ANALYZE = 3
BACKTEST = 4
CONVERT = 4
BACKTEST = 5
def __str__(self):
return f"{self.name.lower()}"