PureBytes Links
Trading Reference Links
|
Yes, TJ, I misspoke.
My code is from the Help file:
posqty=x;
SetOption("MaxOpenPositions",posqty);
PositionSize=-100/posqty;
I want to vary posqty so that posqty=1 when there is only one stock
with the top PositionScore;
posqty = 2 when there are two stocks with the same top PositionScore;
and so forth.
dale b
> Hello,
>
> MaxOpenPositons is just that: absolute MAXIMUM number of open
positions.
> It is 'set and forget' kind of settings.
>
> To vary number of positions taken you should use PositionSize
> instead since it can be set per symbol and per bar.
>
> Best regards,
> Tomasz Janeczko
> amibroker.com
> ----- Original Message -----
> From: "msc626" <msc626@xxxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Saturday, October 25, 2003 12:24 AM
> Subject: [amibroker] Help With "MaxOpenPositions"
>
>
> > Could anyone suggest a method to vary "MaxOpenPositions"
dynamically
> > based on PositionScore?
> > The problem that I am attempting to solve is what to do when
several
> > stocks in my watchlist have the identical PositionScore.
> > For example:
> > if two stocks have the same top score, then I would like
> > MaxOpenPositions = 2;
> > if three stocks have the same top score, then I would like
> > MaxOpenPositions = 3;
> > ...and so on.
> > Thanks for your help.
> >
> > dale b
> >
> >
> >
> > Send BUG REPORTS to bugs@xxxx
> > Send SUGGESTIONS to suggest@xxxx
> > -----------------------------------------
> > Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> > (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> > --------------------------------------------
> > Check group FAQ at:
http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> >
> > Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/
> >
> >
> >
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|