Every trade you open has a size, and that size is expressed in lots. It's easy to skim past lot size as a small technical detail once you've picked a direction and a Stop Loss — but lot size is actually the single lever that converts a price move into real profit or loss. The same correct call on direction can be a rounding error or an account-ending event depending only on how big a lot was behind it. Understanding what a lot represents, and the four common sizes brokers offer, is a prerequisite for Risk Management Basics actually working the way it's meant to.
What a Lot Actually Is
A lot is a standardized unit of the base currency in a currency pair. When you buy 1 Standard lot of EUR/USD, you are buying 100,000 units of EUR against USD — the "lot" is simply the trade size, quoted in a round number so brokers, platforms, and traders can all refer to the same thing without spelling out units every time. Historically, forex was traded almost exclusively in Standard lots because that's the size interbank desks dealt in; retail trading platforms later introduced smaller lot sizes specifically to make the market accessible to accounts far smaller than an institutional desk's.
Lot size is often thought of as "how big the trade is," which is true, but the more useful framing is that lot size is the direct multiplier on every pip of price movement. A 10-pip move is a 10-pip move regardless of lot size — what changes is how many dollars, euros, or whatever your account currency is, that 10-pip move is worth to your account. This is why lot size, not Stop Loss distance and not win rate, is the actual dial traders turn to control how much a single trade can cost them.
The Four Lot Sizes and Their Pip Values
Retail MetaTrader brokers typically offer four lot sizes, each ten times smaller than the one before it:
- Standard lot — 100,000 units of the base currency. On EUR/USD, each pip of movement is worth roughly $10.
- Mini lot — 10,000 units, one-tenth of a Standard lot. Each pip is worth roughly $1.
- Micro lot — 1,000 units, one-tenth of a Mini lot. Each pip is worth roughly $0.10.
- Nano lot — 100 units, one-tenth of a Micro lot. Each pip is worth roughly $0.01. Not every broker offers Nano lots; where they aren't available, Micro is usually the smallest tradable size.
These pip values are approximate and specific to pairs quoted directly in USD, like EUR/USD — cross pairs and pairs where USD is the base currency instead of the quote currency have slightly different pip values because the calculation runs through a different currency conversion. MetaTrader shows the exact pip value for the symbol and account currency you're trading directly in the order ticket, so there's no need to memorize the math — the important part is understanding that the four lot sizes exist on a clean 10x ladder, and moving from one rung to the next changes your dollar risk by a full order of magnitude for the identical price move.
Worked Example: Sizing a Lot to a Stop Loss
This is where lot size and Stop Loss distance meet, and it's the exact calculation taught in Risk Management Basics. Say you have a $1,000 account and you're willing to risk 1% of it, or $10, on a single trade. Your analysis puts the Stop Loss 20 pips away from entry.
Working backward: $10 of risk divided by 20 pips means each pip can be worth at most $0.50 without exceeding your risk budget. On EUR/USD, a Micro lot is worth $0.10 per pip, so 5 Micro lots ($0.50 per pip total) fits exactly. A Mini lot at $1 per pip would already risk $20 on the same 20-pip stop — double your intended risk — and a single Standard lot would risk $200, twenty times over budget. The Stop Loss distance didn't change in any of these scenarios; only the lot size did, and it alone was the difference between a controlled 1% risk and an account-threatening 20% risk on one trade.
This is precisely why the position-sizing method used throughout this site's EA lessons works backward from risk percentage and Stop Loss distance to a lot size, rather than picking a lot size first and hoping the resulting risk happens to be reasonable.
Why Brokers Offer Smaller Lot Sizes
Standard lots were the only option for a long time, which meant a meaningful move against a Standard-lot position could represent a large percentage of a small account's balance in a single trade. Mini, Micro, and Nano lots exist to solve exactly this problem: they let a trader with a $200 or $500 account still apply sensible, percentage-based risk management, rather than being forced into position sizes so large that a normal Stop Loss distance would risk 10% or more of the account on one trade. Smaller lot sizes are also what make demo-to-live transitions and gradual account growth practical — a trader can keep the same percentage risk per trade as their account grows from $500 to $50,000, simply scaling lot size up through the same 10x ladder rather than needing an entirely different approach to sizing at each stage.
The Lot-Size Mistake: Assuming "1 Lot" Means the Same Thing Everywhere
A "1 lot" position on EUR/USD is not the same size, in risk terms, as a "1 lot" position on gold, a stock index, or a cryptocurrency CFD, even though the platform uses the identical word for both. Contract sizes for non-forex instruments are set by the broker and vary: a 1-lot gold position might represent 100 troy ounces, and a 1-lot index CFD might represent a fixed number of index points per lot, both with dramatically different dollar-per-pip (or dollar-per-point) values than a forex lot. A trader who is used to sizing forex Micro lots and switches to trading gold or indices with the same lot-size habits, without checking the contract specification for that instrument first, can end up with a position many times larger — or smaller — than intended. Always check the "Contract Size" and "Tick Value" fields in the platform's symbol specification window before sizing a trade on an instrument you haven't traded before; the lot-size ladder described above is a forex-specific convention, not a universal one.
Lot Size Constraints and How EAs on This Site Handle Them
Every broker enforces a minimum lot size, a maximum lot size, and a lot step (the smallest increment a position size can be adjusted by — commonly 0.01). A risk-based calculation, like the worked example above, rarely produces a lot size that lands exactly on an allowed increment, so the raw number has to be rounded down to the nearest valid step before an order can be sent. Every Expert Advisor on this site that calculates position size from risk percentage — from the Trend-Following EA onward — performs this normalization automatically: the calculated lot size is checked against the broker's minimum, maximum, and step size (via MODE_MINLOT/MODE_MAXLOT/MODE_LOTSTEP in MQL4, or SYMBOL_VOLUME_MIN/SYMBOL_VOLUME_MAX/SYMBOL_VOLUME_STEP in MQL5) and rounded down to the nearest valid size before the trade is placed. This matters most for very small accounts, where a strict 1% risk calculation can round down to less than the broker's minimum lot — in that case the EA's UseFixedLot input exists specifically as a manual override, letting a trader trade the broker's minimum size deliberately rather than have the EA silently skip trades it can't size correctly.