Monthly cost of a near-the-money call, as a percent of share price
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-22, from Covered Call Closed-End Funds vs ETFs.
| month | spy_call_premium_pct | aapl_call_premium_pct |
|---|---|---|
| 2025-02 | 1.8 | 2.94 |
| 2025-03 | 2.36 | 3.62 |
| 2025-04 | 3.35 | 5.5 |
| 2025-05 | 2.28 | 3.68 |
| 2025-06 | 1.98 | 3.39 |
| 2025-07 | 1.92 | 3.66 |
| 2025-08 | 1.71 | 2.96 |
| 2025-09 | 1.61 | 3.03 |
| 2025-10 | 2 | 3.31 |
| 2025-11 | 2.09 | 2.99 |
| 2025-12 | 1.63 | 2.69 |
| 2026-01 | 1.79 | 3.34 |
| 2026-02 | 2.05 | 3.29 |
| 2026-03 | 2.54 | 3.64 |
| 2026-04 | 2.05 | 3.42 |
| 2026-05 | 1.95 | 2.92 |
| 2026-06 | 1.94 | 3.18 |
| 2026-07 | 1.88 | 3.74 |
- Rows × columns
- 18 × 3
- Period covered
- to
- 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 |
|---|---|---|---|
month |
date | 2025-02 to 2026-07 | |
spy_call_premium_pct |
number | 1.61 to 3.35 | percent |
aapl_call_premium_pct |
number | 2.69 to 5.5 | 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.
the exact SQL behind every number
SELECT
formatDateTime(toStartOfMonth(date), '%Y-%m') AS month,
round(avgIf(toFloat64(option_close) / toFloat64(underlying_close),
underlying_symbol = 'SPY') * 100, 2) AS spy_call_premium_pct,
round(avgIf(toFloat64(option_close) / toFloat64(underlying_close),
underlying_symbol = 'AAPL') * 100, 2) AS aapl_call_premium_pct
FROM global_markets.options_greeks
WHERE underlying_symbol IN ('SPY', 'AAPL')
AND lower(option_type) IN ('call', 'c')
AND iv_converged = 1
AND volume > 0
AND underlying_close > 0
AND days_to_expiry BETWEEN 20 AND 45
AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.02
AND date >= toStartOfMonth(today() - 550)
AND date < toStartOfMonth(today())
GROUP BY month
HAVING countIf(underlying_symbol = 'SPY') > 0
AND countIf(underlying_symbol = 'AAPL') > 0
ORDER BY month
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 analysisCovered Call Closed-End Funds vs ETFs
Short-term Treasury yields by month, the reference for fund borrowing costs
series 36×3
→
Cash distributions over the trailing year, by declared schedule
ranking 5×2
→
Share price indexed to 100, three covered call ETFs, monthly
series 59×4
→
Cash distributions per share, month by month
series 59×4
→
One session, many prices: VOO in half-hour marks, Wednesday July 22, 2026
series 32×3
→
Monthly cash per share: an option income fund and a bond fund
series 24×3
→
See all 2,170 queries →