PureBytes Links
Trading Reference Links
|
Did you set the PositionSize variable?
>From help file:
---
IMPORTANT: to enable more than one symbol to be traded you have to
add PositionSize variable to your formula, so less than 100% of
funds are invested in single security:
PositionSize = -25; // invest 25% of portfolio equity in single trade
or
PositionSize = 5000; // invest $5000 into single trade
There is a quite common way of setting both position size and
maximum number of open positions so equity is spread equally among
trades:
PosQty = 5; // You can define here how many open positions you want
SetOption("MaxOpenPositions", PosQty );
PositionSize = -100/PosQty; // invest 100% of portfolio equity
divided by max. position count
---
JS
--- In amibroker@xxxxxxxxxxxxxxx, "newnow02" <newnow02@xxxx> wrote:
> Two questions about Amibroker 4.50.11:
>
> A. I have a long-only strategy where my max open positions is set
to
> 4. Yet the backtesting report shows only one "thread" or "stream"
> going on, i.e. my account will not buy an additional stock until
the
> other one is sold. Shouldn't this actually allow four streams
> instead of just one or does this mean something different?
>
> B. How do I set Amibroker to do backtesting the "old" way where it
> put literally every possible trade into the report? I like
> Amibroker's new way, but I'd like to see all trades for further
> analysis.
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
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/
|