STRASMORE/EXPLORE 2,170 QUERIES 22Y EQUITIES · 12Y OPTIONS

2,170 answered market questions

every one with its exact SQL, its result and the date it was computed · free, no signup

How to Read an Options Symbol (OSI Format)
One eight-digit field, from single-dollar strikes to index levelstable · 2026-08-22 · 4×6 One expiration, four strikes: every OSI field cut out of the symboltable · 2026-08-22 · 8×7
One eight-digit field, from single-dollar strikes to index levels

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

most recentas 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
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
$