PureBytes Links
Trading Reference Links
|
I tried your formulae... and get the same result as the Relative Strength
Index - Full Formula (for 14 periods and using closing prices)
100 - 100/ (1.+ If(Mov(If(P-Ref(P,-1)<0,-(P-Ref(P,-1)),0),23,E)=0,1000000,
Mov(If(P-Ref(P,-1)>0, P-Ref(P,-1), 0),23,E)/
Mov(If(P-Ref(P,-1)<0,-(P-Ref(P,-1)),0),23,E) ))
The difference is that in your formula you can ajust some parameters.
But the comparative results are still diferent form manualy RSI.
Thanks pumrysh.
MORMAX.
----- Original Message -----
From: "pumrysh" <no_reply@xxxxxxxxxxxxxxx>
To: <equismetastock@xxxxxxxxxxxxxxx>
Sent: Thursday, April 28, 2005 4:15 PM
Subject: [EquisMetaStock Group] Re: RSI does anyone have tried manualy ?
> Check here
> http://trader.online.pl/MSZ/e-0-tytulowa-r.html
>
> or try:
>
> Q:=Input("Time Periods",1,1000,14);
> B:=Input("Field: 1=Close, 2=Open, 3=High, 4=Low, 5=Volume",1,5,1);
> Z:=If(B=1,Wilders(If(ROC(C,1,$)>0,ROC(C,1,$),0),LastValue(Q)),If
> (B=2,Wilders(If(ROC(O,1,$)>0,ROC(O,1,$),0),LastValue(Q)),If
> (B=3,Wilders(If(ROC(H,1,$)>0,ROC(H,1,$),0),LastValue(Q)),If
> (B=4,Wilders(If(ROC(L,1,$)>0,ROC(L,1,$),0),LastValue(Q)),Wilders(If
> (ROC(V,1,$)>0,ROC(V,1,$),0),LastValue(Q))))));
> Y:=If(B=1,Wilders(If(ROC(C,1,$)<0,Abs(ROC(C,1,$)),0),LastValue(Q)),If
> (B=2,Wilders(If(ROC(O,1,$)<0,Abs(ROC(O,1,$)),0),LastValue(Q)),If
> (B=3,Wilders(If(ROC(H,1,$)<0,Abs(ROC(H,1,$)),0),LastValue(Q)),If
> (B=4,Wilders(If(ROC(L,1,$)<0,Abs(ROC(L,1,$)),0),LastValue(Q)),Wilders
> (If(ROC(V,1,$)<0,Abs(ROC(V,1,$)),0),LastValue(Q))))));
> RS:=Z/Y;
> 100-(100/(1+RS))
>
>
>
>
> --- In equismetastock@xxxxxxxxxxxxxxx, "Mormax" <mormax_trader@xxxx>
> wrote:
>> I've tried manualy and the results wasn't the same !
>>
>> am i doing something wrong ?
>>
>> I've used the same method that MS uses to calculate de RSI (at
> least the
>> method tha's in help).
>> The results was reasonable, but not identical.
>> (the results are attached)
>>
>>
>>
>> What moving average MS uses to calculate RSI ? 'cause i've tried
> EMA too.
>>
>>
>> If anyone can help me, i'll be grateful
>>
>>
>>
>> Thanks,
>>
>> MORMAX.
>
>
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>
>
>
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|