PureBytes Links
Trading Reference Links
|
Hi All
Iam trying to code a 3 days high for buy and 3 days low for sellwith
5min Rt scan checked .Can any one guide me to correct this following
code
TimeFrameSet(in15Minute);
Sell=Cross(C,LLV(L,3))AND MA(C,15)> MA(C,20);
Buy=Cross(C,HHV(H,3))AND MA(C,15)< MA(C,20);
TimeFrameRestore();
AlertIf(Buy,"BUY",FullName(),1);
AlertIf(Sell,"SHORT",FullName(),2);
Regards
Selvi
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/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/
|