PureBytes Links
Trading Reference Links
|
If the relative strength is of the ^NDX, for example, the code to plot
it and its 20 and 35 day simple moving averages is:
RS = RelStrength( "^NDX" );
Plot(RS, "RS",colorBlack,1);
Plot(MA(RS,20), "20RS",colorRed,1);
Plot(MA(RS,35), "35RS",colorBlue,1);
--- In amibroker@xxxxxxxxxxxxxxx, "jmbruegge" <jmbruegge@xxxx> wrote:
> Hello :
>
> I have used the following formula for relative strength in
Amibroker,
> but I was wondering how do I add say a 20 AND 35 day simple moving
> average in the chart as well ?? I am unsure where to add it in the
> formula and how to write it ?? All help is greatly appreciated !!
>
>
> //--Indicator-End-- -- do not remove this line
> Plot( RelStrength(""),"Relative Strength", -8 );
>
>
> Graph0Style =128;
> Graph1Style=Graph2Style= 1;
> Graph0Color = 2;
> Graph1Color = 3;
> Graph2Color = 3;
>
> curve = EMA(C,20);
> Plot(curve,"ema",colorBlue,styleLine);
> curve = EMA(C,35);
> Plot(curve,"ema",colorBlue,styleLine);
> curve = EMA(C,50);
> Plot(curve,"ema",colorBlue,styleLine);
>
>
> "(Interpretation is not available yet)";
>
>
> Thanks You,
>
> Jgcbrugge
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
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 http://docs.yahoo.com/info/terms/
|