GridMaster EA Setup: Settings by Account Size

Table of Contents

GridMaster EA Setup Guide

Grid trading opens multiple positions as price moves, so every input below changes how much of the account is exposed at once. Read the drawdown arithmetic further down before copying any numbers into the EA. If you haven’t read our grid trading strategy guide yet, it explains the concepts these settings implement.

GridMaster EA grid pattern illustration showing pending buy and sell orders around current price
Illustrative grid layout: pending orders sit at regular intervals above and below the current price (illustrative only — not actual trading results)

Critical: Capital Requirements

Minimum recommendations by ladder depth:

Grid LevelsMin AccountRecommended
3 levels$200$300
5 levels$300$500
7 levels$500$1,000
10 levels$1,000$2,000

The $200 floor matches the practical minimum in our funding guide: below it, computed lot size falls under the 0.01 minimum for any EA, grid or otherwise.

Baseline Settings

GridSizePips = 20
GridLevels = 5
TakeProfitPips = 20
StartLotSize = 0.01
LotMultiplier = 1.0     (flat lot size across every level)
MaxOpenPositions = 10
MaxTotalLots = 0.5
MaxDrawdownPercent = 20
EquityProtectionPercent = 70
CloseOnFriday = true
FridayCloseHour = 20

Settings by Risk Profile

GridSizePips = 25
GridLevels = 3
LotMultiplier = 1.0
MaxDrawdownPercent = 15
MaxOpenPositions = 6

Moderate

GridSizePips = 20
GridLevels = 5
LotMultiplier = 1.0
MaxDrawdownPercent = 20
MaxOpenPositions = 10

Aggressive (Experienced Only)

GridSizePips = 15
GridLevels = 7
LotMultiplier = 1.2
MaxDrawdownPercent = 30
MaxOpenPositions = 14

In every preset, MaxOpenPositions is exactly double GridLevels (6=2×3, 10=2×5, 14=2×7) — not a coincidence. GridLevels sets ladder depth on one side of price; MaxOpenPositions caps both sides combined, not extra depth on one direction.

Best Pairs for Grid Trading

PairGrid SizeWhy
EUR/USD20 pipsTight spreads, ranges well
USD/CHF20 pipsMean-reverting, tight spreads
EUR/GBP15 pipsLow volatility range pair
AUD/NZD15 pipsTight historical range

Avoid: GBP/JPY and volatile exotics — extended trends are the failure mode below.

What a Grid Drawdown Actually Looks Like, With Numbers

Floating loss accumulating across grid levels as price moves further adverse
Combined floating loss across five filled grid levels as price continues one direction, Moderate preset, $500 account

Moderate preset — 5 levels, 20-pip spacing, 0.01 lots, LotMultiplier = 1.0 — worked on a $500 account, one direction only, no take-profit fills: the worst case, a sustained trend rather than a range.

A 0.01 lot on EUR/USD is worth roughly $0.10/pip (lot sizing math). Level 1 fills at 20 pips adverse, level 2 at 40, level 3 at 60, level 4 at 80, level 5 at 100 — each opening a fresh position. The first position opened has run longest and sits furthest underwater once the last level fills.

Price move from centerCombined floating loss% of $500
100 pips (5 of 5 filled)$20.004.0%
150 pips$45.009.0%
260 pips$100.0020.0% — MaxDrawdownPercent blocks new orders
360 pips$150.0030.0% — equity hits 70% of balance, EquityProtectionPercent closes everything

Once all 5 levels have filled (D ≥ 100 pips from center), combined floating loss in pips is 5D − 300 (each position sits D minus its own entry distance — 20, 40, 60, 80, or 100 — underwater). Multiply by $0.10/pip: at D = 260, 5(260) − 300 = 1,000 pips × $0.10 = $100.00, the 20% mark exactly.

The takeaway isn’t “equity protection saves you at 70%.” At these flat 0.01-lot settings it barely gets tested in a normal market — our own EUR/USD daily range data puts a typical day at 60-90 pips, so 360 pips adverse needs several straight days trending one way with no pullback: real, but uncommon. The 20% MaxDrawdownPercent gate (≈260 pips here) does the everyday work, blocking new orders while the five already open keep floating until price recovers or EquityProtectionPercent closes them.

Why LotMultiplier > 1.0 Is a Different Strategy

Conservative and Moderate both use LotMultiplier = 1.0 — floating loss grows in a straight line, exactly the table above. Aggressive changes that: LotMultiplier = 1.2 means each level is 1.2× the one before it. By level 7 that compounds to 1.2⁶ ≈ 2.99 — the deepest level carries roughly three times the size of level 1. At 1.3, level 7 is nearly five times the first (1.3⁶ ≈ 4.83).

That’s the mechanism worth naming: a lot multiplier makes your largest position the one opened furthest into an adverse move, exactly when the trade has already gone wrong the most — a smaller, slower version of the shape that makes martingale dangerous. Grid trading vs martingale covers why exponential position growth turns a bounded loss into an unbounded one. We do not recommend Aggressive, or any LotMultiplier above 1.0, to anyone who has not run arithmetic like the table above for their own balance and cannot state their worst-case exposure before enabling it.

