STRASMORE/EXPLORE 2,500 QUERIES

premium_by_symbol

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-23, from covered-call-screener-from-the-free-sql-api.

as of ranking 8×4read in context →
premium_by_symbol — 8 rows by 4 columns, computed from US exchange, SIP and OPRA data.
symbolcontractsavg_annual_yield_pctavg_iv_pct
AMD38336.763
NVDA12723.337.9
XOM10016.927.2
MSFT17816.727
AAPL10915.224.2
JNJ7813.421.2
KO9111.117.3
SPY641711.1
Rows × columns
8 × 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 premium_by_symbol, derived from the stored result.
ColumnTypeRangeNotes
symbol text 8 distinct values (AAPL, AMD, JNJ…)
contracts number 78 to 641 count
avg_annual_yield_pct number 7 to 36.7 percent
avg_iv_pct number 11.1 to 63 percent

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,
    count()                                                                        AS contracts,
    round(avg(toFloat64(option_close) / toFloat64(underlying_close)
              * 365.0 / days_to_expiry) * 100, 1)                                  AS avg_annual_yield_pct,
    round(avg(implied_volatility) * 100, 1)                                        AS avg_iv_pct
FROM global_markets.options_greeks
WHERE underlying_symbol IN ('AAPL', 'MSFT', 'NVDA', 'AMD', 'KO', 'JNJ', 'XOM', 'SPY')
  AND date >= '2026-08-01'
  AND date <  '2026-09-01'
  AND iv_converged = 1
  AND volume > 0
  AND days_to_expiry BETWEEN 20 AND 45
  AND delta BETWEEN 0.25 AND 0.35
  AND strike_price > underlying_close
GROUP BY symbol
HAVING contracts >= 20
ORDER BY avg_annual_yield_pct DESC
⌘/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 analysiscovered-call-screener-from-the-free-sql-api
screen_board table 12×8 replay_outcomes series 11×5 delta_ladder table 6×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,500 queries →