Collar delta at five stock prices, 30 days 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-08-18, from Collar Option Greeks as the Stock Moves.
| spot_price | stock_delta | long_put_delta | short_call_delta | net_delta |
|---|---|---|---|---|
| $85 | 100 | -76.3 | 0 | 23.7 |
| $90 | 100 | -46.7 | -0.3 | 52.9 |
| $100 | 100 | -6 | -10.6 | 83.4 |
| $110 | 100 | -0.2 | -53.3 | 46.5 |
| $118 | 100 | 0 | -85.6 | 14.4 |
- Rows × columns
- 5 × 5
- 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 |
|---|---|---|---|
spot_price |
text | 5 distinct values ($100, $110, $118…) | |
stock_delta |
number | every row is 100 | |
long_put_delta |
number | -76.3 to 0 | |
short_call_delta |
number | -85.6 to 0 | |
net_delta |
number | 14.4 to 83.4 |
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
spot_price,
stock_delta,
long_put_delta,
short_call_delta,
net_delta
FROM
(
WITH
100.0 AS shares,
100.0 AS contract_multiplier,
90.0 AS put_strike,
110.0 AS call_strike,
0.25 AS vol,
0.04 AS rate,
30.0 / 365.0 AS years
SELECT
spot,
concat('$', toString(toUInt16(spot))) AS spot_price,
(log(spot / put_strike) + (rate + 0.5 * vol * vol) * years) / (vol * sqrt(years)) AS d1_put,
(log(spot / call_strike) + (rate + 0.5 * vol * vol) * years) / (vol * sqrt(years)) AS d1_call,
0.5 * (1 + erf(d1_put / sqrt(2))) AS nd1_put,
0.5 * (1 + erf(d1_call / sqrt(2))) AS nd1_call,
toInt32(shares) AS stock_delta,
round(contract_multiplier * (nd1_put - 1), 1) AS long_put_delta,
round(-contract_multiplier * nd1_call, 1) AS short_call_delta,
round(shares + contract_multiplier * (nd1_put - 1) - contract_multiplier * nd1_call, 1) AS net_delta
FROM
(
SELECT arrayJoin([85.0, 90.0, 100.0, 110.0, 118.0]) AS spot
)
)
ORDER BY spot
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 analysisCollar Option Greeks as the Stock Moves
AAPL implied volatility by strike distance, downside puts vs upside calls (May to July 2026)
ranking 6×4
→
Net collar gamma at 90, 30 and 7 days to expiry
ranking 5×4
→
Net collar gamma, theta and vega across the price range
ranking 5×4
→
Median greeks by time to expiration: every near-the-money US option, July 15, 2026
table 5×6
→
One SPY $740 call's price over its 7-week life (expired Jun 18 2026)
series 31×2
→
The stock both options tracked: SPY, May 1 to Jun 15 2026
series 31×3
→
See all 2,170 queries →