STRASMORE/EXPLORE 2,595 QUERIES

collectable_premium

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×3read in context →
collectable_premium — 12 rows by 3 columns, computed from US exchange, SIP and OPRA data.
symbolpremium_pct_of_strikecontract_volume
SOXL12.78112
MRNA9.84309
CRWV9.23653
BE8.81312
BMNR8.72153
ARM8.52204
SNDK8.49453
WDC8.4128
RKLB8.08182
ACMR7.98138
HOOD7.97248
MRVL7.69125
Rows × columns
12 × 3
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 collectable_premium, derived from the stored result.
ColumnTypeRangeNotes
symbol text 12 distinct values (ACMR, ARM, BE…)
premium_pct_of_strike number 7.69 to 12.78 percent
contract_volume number 112 to 653 count

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,
    toUInt64(sum(volume))                                                   AS contract_volume
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) >= 100 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
percent_leaders ranking 12×4 → 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 →