PureBytes Links
Trading Reference Links
|
What is your trigger? See if you can use Cross there which limits number
of Buys to actual crosses versus x > y which will stay True and issue
repeated Buys.
--
Terry
-----Original Message-----
From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On
Behalf Of Kevin O'Mahony
Sent: Tuesday, November 08, 2005 08:47
To: amibroker@xxxxxxxxxxxxxxx
Subject: Re: [amibroker] avoiding multiple entries
It almost does the job - it will stop any entries for another 4 bars
after exit but
that will also stop potentially valid entries from a new setup signal.
I'm thinking
of an example where i get a trigger at bar 4 of the setup, go long,exit
after 1/2 bars
meanwhile a new valid setup/trigger occurs which i will overlook using
the reentrydelay.
thanks,
Kevin
Terry wrote:
> Hold. Learn something new practically everyday!
>
> Have you tried setting the ReEntryDelay on your ApplyStop to 4 (the
last
> parameter)?
> --
> Terry
>
> -----Original Message-----
> From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On
> Behalf Of Kevin O'Mahony
> Sent: Tuesday, November 08, 2005 04:35
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] avoiding multiple entries
>
> 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
>
>
>
>
>
>
>
> 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
>
>
>
>
>
>
>
>
>
> 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
>
> * Visit your group "amibroker
> <http://groups.yahoo.com/group/amibroker>" on the web.
>
> * To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
>
<mailto:amibroker-unsubscribe@xxxxxxxxxxxxxxx?subject=Unsubscribe>
>
> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service <http://docs.yahoo.com/info/terms/>.
>
>
>
------------------------------------------------------------------------
>
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
------------------------ 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/
|