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 buy because A & B & C is true.
If D is true but not A & B & C. Trailing will be disabled and it will try to buy immediately instead of trailing.
If A & B & C and D are true it will trail.
DEFAULT_buy_strategy_formula = (A && B && C) || D
DEFAULT_trailing_buy = 0.5
DEFAULT_trailing_buy_enabled_formula = (A && B && C)
- The bot will only trail if it is trying to buy because A & B & C is true.
If D is true but not A & B & C. Trailing will be disabled and it will try to buy immediately instead of trailing.
If A & B & C and D are true it will trail.
DEFAULT_DCA_buy_strategy_formula = (A && B && C) || D
DEFAULT_DCA_trailing_buy = 0.5
DEFAULT_DCA_trailing_buy_enabled_formula = (A && B && C)