STRASMORE/EXPLORE 2,469 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-09-20, 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.2851.046
09:450.1870.541
10:000.160.475
10:150.140.412
10:300.1310.396
10:450.120.358
11:000.1120.354
11:150.1030.338
11:300.0980.294
11:450.0920.312
12:000.0890.271
12:150.0840.266
12:300.0830.313
12:450.0780.255
13:000.0790.262
13:150.0750.243
13:300.0750.252
13:450.070.237
14:000.0760.258
14:150.070.225
14:300.070.227
14:450.0690.229
15:000.0770.264
15:150.0740.259
15:300.0770.24
15:450.1130.489
Rows × columns
26 × 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 Average minute range through the session, five liquid names, derived from the stored result.
ColumnTypeRangeNotes
et_time text 26 distinct values (09:30, 09:45, 10:00…)
avg_minute_range_pct number 0.069 to 0.285 percent
p99_minute_range_pct number 0.225 to 1.046 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(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
⌘/Ctrl + Enter
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 March 2020 session by session: open, low and close versus the prior close series 22×6 How the three lines move with each SPY close series 14×5 The four Level 1 halt sessions of March 2020 series 4×8 See all 2,469 queries →