Reg T minimum branches for one uncovered AAPL call, by strike (dollars per share)
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-22, from Margin for Selling Naked Options: Reg T Math.
| strike | main_branch | floor_branch | branch_gap |
|---|---|---|---|
| 285 | 57.8 | 28.9 | 28.9 |
| 290 | 56.81 | 28.9 | 27.91 |
| 295 | 51.81 | 28.9 | 22.91 |
| 300 | 46.81 | 28.9 | 17.91 |
| 305 | 41.81 | 28.9 | 12.91 |
| 310 | 36.81 | 28.9 | 7.91 |
| 315 | 31.81 | 28.9 | 2.91 |
| 320 | 26.81 | 28.9 | -2.09 |
| 325 | 21.81 | 28.9 | -7.09 |
| 330 | 16.81 | 28.9 | -12.09 |
| 335 | 11.81 | 28.9 | -17.09 |
| 340 | 6.81 | 28.9 | -22.09 |
- Rows × columns
- 12 × 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 |
number | 285 to 340 | US dollars |
main_branch |
number | 6.81 to 57.8 | |
floor_branch |
number | every row is 28.9 | |
branch_gap |
number | -22.09 to 28.9 |
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
round(toFloat64(strike_price), 2) AS strike,
round(0.20 * max(toFloat64(underlying_close))
- greatest(toFloat64(strike_price) - max(toFloat64(underlying_close)), 0.0), 2) AS main_branch,
round(0.10 * max(toFloat64(underlying_close)), 2) AS floor_branch,
round(0.20 * max(toFloat64(underlying_close))
- greatest(toFloat64(strike_price) - max(toFloat64(underlying_close)), 0.0)
- 0.10 * max(toFloat64(underlying_close)), 2) AS branch_gap
FROM global_markets.options_greeks
WHERE underlying_symbol = 'AAPL'
AND date = (
SELECT max(date)
FROM global_markets.options_greeks
WHERE underlying_symbol = 'AAPL'
AND date BETWEEN '2026-06-01' AND '2026-06-30'
)
AND days_to_expiry BETWEEN 20 AND 45
AND iv_converged = 1
AND volume > 0
AND toFloat64(strike_price) BETWEEN 0.98 * toFloat64(underlying_close)
AND 1.18 * toFloat64(underlying_close)
GROUP BY strike_price
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 analysisMargin for Selling Naked Options: Reg T Math
Reg T minimum branches for one uncovered AAPL put, by strike (dollars per share)
ranking 11×4
→
Uncovered call minimum per contract, strike about 5% out of the money
ranking 5×3
→
One fixed short AAPL call strike: requirement as a percent of the share price, April to June 2026
series 62×4
→
A 15% cap and 9% buffer, seen from three entry points
ranking 21×4
→
SPY realized volatility and worst session, by calendar year
ranking 20×4
→
Buyer and seller collateral at every contract price
ranking 19×4
→
See all 2,170 queries →