PureBytes Links
Trading Reference Links
|
Hi,
Maybe someone has had a similar problem to this.
I'm trying to write a system that defines a buy setup signal,
holds the setup valid for 4 bars and buys on a separate trigger
condition. I'm using profit target/max stop loss to exit i.e:
BuySetup = ....
BuySetup = Hold(BuySetup,4);
Trigger = ....
Buy = BuySetup and Trigger;
Sell = 0;
ApplyStops(stopTypeLoss,....);
ApplyStops(styopTypeProfit,....);
So i will get my buy setup and trigger, enter long and exit ok but then
if i'm within the setup holding period of 4 bars i will get another buy
signal
which i don't want. Any help much appreciated.
regards,
Kevin
------------------------ 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/
|