FOREX QUANT

December 12, 2007

A Practical Note on Money Management

Filed under: Uncategorized — by TraderMade @ 4:03 pm
Tags: , ,

.

Early today I received a PM from one of my online buddy, asking about the money management we use in our trading. I agree that this topic is a very important aspect of trading.
We generally have 3 kinds of money management:

  1. Fix number of contract per trade. This is used for testing purpose, to provide a clear profile on the risk/reward ratio of a developed system.
  2. A fix gearing ratio. we mainly use this MM method for our live trading. We usually use a ratio of 10. For example, while trading a USD 20k account, we’ll trade the EURUSD with a 200k contract size. This might be translated as two standard lots in certain brokers, or 20 mini lots, or just a simple 200,000 unit when we trade with a non-lot broker like Oanda. When we trade an account with a system on two pairs, we would divide it equally between the pairs. In the example above, if we trade the system on a 20k account, and we’d like it trades on EURUSD, and EURGBP, and GBPUSD, and EURCHF, then we’ll trade them by 5 mini lots each. Sometimes we’ll use a bigger gearing ratio, but 20 is the maximum we could go. This will depends on the backtest result, particularly the maximum Drawdown, which we prefer to be no more than 30%.
  3. A certain %-age risk per trade. We have this kind of MM on several of our well-developed long term trend following systems. First, the stop losses are calculated based on some volatility measurement. Then the lot size is calculated based on this. Each trade would be assigned a maximum of 2% to 5% risk on the capital. When we trade several instrument on the same account, we would also divide the lot size equally between them.

There are many sources regarding this matter. Using an “Optimal F” should be interesting to be tested, as proposed by several authors. But to this date, none of our systems use this kind of MM. It’s a very interesting one, tho.

I hope this is clear. please spark more question if there’s anything else I could answer, or you might have some suggestions for me. Thanks in advance.
Meanwhile, I’ll have a cup of coffee.

(*)

June 14, 2007

Fwd: Preventing over-leveraging (Was: IBFX problems)

Filed under: Uncategorized — by TraderMade @ 1:25 am
Tags: , , , , ,

———- Forwarded message ———-
From: Darma
Date: Jun 14, 2007 8:26 AM
Subject: Preventing over-leveraging (Was: IBFX problems)
To: MetaTrader_Experts_and_Indicators@yahoogroups.com
Cc: indotraders@yahoogroups.com

Regarding preventing over leveraging the account, i have these lines on my EAs :

// Money Management
if (prm_mm_enabled) {
volume = NormalizeDouble((AccountBalance()*prm_gearing_ratio)
/(prm_pair_diversify*MarketInfo(Symbol(),MODE_LOTSIZE)),
prm_lot_resolution);
} else {
volume = prm_mm_fixed_volume;
}
if (volume > MarketInfo(Symbol(), MODE_MAXLOT)) {
volume = MarketInfo(Symbol(), MODE_MAXLOT);
} else if (volume < MarketInfo(Symbol(), MODE_MINLOT)) {
volume = MarketInfo(Symbol(), MODE_MINLOT);
}

i use prm_gearing_ratio = 5 to 6. 10 is the most agressive number for me.
prm_pair_diversify needs to be input externally by me since i havent found a way for the EA to detect by itself how many pairs it is trading in a single account at a particular moment.
Does anyone has any idea on this?

Rgrds,
Darma

On 6/13/07, accrete <yahoogrp01@accrete.com > wrote:

I agree on not overleveraging the account. I know that (as mentioned and hoped for by another member) the idea Bluto stated he would incorporate in a future version is that of telling the EA just how much of the account it was allowed to trade. This would add a measure of safety also.

: ) Thom

—– Original Message —–
From: Sam

One thing to avoid is overleverage. I believe it’s best to leverage only around 10-20% of the account. Usually when we overleverage we want to be stringing on SL thereby prone to SL hunting as well as margin call danger. Forex is full of suprises. The goal is to be able to survive long term.

__._,_.___

For archives of Experts and Indicators from the MetaTrader Experts and Indicators Group
See http://www.forexmt4.com/ or http://www.lightpatch.com/forex

(*)

Blog at WordPress.com.