Strasmore Research
Learn Matt ConnorBy Matt Connor · data as of August 27, 2026 · refreshed weekly

Futures Block Trades and CME Minimums

A futures block trade is privately negotiated away from the order book. How CME Rule 526 minimums work, and why your chart never showed the trade.

A futures block trade is a privately negotiated transaction in a futures or options-on-futures contract, executed away from the central limit order book and reported to the exchange afterward. On CME Group markets it is governed by Rule 526, and it is permitted only in designated products, only at or above a product-specific minimum quantity, and only between eligible parties. It then clears like any other trade and counts toward the day's volume, without ever touching a resting order on the screen.

The central limit order book is the public queue of bids and offers that a screen trader joins and trades against. A block sits outside that queue for its whole life. The equity-market version of the idea runs on a different set of tests, and it is already covered here: start with what a block trade is and how block trades print on the tape for the 10,000-share and notional conventions. What follows is the futures half.

The five conditions a futures block trade has to clear

Rule 526 is a gate with several latches, and all of them have to be open at the same time.

  1. The contract is block eligible. The exchange designates which products may trade as blocks. Many listed contracts are not on that list at all, and no amount of size makes one eligible.
  2. The quantity is at or above the minimum. Each eligible contract carries its own threshold, counted in contracts. A trade one lot under the line does not qualify at all.
  3. Both sides are eligible parties. Participation is restricted to Eligible Contract Participants as defined in the Commodity Exchange Act.
  4. The price is fair and reasonable. The rule sets a standard rather than a formula, described below.
  5. The report reaches the exchange inside the window. The clock starts at execution, and the permitted lag is set per product.

Miss any one of the five and the transaction does not qualify as a block. It becomes an off-exchange trade the exchange will not accept, which is a rule violation rather than a paperwork problem.

CME block trade minimums are per product, and they get revised

There is no single CME block minimum. Thresholds are set contract by contract, and a heavily traded index future and a thinly traded agricultural contract will not carry the same number. Within one contract the number can vary again by transaction type, an outright versus a spread or a strategy, and by the time of execution.

That last point is the one most summaries drop. A contract can require a larger block during the busiest hours, when the order book is deep enough to absorb size, and a smaller one overnight when it is thin.

Anyone quoting a specific figure owes you a date and a source, and so does this page. The canonical list of block-eligible products and their minimum quantities is published by the exchange on its CME block trades page. As of August 2026 that page is where the current table lives, and it is the version to read on the day you need it.

These numbers are revised, and not rarely. On February 23, 2026, CME notice 26-044 took effect and decreased the block trade minimum threshold on the Adjusted Interest Rate S&P 500 Total Return futures in both their EFFR and SOFR versions, along with the Adjusted Interest Rate Nasdaq-100 Total Return (EFFR) and Adjusted Interest Rate Dow Jones Industrial Average Total Return (EFFR) contracts. A threshold memorized in January was stale by the end of February. Treat any number in an article, this one included, as a pointer to the table rather than a substitute for it.

Who is allowed to be on either side

Blocks are restricted to Eligible Contract Participants, a category the Commodity Exchange Act defines rather than the exchange. It covers regulated institutions such as banks and broker-dealers, funds and corporates above stated asset tests, commodity pools, and individuals who meet a wealth test: broadly, more than $10 million invested on a discretionary basis, or more than $5 million where the transaction manages a risk the person already holds.

The rule also requires that each side reach its own decision independently and hold a genuine business purpose for the trade. That closes the door on arranging both sides of a block to shuffle a position between related accounts.

What "fair and reasonable" actually requires

The price of a block is negotiated, and the rule does not require it to sit inside the screen's bid and offer at that instant. What it requires is a price that is fair and reasonable in light of the size of the transaction, the prices and sizes of other transactions in the same contract at the relevant time, the prices and sizes of transactions in other relevant markets, and the circumstances of the markets.

Read those four factors together and the standard is contextual. A large block printing a few ticks outside the screen quote can be entirely proper for its size, while a small step away from a deep, tight market at a quiet moment can fail the test. The exchange reviews block prices after the fact, using the same tape everyone else can see.

The reporting window, and the clock it runs on

A block is reported to the exchange within a set number of minutes of execution. That permitted lag is defined per product group in CME's Rule 526 advisory notice rather than by one number across the whole exchange.

The window also depends on when the trade was struck, and the rule uses named session bands to say so. For Interest Rate and Equity products, as of August 2026, the advisory splits the day in Central Time this way:

  • ETH, midnight to 7:00 a.m., Monday through Friday on business days.
  • RTH, 7:00 a.m. to 4:00 p.m.
  • ATH, 4:00 p.m. to midnight on weekdays, and the whole of the weekend.

