STRASMORE/EXPLORE 2,469 QUERIES

What a 5 percent band is worth in dollars, by price level

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 →
What a 5 percent band is worth in dollars, by price level — 8 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerlast_priceband_5pct_dollarsband_10pct_dollars
SPY762.9838.1576.3
MSFT493.9924.749.4
TSLA364.1818.2136.42
AAPL334.8816.7433.49
NVDA222.5311.1322.25
PLTR177.458.8717.74
KO88.214.418.82
F13.220.661.32
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 What a 5 percent band is worth in dollars, by price level, derived from the stored result.
ColumnTypeRangeNotes
ticker text 8 distinct values (AAPL, F, KO…)
last_price number 13.22 to 762.98 US dollars
band_5pct_dollars number 0.66 to 38.15
band_10pct_dollars number 1.32 to 76.3

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(toFloat64(argMax(close, window_start)), 2)        AS last_price,
    round(toFloat64(argMax(close, window_start)) * 0.05, 2) AS band_5pct_dollars,
    round(toFloat64(argMax(close, window_start)) * 0.10, 2) AS band_10pct_dollars
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SPY', 'MSFT', 'AAPL', 'TSLA', 'NVDA', 'KO', 'PLTR', 'F')
  AND window_start >= today() - 10
  AND volume > 0
GROUP BY ticker
ORDER BY last_price DESC
⌘/Ctrl + Enter
More from this analysisWhy Stocks Halt: Limit Up-Limit Down Bands
How far eight stocks move in a five minute window, trailing year 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 →