STRASMORE/EXPLORE 2,433 QUERIES

Reg T minimum branches for one uncovered AAPL put, 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-09-20, from Margin for Selling Naked Options: Reg T Math.

as of ranking 11×4read in context →
Reg T minimum branches for one uncovered AAPL put, by strike (dollars per share) — 11 rows by 4 columns, computed from US exchange, SIP and OPRA data.
strikemain_branchfloor_branchbranch_gap
2408.7924-15.21
24513.7924.5-10.71
25018.7925-6.21
25523.7925.5-1.71
26028.79262.79
26533.7926.57.29
27038.792711.79
27543.7927.516.29
28048.792820.79
28553.7928.525.29
29057.82928.8
Rows × columns
11 × 4
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Reg T minimum branches for one uncovered AAPL put, by strike (dollars per share), derived from the stored result.
ColumnTypeRangeNotes
strike number 240 to 290 US dollars
main_branch number 8.79 to 57.8
floor_branch number 24 to 29
branch_gap number -15.21 to 28.8

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.

SELECT
    round(toFloat64(strike_price), 2)                                          AS strike,
    round(0.20 * max(toFloat64(underlying_close))
          - greatest(max(toFloat64(underlying_close)) - toFloat64(strike_price), 0.0), 2) AS main_branch,
    round(0.10 * toFloat64(strike_price), 2)                                   AS floor_branch,
    round(0.20 * max(toFloat64(underlying_close))
          - greatest(max(toFloat64(underlying_close)) - toFloat64(strike_price), 0.0)
          - 0.10 * toFloat64(strike_price), 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.82 * toFloat64(underlying_close)
                                  AND 1.02 * toFloat64(underlying_close)
GROUP BY strike_price
ORDER BY strike
⌘/Ctrl + Enter
More from this analysisMargin for Selling Naked Options: Reg T Math
Reg T minimum branches for one uncovered AAPL call, by strike (dollars per share) ranking 12×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,433 queries →