When opening a position you're taking a risk of losing money. The amount of risk you take is based on three factors: how well the EA chooses its' opening price, the maximum amount of draw-down and the position size (volume) in lots. Our money management (MM) modules manage volume.
The Linear lot size money manager will adjust the lot size based on the available balance or equity. If there's a minimum or maximum lot size the broker has set for the symbol you're trading, the lot size will be at least the minimum and not more than the maximum per order.
For Expert Advisors (EAs) created from 29 April 2024, the lot size will be calculated based on a percentage of your balance/ equity, using this to determine the position size equal to the required margin. For example, if 1% of your account equity is $100 and opening 1 Lot of EURUSD requires $3000 margin, your lot size would be calculated as $3000 / $100 = 0.03 lot. Similarly, if 1 BTCUSD Lot requires $36,000 margin, your lot size would be 0.00272 lot. However, if your broker's minimum lot size for a symbol is 0.01, the EA will open at that size, even if it consumes a higher percentage of your margin, such as 3.6%.
You can determine the lot size corresponding to each percentage by adding the EA to a Demo chart and watch the Experts tab, which will indicate the lot size for each percentage.
SettingsThe Fixed lot size money manager has a single setting for setting the amount of lots per trade. The amount of lots will most likely always be the same for each order, however if there's a minimum or maximum lot size the broker has set for the symbol you're trading, the lot size will be at least the minimum and not more than the maximum per order.
SettingsThe Martingale money manager will change the lot size by a configurable value after an order with a negative result. The lot size can multiply multiple times when multiple losses were taken in a row. This strategy is only useful for strategies with a high probability of winning a trade. Significant risk is taken when using this module. If there's a minimum or maximum lot size the broker has set for the symbol you're trading, the lot size will be at least the minimum and not more than the maximum per order.
SettingsThe fixed risk money manager will calculate the order's lot size based on the amount of money you want to risk per order. The money manager will only be able to do this if the Stop loss is known at the moment the order is opened. If the Stop loss is not known, it will fallback to the 'Fallback lot size' value.
SettingsThe Manual Sequence money manager will calculate the next order's lot size, based on a manual input sequence. For example, when the input sequence is '0.01, 0.01, 0.03' the first order's lot size will be 0.01, next order also 0.01 lot and the third order 0.03 lot. It's also possible to use the '+', '-', '*', '/' and '%' operators to give you more flexibility. For example, when entering the following manual sequence: '0.01, +0.01, *2', your first order will be 0.01 lot, your second order 0.02 (0.01 + 0.01) lot and your third order will be 0.04 lot (0.02 * 2). If the number of orders exceed the number of input parts, the last part will be repeated for each order. So in the above case, if your EA is allowed to open more than 3 orders, the fourth order will be 0.08, 0.16, etc. You can also choose to end your sequence with +0 to stop increasing the lot size.
SettingsNext: Export