All articles

Equity Drawdown vs Balance Drawdown: What MT4/MT5 Traders Miss

· 5 min read
DrawdownRisk ManagementEquity CurveMT4MT5Portfolio Engineering

TL;DR. Balance drawdown only updates when a trade closes. Equity drawdown updates while trades are open and includes floating P&L. If you size positions from balance DD, you are sizing off a delayed, smoothed version of your real risk.

Two equity curves from the same trade sequence on a dark chart — a smooth teal 'Balance' line stepping upward, and an amber 'Equity' line following the same overall path but dipping sharply between trades. Both end at the same point.

The two definitions

Balance drawdown is the peak-to-trough decline of your closed-trade equity. It only moves when a position is closed.

Equity drawdown is the peak-to-trough decline of your real-time equity, including floating P&L on open positions. It moves continuously while trades are open.

Both are measured against a running high-water mark — the highest value the curve has reached so far. Not the session start, not the trade entry, and it does not reset after a drawdown. Once the curve makes a new high, the high-water mark advances.

Balance vs Equity vs In-Trade DD

PortQuant tracks three drawdown metrics per account. They answer different questions:

MetricWhat it tracksUpdates onUse for
Balance DDClosed-trade equity vs HWMTrade closeRealised performance reporting
Equity DDLive equity (closed + floating) vs HWMEvery M1 candle during open tradesPosition sizing, breach monitoring
In-Trade DDWorst floating loss within a single tradePer tradeStop placement, MAE analysis

A single amber equity curve with three drawdowns annotated: a shallow teal shaded region labelled 'Balance DD — only between closed-trade peaks and troughs', a deeper red shaded region labelled 'Equity DD — peak to trough on the live curve', and a zoomed callout on a single-trade dip labelled 'In-Trade DD — worst floating loss within one trade'.

Balance DD is the most forgiving number. Equity DD is the one that correlates with account blow-ups, prop-firm breaches, and the emotional pressure that closes winners early.

Worked example

Long 1.00 lot EUR/USD at 1.1000 on a $10,000 account. The trade closes two hours later at 1.1020 — a +$200 winner.

A two-panel chart of a single EUR/USD trade. Top panel: price enters at 1.1000, dips to 1.0960 on an M1 candle, recovers and closes at 1.1020. Bottom panel: the Balance line in teal stays flat at $0 through the whole trade, then steps up to +$200 at close. The Equity line in amber dips to −$400 at the M1 worst, then recovers to +$200. A shaded region labels 'Equity DD ≈ 4% of $10k account'.

  • Balance curve: flat during the trade, then steps up by $200 at close.
  • Equity curve: during the trade, price dipped to 1.0960 on an M1 candle. At that minute, floating P&L was −$400 and equity was $400 below the prior HWM.

Balance DD for this trade: 0%. Equity DD for this trade: about 4%.

Same trade, same outcome, two very different risk numbers. Sizing the next position from balance DD ignores the −$400 excursion that actually happened.

Why most platforms show balance DD only

Balance DD is cheap to compute: one data point per closed deal. Historical equity DD is not, because MT4 and MT5 trade reports do not store intra-trade equity — only entry and exit.

To reconstruct an honest equity DD across closed trades, you need per-minute price data for every open position, then recompute floating P&L candle by candle. Live terminals approximate this with the current tick, but retrospective equity DD on closed trade history requires minute-level reconstruction.

How PortQuant computes equity drawdown

For every trade on a connected MT4 or MT5 account:

  1. The PortQuant Expert Advisor pulls M1 bars covering the full trade window.
  2. For each minute it computes the floating P&L and the minute's worst floating P&L:
floating_pnl = (price − entry_price) × volume × contract_size × tick_value
  1. Results are stored per-trade in a minute-level table (trade_minute_equity, TimescaleDB hypertable).
  2. The drawdown worker walks the full account timeline and derives three series against the peak equity high-water mark: Equity DD, Balance DD, In-Trade DD.

Two accuracy details that matter:

  • Starting equity is derived from non-trading deals only (deposits, credits, rebates) — never from early trading P&L. This avoids the common funding bug where the first trade's outcome distorts every later DD reading.
  • Realised close events include swap, commission, and fees, so the balance curve matches what the broker actually credited.

For the per-trade excursion view, see Maximum Adverse Excursion in Forex Trading. For forward-looking DD under resampled trade sequences, see Monte Carlo Simulation for Forex Risk Analysis.

Which metric for which decision

  • Position sizing and risk limits → equity DD. This is the real exposure to the market.
  • Performance reporting and realised returns → balance DD. This is what the broker settled.
  • Stop placement and per-trade analysis → in-trade DD. This is the heat each setup takes.

Most strategies look better on balance and worse on equity. The gap between the two is the information.

Frequently Asked Questions

Is equity drawdown the same as floating drawdown?

They describe the same underlying idea — drawdown that includes unrealised P&L — but "floating drawdown" usually refers to the unrealised component alone, while equity drawdown is the full balance + floating view against the high-water mark.

How do I see equity drawdown on MT4 or MT5?

Your terminal shows live equity and live drawdown against current equity, but not a historical equity drawdown series across closed trades. That requires per-minute reconstruction for every trade, which PortQuant performs automatically for connected accounts.

Why is my balance drawdown smaller than my equity drawdown?

Because balance drawdown only records the final outcome of closed trades, while equity drawdown captures the worst point reached while trades were still open. The gap is largest for strategies that hold through adverse excursions — grid, martingale, wide stops, and multi-leg positions.

What drawdown do prop firms measure?

Most prop firms enforce equity-based rules — daily loss and max loss are both computed on equity, not balance. Monitoring balance drawdown while a prop firm monitors equity drawdown is the most common cause of silent breaches.

Is equity drawdown useful for scalpers?

Yes. Scalpers often hold several correlated positions simultaneously. Balance drawdown stays flat while those positions are open; equity drawdown is the only view that shows the combined floating exposure at any given minute.

How is the high-water mark defined?

It is the highest value the equity curve has reached up to that point — not the session start, not the trade entry, and not rebased after drawdowns. Once equity makes a new high, the high-water mark advances; it never resets backwards.