PureBytes Links
Trading Reference Links
|
Will a 14,9,6,4 do?
I also have a 12,7,4,2 for you....................
Regards,
Ton Maas
ms-irb@xxxxxxxxxxxxxxxx
Dismiss the ".nospam" bit (including the dot) when replying.
Homepage http://home.planet.nl/~anthmaas
Mov((RSI(14)-LLV(RSI(14),9))/(HHV(RSI(14),9)-(LLV(RSI(14)+.00001,6))),4,E)*100
Equis' StochRSI - Tushar Chande
(RSI(14)-LLV(RSI(14),14))/(HHV(RSI(14),14)-LLV(RSI(14),14))*100
Bell Ringer's StochRSI14 - John A. Yurko
(Sum(RSI(14)-LLV(RSI(14),14),3)/Sum(HHV(RSI(14),14)-LLV(RSI(14),14),3))*100
StochRSI oscillator - Craig DeHaan
{configurable formula for the StochRSI oscillator to quickly find what time
periods/method you prefer to work with. CDH's List-post.
(Sun, 15 Nov 1998 "Re: Finding the Stochastic of the Relative Strength")}
mp1:=Input("RSI Periods",1,377,13);
mp2:=Input("Stochastic Periods",1,377,13);
mp3:=Input("Smoothing Periods",1,377,8);
mat:=Input("MA Type: S, E, W",1,3,2); {1=S,2=E,3=W}
If(mat=1, Mov((RSI(mp1)-LLV(RSI(mp1),mp2))/(.0000001+
HHV(RSI(mp1),mp2)-LLV(RSI(mp1),mp2)),mp3,S)*100,
If(mat=2, Mov((RSI(mp1)-LLV(RSI(mp1),mp2))/(.0000001+
HHV(RSI(mp1),mp2)-LLV(RSI(mp1),mp2)),mp3,E)*100,
If(mat=3, Mov((RSI(mp1)-LLV(RSI(mp1),mp2))/(.0000001+
HHV(RSI(mp1),mp2)-LLV(RSI(mp1),mp2)),mp3,W)*100,0)))
============================================================
Stochastic Relative Strength Index { from www.equis.com }
rev. 01/06/97
In his book The New Technical Trader, Tushar Chande defines the Stochastic RSI as:
StochRSI = (RSI - RSIL)/(RSIH -RSIL)
where RSIL and RSIH are the lowest and highest values of the RSI over a given period.
In his book he uses 14 periods. The MetaStockT formula for the Stochastic RSI is:
( ( RSI ( 14 ) - LLV( RSI (14 ) ,14 ) ) / ( ( HHV( RSI (14 ) ,14 ) ) - LLV(RSI (14 ),14 ) ) )
----- Original Message -----
From: "DaveK"
To: <metastock@xxxxxxxxxxxxxxxxxx>
Sent: zaterdag 29 juli 2000 1:30
Subject: storsi 13,8,5,3
> Has anyone had experience with a storsi 13,8,5,3 ? I have been trying to code for it but is a bit beyond me. I'm using storsi for
> different cycles. This is an example of a storsi (8,5)
> Mov((RSI(8)-LLV(RSI(8),8))/(HHV(RSI(8),8)-(LLV(RSI(8),8))),5,E)*100
>
> if this is not correct, please let me know and if you may know how to code a 13,8,5,3 I'd appreciate the help.
> I understand that Robert Miner is using it with good results.
>
> Thanks much.
>
>
|