We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d965d4 commit ecd66f8Copy full SHA for ecd66f8
freqtrade/rpc/api_server/api_backtest.py
@@ -63,7 +63,7 @@ def __run_backtest_bg(btconfig: Config):
63
64
ApiBG.bt["bt"] = Backtesting(btconfig)
65
else:
66
- ApiBG.bt["bt"].config = btconfig
+ ApiBG.bt["bt"].config = deep_merge_dicts(btconfig, ApiBG.bt["bt"].config)
67
ApiBG.bt["bt"].init_backtest()
68
# Only reload data if timeframe changed.
69
if (
0 commit comments