Set a range for your indicator to get the MIN/MAX value withing your specified period.
NOTE
Does NOT work for XMAGAIN/XMASPREAD/XMACROSS/CROSSOVER/CROSSUNDER/EXTERNAL indicators
range_value
MIN (Lowest value in the specified range)
MAX (Highest value in the specified range)
range_length
Integer values specifying the length of the tange to look at.
# Returns true if current price is LOWER than the highest CANDLE close price in the last 10 candles
DEFAULT_B_buy_strategy = CANDLE
DEFAULT_B_buy_value = -1
# Returns true if the highest RSI in the last 5 candles is lower than 30
DEFAULT_DCA_B_buy_strategy = RSI
DEFAULT_DCA_B_buy_value = 30
# Returns the highest clsoe price in the last 10 candles
CANDLE_candle_period = 3600
CANDLE_source = CLOSE
CANDLE_range_value = MAX
CANDLE_range_length = 10
# Returns the highest RSI value in the last 5 candles
RSI_candle_period = 3600
RSI_length = 14
RSI_range_value = MAX
RSI_range_length = 5