Net delta of a SPY box as the upper strike widens (June 1, 2026)
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-06, from Box Spread Options and the Implied Loan Rate.
| strike_width | call_leg_delta | put_leg_delta | box_net_delta |
|---|---|---|---|
| 5 | 0.02 | -0.0195 | 0.0005 |
| 10 | 0.0405 | -0.0392 | 0.0013 |
| 15 | 0.0617 | -0.0596 | 0.0021 |
| 20 | 0.0829 | -0.0805 | 0.0024 |
| 25 | 0.105 | -0.1008 | 0.0042 |
| 30 | 0.1272 | -0.1231 | 0.0041 |
| 35 | 0.1513 | -0.1444 | 0.0069 |
| 45 | 0.1979 | -0.1856 | 0.0123 |
| 50 | 0.2208 | -0.1977 | 0.0231 |
- Rows × columns
- 9 × 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 |
|---|---|---|---|
strike_width |
number | 5 to 50 | US dollars |
call_leg_delta |
number | 0.02 to 0.2208 | |
put_leg_delta |
number | -0.1977 to -0.0195 | |
box_net_delta |
number | 0.0005 to 0.0231 |
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.
WITH
chain AS
(
SELECT
toFloat64(strike_price) AS strike,
avg(toFloat64(underlying_close)) AS spot,
round(avgIf(delta, delta > 0), 4) AS call_delta,
round(avgIf(delta, delta < 0), 4) AS put_delta
FROM global_markets.options_greeks
WHERE underlying_symbol = 'SPY'
AND date = '2026-06-01'
AND expiration_date = '2026-12-18'
AND iv_converged = 1
AND volume > 0
GROUP BY strike
HAVING countIf(delta > 0) > 0
AND countIf(delta < 0) > 0
),
lower_leg AS
(
SELECT
strike AS k1,
call_delta AS c1,
put_delta AS p1
FROM chain
ORDER BY abs(strike - spot)
LIMIT 1
)
SELECT
toUInt32(strike - k1) AS strike_width,
round(c1 - call_delta, 4) AS call_leg_delta,
round(put_delta - p1, 4) AS put_leg_delta,
round(c1 - call_delta + put_delta - p1, 4) AS box_net_delta
FROM chain
CROSS JOIN lower_leg
WHERE strike > k1
AND strike <= k1 + 60
ORDER BY strike