STRASMORE/EXPLORE 2,170 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-08-22, 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
SPY766.9538.3576.69
MSFT483.6924.1848.37
TSLA363.9718.236.4
AAPL309.6115.4830.96
NVDA215.3610.7721.54
PLTR179.868.9917.99
KO91.044.559.1
F14.430.721.44
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 14.43 to 766.95 US dollars
band_5pct_dollars number 0.72 to 38.35
band_10pct_dollars number 1.44 to 76.69

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(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

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
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 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 →