delta_curve
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-24, from what-is-options-trading.
| moneyness | delta | iv_pct |
|---|---|---|
| 0.9 | 0.879 | 34.2 |
| 0.91 | 0.846 | 36.1 |
| 0.92 | 0.838 | 33.5 |
| 0.93 | 0.827 | 30.8 |
| 0.94 | 0.808 | 27.5 |
| 0.95 | 0.751 | 31.5 |
| 0.96 | 0.735 | 27.1 |
| 0.97 | 0.68 | 28.6 |
| 0.98 | 0.639 | 26.5 |
| 0.99 | 0.583 | 26 |
| 1 | 0.541 | 25.4 |
| 1.01 | 0.465 | 25.3 |
| 1.02 | 0.419 | 24.2 |
| 1.03 | 0.362 | 24.6 |
| 1.04 | 0.315 | 25 |
| 1.05 | 0.266 | 23.8 |
| 1.06 | 0.213 | 24.1 |
| 1.07 | 0.192 | 24.7 |
| 1.08 | 0.145 | 24.2 |
| 1.09 | 0.125 | 24.4 |
| 1.1 | 0.103 | 24.3 |
- Rows × columns
- 21 × 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 |
|---|---|---|---|
moneyness |
text | 21 distinct values (0.9, 0.91, 0.92…) | |
delta |
number | 0.103 to 0.879 | |
iv_pct |
number | 23.8 to 36.1 | 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.
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
moneyness,
round(avg(row_delta), 3) AS delta,
round(avg(row_iv) * 100, 1) AS iv_pct
FROM
(
SELECT
toString(round(toFloat64(strike_price) / toFloat64(underlying_close), 2)) AS moneyness,
toFloat64(delta) AS row_delta,
toFloat64(implied_volatility) AS row_iv
FROM global_markets.options_greeks
WHERE underlying_symbol = 'AAPL'
AND date BETWEEN '2026-06-01' AND '2026-06-30'
AND iv_converged = 1
AND volume > 0
AND delta > 0
AND days_to_expiry BETWEEN 25 AND 35
AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) <= 0.10
)
GROUP BY moneyness
ORDER BY moneyness
இந்தத் தரவுடன் உங்கள் AI உதவியாளரில் வேலை செய்யுங்கள்
இந்தப் பக்கத்தின் தரவுடன், வினவத் தயாராகத் திறக்கும். இலவசம், கணக்கு தேவையில்லை.