Set the value which will arm the Trailing Stop Loss sell method. If arm is not set, Trailing Stop Loss is armed automatically.
If the profit goes above trailing_stop_loss_trigger_arm we flag the coin as armed. Once armed, if the profit% falls and meets the condition set in trailing_stop_loss_trigger the bot will attempt to sell the coins.
DEFAULT_trailing_stop_loss_trigger_arm = 3
DEFAULT_DCA_trailing_stop_loss_trigger_arm = 3
1 Once armed it can fire at whatever the trailing stop loss value is. It will stay armed if you change arm or stop loss values even if the new arm value is higher but it will sell at the new stop loss value if changed.
2 See A trailing Story for more information.
3 Stop loss will not arm as Stop loss will only occur once DCA is complete unless stop_before_complete is used.