PureBytes Links
Trading Reference Links
|
Angelo,
The single-symbol multiple system is just very simple thing to do.
Multi-system on individual symbols is just
ONE system on portfolio with different logic hardwired to symbol
and it can be very easily implemented using AmiBroker
SetOption("MaxOpenPositions", 3 ); // number of SYSTEMS here
switch( Name() )
{
case "SPY":
// the system for SPYhere
Buy = ...
Sell = ....
SetPositionSize( 20, spsPercentOfEquity ); // 20% into FIRST system
break;
case "QQQQ":
// the system for QQQ here
Buy = ...
Sell = ....
SetPositionSize( 50, spsPercentOfEquity ); // 50% into SECOND system
break;
case "DIA":
// the system for DIA here
Buy = ...
Sell = ....
SetPositionSize( 30, spsPercentOfEquity ); // 30% into THIRD system
break;
}
The above trades 3 separate systems on 3 separate symbols with 20/50/30% allocation.
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "ang_60" <ima_cons@xxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Thursday, May 07, 2009 10:08 AM
Subject: [amibroker] Re: testing multiple systems simultaneously
> --- In amibroker@xxxxxxxxxxxxxxx, "brian_z111" <brian_z111@xxx> wrote:
>>
>> > Some of you, old Tradestation users know that although it's >impossible to do multimarket testing (without external software),
>>
>> You can do multimarket analysis in AB .... just put different market data in one database and use Foreign() to reference
>> different markets at the same time. Using a data provider who has all the markets makes this easy.
>>
>
>
> Yes Brian, I was referring to Tradestation.
> My point was that in a software programmed more than 20 years ago (I began using Tradestation 4) was already possible to do a very
> basic form of "multysystem testing", but only on "portflio of one symbol" (that's was TS's limitation not an AB one's).
>
> As a consequence - and replying to a TJ post - I wasn't seeing all this major problems in thinking how to implement this feature,
> although I'm the first to admit I have no idea how much Tomasz's work would be required and what are his priorities in the further
> development of Amibroker.
>
> So, I will stop here.
> Greetings,
> Angelo.
>
>
>
>
>
>
>
>
>
>
> ------------------------------------
>
> **** 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
>
>
>
------------------------------------
**** 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/
|