PureBytes Links
Trading Reference Links
|
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/
|