STRASMORE/EXPLORE 2,433 QUERIES

AAPL calls 1 to 5 percent in the money, by days left to expiry

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 When Short Options Get Assigned Early.

as of ranking 6×4read in context →
AAPL calls 1 to 5 percent in the money, by days left to expiry — 6 rows by 4 columns, computed from US exchange, SIP and OPRA data.
dte_bucketavg_vegaavg_deltacontracts
under 2 days0.0380.83192
2 to 3 days0.0630.814224
4 to 7 days0.110.777526
8 to 14 days0.1710.735893
15 to 30 days0.2550.698642
31 to 60 days0.380.663498
Rows × columns
6 × 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 AAPL calls 1 to 5 percent in the money, by days left to expiry, derived from the stored result.
ColumnTypeRangeNotes
dte_bucket text 6 distinct values
avg_vega number 0.038 to 0.38
avg_delta number 0.663 to 0.831
contracts number 92 to 893 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
    dte_bucket,
    round(avg(vega_f), 3)  AS avg_vega,
    round(avg(delta_f), 3) AS avg_delta,
    count()                AS contracts
FROM
(
    SELECT
        toFloat64(vega)  AS vega_f,
        toFloat64(delta) AS delta_f,
        days_to_expiry,
        multiIf(days_to_expiry <= 1,  'under 2 days',
                days_to_expiry <= 3,  '2 to 3 days',
                days_to_expiry <= 7,  '4 to 7 days',
                days_to_expiry <= 14, '8 to 14 days',
                days_to_expiry <= 30, '15 to 30 days',
                                      '31 to 60 days') AS dte_bucket
    FROM global_markets.options_greeks
    WHERE underlying_symbol = 'AAPL'
      AND date >= today() - 120
      AND iv_converged = 1
      AND volume > 0
      AND delta > 0
      AND days_to_expiry BETWEEN 0 AND 60
      AND toFloat64(underlying_close) / toFloat64(strike_price) - 1 BETWEEN 0.01 AND 0.05
)
GROUP BY dte_bucket
ORDER BY min(days_to_expiry)
⌘/Ctrl + Enter
More from this analysisWhen Short Options Get Assigned Early
Put versus call implied volatility, near the money, 20 to 45 days out ranking 5×4 Latest cash dividend per share, and what it is worth against the stock series 6×4 Time value left in AAPL contracts by depth in the money table 5×5 Friday close to Monday's first minute: absolute overnight move, 2023 to July 2026 ranking 8×4 Absolute move over the final 30 minutes of Friday sessions, 2023 to July 2026 ranking 8×4 Cash behind one contract: 100 shares at each name's close in the last week of July 2026 ranking 8×2 See all 2,433 queries →