STRASMORE/EXPLORE 2,595 QUERIES

percent_leaders

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-25, from stocks-with-the-highest-option-premiums.

as of ranking 12×4read in context →
percent_leaders — 12 rows by 4 columns, computed from US exchange, SIP and OPRA data.
symbolpremium_pct_of_strikeiv_pctunderlying_price
META6.1652.8734
PLTR5.8649.8191.1
TSLA5.2844.4380.13
DVN4.8338.348.19
SLV4.2436.658.07
NVDA3.931.8225.07
GOOGL3.5430.4339.05
BAC3.2925.556.14
MSFT3.2526.1500.31
AAPL2.7422.5336.86
QQQ2.3218.1740.8
XLF1.8416.754.66
Rows × columns
12 × 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 percent_leaders, derived from the stored result.
ColumnTypeRangeNotes
symbol text 12 distinct values (AAPL, BAC, DVN…)
premium_pct_of_strike number 1.84 to 6.16 percent
iv_pct number 16.7 to 52.8 percent
underlying_price number 48.19 to 740.8 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_symbol                                                       AS symbol,
    round(100 * avg(toFloat64(option_close) / toFloat64(strike_price)), 2)  AS premium_pct_of_strike,
    round(100 * avg(implied_volatility), 1)                                 AS iv_pct,
    round(toFloat64(any(underlying_close)), 2)                              AS underlying_price
FROM global_markets.options_greeks
WHERE date = (SELECT max(date) FROM global_markets.options_greeks WHERE date >= today() - 30)
  AND option_type IN ('call', 'C')
  AND iv_converged = 1
  AND volume > 0
  AND days_to_expiry BETWEEN 25 AND 35
  AND toFloat64(underlying_close) >= 5
  AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.025
  AND underlying_symbol NOT IN ('SPCX')
GROUP BY underlying_symbol
HAVING sum(volume) >= 1000 AND count() >= 3
ORDER BY premium_pct_of_strike DESC
LIMIT 12
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

More from this analysisstocks-with-the-highest-option-premiums
collectable_premium ranking 12×3 → premium_term_structure ranking 5×3 → dollar_leaders table 12×5 → Top 25 weekly-options underlyings by distinct contracts traded, with expiration weekdays ranking 25×4 → Annualized volatility vs total return, 25 large caps, calmest to wildest (~2 years) ranking 25×3 → SPY options median spread by expiration date, near-the-money strikes only ranking 25×4 → See all 2,595 queries →