This level formula is for when you want strategies to be true in a certain order.
1. Define your strategies as usual (A - Z).
2. But say you want a different logical level before a buy:
- 1. EMACROSS needs to happen.
- 2. Then and only then wait for up to 20 minutes for RSI to cross down 30 and STOCH to be below 20.
- 3. In that order.
- 4. If after 20 minutes level 2 has not become true reset back to first level.
DEFAULT_A_buy_strategy = EMACROSS
DEFAULT_A_buy_value = 30
DEFAULT_B_buy_strategy = RSI
DEFAULT_B_buy_value = 30
DEFAULT_C_buy_strategy = STOCH
DEFAULT_C_buy_value = 20
DEFAULT_buy_strategy_level1_formula = A
DEFAULT_buy_strategy_level2_formula = B && C
DEFAULT_buy_strategy_level2_timeout = 20
DEFAULT_DCA_A_buy_strategy = EMACROSS
DEFAULT_DCA_A_buy_value = 30
DEFAULT_DCA_B_buy_strategy = RSI
DEFAULT_DCA_B_buy_value = 30
DEFAULT_DCA_C_buy_strategy = STOCH
DEFAULT_DCA_C_buy_value = 20
DEFAULT_DCA_buy_strategy_level1_formula = A
DEFAULT_DCA_buy_strategy_level2_formula = B && C
DEFAULT_DCA_buy_strategy_level2_timeout = 20
Trailing only works on the final level.