Set the type of candles you want to use with your indicator for calculations.
range_value
OHLC (DEFAULT)
HEIKIN_ASHI
range_length
Integer values specifying the length of the tange to look at.
# Returns true if RSI is below 30 (Based on HEIKIN ASHI candles calculation)
DEFAULT_B_buy_strategy = RSI
DEFAULT_B_buy_value = 30
# Returns true if RSI is below 30 (Based on HEIKIN ASHI candles calculation)
DEFAULT_DCA_B_buy_strategy = RSI
DEFAULT_DCA_B_buy_value = 30
# Calculates our RSI using HEIKING ASHI candles
RSI_candle_period = 3600
RSI_length = 14
RSI_candle_type = HEIKIN_ASHI