STRASMORE/EXPLORE 2,173 QUERIES

Average one-minute range and volume by time of day, 2025

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-06, from Do Stock Gaps Always Get Filled? The Data.

as of series 26×3read in context →
Average one-minute range and volume by time of day, 2025 — 26 rows by 3 columns, computed from US exchange, SIP and OPRA data.
et_timeavg_range_bpsavg_volume_k
09:3024.4303.9
09:4515.4170.9
10:0014151.8
10:1511.8128.6
10:3010.8117.6
10:459.9107.4
11:009.5102.3
11:158.894.2
11:308.487.7
11:457.881.6
12:007.778.2
12:157.274.4
12:306.969.6
12:456.868
13:007.172.8
13:15768.1
13:30767.6
13:456.665.4
14:00771.6
14:156.568.8
14:306.468.4
14:456.468.7
15:006.676.6
15:156.682.2
15:307.198.6
15:4510.8246.7
Rows × columns
26 × 3
Period covered
to
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 Average one-minute range and volume by time of day, 2025, derived from the stored result.
ColumnTypeRangeNotes
et_time date 09:30 to 15:45
avg_range_bps number 6.4 to 24.4
avg_volume_k number 65.4 to 303.9 count

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
SELECT
    formatDateTime(toStartOfInterval(toTimeZone(window_start, 'America/New_York'), INTERVAL 15 MINUTE), '%H:%i') AS et_time,
    round(10000 * avg(toFloat64(high) / toFloat64(low) - 1), 1) AS avg_range_bps,
    round(avg(toFloat64(volume)) / 1000, 1)                     AS avg_volume_k
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'AMZN', 'JPM', 'KO', 'WMT', 'XOM')
  AND window_start >= '2025-01-01'
  AND window_start <  '2026-01-01'
  AND toFloat64(low) > 0
  AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
       + toMinute(toTimeZone(window_start, 'America/New_York'))) >= 570
  AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
       + toMinute(toTimeZone(window_start, 'America/New_York'))) < 960
GROUP BY et_time
ORDER BY et_time ASC

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 analysisDo Stock Gaps Always Get Filled? The Data
Same-session gap fill rate by gap size, eight large caps, 2021 to 2026 ranking 5×3 Share of 1%+ gaps filled, by how long you wait ranking 4×3 Gap fill rate by how heavy the gap day's volume was ranking 3×4 MSFT: how the January 29, 2026 gap formed, 30-minute premarket buckets series 11×8 Overnight gaps by ticker, H1 2026: average absolute gap and the single biggest gap series 6×5 SPY's six biggest overnight gaps of H1 2026: and the same day's open-to-close move series 6×3 See all 2,173 queries →