SPY volume on monthly expiration Fridays against the month's other sessions
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-09-20, from SpaceX Lockup Expiration Date: How to Find It.
| month | expiry_friday_volume | other_session_volume |
|---|---|---|
| 2025-08 | 58.8 | 59.7 |
| 2025-09 | 80.7 | 65 |
| 2025-10 | 80.6 | 66.9 |
| 2025-11 | 109.2 | 74.1 |
| 2025-12 | 84.8 | 61.8 |
| 2026-01 | 67.1 | 69.9 |
| 2026-02 | 88.8 | 74.3 |
| 2026-03 | 131.2 | 83.7 |
| 2026-04 | 59.7 | 46.9 |
| 2026-05 | 48.4 | 38.3 |
| 2026-07 | 51.5 | 39.2 |
- Rows × columns
- 11 × 3
- 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 |
|---|---|---|---|
month |
text | 11 distinct values (2025-08, 2025-09, 2025-10…) | |
expiry_friday_volume |
number | 48.4 to 131.2 | count |
other_session_volume |
number | 38.3 to 83.7 | count |
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
formatDateTime(d, '%Y-%m') AS month,
round(avgIf(session_volume_millions, is_expiry_friday = 1), 1) AS expiry_friday_volume,
round(avgIf(session_volume_millions, is_expiry_friday = 0), 1) AS other_session_volume
FROM
(
SELECT
toDate(toTimeZone(window_start, 'America/New_York')) AS d,
sum(volume) / 1e6 AS session_volume_millions,
max(if(toDayOfWeek(toDate(toTimeZone(window_start, 'America/New_York'))) = 5
AND toDayOfMonth(toDate(toTimeZone(window_start, 'America/New_York'))) BETWEEN 15 AND 21,
1, 0)) AS is_expiry_friday
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
AND window_start >= '2025-08-01'
AND window_start < '2026-08-01'
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) >= 570
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) < 960
GROUP BY d
)
GROUP BY month
HAVING countIf(is_expiry_friday = 1) > 0
AND countIf(is_expiry_friday = 0) > 0
ORDER BY month