When CME's Global Command Center is closed, over a weekend for instance, the block has to be reported no later than five minutes before the next electronic trading session in that product opens.

What a retail futures trader actually sees of all this

At the moment it happens, nothing. That is the part worth internalizing.

A block does not consume resting bids or offers. It fills no one's limit order. It triggers no stop. It prints no candle while it is being negotiated. The screen in front of you is a complete record of what traded on the book and a partial record of what traded in the contract.

Where it does show up is the day's totals. Blocks clear through the same clearing house as screen trades and appear in the contract's reported volume and in open interest, the count of contracts still held. A session can close with volume above what the intraday tape appeared to support, and the arithmetic is still right. Part of the day happened elsewhere.

Futures markets publish no daily split showing how much of a contract's volume was negotiated away from the book. The closest measurable version of the same idea sits in equities, where FINRA publishes the share of volume reported away from the exchanges each session. Different rulebook, same arithmetic: shares that change hands without touching an exchange order book still land in the day's reported total.

QueryShare of AAPL volume reported away from the exchanges, last 60 calendar days
32 rows (showing 20)
datepct_away_from_exchanges
2026-06-3041.8
2026-07-0143.9
2026-07-0241.9
2026-07-0639.3
2026-07-0843.7
2026-07-0934.4
2026-07-1040.5
2026-07-1439.5
2026-07-1544.9
2026-07-1647.5
2026-07-2043.1
2026-07-2140.7
2026-07-2237.1
2026-07-2450.7
2026-07-2744
2026-07-2846.2
2026-07-3032.9
2026-07-3138.6
2026-08-0345.6
2026-08-0443.5
The exact SQL behind every number
WITH off_book AS
(
    SELECT date,
           max(total_volume) AS off_book_shares
    FROM global_markets.stocks_short_volume
    WHERE ticker = 'AAPL'
      AND date >= today() - INTERVAL 60 DAY
    GROUP BY date
),
all_reported AS
(
    SELECT toDate(window_start, 'America/New_York') AS date,
           sum(volume) AS reported_shares
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'AAPL'
      AND window_start >= now() - INTERVAL 61 DAY
    GROUP BY date
)
SELECT off_book.date AS date,
       round(off_book.off_book_shares / all_reported.reported_shares * 100, 1) AS pct_away_from_exchanges
FROM off_book
INNER JOIN all_reported ON all_reported.date = off_book.date
ORDER BY off_book.date
Run this yourself

Across the 32 sessions in the window above, the most recent reading is 34.5% on 2026-08-26. Equity rules and futures rules differ in almost every particular, and the equity conventions live in the two posts linked near the top. What carries across is the accounting: a reported volume total and the activity visible on a chart are two different measurements.

One habit helps here: check that you are comparing the same contract at all, since volume is reported per expiry and a jump can simply be the front month rolling. Our guide to reading a futures symbol covers the month and year codes that tell you which contract a number belongs to. However a position was struck, on the screen or as a block, it carries the same performance bond at the clearing house, which is the subject of how futures margin works.

FAQ

What is the minimum size for a CME block trade?

There is no single minimum. Each block-eligible contract has its own threshold in contracts, and it can differ within one contract by transaction type and by time of execution. The exchange publishes the current table on its block trades page, and the figures are revised periodically, as notice 26-044 did on February 23, 2026.

Yes. They are an exchange-sanctioned trade type under CME Rule 526, subject to the eligible-product, minimum-size, eligible-party, fair-price and reporting conditions above. A privately negotiated futures trade that misses any of those conditions does not qualify as a block.

Do block trades move the futures price?

A block never interacts with the central limit order book. It fills no resting order and moves no quote at the moment it is agreed. It is reported afterward and counts toward the contract's volume and open interest.

Can a retail trader execute a block trade?

Not in an ordinary retail account. Both sides must be Eligible Contract Participants under the Commodity Exchange Act, which sets asset and wealth tests well above a typical individual trading account.

Why was volume higher than what I saw trade on the chart?

Reported volume for a futures contract includes blocks and other privately negotiated trade types that were never on the screen. A chart built from order-book activity will run below the exchange's reported total on days when large negotiated trades cleared.


Every load-bearing rule claim here comes from exchange rule text, and the thresholds in particular are worth re-reading at the source before you lean on one. To explore how a contract's volume and open interest behave across a session, ask the question in plain English on the Strasmore terminal.