Used to combine any two of the above MA indicators.
This buy/sell strategy is true when the current ask/bid price is above (positive buy/sell_value
) or below (negative buy/sell_value
) the lowest of the two MA lines specified. It does not matter if the fast or slow MA line is lower, the bot always looks at the value of the lower line.
If a positive value is used the ask/bid price must be greater than (or equal to (for selling)) the value of the lower MA band multiplied by (1 + buy/sell_value
expressed as a percentage).
If a negative value is used the ask/bid price must be less than (or equal to (for selling)) the value of the lower MA band multiplied by (1 + buy/sell_value
expressed as a percentage).
COMBIMAGAIN_slow_indicator
COMBIMAGAIN_fast_indicator
COMBIMAGAIN_candle_period
COMBIMAGAIN_fast_length
COMBIMAGAIN_slow_length
1 = 1% of the price above the lowest of the two MA lines.
0 = Right on top of the lowest MA line.
-0.5 = 0.5% of the price below the lowest of the two MA lines.
# Buy COMBIMAGAIN value is lower than -0.5
DEFAULT_C_buy_strategy = COMBIMAGAIN
DEFAULT_C_buy_value = -0.5
# Sell when COMBIMAGAIN value is greater 1.4
DEFAULT_C_sell_strategy = COMBIMAGAIN
DEFAULT_C_sell_value = 1.4
# Buy COMBIMAGAIN value is lower than -0.5
DEFAULT_DCA_C_buy_strategy = COMBIMAGAIN
DEFAULT_DCA_C_buy_value = -0.5
# Sell when COMBIMAGAIN value is greater 1.4
DEFAULT_DCA_C_sell_strategy = COMBIMAGAIN
DEFAULT_DCA_C_sell_value = 1.4
COMBIMAGAIN_slow_indicator = WMA
COMBIMAGAIN_fast_indicator = EMA
COMBIMAGAIN_candle_period = 300
COMBIMAGAIN_fast_length = 25
COMBIMAGAIN_slow_length = 50