- Will look for either: A and B strategies to be true, OR for the C strategy to be true.
DEFAULT_buy_strategy_formula = (A && B) || C
- Will look for either: A OR B strategies to be true.
DEFAULT_buy_strategy_formula = A || B
- Will look for either: A strategy to be true, OR for the B and C strategies to be true.
DEFAULT_buy_strategy_formula = A || (B && C)
- Will look for either: A and B strategies to be true, OR for the C strategy to be true.
DEFAULT_DCA_buy_strategy_formula = (A && B) || C
- Will look for either: A OR B strategies to be true.
DEFAULT_DCA_buy_strategy_formula = A || B
- Will look for either: A strategy to be true, OR for the B and C strategies to be true.
DEFAULT_DCA_buy_strategy_formula = A || (B && C)