PureBytes Links
Trading Reference Links
|
Kudos to Steve Karnish from one of those Amibroker
learners who is old enough to be a grandpa to most of you . Ron
D
/* CCT StochRSI
**
** Originally developed by Steve Karnish
** <A
href="">http://www.cedarcreektrading.com
**
** AFL translation by Tomasz Janeczko
**
** Set scaling: Custom 0..100
** Grid: 30/70
*/
period = 13;
Graph0=100*( (
RSI( period ) -
LLV( <FONT
color=#0000ff size=1>RSI( period ) , period ) ) / ( (
HHV( <FONT
color=#0000ff size=1>RSI(
period ) , period ) ) - LLV<FONT
size=1>(RSI( period ),
period ) ) );
// this is an attempt to add an
exponential moving avg to Stoch RSI
<FONT face=Arial
size=2>
Yahoo! Groups Sponsor
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|