Net collar gamma at 90, 30 and 7 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 | gamma_90d | gamma_30d | gamma_7d |
|---|---|---|---|
| $85 | 3.01 | 5.05 | 3.7 |
| $90 | 2.33 | 6.01 | 12.79 |
| $100 | -0.67 | -0.88 | -0.19 |
| $110 | -2.27 | -4.96 | -10.47 |
| $118 | -1.94 | -2.68 | -1.15 |
- 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 |
|---|---|---|---|
spot_price |
text | 5 distinct values ($100, $110, $118…) | |
gamma_90d |
number | -2.27 to 3.01 | |
gamma_30d |
number | -4.96 to 6.01 | |
gamma_7d |
number | -10.47 to 12.79 |
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,
round(maxIf(net_gamma, days_out = 90), 2) AS gamma_90d,
round(maxIf(net_gamma, days_out = 30), 2) AS gamma_30d,
round(maxIf(net_gamma, days_out = 7), 2) AS gamma_7d
FROM
(
WITH
100.0 AS contract_multiplier,
90.0 AS put_strike,
110.0 AS call_strike,
0.25 AS vol,
0.04 AS rate
SELECT
spot,
days_out,
concat('$', toString(toUInt16(spot))) AS spot_price,
days_out / 365.0 AS years,
(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,
exp(-0.5 * d1_put * d1_put) / sqrt(2 * pi()) AS pdf_put,
exp(-0.5 * d1_call * d1_call) / sqrt(2 * pi()) AS pdf_call,
contract_multiplier * (pdf_put - pdf_call) / (spot * vol * sqrt(years)) AS net_gamma
FROM
(
SELECT
spot,
arrayJoin([7, 30, 90]) AS days_out
FROM
(
SELECT arrayJoin([85.0, 90.0, 100.0, 110.0, 118.0]) AS spot
)
)
)
GROUP BY spot, spot_price
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, theta and vega across the price range
ranking 5×4
→
Collar delta at five stock prices, 30 days to expiry
table 5×5
→
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
→
The $740 put's greeks, day by day (delta, gamma, theta, vega, IV%)
series 31×7
→
See all 2,170 queries →