Move strategy-override signals to top-level of the config

closes #2867
This commit is contained in:
Matthias
2021-06-26 16:06:09 +02:00
parent 60c7308126
commit 1067a9f356
12 changed files with 29 additions and 47 deletions

View File

@@ -76,12 +76,12 @@ class StrategyResolver(IResolver):
("protections", None, None),
("startup_candle_count", None, None),
("unfilledtimeout", None, None),
("use_sell_signal", True, 'ask_strategy'),
("sell_profit_only", False, 'ask_strategy'),
("ignore_roi_if_buy_signal", False, 'ask_strategy'),
("sell_profit_offset", 0.0, 'ask_strategy'),
("use_sell_signal", True, None),
("sell_profit_only", False, None),
("ignore_roi_if_buy_signal", False, None),
("sell_profit_offset", 0.0, None),
("disable_dataframe_checks", False, None),
("ignore_buying_expired_candle_after", 0, 'ask_strategy')
("ignore_buying_expired_candle_after", 0, None)
]
for attribute, default, subkey in attributes:
if subkey: