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.
the exact SQL behind every number
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
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 analysisBox Spread Options and the Implied Loan Rate
Annualised cost of a hypothetical 10 cent fill error on a ten point box
ranking 12×2
→
Where SPY option volume sits, by strike distance from spot (June 2026)
ranking 5×3
→
A ten point box valued at every level SPY closed at in June 2026
table 8×5
→
Call and put implied volatility at matched AAPL strikes, Sep 18 2026 expiry
ranking 15×4
→
Call and put implied volatility near the money across AAPL monthly expirations, June 16 2026
series 7×6
→
SPY options median spread by expiration date, near-the-money strikes only
ranking 25×4
→
See all 2,173 queries →