SPY volume by half hour, premarket through after-hours (same session, ET clock)
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-22, from Stock Market Hours: Open 9:30, Close 4:00 ET.
| et_half_hour | shares_m |
|---|---|
| 04:00 | 0.08 |
| 04:30 | 0.01 |
| 05:00 | 0.01 |
| 05:30 | 0.02 |
| 06:00 | 0.01 |
| 06:30 | 0.01 |
| 07:00 | 0.04 |
| 07:30 | 0.02 |
| 08:00 | 0.08 |
| 08:30 | 1.02 |
| 09:00 | 0.32 |
| 09:30 | 3.95 |
| 10:00 | 2.15 |
| 10:30 | 2.28 |
| 11:00 | 1.63 |
| 11:30 | 1.92 |
| 12:00 | 1.19 |
| 12:30 | 2.03 |
| 13:00 | 1.42 |
| 13:30 | 1.14 |
| 14:00 | 1.67 |
| 14:30 | 1.39 |
| 15:00 | 2.43 |
| 15:30 | 7.79 |
| 16:00 | 6.08 |
| 16:30 | 0.13 |
| 17:00 | 0.04 |
| 17:30 | 0.01 |
| 18:00 | 0.04 |
| 18:30 | 0.02 |
| 19:00 | 0.02 |
| 19:30 | 0.02 |
- Rows × columns
- 32 × 2
- 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 |
|---|---|---|---|
et_half_hour |
text | 32 distinct values (04:00, 04:30, 05:00…) | |
shares_m |
number | 0.01 to 7.79 | 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.
the exact SQL behind every number
WITH
(
SELECT max(d)
FROM
(
SELECT
toDate(toTimeZone(window_start, 'America/New_York')) AS d,
countIf((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) AS rth_bars
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
AND window_start >= today() - 21
AND window_start < today() - 2
GROUP BY d
HAVING rth_bars = 390
)
) AS session_day
SELECT
formatDateTime(toStartOfInterval(toTimeZone(window_start, 'America/New_York'), INTERVAL 30 MINUTE), '%H:%i') AS et_half_hour,
round(sum(volume) / 1e6, 2) AS shares_m
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
AND toDate(toTimeZone(window_start, 'America/New_York')) = session_day
GROUP BY et_half_hour
ORDER BY et_half_hour
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 analysisStock Market Hours: Open 9:30, Close 4:00 ET
SPY volume by half hour on the early-close session, premarket through the shortened after-hours (ET clock)
ranking 21×2
→
Upcoming US stock market holidays and early closes, from the exchange calendar
series 12×6
→
Single-name vs. ETF options at the 4:00 p.m. bell: AAPL and SPY options trades around the close (same session)
series 2×6
→
Trading sessions over the trailing year, counted from the SPY tape
scalar 1×7
→
A full trading day on the SPY tape, split by session window (recent full-length session)
scalar 1×15
→
The most recent early-close session on the SPY tape, split by session window
scalar 1×13
→
See all 2,170 queries →