Hello, for the past weeks I have been studying and writing a strategy program on NT7 following the Turtle Rules.
Specifically, the Original rules found here http://bigpicture.typepad.com/comments/files/turtlerules.pdf
For the most part I understand well and have been able to implement.
However, On Chapter 3 "Position Sizing" (page 16) "Units as a measure of risk", I do not understand the the
chart with the Maximum Number of units.
I read the text many time trying to understand but I still do not understand how this works.
for example: Single Market 4 units, Single direction 12 ... ??? "Single Markets" obviously includes a "Single
Directions". So when is 4?, when is 12 units?. Or 6 units in "closely correlated markets"??
I am sure this is not too difficult but I can figure it out.
Would appreciate if some guru would be able to explain it in a different way or point me to any other doc out there.
Thank you in advance!
In case it interest anyone, this is so far my interpretation of the Original Turtle Rules:
Specifically, the Original rules found here http://bigpicture.typepad.com/comments/files/turtlerules.pdf
For the most part I understand well and have been able to implement.
However, On Chapter 3 "Position Sizing" (page 16) "Units as a measure of risk", I do not understand the the
chart with the Maximum Number of units.
Code:
[from the book]
The Turtles were given risk management rules that limited the number of Units that
we could maintain at any given time, on four different levels. In essence, these rules
controlled the total risk that a trader could carry, and these limits minimized losses
during prolonged losing periods, as well as during extraordinary price movements.
Level Type Maximum Units
1 Single Market 4 Units
2 Closely Correlated Markets 6 Units
3 Loosely Correlated Markets 10 Units
4 Single Direction â Long or Short 12 Units
I read the text many time trying to understand but I still do not understand how this works.
for example: Single Market 4 units, Single direction 12 ... ??? "Single Markets" obviously includes a "Single
Directions". So when is 4?, when is 12 units?. Or 6 units in "closely correlated markets"??
I am sure this is not too difficult but I can figure it out.
Would appreciate if some guru would be able to explain it in a different way or point me to any other doc out there.
Thank you in advance!
In case it interest anyone, this is so far my interpretation of the Original Turtle Rules:
Code:
Size
One unit = ( 0.01 * [Account Size] ) / ( [20 days ATR] * Stock Price)
Notional Account Size
Decrease [Account Size] by [Account Size] - (0.1 * [Account Size]) on losses.
Entry
Enter one long/short unit when Stock hits a [20 days high/low]
Increment by one unit when: Stock Price + (0.5 * [20 days ATR])
Risk
Increment up to and no-more than:
4 Units for single markets
6 Units Closely Correlated Markets
10 Units Loosely Correlated Markets
12 Units Single direction - Long or Short
Stop-loss
Stop price for long: [Stock Price] - (2 * [20 days ATR])
Stop price for short: [Stock Price] + (2 * [20 days ATR])
Exit
Type 1: [10 days high/low]
Type 2: [20 days high/low]