Hi,
Does anyone have the code for RSI Smooth or the indicator itself?
Many thanks!
/Marcus
Well, there are many ways to smooth an array of data and I know that there are also many indicators named “smooth RSI” over the internet. So in order to give you the right code for it, do you have any example with screenshot or codes from other platform to know exactly what you are willing to have as a RSI smoothed? Many thanks.
Hi again
Here is an example. This RSI (14) indicator is smooth by MA (5)
Thank you, here is the code to smooth the RSI indicator (14 periods) with a moving average of 5 periods:
smoothRSI = average[5](RSI[14])
return smoothRSI