STRASMORE/EXPLORE 2,173 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
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 high-low range by time of day, derived from the stored result.
ColumnTypeRangeNotes
et_time date 09:30 to 15: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.

the exact SQL behind every number
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

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 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,173 queries →