STRASMORE/EXPLORE 2,170 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-08-22, 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.5000325001350013500058
NVDA0.50000050046000460000252
AAPL50000500060000600000114
SPY5000050000148001480000452
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 0.5 to 50 US dollars
lowest_strike_field text 4 distinct values (00000500, 00005000, 00032500…)
highest_strike number 135 to 1,480 US dollars
highest_strike_field text 4 distinct values (00135000, 00460000, 00600000…)
strike_count number 58 to 452 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.

the exact SQL behind every number
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

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 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,170 queries →