PureBytes Links
Trading Reference Links
|
Dear All
I need to do a simple code for research purpose,which buy when close
penetrate the previous peak , and sell if close break the previous
bottom or break the previous peak .
i wrote this code but i don't know what is wrong with it.
z=Zig(C,4);
Plot(C,"C",1,64);
Plot(z,"",colorRed,styleThick);
Condi1=C<Peak(z,1);
Condi2=C<Trough(z,1);
Buy=C>Peak(z,1);
Sell=Condi1 or Condi2 ;
Buy = ExRem( Buy, Sell );
Sell = ExRem( Sell, Buy );
PlotShapes( IIf( Buy , shapeUpArrow , shapeNone ),colorGreen );
PlotShapes( IIf( Sell, shapeUpArrow + shapePositionAbove, shapeNone
),colorRed );
thanks in advance
Waleed
------------------------------------
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|