Time value left in KO calls as they move deeper in the money
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 When Special Dividends Adjust Options.
| moneyness_bucket | contracts | avg_time_value_usd | avg_delta |
|---|---|---|---|
| Out of the money | 8872 | 0.37 | 0.18 |
| 0% to 2% in | 1688 | 1.03 | 0.63 |
| 2% to 5% in | 1810 | 0.65 | 0.79 |
| 5% to 10% in | 1200 | 0.47 | 0.88 |
| 10% or more in | 1209 | 0.46 | 0.93 |
- Rows × columns
- 5 × 4
- 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 |
|---|---|---|---|
moneyness_bucket |
text | 5 distinct values (0% to 2% in, 10% or more in, 2% to 5% in…) | |
contracts |
number | 1,200 to 8,872 | count |
avg_time_value_usd |
number | 0.37 to 1.03 | US dollars |
avg_delta |
number | 0.18 to 0.93 |
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
multiIf(moneyness < 0, 'Out of the money',
moneyness < 0.02, '0% to 2% in',
moneyness < 0.05, '2% to 5% in',
moneyness < 0.10, '5% to 10% in',
'10% or more in') AS moneyness_bucket,
count() AS contracts,
round(avg(time_value), 2) AS avg_time_value_usd,
round(avg(delta), 2) AS avg_delta
FROM
(
SELECT
toFloat64(underlying_close) / toFloat64(strike_price) - 1 AS moneyness,
toFloat64(option_close)
- greatest(toFloat64(underlying_close)
- toFloat64(strike_price), 0) AS time_value,
delta AS delta
FROM global_markets.options_greeks
WHERE underlying_symbol = 'KO'
AND delta > 0
AND iv_converged = 1
AND volume > 0
AND strike_price > 0
AND days_to_expiry BETWEEN 5 AND 35
AND date >= today() - 400
AND date < today() - 3
)
GROUP BY moneyness_bucket
ORDER BY min(moneyness) ASC
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 analysisWhen Special Dividends Adjust Options
One time cash distributions per calendar year, and their share of all payouts
ranking 9×3
→
One time distributions by size, measured against the ex date closing price
ranking 6×3
→
How big each kind of cash distribution is, as a share of the stock price
ranking 5×4
→
Near-the-money implied volatility into a cash close (ATVI, 2023)
series 83×4
→
A target stock pinning to its cash deal price (ATVI, 2023)
series 83×4
→
One deliverable, two companies: GE and GE HealthCare after the spin
series 61×5
→
See all 2,170 queries →