STRASMORE/EXPLORE 2,272 QUERIES

How the session's volume piled up against the prior 10 sessions, checkpoint by checkpoint

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-16, from Why Relative Volume Differs Between Platforms.

as of series 14×4read in context →
How the session's volume piled up against the prior 10 sessions, checkpoint by checkpoint — 14 rows by 4 columns, computed from US exchange, SIP and OPRA data.
et_timesession_cumulative_millionstypical_cumulative_millionstypical_share_of_session_pct
09:458.32.78.5
10:0011.14.514.1
10:3014.57.523.8
11:001910.131.9
11:3023.412.439.2
12:0029.214.545.7
12:3032.816.351.4
13:0038.217.755.8
13:3041.219.561.5
14:0045.32166.4
14:304822.972.4
15:0050.325.179.3
15:3053.426.985.1
16:0059.331.7100
Rows × columns
14 × 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 How the session's volume piled up against the prior 10 sessions, checkpoint by checkpoint, derived from the stored result.
ColumnTypeRangeNotes
et_time text 14 distinct values (09:45, 10:00, 10:30…)
session_cumulative_millions number 8.3 to 59.3
typical_cumulative_millions number 2.7 to 31.7
typical_share_of_session_pct number 8.5 to 100 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
WITH
    toDate('2026-09-10') AS session_day,
    [585, 600, 630, 660, 690, 720, 750, 780, 810, 840, 870, 900, 930, 960] AS checkpoints
SELECT
    formatDateTime(toDateTime(session_day, 'UTC') + checkpoints[i] * 60, '%H:%i', 'UTC') AS et_time,
    round(session_cums[i] / 1e6, 1)                                                        AS session_cumulative_millions,
    round(typical_cums[i] / 1e6, 1)                                                        AS typical_cumulative_millions,
    round(100 * typical_cums[i] / typical_cums[14], 1)                                     AS typical_share_of_session_pct
FROM
(
    SELECT
        arrayJoin(arrayEnumerate(checkpoints)) AS i,
        session_cums,
        arrayMap(k -> arrayAvg(x -> arrayElement(tupleElement(x, 2), k), arraySlice(prior, 1, 10)),
                 arrayEnumerate(checkpoints)) AS typical_cums
    FROM
    (
        SELECT
            anyIf(cums, d = session_day)                                                        AS session_cums,
            arrayReverseSort(x -> tupleElement(x, 1), groupArrayIf((d, cums), d < session_day)) AS prior
        FROM
        (
            SELECT
                d,
                arrayMap(cp -> arraySum(x -> if(tupleElement(x, 1) <= cp, tupleElement(x, 2), 0), mv),
                         checkpoints) AS cums
            FROM
            (
                SELECT d, groupArray((minute_of_day, vol)) AS mv
                FROM
                (
                    SELECT
                        toDate(toTimeZone(window_start, 'America/New_York'))      AS d,
                        toHour(toTimeZone(window_start, 'America/New_York')) * 60
                          + toMinute(toTimeZone(window_start, 'America/New_York')) AS minute_of_day,
                        max(toFloat64(volume))                                     AS vol
                    FROM global_markets.delayed_stocks_minute_aggs
                    WHERE ticker = 'AAPL'
                      AND window_start >= toDateTime(session_day - 20, 'America/New_York')
                      AND window_start <  toDateTime(session_day + 1, 'America/New_York')
                    GROUP BY d, minute_of_day
                    HAVING minute_of_day >= 570 AND minute_of_day <= 960
                )
                GROUP BY d
            )
        )
        HAVING length(session_cums) = 14 AND length(prior) >= 10
    )
)
ORDER BY i

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 analysisWhy Relative Volume Differs Between Platforms
Same session, same 10-session lookback: same-time basis vs full-day basis through the day series 14×3 Five relative-volume definitions on one AAPL session, at 10:30 a.m. ET and at the close ranking 5×3 One AAPL session, four lookbacks: full-day relative volume from daily bars ranking 4×4 SPY: median shares traded per minute, by 30-minute clock bucket (ET, last 30 days, extended hours) series 32×2 Top 10 by full-day RVOL: latest completed session (20-day ADV above 5M shares, full history required) series 10×5 Full-day RVOL percentiles across high-volume US stocks and ETFs (20-day ADV above 5M shares), latest completed session ranking 6×2 See all 2,272 queries →