STRASMORE/EXPLORE 2,648 QUERIES

Share of SPY's regular-session volume by five-minute ET bucket

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 MOC and MOO Order Cutoff Times: NYSE & Nasdaq.

as of series 79×2read in context →
Share of SPY's regular-session volume by five-minute ET bucket — 79 rows by 2 columns, computed from US exchange, SIP and OPRA data.
et_timepct_of_session_volume
09:303.31
09:351.899
09:401.621
09:451.917
09:501.567
09:551.33
10:001.541
10:051.354
10:101.335
10:151.418
10:201.424
10:251.479
10:301.439
10:351.186
10:401.195
10:451.123
10:501.156
10:551.118
11:001.168
11:051.163
11:100.986
11:151.066
11:201.01
11:251.039
11:301.163
11:350.996
11:400.961
11:450.856
11:500.849
11:550.772
12:000.994
12:050.95
12:100.784
12:150.99
12:200.864
12:250.881
12:300.972
12:350.749
12:400.717
12:450.779
12:500.697
12:550.764
13:000.785
13:050.753
13:100.765
13:150.786
13:200.797
13:250.727
13:300.674
13:350.714
13:400.668
13:450.657
13:500.709
13:550.644
14:001.143
14:050.85
14:100.833
14:150.895
14:200.787
14:250.817
14:301.199
14:350.972
14:401.069
14:451.003
14:501.315
14:550.927
15:001.221
15:051.158
15:101.142
15:151.335
15:201.386
15:251.312
15:301.695
15:351.655
15:401.922
15:452.774
15:503.905
15:559.687
16:000.735
Rows × columns
79 × 2
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 Share of SPY's regular-session volume by five-minute ET bucket, derived from the stored result.
ColumnTypeRangeNotes
et_time text 79 distinct values (09:30, 09:35, 09:40…)
pct_of_session_volume number 0.644 to 9.687 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(toDateTime(bucket_minute * 60, 'UTC'), '%H:%i')        AS et_time,
    round(100 * bucket_volume / sum(bucket_volume) OVER (), 3)           AS pct_of_session_volume
FROM
(
    SELECT
        intDiv(et_minute_of_day, 5) * 5 AS bucket_minute,
        sum(volume)                     AS bucket_volume
    FROM
    (
        SELECT
            toHour(toTimeZone(window_start, 'America/New_York')) * 60
                + toMinute(toTimeZone(window_start, 'America/New_York')) AS et_minute_of_day,
            volume
        FROM global_markets.delayed_stocks_minute_aggs
        WHERE ticker = 'SPY'
          AND window_start >= today() - 75
          AND window_start <  today() - 2
    )
    WHERE et_minute_of_day >= 570 AND et_minute_of_day <= 960
    GROUP BY bucket_minute
)
ORDER BY et_time
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

More from this analysisMOC and MOO Order Cutoff Times: NYSE & Nasdaq
SPY minute volume into the close, June 30 2026 (quarter end) series 31×2 → SPY: opening and closing window share of session volume, by month series 25×3 → Opening and closing windows as a share of regular-session volume ranking 8×3 → Average quoted spread by half hour, AAPL and KO, June 17 2026 series 15×3 → Distance from AAPL's daily VWAP to that morning's opening print series 9×2 → Average gap between the daily VWAP and the open, June 2026 ranking 6×3 → See all 2,648 queries →