Will look for either: A and B strategies to be TRUE , OR for the C strategy to be TRUE.
DEFAULT_sell_strategy_formula = (A && B) || C
Will look for either: A OR B strategies to be true.
DEFAULT_sell_strategy_formula = A || B
Will look for either: A strategy to be TRUE , OR for the B strategy to be TRUE, OR for the C AND D strategies to be TRUE.
DEFAULT_sell_strategy_formula = A || B || (C && D)
Will look for either: A and B strategies to be TRUE , OR for the C strategy to be TRUE.
DEFAULT_DCA_sell_strategy_formula = (A && B) || C
Will look for either: A OR B strategies to be true.
DEFAULT_DCA_sell_strategy_formula = A || B
Will look for either: A strategy to be TRUE , OR for the B strategy to be TRUE, OR for the C AND D strategies to be TRUE.
DEFAULT_DCA_sell_strategy_formula = A || B || (C && D)
1.Formatted strings follow the order of operations and uses AND ( && ), OR ( || ), NOT ( ! ).
2. 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.