PureBytes Links
Trading Reference Links
|
Hi,
Here are the formulas that I use for John Hayden.
PlotOHLC( Open, High, Low, Close, "c", colorGreen,styleCandle);
Plot(MA(C,9),"9ma",colorPaleGreen,styleLine);
Plot(WMA(C,45),"45wma",colorRed,styleLine);
Plot(BBandTop(C,20,2),"BBT",colorWhite,styleLine);
Plot(BBandBot(C,20,2),"BBB",colorWhite,styleLine);
Plot(10,"ribbon", IIf(MA(C,9)<WMA
(C,45) ,colorRed,colorGreen),styleOwnScale|styleArea|styleNoLabel, -
0.5, 1000 );
================================================================
Plot(RSI(14),"RSI",colorBlue,styleLine|styleThick);
PlotGrid(80,colorGreen);
PlotGrid(60,colorRed);
PlotGrid(40,colorGreen);
PlotGrid(20,colorRed);
Plot(MA(RSI(14),9),"9ma",colorGreen,styleLine);
Plot(WMA(RSI(14),45),"45wma",colorRed,styleLine);
Plot(10,"ribbon", IIf(MA(RSI(14),9)< WMA(RSI
(14),45) ,colorRed,colorGreen),styleOwnScale|styleArea|styleNoLabel, -
0.5, 1000 );
I hope this helps you,
Dennis
--- In amibroker@xxxxxxxxxxxxxxx, "pperform" <pperform@xxxx> wrote:
> Anybody done anything with Momentum Discrepancy Reversal Points -
by
> John Hayden - "The Complete RSI Book" . As it is based on
> correlations of current values with a muultiple matrix of arrays of
> momentum values it would appear to lend itself to AFL programming.
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|