PureBytes Links
Trading Reference Links
|
Here you go Pete
Stochastic of RSI
Periods:= Input("Enter number of periods for
RSI", 1, 20, 16);
stochp:= Input("Enter number of periods for the Stochastic", 1,
20, 8);
slowp:= Input("Enter number of slowing periods for the
Stochastic", 1, 20, 2);
(Sum(RSI(periods) - LLV(RSI(periods),stochp), slowp ) /
Sum(HHV(RSI(periods),stochp) - LLV(RSI(periods),stochp), slowp) ) *
100
At 11:57 AM 01/10/2001 -0500, you wrote:
Would someone be kind enough to
send me the formula for the StoRSI oscillator?
Thanks in advance.
Tom Alexander
eGroups Sponsor
Click here to Win a 2001 Acura MDX
To unsubscribe from this group, send an email to:
realtraders-unsubscribe@xxxxxxxxxxx
eGroups Sponsor
Click here to subscribe.
To unsubscribe from this group, send an email to:
realtraders-unsubscribe@xxxxxxxxxxx
|