There are three relevant attributes for the required effect.
price_drop_trigger_action:
Choose whether the bot will enter sell only mode or commence stoploss actions when the price_drop_trigger is met.
Choose BOTH to stoploss all coins and also enter sell only mode.
price_drop_trigger:
If the price drops by the set percentage enable the price_drop_trigger_action.
price_drop_recover_trigger:
Turn off price_drop_trigger_action if it was previously activated by a price drop the price change is now back above the set threshold.
price_drop_trigger_action
SOM, STOPLOSS, BOTH.
price_drop_trigger / price_drop_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 below -10.5% or more SOM is activated
# if the change % is -8% or more disable SOM trigger
price_drop_trigger_action = SOM
price_drop_trigger = 10.5
price_drop_recover_trigger = 8
# 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 below -10.5% or more SOM is activated
# if the change % is -8% or more disable SOM trigger
DCA_price_drop_trigger_action = SOM
DCA_price_drop_trigger = 10.5
DCA_price_drop_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