Moving the strike up costs premium: AAPL calls 30 to 45 days out
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-08-07, from How to Roll an Option Position: Up and Out.
| strike_vs_spot | call_premium_pct_of_spot | sample_count |
|---|---|---|
| 5%+ below spot | 18.66 | 1987 |
| 2-5% below spot | 5.79 | 466 |
| at the money | 3.65 | 645 |
| 2-5% above spot | 2 | 503 |
| 5-10% above spot | 0.92 | 795 |
| 10%+ above spot | 0.14 | 2615 |
- Rows × columns
- 6 × 3
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
strike_vs_spot |
text | 6 distinct values | |
call_premium_pct_of_spot |
number | 0.14 to 18.66 | percent |
sample_count |
number | 466 to 2,615 | 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.
the exact SQL behind every number
SELECT
strike_vs_spot,
round(avg(premium_pct), 2) AS call_premium_pct_of_spot,
count() AS sample_count
FROM
(
SELECT
multiIf(strike_ratio < 0.95, '5%+ below spot',
strike_ratio < 0.98, '2-5% below spot',
strike_ratio < 1.02, 'at the money',
strike_ratio < 1.05, '2-5% above spot',
strike_ratio < 1.10, '5-10% above spot',
'10%+ above spot') AS strike_vs_spot,
strike_ratio,
premium_pct
FROM
(
SELECT
toFloat64(strike_price) / toFloat64(underlying_close) AS strike_ratio,
toFloat64(option_close) / toFloat64(underlying_close) * 100 AS premium_pct
FROM global_markets.options_greeks
WHERE underlying_symbol = 'AAPL'
AND lower(option_type) IN ('call', 'c')
AND iv_converged = 1
AND volume > 0
AND date >= '2026-02-01'
AND date < '2026-08-01'
AND days_to_expiry BETWEEN 30 AND 45
AND underlying_close > 0
)
)
GROUP BY strike_vs_spot
ORDER BY min(strike_ratio)
Run your own version of this
The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.
More from this analysisHow to Roll an Option Position: Up and Out
2026 cash dividends per share at eight widely held payers
ranking 8×4
→
What extra time is worth: at-the-money AAPL call premium by days to expiry
ranking 6×3
→
Time value left in an in-the-money KO call as expiry approaches
ranking 5×4
→
Median implied volatility on 20 to 45 day near-the-money calls, July 2026
ranking 5×3
→
AAPL call delta by strike distance, 20 to 45 days to expiry, July 2026
ranking 5×3
→
Median implied volatility on near-the-money AAPL calls, by month
series 24×2
→
See all 2,170 queries →