PureBytes Links
Trading Reference Links
|
Hello Eliot,
{function}
Input:
Price(Numeric),RSILen(Numeric),StochLen(Numeric);
StochRSI = IFF((Highest(RSI(Price, RSILen), StochLen) - Lowest(RSI(Price, RSILen), StochLen)) <> 0,
(RSI(Price, RSILen) - Lowest(RSI(Price, RSILen), StochLen)) /
(Highest(RSI(Price, RSILen), StochLen) - Lowest(RSI(Price, RSILen), StochLen)),
StochRSI[1]);
{indicator}
Input: Price(Close),RSILen(14),Length(14);
Plot1(StochRSI(Price, RSILen, Length)*100,"Plot1");
Best regards,
Jim Johnson mailto:jejohn@xxxxxxxxxxx
--
Thursday, October 10, 2002, 12:36:00 PM, you wrote:
EK> In the public domain, is there a StochRSI available that works in TS6, that
EK> someone is willing to post?
EK> Your help is appreciated.
EK> Eliot
EK> ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
EK> Eliot Kaplan
EK> email; eliot@xxxxxxx
EK> web: http://www.isu.com
|