STRASMORE/EXPLORE 2,173 QUERIES

Typical daily range and open-to-close move, trailing year

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 Bracket Orders and OCO Orders Explained.

as of ranking 6×3read in context →
Typical daily range and open-to-close move, trailing year — 6 rows by 3 columns, computed from US exchange, SIP and OPRA data.
tickermedian_range_pctmedian_open_to_close_pct
NVDA2.721.15
MSFT1.870.78
AAPL1.870.68
JNJ1.550.59
KO1.350.6
SPY0.860.39
Rows × columns
6 × 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 Typical daily range and open-to-close move, trailing year, derived from the stored result.
ColumnTypeRangeNotes
ticker text 6 distinct values (AAPL, JNJ, KO…)
median_range_pct number 0.86 to 2.72 percent
median_open_to_close_pct number 0.39 to 1.15 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
    ticker,
    round(quantileDeterministic(0.5)(
        (toFloat64(high) - toFloat64(low)) / toFloat64(open) * 100,
        toUInt32(date)), 2)                                   AS median_range_pct,
    round(quantileDeterministic(0.5)(
        abs(toFloat64(close) - toFloat64(open)) / toFloat64(open) * 100,
        toUInt32(date)), 2)                                   AS median_open_to_close_pct
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('SPY', 'AAPL', 'MSFT', 'NVDA', 'KO', 'JNJ')
  AND date >= today() - 370
  AND date <  today() - 2
GROUP BY ticker
ORDER BY median_range_pct DESC

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 analysisBracket Orders and OCO Orders Explained
AAPL's ten largest overnight gaps down, Jan 2023 to Jun 2026 ranking 10×2 Share of SPY sessions reaching a given distance from the open (Aug 2023 to Jul 2026) ranking 6×3 SPY minute-bar movement and volume by ET clock time series 32×3 Opening and closing windows as a share of regular-session volume ranking 8×3 Average gap between the daily VWAP and the open, June 2026 ranking 6×3 Sub-penny print share by reporting route, off exchange against lit exchange ranking 6×3 See all 2,173 queries →