PureBytes Links
Trading Reference Links
|
//Position Sizing Algorithms
//version 1 low risk low return:
Capital= 100000;
Risk = 0.03 * Capital;
//Stops
TrailStopAmount = 10 * ATR( 10 );
ApplyStop( 2, 2, TrailStopAmount, 1 );
PositionSize = (Risk / TrailStopAmount) * BuyPrice;
///////////////////
//version 2 Diverse, lower risk , medium return
PositionSize = -7.5;
//version 3 Higher risk, higher return, vary -1 to -4
PositionSize = -1 * BuyPrice/(2*ATR(10));
version 4 highest risk, highest return
PositionSize = -3 * round(MA(V,50)/5/100);
Based on my tests of a few systems. Did not try with
futures.
--- Ben <shaklfree@xxxxxxxxx> wrote:
> I've been doing some research on position sizing
> algorithms. I've
> found a webpage that covers three algorithms that
> will GUARANTEE a
> positive result.
>
> I was wondering if anyone has experience using them
> in their trading
> and would like to share their results.
>
> The website is:
>
http://www.ace-ten.com/strategy/intermediate/effective.html
>
>
> Ben
>
>
>
>
>
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/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/
|