STRASMORE/EXPLORE 2,170 QUERIES

Average minute range through the session, five liquid names

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-22, from Why Stocks Halt: Limit Up-Limit Down Bands.

as of series 26×3read in context →
Average minute range through the session, five liquid names — 26 rows by 3 columns, computed from US exchange, SIP and OPRA data.
et_timeavg_minute_range_pctp99_minute_range_pct
09:300.2881
09:450.1910.538
10:000.1660.477
10:150.1460.427
10:300.1350.399
10:450.1240.367
11:000.1150.356
11:150.1070.334
11:300.1010.3
11:450.0940.309
12:000.0920.281
12:150.0870.271
12:300.0870.323
12:450.0820.256
13:000.0820.261
13:150.0780.255
13:300.0790.253
13:450.0730.242
14:000.0780.253
14:150.0720.225
14:300.0730.23
14:450.0710.23
15:000.0790.263
15:150.0770.256
15:300.080.24
15:450.1160.51
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 minute range through the session, five liquid names, derived from the stored result.
ColumnTypeRangeNotes
et_time date 09:30 to 15:45
avg_minute_range_pct number 0.071 to 0.288 percent
p99_minute_range_pct number 0.225 to 1 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
SELECT
    formatDateTime(toStartOfInterval(toTimeZone(window_start, 'America/New_York'), INTERVAL 15 MINUTE), '%H:%i') AS et_time,
    round(avg((toFloat64(high) - toFloat64(low)) / toFloat64(open) * 100), 3) AS avg_minute_range_pct,
    round(quantileDeterministic(0.99)((toFloat64(high) - toFloat64(low)) / toFloat64(open) * 100,
          toUnixTimestamp(window_start)), 3)                                  AS p99_minute_range_pct
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SPY', 'AAPL', 'MSFT', 'NVDA', 'TSLA')
  AND window_start >= today() - 200
  AND window_start <  today() - 2
  AND open > 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

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 Stocks Halt: Limit Up-Limit Down Bands
How far eight stocks move in a five minute window, trailing year ranking 8×4 What a 5 percent band is worth in dollars, by price level ranking 8×4 Where listed symbols sit by price, and which band rule governs each zone ranking 6×3 Share of regular-session volume by half hour, SPY and AAPL series 13×3 Average one-minute SPY range in basis points, by half hour series 13×3 SPY open, midday and close volume against an average minute, by year ranking 8×4 See all 2,170 queries →