PureBytes Links
Trading Reference Links
|
Assuming that you have no limit on the total number of open positions,
but do want to limit the number of *new* positions at each bar, you
can write custom backtest code to set the positionsize to 0 at each
bar for any remaining signals beyond the first 5.
You may need to first sort the signals by postionscore, I don't recall
what order they are in.
Refer to the document "AmiBroker Custom Backtester Interface.pdf
" by gp_sydney in the Files section of this group to learn how to
write your own code:
http://finance.groups.yahoo.com/group/amibroker/files/
Mike
--- In amibroker@xxxxxxxxxxxxxxx, "guhu0434" <g.h.h@xxx> wrote:
>
> --- In amibroker@xxxxxxxxxxxxxxx, "_sdavis" <_sdavis@> wrote:
> >
> > Try this:
> >
> > SetOption("MaxOpenPositions", 5 );
> > PositionSize = -100/5;
> >
> Hy Sdavis,
>
> thank you for the hint. To my knowledge, with this option I can
define
> the total quantity of open position. I am looking for the total
> quantity of to be bought position per bar.
>
> With regards, GuHu
>
------------------------------------
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/
|