STRASMORE/EXPLORE 2,469 QUERIES

Where SPY volume prints today, by ET clock hour (trailing month)

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 US Stocks 23/5 Trading: The December 2026 Plan.

as of ranking 16×4read in context →
Where SPY volume prints today, by ET clock hour (trailing month) — 16 rows by 4 columns, computed from US exchange, SIP and OPRA data.
et_hourvolume_millionsshare_pctminute_bars
04:001.90.27926
05:000.70.09826
06:000.80.11845
07:003.70.521083
08:008.31.151127
09:0076.510.661140
10:0094.113.111140
11:0076.510.661140
12:0056.97.921140
13:0047.96.671140
14:0079.311.051140
15:0018025.071140
16:0083.111.571122
17:005.80.81868
18:001.70.24856
19:000.70.1807
Rows × columns
16 × 4
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 prints today, by ET clock hour (trailing month), derived from the stored result.
ColumnTypeRangeNotes
et_hour text 16 distinct values (04:00, 05:00, 06:00…)
volume_millions number 0.7 to 180 count
share_pct number 0.09 to 25.07 percent
minute_bars number 807 to 1,140

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.

WITH
(
    SELECT sum(volume)
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPY'
      AND window_start >= today() - 30
      AND window_start <  today() - 2
) AS month_volume
SELECT
    formatDateTime(toTimeZone(window_start, 'America/New_York'), '%H:00') AS et_hour,
    round(toFloat64(sum(volume)) / 1e6, 1)                               AS volume_millions,
    round(100 * toFloat64(sum(volume)) / toFloat64(month_volume), 2)     AS share_pct,
    count()                                                              AS minute_bars
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
  AND window_start >= today() - 30
  AND window_start <  today() - 2
GROUP BY et_hour
HAVING count() >= 5
ORDER BY et_hour
⌘/Ctrl + Enter
More from this analysisUS Stocks 23/5 Trading: The December 2026 Plan
Share of volume printed outside 9:30 to 4:00 ET, seven household names (trailing month) ranking 7×4 Extended-hours sale conditions defined on the tape ranking 3×3 SPY daily bar volume vs. the regular-session slice (trailing month) series 19×5 Which venues sat on the bid side of the quote record, KO on June 16, 2026 ranking 17×3 SIP receive lag by venue, AAPL, 10 June 2026 (microseconds) ranking 11×4 Odd lots, round lots and sub-one-share prints across six names, July 8 to 10, 2026 ranking 6×4 See all 2,469 queries →