Where SPY volume lands inside the day, 30 minute buckets, October 2024
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-08, from When Did the US Stock Market Start? 1792.
| et_time | million_shares | share_of_volume_pct |
|---|---|---|
| 04:00 | 0.6 | 0.06 |
| 04:30 | 0.2 | 0.03 |
| 05:00 | 0.3 | 0.04 |
| 05:30 | 0.3 | 0.03 |
| 06:00 | 0.4 | 0.05 |
| 06:30 | 0.6 | 0.07 |
| 07:00 | 3 | 0.32 |
| 07:30 | 1.7 | 0.18 |
| 08:00 | 3.5 | 0.38 |
| 08:30 | 6.3 | 0.67 |
| 09:00 | 5.1 | 0.55 |
| 09:30 | 94.8 | 10.1 |
| 10:00 | 75 | 8 |
| 10:30 | 63.2 | 6.73 |
| 11:00 | 62 | 6.6 |
| 11:30 | 45.7 | 4.88 |
| 12:00 | 33.1 | 3.53 |
| 12:30 | 38.3 | 4.08 |
| 13:00 | 39.9 | 4.25 |
| 13:30 | 40.4 | 4.3 |
| 14:00 | 44.9 | 4.78 |
| 14:30 | 45.6 | 4.86 |
| 15:00 | 51.4 | 5.48 |
| 15:30 | 164 | 17.48 |
| 16:00 | 99.1 | 10.56 |
| 16:30 | 9.2 | 0.98 |
| 17:00 | 4.4 | 0.47 |
| 17:30 | 2.3 | 0.24 |
| 18:00 | 1.2 | 0.13 |
| 18:30 | 0.6 | 0.06 |
| 19:00 | 0.4 | 0.05 |
| 19:30 | 0.7 | 0.08 |
- Rows × columns
- 32 × 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 |
|---|---|---|---|
et_time |
date | 04:00 to 19:30 | |
million_shares |
number | 0.2 to 164 | count |
share_of_volume_pct |
number | 0.03 to 17.48 | percent |
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
formatDateTime(
toStartOfInterval(toTimeZone(window_start, 'America/New_York'), INTERVAL 30 MINUTE),
'%H:%i'
) AS et_time,
round(toFloat64(sum(volume)) / 1e6, 1) AS million_shares,
round(100 * toFloat64(sum(volume)) / toFloat64((
SELECT sum(volume)
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
AND window_start >= '2024-10-01'
AND window_start < '2024-11-01'
)), 2) AS share_of_volume_pct
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
AND window_start >= '2024-10-01'
AND window_start < '2024-11-01'
GROUP BY et_time
ORDER BY et_time
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 analysisWhen Did the US Stock Market Start? 1792
Trading sessions by day of the week, calendar year 2019
series 7×3
→
Weekdays with no US equity session, 2014 through 2023
ranking 10×2
→
The single busiest clock minute of the month, October 2024
ranking 5×3
→
Regular dividends: ex-date before the record date, or on it
series 43×5
→
GME daily close and volume: December 1, 2020 to January 27, 2021 (as-traded prices)
series 39×4
→
10-year and 3-month Treasury yields through the crash, daily closes
series 31×3
→
See all 2,170 queries →