use_sell_signal -> use_exit_signal

This commit is contained in:
Sam Germain
2022-01-04 22:49:14 -06:00
parent 501f473164
commit 86cc911559
21 changed files with 62 additions and 62 deletions

View File

@@ -62,7 +62,7 @@ class {{ strategy }}(IStrategy):
process_only_new_candles = False
# These values can be overridden in the "ask_strategy" section in the config.
use_sell_signal = True
use_exit_signal = True
sell_profit_only = False
ignore_roi_if_buy_signal = False

View File

@@ -67,7 +67,7 @@ class SampleShortStrategy(IStrategy):
process_only_new_candles = False
# These values can be overridden in the "ask_strategy" section in the config.
use_sell_signal = True
use_exit_signal = True
sell_profit_only = False
ignore_roi_if_buy_signal = False

View File

@@ -68,7 +68,7 @@ class SampleStrategy(IStrategy):
process_only_new_candles = False
# These values can be overridden in the "ask_strategy" section in the config.
use_sell_signal = True
use_exit_signal = True
sell_profit_only = False
ignore_roi_if_buy_signal = False