PureBytes Links
Trading Reference Links
|
Just FYI, I got some pretty good results backtesting with the
following:
Capital = -20 ; //20% of Equity.
RiskCapital = .05*Capital ;
NumberOfShares = RiskCapital/(2.37*ATR(10)) ;
PositionSize = Max(-20,NumberOfShares * BuyPrice [i]) ;
I think this achieves what we initially wanted (volatility based
sizing with diversification of at least 5 stocks). I think there is
some subtle difference between this and what Ed proposed for
PositionSize yesterday but I'm not sure what it is (?).
In the above, the 2.37 was obtained from optimizing the stop multiple
for my system and my PositionScore was assigned based on volitility (
= ATR(5)/C ). Also MaxOpenPositions appeared to be optimimum when set
to 9.
Dan
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
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/
|