PureBytes Links
Trading Reference Links
|
Hi Erik,
Thursday, December 8, 2005, 10:31:50 PM, you wrote:
ES> I asked this same question to the beta group. Within the new portfolio back-testing would you know how to apply different weighting allocations to the top 5 highest position scores? I can't
figure it out the scaling yet. Not many examples.
ES> Thanks for your help,
I imagine (imagine, mind you) that you would do it something like
this:
n = Name();
PositionScore = IIf( n == "xxxx", 11,
IIf( n == "xxxx", 10,
IIf( n == "xxxx", 9,
IIf( n == "xxxx", 8,
IIf( n == "xxxx", 7,
IIf( n == "xxxx", 6,
IIf( n == "xxxx", 5,
IIf( n == "xxxx", 4,
IIf( n == "xxxx", 3,
IIf( n == "xxxx", 2,
IIf( n == "xxxx", 1, 1 /* otherwise */ ) ) ) ) ) ) ) ) ) ) );
This sets up the position score, where "xxxx" is a symbol.
Then:
PositionSize = IIf(PositionScore == 1, 10000000, [then from here you
would nest the size as above].
But I will let Graham have the last word on this. He is a card-carrying
member of the coder's guild.
Yuki
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|