Design Your Own Forex System: Money Management
Posted in Forex Systems, Top Currency Secrets on July 28th, 2005
On the home stretch of this series we will explore money management today. This is by no means the LEAST important of the series - in fact it’s up there as being one of *the* most important.
So what is money management?
Money management answers the question: “How much?“. This not only applies to the quantity of contracts you wish to trade, but also at the ending stats.
First we will begin by looking at how much we are willing to trade.
Okay, as I mentioned before it’s easy to make a system look better or worse than it actually is by modifying your position sizing. The reason why we use a fixed quantity in our initial tests is that we do not want to weight any trade with more contracts than another. If we apply a percentage based position size (whether it be a percentage of capital or a percentage of risk capital) we will be skewing the results in favor to how the system performs at the end of the sample.
So, to ensure that we objectively see how our system is faring in the initial phase of our testing we use equal position sizing.
The important thing now, once we have found our system, is to test our system according to the actual position sizing rules we wish to use with our system: in the case of the systems I implement I prefer to use Maximum Risk Pct.
This style of position sizing ensures that I never lose any more than whatever percentage I am willing to lose. If I am designing an intraday forex system I am generally not willing to risk any more than 1% of capital per trade, if I am designing and end of day forex system I don’t mind expanding this risk to 5% of capital per trade (end of day systems will generally have wider stops, therefore you may want to consider risking more just to make the position worth it).
First thing we need to do is change our code so that it now can accept risk percentage type position sizes, here’s the new code: CLICK HERE
So let’s see what Simulation results we get:
2% Maximum Risk Pct produces…
Starting Capital = $10,000
Ending Capital = $11,547
# Trades = 5 (68 neglected or 93.2%)
Strike Rate = 80%
Avg Profit = $1,549.10
Avg Loss = -$2.10
Avg P/L Ratio = 737.67
Drawdown = -4.35%
Recovery Factor = 3.21
Why should we ignore this data straight away?
Two reasons:
- It ignores more than 90% of trades; and
- It has less than 50 trades
Obviously we don’t have enough capital to enter into the trades, therefore we have two options available to us:
- We can increase our risk percentage; or
- We can increase our capital
Depending upon what you have you can either test both of the above changes or only one of them. I will assume that you can only increase you risk percentage, here are the next set of results when we do this…
3% Maximum Risk Pct…
Starting Capital = $10,000
Ending Capital = $16,020.70
# Trades = 27 (46 neglected or 63%)
Strike Rate = 48.15%
Avg Profit = $648.50
Avg Loss = -$172.13
Avg P/L Ratio = 3.77
Drawdown = -14.76%
Recovery Factor = 2.93
Still not good enough. Onward.
5% Maximum Risk Pct…
Starting Capital = $10,000
Ending Capital = $28,896.19
# Trades = 65 (8 neglected or 10.96%)
Strike Rate = 44.62%
Avg Profit = $1,096.40
Avg Loss = -$358.32
Avg P/L Ratio = 3.06
Drawdown = -28.07%
Recovery Factor = 2.61
Much better, but now we are still neglecting 10% of trades.
What if we just went one more percent?
6% Maximum Risk Pct…
Starting Capital = $10,000
Ending Capital = $34,583
# Trades = 70 (3 neglected or 4.3%)
Strike Rate = 47.14%
Avg Profit = $1,329.65
Avg Loss = -$521.49
Avg P/L Ratio = 2.55
Drawdown = -33.48%
Recovery Factor = 2.41
Done.
Now that we’ve satisfied our quantity of trades do we satisfy our own risk tolerance (this is the second how much to our money management)?
First thing I do is check the drawdown figure: -33.48%
This is a tad too high for me… I prefer systems that have drawdowns no greater than 25%… at the most 30%.
But if it were acceptable the next set of how much statistics I would look at would be the profit made.
Is the profit that was made enough to meet whatever need I am looking for in the forex market? If I’m looking to have this as a retirement fund can I retire with these returns? If I’m looking for *any* form of additional income is this sufficient?
Only you can answer these questions.
So is it a case of back to the drawing board?
No, not at all.
All we would need do is go back to our tweaking and add/modify our entry/exit conditions until we end up finding the right match.
This may have seemed like a lengthy process, but once you start doing more of the process you will begin to see what can be modified to improve results (etc).
With our next post we will wrap up the process as well provide some tips for those who wish to trade reversal type systems.