STRASMORE/EXPLORE 2,433 QUERIES

Optionable underlyings by expiration pattern, trailing five weeks

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 Which Stocks Have Weekly Options? How to Tell.

as of ranking 4×2read in context →
Optionable underlyings by expiration pattern, trailing five weeks — 4 rows by 2 columns, computed from US exchange, SIP and OPRA data.
bucketunderlyings
A. All underlyings with a traded contract5471
B. Third Friday only (monthly)4784
C. Weekly or quarterly, not every weekday681
D. Weekly, every weekday Mon to Fri6
Rows × columns
4 × 2
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 Optionable underlyings by expiration pattern, trailing five weeks, derived from the stored result.
ColumnTypeRangeNotes
bucket text 4 distinct values
underlyings number 6 to 5,471

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
    bucket,
    count()                                                          AS underlyings
FROM
(
    SELECT
        underlying_symbol,
        arrayJoin([
            'A. All underlyings with a traded contract',
            multiIf(non_monthly_dates = 0, 'B. Third Friday only (monthly)',
                    weekdays_used >= 5,    'D. Weekly, every weekday Mon to Fri',
                                           'C. Weekly or quarterly, not every weekday')
        ])                                                           AS bucket
    FROM
    (
        SELECT
            underlying_symbol,
            uniqExactIf(expiration_date,
                NOT (toDayOfWeek(expiration_date) = 5
                     AND toDayOfMonth(expiration_date) BETWEEN 15 AND 21)) AS non_monthly_dates,
            uniqExact(toDayOfWeek(expiration_date))                        AS weekdays_used
        FROM global_markets.options_greeks
        WHERE date >= today() - 35
          AND date < today()
          AND expiration_date < today() + 60
          AND toDayOfWeek(expiration_date) <= 5
          AND volume > 0
          AND underlying_symbol NOT IN ('SPCX')
        GROUP BY underlying_symbol
    )
)
GROUP BY bucket
ORDER BY bucket
⌘/Ctrl + Enter
More from this analysisWhich Stocks Have Weekly Options? How to Tell
Top 25 weekly-options underlyings by distinct contracts traded, with expiration weekdays ranking 25×4 Underlyings with a traded expiration on each weekday, trailing five weeks ranking 6×2 AAPL expirations within 130 days, as of Monday Aug 24, 2026 series 12×5 SPY contracts traded by strike, July 17 2026 expiry ranking 22×3 Which tickers carry the most upcoming expirations: option roots by distinct expiration dates in the next six weeks ranking 20×3 Monthly expirations beyond 300 days out, by underlyings listing them ranking 15×2 See all 2,433 queries →