There are three relevant attributes for the required effect.
price_rise_trigger_action:
Choose whether the bot will enter sell only mode or commence stoploss actions when the price_rise_trigger is met.
Choose BOTH to stoploss all coins and also enter sell only mode.
price_rise_trigger:
If the price rises by the set percentage enable the price_rise_trigger_action.
price_rise_recover_trigger:
Turn off the price_drop_trigger_action if it was activated by price rise and the price change is now back below the set threshold.
price_rise_trigger_action
SOM, STOPLOSS, BOTH
price_rise_trigger / price_rise_recover_trigger
Decimal values greater or equal to 0.
# This is the PAIR the bot is monitoring to trigger SOM
price_trigger_pair = BTCUSDT
# Trigger SOM if BTCUSDT (price_trigger_pair) looking at the past 24 hours (SOM_trigger_length)
# If the change % is above 10.5% or more SOM is activated
# if the change % is 8% or less disable SOM trigger
price_rise_trigger_action = SOM
price_rise_trigger = 10.5
price_rise_recover_trigger = 8
# Trigger SOM if BTCUSDT (price_trigger_pair from PAIRS) looking at the past 24 hours (SOM_trigger_length)
# If the change % is above 10.5% or more SOM is activated
# if the change % is 8% or less disable SOM trigger
DCA_price_rise_trigger_action = SOM
DCA_price_rise_trigger = 10.5
DCA_price_rise_recover_trigger = 8
# Som triggers will look for the change in the past 288 5 minute candles. Which is 24 hours
SOM_trigger_length = 288