Skip to main content
aifinhub
Market Microstructure Explainer

Slippage

Slippage = executed_price − reference_price (sign-adjusted for buy vs sell). The reference is usually the midpoint at the moment the order was sent, or the trigger price for a stop. Slippage decomposes into spread cost (crossing the touch), market impact (your order moves the price), and latency cost (the price moves while your order is in flight).

By Orbyd Editorial · AI Fin Hub Team

On This Page

Definition

Slippage

Slippage = executed_price − reference_price (sign-adjusted for buy vs sell). The reference is usually the midpoint at the moment the order was sent, or the trigger price for a stop. Slippage decomposes into spread cost (crossing the touch), market impact (your order moves the price), and latency cost (the price moves while your order is in flight).

Why it matters

For high-frequency and intraday strategies, slippage often exceeds nominal commission by an order of magnitude. Most retail backtests assume zero slippage and discover the truth in live deployment. Even institutional VWAP execution typically incurs 5-15bps of slippage on liquid names — far from free.

How it works

Model spread cost directly from the order book at decision time. Model market impact with a square-root law: impact (bps) ≈ k × sqrt(order_size / ADV). Model latency cost as a Gaussian shock with σ proportional to volatility-per-second × latency. Backtest with the sum. For real strategies, regress observed slippage against order size, volatility, and time-of-day to get an empirical model.

Example

10,000 shares of a mid-cap stock, ADV 1M, σ_daily 2%

Spread cost (1 cent on $50)

2 bps

Market impact (k=10, sqrt(0.01))

10 bps

Latency cost (50ms, σ_sec)

1 bps

Total slippage

13 bps

13bps round-trip on a 1% target means net edge of 87bps. Halve the order size and impact drops to 7bps — total slippage to 10bps. Order sizing matters more than venue selection at this scale.

Key Takeaways

1

Market impact dominates slippage for institutional sizes; spread cost dominates for retail.

2

Square-root impact law is the empirical baseline — linear-impact models overpenalize small orders, underpenalize large ones.

3

Latency cost is small for slow strategies, dominant for HFT.

Try These Tools

Run the numbers next

FAQ

Questions people ask next

The short answers readers usually want after the first pass.

Empirical regularity. Almenberg, Bouchaud, and others have documented impact scaling as sqrt(volume) across markets and decades. Theoretical justifications involve information arrival and limit-order replenishment, but the empirical evidence is the strongest argument.

Sources & References

Related Content

Keep the topic connected

Planning estimates only — not financial, tax, or investment advice.