PureBytes Links
Trading Reference Links
|
What I am trying to do is get an entry signal when today's Close is
Higher than the highest High in the last 8 days, and then exit when
the Close is a percentage below the next latest highest High.
When I use a different buy signal to the one below, I.E. MA cross, my
Sell signal works OK. However, when I use the Buy below, I get no
strikes at all.
Where am I going wrong?
Ian
MA3=MA(C,3);
MA30=MA(C,30);
SellPercent=5;
StopLow=HHV(H,8)-(HHV(H,8)*SellPercent/100);// This seems to work
Buy=Close>=HHV(H,8);
Sell=Close=<StopLow;
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|