Trading Strategy TypesCryptoFuturesStocksOptions

Market Making Strategy: Getting Paid to Provide Liquidity

Market making is a service business: you quote both sides and are paid for immediacy. The difficulty is not quoting, it is surviving the people who hit your quotes.

6 min readAdvancedUpdated September 16, 2026

At a glance

Revenue
The bid-ask spread plus maker rebates
Cost
Adverse selection and inventory risk
Win rate
Very high per trade, small per-trade profit
Professional form
Automated, colocated, microsecond cancellation
Retail form
Passive limit orders in less contested venues

Key takeaways

  • A market maker profits by buying at the bid and selling at the ask repeatedly, never by predicting direction.
  • Adverse selection is the core cost: your quote is most likely to be hit when the person hitting it knows something.
  • Inventory risk means an unbalanced book leaves you directionally exposed, which is why quotes are skewed to encourage rebalancing trades.
  • Maker rebates and fee tiers can be the entire margin, which makes venue selection a strategic decision.
  • Retail versions must accept slower quoting and therefore must select venues and instruments where the informed flow is thinner.

The business model in plain terms

A market maker posts a bid and an ask simultaneously. If someone sells to the bid at 99.98 and someone else buys from the ask at 100.02, the maker has bought and sold the same instrument at a 4 cent difference, netting the spread. Repeat thousands of times per day and the accumulated spread is the revenue line.

The service being sold is immediacy. Buyers and sellers rarely arrive at the same instant, so someone must hold inventory in between. Market makers accept that inventory and the risk attached to it, and the spread is their compensation. In this sense the strategy is not speculation at all; it is a warehousing business with price risk.

Adverse selection, the central problem

Suppose you quote 99.98 bid and 100.02 ask. A large seller arrives and hits your bid repeatedly. You now own inventory at 99.98, and the reason you own it is that someone wanted to sell urgently. If they were selling because of information, the price will continue lower and your inventory loses more than the spread you earned.

  • Widen quotes when uncertainty rises. Around news releases, earnings, and economic data, the proportion of informed flow rises sharply. Professional systems widen dramatically or withdraw entirely.
  • Skew quotes based on inventory. If you are long, lower both quotes so you are more likely to sell than to buy. The skew is a price you pay to rebalance.
  • Cancel fast. The ability to pull quotes in microseconds when the order book shifts is the primary technological advantage of professional firms and the reason retail cannot compete in contested venues.
  • Size quotes by confidence. Small size in uncertain conditions, larger size in calm ones.
  • Track flow toxicity. Measure how often your fills are followed by adverse moves. Rising toxicity means you are being picked off and should widen or stop.

A simplified quoting model

reservation_price = mid - (inventory * risk_aversion * volatility^2 * time_left)

half_spread = (risk_aversion * volatility^2 * time_left) / 2
              + (1 / risk_aversion) * ln(1 + risk_aversion / order_arrival_rate)

bid = reservation_price - half_spread
ask = reservation_price + half_spread

Interpretation:
  - Long inventory pushes the reservation price down, so both quotes
    fall and you are more likely to sell than to buy.
  - Higher volatility widens the spread and increases the inventory skew.
  - Faster order arrival allows tighter quotes, because you can
    rebalance more quickly.
The structure behind most quoting models, in the spirit of Avellaneda-Stoikov inventory control.

The formula matters less than the two forces it encodes: inventory must be mean-reverting toward zero, and the spread must widen when the risk of holding inventory rises. Any working market-making system, however simple, must express both.

What a realistic retail version looks like

You cannot outrun automated systems in major venues. The accessible versions relocate the competition to places where speed matters less.

ApproachWhy it can workWhat it requires
Passive entries in a swing strategyYou collect the spread instead of paying it on trades you would take anywayPatience and acceptance of missed fills
Quoting in less contested crypto pairsFewer professional participants, meaningful maker rebatesAPI automation, venue risk tolerance
Options market making in illiquid strikesWide spreads, less automationVolatility modelling and hedging discipline
Providing liquidity at scheduled flow eventsPredictable non-informed flow such as index rebalancesPreparation and capital, not speed
Automated market maker liquidity provisionFee income from on-chain swap volumeUnderstanding impermanent loss, which is a real and often dominant cost

Risk controls that are not optional

  1. Maximum inventory, in both directions, beyond which you quote one side only.
  2. A hard loss limit per session that halts quoting entirely, enforced by code rather than judgement.
  3. A volatility circuit breaker: stop quoting when realised volatility exceeds a threshold or when the spread in the book widens abnormally.
  4. An event calendar filter: no quoting in the minutes around scheduled releases.
  5. A stale-data killswitch: if the market data feed lags or disconnects, cancel all orders immediately. Quoting on stale prices is how automated systems lose large amounts quickly.
  6. Position reconciliation: compare your recorded inventory with the venue’s record continuously. A desynchronised position is an unmonitored directional bet.

Frequently asked questions

Can an individual make money market making?

In contested venues, no: the competition is automated and colocated. In less contested places, such as smaller crypto pairs or illiquid options, it is possible with automation, careful risk limits, and tolerance for venue risk. The more realistic application for most traders is passive execution, using limit orders to collect rather than pay the spread on trades they were already going to make.

What is inventory risk?

The directional exposure created when your buys and sells do not balance. If flow is one-sided you accumulate a position, and a move against that position can exceed many days of spread income. Managing it means skewing quotes, capping inventory, and sometimes hedging with a correlated instrument.

What are maker rebates and why do they matter?

Many venues pay a small rebate for orders that add liquidity and charge a fee for orders that remove it. For a strategy earning a fraction of a tick per trade, the difference between paying a taker fee and receiving a maker rebate can be the entire profit margin, which makes venue and order type selection a strategic decision.

How is market making different from scalping?

Market making quotes both sides continuously and is fundamentally indifferent to direction, profiting from the spread. Scalping usually takes directional positions for very short periods. Passive scalping that only enters with limit orders sits somewhere between the two.

What is impermanent loss in automated market makers?

When you provide liquidity to an on-chain pool, the pool automatically sells the appreciating asset and buys the depreciating one. If prices diverge from when you deposited, the pool value is lower than simply holding the two assets, and that difference is impermanent loss. It frequently exceeds fee income, so the fee yield alone is not the return.

Test this idea before you trade it

Describe the rules in plain language and AlgoTrader AI turns them into a structured strategy blueprint with a configurable historical backtest, cost assumptions, and exportable code.

Build a backtest

Keep reading

Referenced by

Educational use only. This guide explains how a strategy works. It is not investment advice, not a recommendation, and no result described here is a forecast. Test any approach on historical and out-of-sample data, size positions conservatively, and never risk money you cannot afford to lose.