STRASMORE/EXPLORE 2,170 QUERIES

How far eight stocks move in a five minute window, 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 Why Stocks Halt: Limit Up-Limit Down Bands.

as of ranking 8×4read in context →
How far eight stocks move in a five minute window, trailing year — 8 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerp999_range_pctmax_range_pctwindow_count
COIN3.16.419664
MSTR2.965.7319664
MSFT1.263.519664
TSLA23.4719664
NVDA1.773.0619664
KO1.042.5119664
SPY0.52.3219664
AAPL1.532.1519664
Rows × columns
8 × 4
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 How far eight stocks move in a five minute window, trailing year, derived from the stored result.
ColumnTypeRangeNotes
ticker text 8 distinct values (AAPL, COIN, KO…)
p999_range_pct number 0.5 to 3.1 percent
max_range_pct number 2.15 to 6.4 percent
window_count number every row is 19,664 count

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.999)(range_pct, det), 2) AS p999_range_pct,
    round(max(range_pct), 2)                               AS max_range_pct,
    count()                                                AS window_count
FROM
(
    SELECT
        ticker,
        toStartOfFiveMinute(window_start)                     AS bucket,
        toUnixTimestamp(toStartOfFiveMinute(window_start))    AS det,
        (toFloat64(max(high)) - toFloat64(min(low)))
            / toFloat64(argMin(open, window_start)) * 100     AS range_pct
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker IN ('SPY', 'KO', 'AAPL', 'MSFT', 'NVDA', 'TSLA', 'COIN', 'MSTR')
      AND window_start >= today() - 370
      AND window_start <  today() - 2
      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 ticker, bucket, det
    HAVING min(low) > 0
)
GROUP BY ticker
ORDER BY max_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 analysisWhy Stocks Halt: Limit Up-Limit Down Bands
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 Average minute range through the session, five liquid names series 26×3 SPY open, midday and close volume against an average minute, by year ranking 8×4 Open, midday and close volume against an average session minute ranking 6×4 Share of regular-session volume by half hour, SPY and AAPL series 13×3 See all 2,170 queries →