PureBytes Links
Trading Reference Links
|
Unfortunately I have to resume the topic since it occured that funtion "setoption" - "priceboundchecking" solves only the problem of regular entries/exits prices and it doesn't affect "applystop" function. Is there any way of "forcing" stops' prices to follow "priceboundchecking" utility when using "applystop"? Or will I have to resign from "applystop" and compose my own stop loss code in order to define trade prices considering slipagge?
--- In amibroker@xxxxxxxxxxxxxxx, "tf28373" <tomfid@xxx> wrote:
>
> That's it!
>
> Thanks
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Edward Pottasch" <empottasch@> wrote:
> >
> > hi,
> >
> > have a look here:
> >
> > http://www.amibroker.com/guide/afl/setoption.html
> >
> > look at: "PriceBoundChecking"
> >
> > regards, Ed
> >
> >
> >
> > ----- Original Message -----
> > From: tf28373
> > To: amibroker@xxxxxxxxxxxxxxx
> > Sent: Tuesday, September 15, 2009 11:49 AM
> > Subject: [amibroker] own trade prices
> >
> >
> > Hi
> >
> > I pretend to define my own trade prices so as the procedure would include recognizing if there is a price gap, slipagge, etc. However, Amibroker follow my ideas only sometimes ex. if candle range is L=1600 pts and H=1610 pts and according to my formula the trade price should be 1612, the backtester will set it at 1610 anyway which is maximum level of the candle.
> >
> > How to avoid that? And how to implement such a solution when using ApplyStop function?
> >
> > I will be grateful for any advice :)
> >
> > Regards
> > Tomasz
> >
> > PS. The part of my code refering to this issue looks as follows:
> >
> > BuyPrice=IIf(Ref(C,-1)<max AND O>max,O+2,max+2);
> > SellPrice=IIf(Ref(C,-1)>min AND O<min,O-2,min-2);
> >
> > where "IIf" check prices for gaps; "max" is upper level of the channel, giving buy signal when broken upwards; "min" - bottom level, finishing the trade when broken; finally - as you can see - I assume 2 pts slipagge for each opening/closing signal.
> >
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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/
|