Rsi - Wilder

guibraga

Junior member
Messages
15
Likes
0
Hello Everybody !

Today I was looking at the software Incredible Charts ans saw that you can plot RSI (simple and WILDER).
Since I only know the simple RSI, does anyone know what´s is this RSI Wilder ??

Thanks
Guilherme
 
I think that on RSI simple you have simple smoothing, and on RSI wilder you have wilders smoothing. Normally on the normal RSI you have a 5-day EMA while on Wilder's RSI you have a 5 day wilders smoothing (which is similar to the EMA, it responds slowly to price changes compared to the EMA) I think thats what it is.

Good Luck,

Ilia
 
Thanls Ilia....
but.... how can I do the WIlder´s smoothing ?
I don´t know..... can you help me again ?

Thanks
Guilherme
 
Wilder [1] invented the RSI indicator and presented it in New Concepts in Technical Trading Systems. His method uses a smoothing measure which reduces the noise in a signal but requires a decent amount of back-data before a sensible result can be got (to match the Bloomberg 9-day RSI you need 6 months of back data).

Some other places don't bother with the smoothing. Take, for example, interactive investor/Ample (www.iii.co.uk) who do away with the smoothing altogether and just show the basic non-smoothed numbers. More signals but perhaps less useful??

If you need it I'll post the Wilder method sometime, but you can probably find it in many places, I think I first saw it on the Equis pages.

Rgds,
Rob/

[1] Welles Wilder, the author of the above-mentiond book.
 
an article for your thoughts......and for users of Metastock both the formulae...

RSI Smoothed

In "The RSI Smoothed" in this issue, John Ehlers bases his calculations on an RSI calculation that sums the changes in the closing price. While some technical analysis programs use this version, Welles Wilder's book New Concepts In Technical Trading Systems defines the RSI slightly differently. Wilder smoothes the sums using his own averaging method before he calculates the final ratio. Since MetaStock uses Wilder's method of calculating the RSI, we are including both John Ehlers' formula, as presented in his article in this issue, and a formula for adding Ehlers' smoothing to the standard RSI.

To create an indicator in MetaStock, select Indicator Builder from the Tools menu, click New, and enter the following formula:


Smoothed Relative Strength Index (Ehlers)

len:=10;
smooth23:=(C+(2*Ref(C,-1))+(2*Ref(C,-2))+Ref(C,-3))/6;
change:= ROC(smooth23,1,$);
cu23:=Sum(If(change>0,change,0),len);
cd23:=Sum(If(change<0,Abs(change),0),len);
cu23/(cu23+cd23)


Smoothed Relative Strength Index (w. Wilder's Smoothing)

len:=10;
smooth23:=(C+(2*Ref(C,-1))+(2*Ref(C,-2))+Ref(C,-3))/6;
change:= ROC(smooth23,1,$);
Z:=Wilders(If(change>0,change,0),len);
Y:=Wilders(If(change<0,Abs(change),0),len);
RS:=Z/Y;
100-(100/(1+RS))





--William Golson
Equis International
www.equis.com
 
Wow !
Thanks a lot guys !
I´ll try to put this formula on my Metastock !
Incredible - I´m from Brazil and here we don´t have this kind of forum - Congratulations for all !

Thanks
Guilherme
 
Top