STRASMORE/EXPLORE 2,433 QUERIES

ranked

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-20, from best-stocks-for-day-trading-options.

as of ranking 15×4read in context →
ranked — 15 rows by 4 columns, computed from US exchange, SIP and OPRA data.
symbolavg_daily_contracts_millionsexpirations_next_2_weeksatm_30d_iv_pct
SPY3.161012.9
NVDA2.33631
QQQ2.151017.9
TSLA1.49643.1
AAPL0.99624.6
IWM0.971017.7
IBIT0.79634.2
TLT0.71611.1
INTC0.63668.6
AMZN0.57631.8
MU0.54559.5
META0.46639.8
GLD0.451023.2
MSTR0.42265.9
EWZ0.42345.6
Rows × columns
15 × 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 ranked, derived from the stored result.
ColumnTypeRangeNotes
symbol text 15 distinct values (AAPL, AMZN, EWZ…)
avg_daily_contracts_millions number 0.42 to 3.16 count
expirations_next_2_weeks number 2 to 10
atm_30d_iv_pct number 11.1 to 68.6 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.

WITH
    (
        SELECT max(date)
        FROM global_markets.options_greeks
        WHERE date >= today() - 40
    ) AS last_session
SELECT
    underlying_symbol                                            AS symbol,
    round(sum(volume) / countDistinct(date) / 1e6, 2)            AS avg_daily_contracts_millions,
    countDistinctIf(expiration_date,
                    date = last_session
                    AND expiration_date <= last_session + 14)    AS expirations_next_2_weeks,
    round(avgIf(implied_volatility,
                date = last_session
                AND iv_converged = 1
                AND underlying_close > 0
                AND days_to_expiry BETWEEN 20 AND 45
                AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.03) * 100, 1) AS atm_30d_iv_pct
FROM global_markets.options_greeks
WHERE date IN
    (
        SELECT date
        FROM global_markets.options_greeks
        WHERE date >= today() - 40
        GROUP BY date
        ORDER BY date DESC
        LIMIT 20
    )
  AND volume > 0
  AND underlying_symbol NOT IN ('SPCX')
  AND underlying_symbol IN
    (
        SELECT DISTINCT ticker
        FROM global_markets.stocks_daily_aggs
        WHERE date >= today() - 40
    )
GROUP BY underlying_symbol
HAVING countIf(date = last_session
               AND iv_converged = 1
               AND underlying_close > 0
               AND days_to_expiry BETWEEN 20 AND 45
               AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.03) > 0
ORDER BY sum(volume) DESC
LIMIT 15
⌘/Ctrl + Enter
More from this analysisbest-stocks-for-day-trading-options
spread_pin ranking 5×4 concentration ranking 4×3 trace series 20×6 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,433 queries →