STRASMORE/EXPLORE 2,469 QUERIES

One eight-digit field, from single-dollar strikes to index levels

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 How to Read an Options Symbol (OSI Format).

as of table 4×6read in context →
One eight-digit field, from single-dollar strikes to index levels — 4 rows by 6 columns, computed from US exchange, SIP and OPRA data.
underlyinglowest_strikelowest_strike_fieldhighest_strikehighest_strike_fieldstrike_count
KO32.5000325001350013500057
NVDA2.50000250046000460000225
AAPL50000500067000670000119
SPY5000050000148001480000457
Rows × columns
4 × 6
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 One eight-digit field, from single-dollar strikes to index levels, derived from the stored result.
ColumnTypeRangeNotes
underlying text 4 distinct values (AAPL, KO, NVDA…)
lowest_strike number 2.5 to 50 US dollars
lowest_strike_field text 4 distinct values (00002500, 00005000, 00032500…)
highest_strike number 135 to 1,480 US dollars
highest_strike_field text 4 distinct values (00135000, 00460000, 00670000…)
strike_count number 57 to 457 US dollars

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
    underlying,
    round(toFloat64(min(strike)), 2) AS lowest_strike,
    argMin(strike_field, strike)     AS lowest_strike_field,
    round(toFloat64(max(strike)), 2) AS highest_strike,
    argMax(strike_field, strike)     AS highest_strike_field,
    uniqExact(strike)                AS strike_count
FROM
(
    SELECT
        underlying_symbol AS underlying,
        strike_price      AS strike,
        substring(replaceRegexpOne(ticker, '^O:', ''),
                  length(replaceRegexpOne(ticker, '^O:', '')) - 7, 8) AS strike_field
    FROM global_markets.options_greeks
    WHERE underlying_symbol IN ('KO', 'NVDA', 'AAPL', 'SPY', 'SPX')
      AND date >= today() - 7
)
GROUP BY underlying
ORDER BY highest_strike ASC
⌘/Ctrl + Enter
More from this analysisHow to Read an Options Symbol (OSI Format)
One expiration, four strikes: every OSI field cut out of the symbol table 8×7 One expiration of the SPY chain: closing prices and delta by strike, August 21 2026 expiry, as of July 15 2026 table 8×6 Median quoted bid and ask by strike: SPY calls expiring August 21 2026, regular session of July 15 2026 table 7×5 Implied volatility by strike: SPY options expiring August 21 2026, as of July 15 2026 ranking 11×3 Where the trading happened: SPY contract volume by strike, August 21 2026 expiry, July 15 2026 ranking 8×3 SPY option volume by time to expiration, July 15 2026 ranking 5×4 See all 2,469 queries →