STRASMORE/EXPLORE 2,500 QUERIES

SPY volume by minute into the close, June 10 2026

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 How OHLCV Bars Are Built From Ticks.

as of series 25×3read in context →
SPY volume by minute into the close, June 10 2026 — 25 rows by 3 columns, computed from US exchange, SIP and OPRA data.
et_timevolume_millionsshare_of_window_pct
15:450.191.8
15:460.171.6
15:470.161.6
15:480.272.6
15:490.65.9
15:501.1511.2
15:510.414
15:520.212
15:530.222.1
15:540.32.9
15:550.323.1
15:560.313
15:570.444.3
15:580.848.2
15:591.7617.2
16:000.494.8
16:010.131.3
16:020.191.9
16:030.161.6
16:040.171.6
16:050.080.8
16:060.171.6
16:071.3513.1
16:080.131.3
16:090.050.4
Rows × columns
25 × 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 SPY volume by minute into the close, June 10 2026, derived from the stored result.
ColumnTypeRangeNotes
et_time text 25 distinct values (15:45, 15:46, 15:47…)
volume_millions number 0.05 to 1.76 count
share_of_window_pct number 0.4 to 17.2 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.

WITH minute_volume AS
(
    SELECT
        toStartOfMinute(toTimeZone(window_start, 'America/New_York')) AS et_minute,
        sum(volume)                                                   AS shares
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'SPY'
      AND window_start >= '2026-06-10 19:45:00'
      AND window_start <  '2026-06-10 20:10:00'
    GROUP BY et_minute
)
SELECT
    formatDateTime(et_minute, '%H:%i')                                            AS et_time,
    round(toFloat64(shares) / 1e6, 2)                                             AS volume_millions,
    round(100 * toFloat64(shares) / (SELECT toFloat64(sum(shares)) FROM minute_volume), 1) AS share_of_window_pct
FROM minute_volume
ORDER BY et_minute
⌘/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 analysisHow OHLCV Bars Are Built From Ticks
Odd lot share of prints and of volume, minute by minute series 15×4 One-minute AAPL bars rebuilt from individual trades, June 10 2026 series 15×6 How many of the 390 session minutes each US symbol traded in ranking 10×2 Trade condition codes that restrict high, low, and last ranking 7×3 KO quarterly dividend in cents and as a percent of the share price, 2016 to 2026 series 42×4 Trading sessions per year under FB and META ranking 15×3 See all 2,500 queries →