Used to combine any two of the above MASPREAD indicators.
This buy/sell strategy is true when the spread between fast and slow COMBIMA is larger (bigger spread) than (or equal to (for selling)) the buy/sell_value.
With COMBIMASPREAD the current price does not matter, only the magnitude of the spread.
COMBIMASPREAD_slow_indicator
COMBIMASPREAD_fast_indicator
COMBIMASPREAD_candle_period
COMBIMASPREAD_fast_length
COMBIMASPREAD_slow_length
# buy strategy is true when the calculated spread is -0.5% or lower (fast COMBIMA is LOWER than slow COMBIMA).
DEFAULT_A_buy_strategy = COMBIMASPREAD
DEFAULT_A_buy_value = -0.5
# Sell strategy is true when the calculated spread is 0.6% or larger (fast COMBIMA is HIGHER than Slow COMBIMA).
DEFAULT_A_sell_strategy = COMBIMASPREAD
DEFAULT_A_sell_value = 0.6
# buy strategy is true when the calculated spread is -0.5% or lower (fast COMBIMA is LOWER than slow COMBIMA).
DEFAULT_DCA_A_buy_strategy = COMBIMASPREAD
DEFAULT_DCA_A_buy_value = -0.5
# Sell strategy is true when the calculated spread is 0.6% or larger (fast COMBIMA is HIGHER than Slow COMBIMA).
DEFAULT_DCA_A_sell_strategy = COMBIMASPREAD
DEFAULT_DCA_A_sell_value = 0.6
COMBIMASPREAD_slow_indicator = SMA
COMBIMASPREAD_fast_indicator = DEMA
COMBIMASPREAD_candle_period = 3600
COMBIMASPREAD_fast_length = 20
COMBIMASPREAD_slow_length = 50