STRASMORE/EXPLORE 2,469 QUERIES

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.

as of series 32×3read in context →
Where SPY volume lands inside the day, 30 minute buckets, October 2024 — 32 rows by 3 columns, computed from US exchange, SIP and OPRA data.
et_timemillion_sharesshare_of_volume_pct
04:000.60.06
04:300.20.03
05:000.30.04
05:300.30.03
06:000.40.05
06:300.60.07
07:0030.32
07:301.70.18
08:003.50.38
08:306.30.67
09:005.10.55
09:3094.810.1
10:00758
10:3063.26.73
11:00626.6
11:3045.74.88
12:0033.13.53
12:3038.34.08
13:0039.94.25
13:3040.44.3
14:0044.94.78
14:3045.64.86
15:0051.45.48
15:3016417.48
16:0099.110.56
16:309.20.98
17:004.40.47
17:302.30.24
18:001.20.13
18:300.60.06
19:000.40.05
19:300.70.08
Rows × columns
32 × 3
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Where SPY volume lands inside the day, 30 minute buckets, October 2024, derived from the stored result.
ColumnTypeRangeNotes
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
⌘/Ctrl + Enter
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 Listed stocks closing under $1, session by session, trailing five months series 103×3 Reverse splits executed per month, trailing twelve full months series 12×3 New symbols since June 2026: minutes between the 9:30 bell and the first print, ten heaviest first minutes series 10×4 See all 2,469 queries →