SMAGAIN(SMA)
EMAGAIN(EMA)
DEMAGAIN(DEMA)
HMAGAIN(HMA)
TEMAGAIN(TEMA)
WMAGAIN(WMA)
VWMAGAIN(VWMA)
SMMAGAIN(SMMA)
This buy/sell strategy is true when the current price is above or below the value lowest of the 2 lines specified. It does not matter if the fast or slow line is lower, the bot always looks at the value of the lower line.
By default the value is displayed as a % that the current price is above/below the line.
If a positive
value is used the price must be greater than the value we specify.
If a negative
value is used the price must be less than the value we specify.
XMA_candle_period
XMA_fast_length
XMA_slow_length
# Buy when price is 2% above our LOWEST SMA LINE
DEFAULT_A_buy_strategy_label = 5MSMAGAIN
DEFAULT_A_buy_strategy = SMAGAIN
DEFAULT_A_buy_value = 2
# Sell when price is -0.1% below the LOWEST EMA LINE
DEFAULT_A_sell_strategy_label = 1HEMAGAIN
DEFAULT_A_sell_strategy = EMAGAIN
DEFAULT_A_sell_value = -0.1
# Buy when price is -5% below our LOWEST TEMA LINE
DEFAULT_DCA_A_buy_strategy_label = MYTEMA
DEFAULT_DCA_A_buy_strategy = TEMAGAIN
DEFAULT_DCA_A_buy_value = -5
# Sell when price is 4% above the LOWEST TEMA LINE
DEFAULT_A_sell_strategy_label = MYTEMA
DEFAULT_A_sell_strategy = TEMAGAIN
DEFAULT_A_sell_value = 4
5MSMAGAIN_candle_period = 300
5MSMAGAIN_fast_length = 20
5MSMAGAIN_slow_length = 40
1HEMAGAIN_candle_period = 3600
1HEMAGAIN_fast_length = 10
1HEMAGAIN_slow_length = 50
MYTEMA_candle_period = 3600
MYTEMA_fast_length = 11
MYTEMA_slow_length = 33