DEFAULT_buy_strategy_formula = (A && B) || C
DEFAULT_buy_strategy_formula = A || B
DEFAULT_buy_strategy_formula = A || (B && C)
DEFAULT_DCA_buy_strategy_formula = (A && B) || C
DEFAULT_DCA_buy_strategy_formula = A || B
DEFAULT_DCA_buy_strategy_formula = A || (B && C)
- Formatted strings follow the order of operations and uses AND ( && ), OR ( || ), NOT ( ! ).
- You must use parenthesis to delimit what you want to add together, i.e.- you cannot use A && B || C because the bot will not know whether you want to use A and B together OR C .. or whether you want to use A ….and B OR C.