Ehler´s Super Smoothers.
Forums › ProRealTime English forum › ProBuilder support › Ehler´s Super Smoothers.
- This topic has 4 replies, 3 voices, and was last updated 6 years ago by robertogozzi.
-
-
04/06/2018 at 11:12 AM #67421
Dear Friends,
what is the Advantage of Ehlers Super Smoothers?
Can i smooth the Result of Standard RSI Indicator?
Standard RSI 141RSI[14](Close)How should the code Sound, it i wanna this RSI Indicator, Supersmooth with Ehlers?
Thank for Help.
04/06/2018 at 12:34 PM #67435You can smooth any data serie with any other calculation, to smooth the RSI with the Ehlers Super Smoother, you can do it like this:
12345678910111213//John Ehlers’ “Super Smoother”, a 2-pole Butterworth filter combined with a 2-bar SMA that suppresses the Nyquist frequency:Period = 10Data = RSI[14](close)PI = 3.14159f = (1.414*PI) / Perioda = exp(-f)c2 = 2*a*cos(f)c3 = -a*ac1 = 1 - c2 - c3if barindex>Period thenS = c1*(Data[0]+Data[1])*0.5 + c2*S[1] + c3*S[2]endifreturn S04/13/2018 at 5:02 PM #68290thank you nicolas,
you are so a helpful guy! i hope you are working a lot of years more in this forum.
do i have to change the period 10 of ehlers super smoother?
oder is this the standard, and i have only to change the RSI14 period?
thanks for your feedback.
04/13/2018 at 7:13 PM #6830704/13/2018 at 7:29 PM #68312The above code only returns 0, displaying a single horizontal line.
I copied & pasted the code as is.
-
AuthorPosts
Find exclusive trading pro-tools on