PureBytes Links
Trading Reference Links
|
Herman van den Bergen wrote:
> Hello,
> Can somebody tell me how to place EOD trade arrows on a RT minute chart?
> many thanks,
> herman.
hello,
I don't know much about system tester in AB, but sometimes I write
something like this:
TimeFrameSet(inDaily);
EMA20D = MA(C,Param("M20D per",20,5,200,1));
EMA50D = MA(C,Param("M50D per",50,5,200,1));
Cond = Cross(EMA20d,EMA50d);
TimeFrameRestore();
PlotShapes(shapeCircle,colorYellow,9,TimeFrameExpand(Cond*EMA20D,inDaily),0);
cheers,
bm
------------------------ 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
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/
|