STRASMORE/EXPLORE 2,469 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-09-20, 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.126.419742
MSTR3.035.7319742
MSFT1.293.519742
TSLA2.223.0619742
NVDA1.883.0619742
KO1.042.5119742
SPY0.512.3219742
AAPL1.532.1519742
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.51 to 3.12 percent
max_range_pct number 2.15 to 6.4 percent
window_count number every row is 19,742 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.

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
    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
⌘/Ctrl + Enter
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 March 2020 session by session: open, low and close versus the prior close series 22×6 How the three lines move with each SPY close series 14×5 The four Level 1 halt sessions of March 2020 series 4×8 See all 2,469 queries →