Smooth the value returned by your indicator using a supported (X)MA indicator.
What is the idea behind smoothing?
https://www.investopedia.com/terms/d/data-smoothing.asp
NOTE
Does NOT work for XMAGAIN/XMASPREAD/XMACROSS/EXTERNAL indicators
smooth_indicator
Specify one of PT Supported (X)MA indicators. Like EMA, SMA, HMA etc.
Full list can be found here: Supported XMA indicators
smooth_indicator_length
Integer values specifying the amount of candles we want to use for smoothing calculation
# Returns true if smoothed RSI value is LOWER than 15
DEFAULT_B_buy_strategy = RSI
DEFAULT_B_buy_value = 15
# Returns true if smoothed RSI value is LOWER than 30
DEFAULT_DCA_B_buy_strategy = RSI
DEFAULT_DCA_B_buy_value = 30
# Returns a smoother RSI value using the EMA 10 indicator
RSI_candle_period = 3600
RSI_length = 14
RSI_smooth_indicator = EMA
RSI_smooth_indicator_length = 10