ignore_roi_if_buy_signal -> ignore_roi_if_enter_signal

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

View File

@@ -64,7 +64,7 @@ class {{ strategy }}(IStrategy):
# These values can be overridden in the "ask_strategy" section in the config.
use_exit_signal = True
sell_profit_only = False
ignore_roi_if_buy_signal = False
ignore_roi_if_enter_signal = False
# Number of candles the strategy requires before producing valid signals
startup_candle_count: int = 30

View File

@@ -69,7 +69,7 @@ class SampleShortStrategy(IStrategy):
# These values can be overridden in the "ask_strategy" section in the config.
use_exit_signal = True
sell_profit_only = False
ignore_roi_if_buy_signal = False
ignore_roi_if_enter_signal = False
# Number of candles the strategy requires before producing valid signals
startup_candle_count: int = 30

View File

@@ -70,7 +70,7 @@ class SampleStrategy(IStrategy):
# These values can be overridden in the "ask_strategy" section in the config.
use_exit_signal = True
sell_profit_only = False
ignore_roi_if_buy_signal = False
ignore_roi_if_enter_signal = False
# Number of candles the strategy requires before producing valid signals
startup_candle_count: int = 30