Volume around one quarterly expiry: SPY June 19 vs September 18, 2026
Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-08-09, from How to Read a Futures Symbol (ESZ6, CLF27).
| session_date | jun_19_expiry_millions | sep_18_expiry_millions |
|---|---|---|
| 2026-05-15 | 0 | 0.05 |
| 2026-05-18 | 0 | 0.04 |
| 2026-05-19 | 0 | 0.06 |
| 2026-05-20 | 0 | 0.02 |
| 2026-05-21 | 0 | 0.02 |
| 2026-05-22 | 0 | 0.04 |
| 2026-05-26 | 0 | 0.03 |
| 2026-05-27 | 0 | 0.04 |
| 2026-05-28 | 0 | 0.07 |
| 2026-05-29 | 0 | 0.04 |
| 2026-06-01 | 0 | 0.06 |
| 2026-06-02 | 0 | 0.04 |
| 2026-06-03 | 0 | 0.05 |
| 2026-06-04 | 0 | 0.02 |
| 2026-06-05 | 0 | 0.06 |
| 2026-06-08 | 0 | 0.03 |
| 2026-06-09 | 0 | 0.06 |
| 2026-06-10 | 0 | 0.04 |
| 2026-06-11 | 0 | 0.06 |
| 2026-06-12 | 0 | 0.04 |
| 2026-06-15 | 0 | 0.05 |
| 2026-06-16 | 0 | 0.48 |
| 2026-06-17 | 0 | 0.09 |
| 2026-06-18 | 0 | 0.05 |
| 2026-06-22 | 0 | 0.04 |
| 2026-06-23 | 0 | 0.04 |
| 2026-06-24 | 0 | 0.05 |
| 2026-06-25 | 0 | 0.06 |
| 2026-06-26 | 0 | 0.04 |
| 2026-06-29 | 0 | 0.06 |
| 2026-06-30 | 0 | 0.45 |
| 2026-07-01 | 0 | 0.09 |
| 2026-07-02 | 0 | 0.07 |
| 2026-07-06 | 0 | 0.04 |
| 2026-07-07 | 0 | 0.06 |
| 2026-07-08 | 0 | 0.13 |
| 2026-07-09 | 0 | 0.04 |
| 2026-07-10 | 0 | 0.05 |
- Rows × columns
- 38 × 3
- Period covered
- to
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
session_date |
date | 2026-05-15 to 2026-07-10 | |
jun_19_expiry_millions |
number | every row is 0 | |
sep_18_expiry_millions |
number | 0.02 to 0.48 |
Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
SELECT
toString(date) AS session_date,
round(toFloat64(sumIf(volume, expiration_date = '2026-06-19')) / 1e6, 2) AS jun_19_expiry_millions,
round(toFloat64(sumIf(volume, expiration_date = '2026-09-18')) / 1e6, 2) AS sep_18_expiry_millions
FROM global_markets.options_greeks
WHERE underlying_symbol = 'SPY'
AND date >= '2026-05-15'
AND date <= '2026-07-10'
AND volume > 0
AND iv_converged = 1
GROUP BY date
ORDER BY date
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.