This buy/sell strategy is true when the RSI value is less than the buy_value
or is greater than or equal to the sell_value
.
# Buy when RSI is below 20
DEFAULT_D_buy_strategy_label = MY5MRSI
DEFAULT_D_buy_strategy = RSI
DEFAULT_D_buy_value = 20
# Sell when RSI is above 70
DEFAULT_D_sell_strategy_label = MY5MRSI
DEFAULT_D_sell_strategy = RSI
DEFAULT_D_sell_value = 70
# Buy when RSI is between 20 and 30
DEFAULT_DCA_D_buy_strategy_label = MY5MRSI
DEFAULT_DCA_D_buy_strategy = RSI
DEFAULT_DCA_D_buy_value = 20
DEFAULT_DCA_D_buy_value_limit = 30
# Sell when RSI is above 90
DEFAULT_DCA_D_sell_strategy_label = MY5MRSI
DEFAULT_DCA_D_sell_strategy = RSI
DEFAULT_DCA_D_sell_value = 90
# 5 minutes candle / timeframe
MY5MRSI_candle_period = 300
MY5MRSI_length = 14