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.
the exact SQL behind every number
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
Run your own version of this
The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.
More from this analysisHow to Read a Futures Symbol (ESZ6, CLF27)
Where long-dated option volume lands, by expiry month code
ranking 11×3
→
Delivery years live at the same time on one option calendar (SPY, July 2026)
ranking 3×4
→
KO quarterly dividend in cents and as a percent of the share price, 2016 to 2026
series 42×4
→
Trading sessions per year under FB and META
ranking 15×3
→
New listings landing on a symbol that already had history
ranking 11×3
→
When each symbol last printed a daily bar
ranking 6×3
→
See all 2,170 queries →