When to Switch This EA Off

Grid trading bets on oscillation, not a committed direction. Some conditions make that bet worse than usual:

  • A strong, established trend. Higher highs (or lower lows) for several sessions with no pullback means every new level opens further into the move.
  • Pre-central-bank windows. The hour around an FOMC, ECB, or BOE decision routinely produces moves several multiples of a grid’s spacing, in seconds.
  • Thin holiday liquidity. Late December, early January, and major holidays widen spreads and thin the oscillation grid trading depends on, while making a stray large move more likely.
  • Correlated grids running concurrently. GridMaster on both EUR/USD and USD/CHF at once is not diversification — both tend to move against the dollar together, so one dollar trend can put both grids underwater at once.

Pre-flight checklist: check an economic calendar for both currencies over 48 hours; confirm no other grid EA runs on a correlated pair; confirm balance matches the capital table for the GridLevels chosen; confirm MaxDrawdownPercent and EquityProtectionPercent are enabled, not just set; know in dollars what those thresholds mean before attaching the EA, not after.

Risk-Control Features, Explained

  • MaxDrawdownPercent (20%): stops new grid orders once drawdown reaches this level; existing positions stay open.
  • EquityProtectionPercent (70%): force-closes every position if equity falls below 70% of starting balance — the mechanism above.
  • MaxTotalLots (0.5): caps combined lot size across every open order.
  • CloseOnFriday: closes all positions before the weekend, removing gap risk while the market is shut.

These limit how much a single configuration can lose; they do not make automated trading safe. Each is EA-side logic, not a broker-side stop — if your terminal disconnects, none is being evaluated until MetaTrader reconnects. A VPS keeps the EA present to enforce them.

Common Mistakes to Avoid

  • Grid spacing too tight for the pair’s typical volatility
  • Raising LotMultiplier above 1.0 without the arithmetic above for your own balance
  • Insufficient capital for the number of grid levels configured

Download GridMaster EA → | Register your XM account first →

Further Reading


Grid trading involves significant risk including large potential drawdowns. Past performance is not indicative of future results. Full disclaimer

Automate Your Trading with Free Expert Advisors

Our free EAs execute a defined rule set 24/5 with configurable risk limits. Automation removes the manual work, not the risk — test on demo first.

Automated trading carries real risk of loss — review the risks before running any EA.

Download Free EAs Open Free XM Account
Join Telegram for Daily Signals | Explore Our EAs

Frequently Asked Questions

Can GridMaster blow up an account?

Yes. If price trends strongly in one direction without a pullback, each grid level adds a new position further into the loss. Floating loss keeps growing until MaxDrawdownPercent stops new orders from opening or EquityProtectionPercent force-closes everything at 70% of starting balance. Both are late-stage brakes, not prevention. The mechanism that produces the loss is the grid design itself, not a malfunction, and it is why this guide exists.

What is the difference between the Conservative, Moderate, and Aggressive presets?

They differ in grid levels, spacing, and lot handling. Conservative uses 3 levels and a 15% drawdown cap, sized for smaller accounts. Moderate uses 5 levels with flat lot sizing across every level. Aggressive uses 7 levels, tighter 15-pip spacing, and a 1.2 LotMultiplier that grows position size at each level filled — a materially different risk shape, not simply more of the same settings.

What does EquityProtectionPercent = 70 actually do?

It force-closes every open position the instant account equity falls to 70% of the starting balance, a 30% drawdown. On the Moderate preset's flat 0.01 lots, our worked example shows it only fires after several hundred pips of one-directional movement — well past where the 20% MaxDrawdownPercent gate has already stopped new orders from opening. Treat it as a last-resort backstop, not the setting doing the everyday protective work.

Do I need a VPS to run GridMaster?

Effectively yes. MaxDrawdownPercent and EquityProtectionPercent are evaluated inside the EA, not by the broker — if MetaTrader disconnects mid-trend, both protections stop working at exactly the moment they matter most, because there is no broker-side stop backing them up. Grid trading also holds several open positions that need continuous monitoring. See our decision table in the VPS guide before you decide.

Can I run GridMaster on more than one pair at once?

You can, but each pair needs its own capital allocation from the table below — position-sizing math does not share across pairs — and pairs that move together should not run concurrently. EUR/USD and USD/CHF, for example, tend to move inversely to the US dollar together; running grids on both at once concentrates exposure to a single dollar trend rather than spreading it.

Disclaimer: The information provided on this website is for educational and informational purposes only. Nothing on this site constitutes financial advice, investment advice, trading advice, or any other sort of advice. You should not treat any of the website's content as such. SteadyPips does not recommend that any financial instrument should be bought, sold, or held by you. Do conduct your own due diligence and consult your financial advisor before making any investment decisions.

Past performance is not indicative of future results. Trading results shown on this website are hypothetical and do not guarantee future performance.

Affiliate Disclosure: This website contains affiliate links. If you sign up with a broker through our links, we may receive a commission at no additional cost to you. This helps us maintain this website and continue providing free trading tools and educational content.