STRASMORE/EXPLORE 2,469 QUERIES

Average one-minute high-low range by time of day

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 Stop Order vs Stop-Limit Order: How Each Fills.

as of series 13×3read in context →
Average one-minute high-low range by time of day — 13 rows by 3 columns, computed from US exchange, SIP and OPRA data.
et_timenvda_range_bpsspy_range_bps
09:3028.57
10:0018.86.2
10:3015.75.4
11:0013.64.8
11:30124.5
12:0010.94
12:30103.9
13:009.63.8
13:309.13.6
14:009.13.6
14:308.93.6
15:009.53.5
15:30124.3
Rows × columns
13 × 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 one-minute high-low range by time of day, derived from the stored result.
ColumnTypeRangeNotes
et_time text 13 distinct values (09:30, 10:00, 10:30…)
nvda_range_bps number 8.9 to 28.5
spy_range_bps number 3.5 to 7

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 30 MINUTE), '%H:%i') AS et_time,
    round(avgIf(10000 * (toFloat64(high) - toFloat64(low)) / toFloat64(close), ticker = 'NVDA'), 1) AS nvda_range_bps,
    round(avgIf(10000 * (toFloat64(high) - toFloat64(low)) / toFloat64(close), ticker = 'SPY'), 1)  AS spy_range_bps
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('NVDA', 'SPY')
  AND window_start >= '2025-08-01'
  AND window_start <  '2026-08-01'
  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
HAVING countIf(ticker = 'NVDA') > 0
   AND countIf(ticker = 'SPY') > 0
ORDER BY et_time
⌘/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 analysisStop Order vs Stop-Limit Order: How Each Fills
NVDA's largest gap-down opens and the 30 minutes that followed series 8×3 Sessions that gapped through a 2% stop, and whether the limit price traded ranking 5×3 How often each stock opened below the prior close ranking 5×3 Average shares per print, monthly, MSFT and KO series 90×4 Share of SPY's regular-session volume by five-minute ET bucket series 79×2 SPY minute-bar movement and volume by ET clock time series 32×3 See all 2,469 queries →