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
- 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 |
text | 32 distinct values (04:00, 04:30, 05:00…) | |
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.
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(
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