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.
| et_time | avg_minute_range_pct | p99_minute_range_pct |
|---|---|---|
| 09:30 | 0.285 | 1.046 |
| 09:45 | 0.187 | 0.541 |
| 10:00 | 0.16 | 0.475 |
| 10:15 | 0.14 | 0.412 |
| 10:30 | 0.131 | 0.396 |
| 10:45 | 0.12 | 0.358 |
| 11:00 | 0.112 | 0.354 |
| 11:15 | 0.103 | 0.338 |
| 11:30 | 0.098 | 0.294 |
| 11:45 | 0.092 | 0.312 |
| 12:00 | 0.089 | 0.271 |
| 12:15 | 0.084 | 0.266 |
| 12:30 | 0.083 | 0.313 |
| 12:45 | 0.078 | 0.255 |
| 13:00 | 0.079 | 0.262 |
| 13:15 | 0.075 | 0.243 |
| 13:30 | 0.075 | 0.252 |
| 13:45 | 0.07 | 0.237 |
| 14:00 | 0.076 | 0.258 |
| 14:15 | 0.07 | 0.225 |
| 14:30 | 0.07 | 0.227 |
| 14:45 | 0.069 | 0.229 |
| 15:00 | 0.077 | 0.264 |
| 15:15 | 0.074 | 0.259 |
| 15:30 | 0.077 | 0.24 |
| 15:45 | 0.113 | 0.489 |
- Rows × columns
- 26 × 3
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
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