mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-11-29 08:33:07 +00:00
chore: simplify update code
This commit is contained in:
@@ -1591,9 +1591,13 @@ def test_backtest_multi_pair_detail(
|
|||||||
dataframe["exit_short"] = 0
|
dataframe["exit_short"] = 0
|
||||||
return dataframe
|
return dataframe
|
||||||
|
|
||||||
default_conf_usdt["runmode"] = "backtest"
|
default_conf_usdt.update(
|
||||||
default_conf_usdt["stoploss"] = -1.0
|
{
|
||||||
default_conf_usdt["minimal_roi"] = {"0": 100}
|
"runmode": "backtest",
|
||||||
|
"stoploss": -1.0,
|
||||||
|
"minimal_roi": {"0": 100},
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
if use_detail:
|
if use_detail:
|
||||||
default_conf_usdt["timeframe_detail"] = "1m"
|
default_conf_usdt["timeframe_detail"] = "1m"
|
||||||
|
|||||||
Reference in New Issue
Block a user