Set the combinations of strategies that will utilise trailing. Strategy combinations not listed will not trail unless this parameter is blank or not used.
- Any valid set of properly formatted strategies using JavaScript operators.
PAIRSDCA
- The bot will only trail if it is trying to sell because A & B & C is true.
If D is true but not A & B & C. Trailing will be disabled and it will try to sell immediately instead of trailing.
If A & B & C and D are true it will trail.
DEFAULT_sell_strategy_formula = (A && B && C) || D
DEFAULT_trailing_profit = 0.5
DEFAULT_trailing_profit_enabled_formula = (A && B && C)
- The bot will only trail if it is trying to sell because A & B & C is true.
If D is true but not A & B & C. Trailing will be disabled and it will try to sell immediately instead of trailing.
If A & B & C and D are true it will trail.
DEFAULT_DCA_sell_strategy_formula = (A && B && C) || D
DEFAULT_DCA_trailing_profit = 0.5
DEFAULT_DCA_trailing_profit_enabled_formula = (A && B && C)