mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 02:12:01 +00:00
Merge branch 'develop' into Error-Skipping
This commit is contained in:
commit
7a04f876c3
|
@ -1,7 +1,7 @@
|
|||
from enum import StrEnum
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class RunMode(StrEnum):
|
||||
class RunMode(str, Enum):
|
||||
"""
|
||||
Bot running mode (backtest, hyperopt, ...)
|
||||
can be "live", "dry-run", "backtest", "edge", "hyperopt".
|
||||
|
|
|
@ -50,6 +50,7 @@ def freqai_conf(default_conf, tmp_path):
|
|||
freqaiconf.update(
|
||||
{
|
||||
"datadir": Path(default_conf["datadir"]),
|
||||
"runmode": "backtest",
|
||||
"strategy": "freqai_test_strat",
|
||||
"user_data_dir": tmp_path,
|
||||
"strategy-path": "freqtrade/tests/strategy/strats",
|
||||
|
|
Loading…
Reference in New Issue
Block a user