Strasmore Research
Learn am Matt ConnorBy Matt Connor · data as of August 12, 2026 · refreshed weekly

Cash Settled vs Physical Delivery for Options

Check contract specs to know if you get cash or shares. See wetin assignment on SPY fit give you wey SPX no go ever provide when your option finish in the money.

Cash settled vs physical delivery

Cash settled vs physical delivery na the line for contract specification wey dey decide wetin go land for your account when option finish in the money.

Cash settled option dey pay or collect one dollar amount, and nothing come change hand.

Physically delivered option dey move one hundred shares of stock, join with every obligation wey holding or shorting those shares carry.

Wetin be the difference between cash settlement and physical delivery?

Both terms dey explain the same moment: option finish in the money, person exercise am, and clearing house settle the two sides.

Physical delivery dey settle with the underlying asset. Call holder wey exercise go buy 100 shares for the strike price, and the call seller wey dem assign go deliver the shares. Put option dey work the opposite way. Every listed equity and ETF option for United States dey settle like this, and all of dem na American style, wey mean say exercise fit happen any business day before expiration. American vs European options don cover that topic well.

Cash settlement dey settle with calculation. For expiration, clearing house go take the exercise settlement value, minus the strike price, then multiply the difference by the contract multiplier, wey be 100 for standard index contract. The holder wey dey in the money go receive that amount. The seller wey dem assign go pay am. Index na calculation, no be security, so nothing dey change hand. Broad based index options na European style too: exercise fit only happen for expiration, and early assignment no fit affect dem.

That exercise settlement value dey important make you know the name. E no be the last trade of the index, and e no be always the closing price. Na one number wey the exchange dey calculate and publish for expiration day, based on rule wey dem write inside the specification.

How I go take know if option na cash settled?

Make you read the contract specification, no be the ticker. Every listed option class get one, wey the exchange wey list am go publish. Most broker option chains dey repeat the two fields wey matter: settlement (cash or physical) and exercise style (American or European).

The matter dey tricky when you get two options wey dey cover the same exposure. ETF wey dey track index na security, so e options dey deliver shares of the ETF. The index option on that same index dey pay cash. SPY options dey deliver one hundred shares of the tracking ETF, American style. SPX options dey settle for cash against the index at one hundred dollar multiplier, European style. One market exposure, different settlement mechanics, wey SPX vs SPY options dey compare side by side. XSP dey settle for cash on one-tenth of the index value, and mini index options dey cover the sizing.

Three consequences of physical delivery dey cost real money, and none of them dey for cash settled contract:

  1. One unwanted one hundred share position, plus the cash or margin wey you need to carry am.
  2. Dividend and borrow exposure wey you go inherit overnight if dem assign you.
  3. Pin risk into the closing print on expiration day.

Wetin one physically delivered contract dey give you?

If dem exercise call, na purchase: one hundred shares for the strike price, wey you go pay cash. The price wey you pay for the option no get anything to do with how big that obligation be. The table wey dey down so show the price for six popular stocks, wey we use their latest close as stand-in for strike price wey near the money.

QueryHow much 100 shares per contract dey worth, six big-name companies
The exact SQL behind every number
SELECT
    ticker,
    round(argMax(toFloat64(close), date) * 100 / 1000, 1) AS contract_value_usd_thousands,
    formatDateTime(max(date), '%b %e, %Y')                AS latest_session
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('AAPL', 'AMZN', 'KO', 'NVDA', 'SPY', 'TSLA')
  AND date >= today() - 30
GROUP BY ticker
ORDER BY contract_value_usd_thousands DESC
Run this yourself

For the Aug 12, 2026 close, one contract on SPY represent roughly 77.3 thousand dollars of stock. The smallest obligation for the table, KO, still reach about 8.6 thousand dollars. Trader wey pay two dollars for one call don only pay small part of that money. Account wey still hold shares wey e no get money to pay for by Friday go face margin call for Monday morning. Cash settled contract for the same exposure go just give you number, e no go give you position.

Dividends and borrow: wetin assignment dey carry come

Assignment dey transfer position and the calendar wey follow am. If dem assign short call before ex-dividend date, the person wey sell the call go come get short position for the stock over that date, and person wey short stock must pay the dividend to the lender. For one hundred shares, the bill na the amount per share multiply by the multiplier.

QueryDividend wey dem owe per assigned contract, recent ex-dividend dates
The exact SQL behind every number
SELECT
    ticker,
    round(argMax(toFloat64(cash_amount), ex_dividend_date) * 100, 2) AS dividend_per_contract_usd,
    formatDateTime(max(ex_dividend_date), '%b %e, %Y')               AS latest_ex_date
FROM global_markets.stocks_dividends
WHERE ticker IN ('AAPL', 'JNJ', 'KO', 'MSFT', 'SPY', 'XOM')
  AND ex_dividend_date >  today() - 130
  AND ex_dividend_date <= today()
GROUP BY ticker
ORDER BY dividend_per_contract_usd DESC
Run this yourself

Across 6 payers wey get recent ex-dividend date, the biggest single obligation na SPY, wey reach $190.35 per contract for im Jun 18, 2026 ex-date. For the other side of the panel, AAPL reach $27. None of these figures dey inside the option price. Both of dem dey follow the shares.

The borrow side dey work the same way. You must borrow short stock, and for name wey hard to borrow, the borrow get daily fee or dem fit recall am; if dem recall am, you go buy the position back for whatever price the market dey. Index option wey settle for cash no get any of these wahala: no share to borrow, no dividend to pay. Trading around the ex-dividend date dey explain how the timing dey work.

Pin risk dey concern physical delivery

Pin risk na wahala wey dey happen for expiration day when strike price dey near the market price. If person sell $100 strike call, and the stock close at $100.02, the person no go know on Friday evening weda the holder exercise the option. Monday go open flat or with short position of 100 shares, and the hedge wey you do for one outcome go dey wrong for the other one. SPY dey list strikes for one dollar intervals for most of im range, so the distance from the closing price to the nearest whole dollar na beta way to measure how often the tape dey park on top strike.

QueryHow close SPY dey close reach whole dollar strike, expiration Fridays vs other days
The exact SQL behind every number
SELECT
    distance_band,
    round(100 * expiry_sessions / sum(expiry_sessions) OVER (), 1) AS monthly_expiry_pct,
    round(100 * other_sessions  / sum(other_sessions)  OVER (), 1) AS other_session_pct,
    expiry_sessions                                                AS expiry_session_count
FROM
(
    SELECT
        multiIf(cents_from_strike <  5.0, 'within 5c',
                cents_from_strike < 15.0, '5c to 15c',
                cents_from_strike < 30.0, '15c to 30c',
                                          '30c to 50c') AS distance_band,
        min(cents_from_strike)                          AS band_floor,
        countIf(is_monthly_expiry = 1)                  AS expiry_sessions,
        countIf(is_monthly_expiry = 0)                  AS other_sessions
    FROM
    (
        SELECT
            round(100 * abs(toFloat64(close) - round(toFloat64(close))), 2)  AS cents_from_strike,
            (toDayOfWeek(date) = 5 AND toDayOfMonth(date) BETWEEN 15 AND 21) AS is_monthly_expiry
        FROM global_markets.stocks_daily_aggs
        WHERE ticker = 'SPY'
          AND date >= '2021-01-04'
          AND date <  today()
    )
    GROUP BY distance_band
)
ORDER BY band_floor
Run this yourself

Since the start of 2021, SPY close don land within 5 cents of a whole dollar for 10.9% of monthly expiration Fridays, compared to 9.2% of every other session. The widest band, 30c to 50c, hold 43.8% of those Fridays. Make you read the two columns as rough census of how often a close dey finish near a listed strike. For contract wey dem dey deliver physically, that zone na where Monday position go remain unknown until exercise notices arrive overnight. For contract wey dem dey settle with cash, the same print go just produce settlement amount and nothing else. Pin risk for options expiration explain the seller side well-well.

Which print cash settled contract dey use?

Cash settlement dey bring one question wey physical delivery no dey ever worry about: which price? Shares dey move at the strike price based on the last print. Cash settled contract need one published number, and the specification go name am. Some index contracts dey settle against morning value wey dem build from the opening prints of every component, na the AM settlement wey dey behind the monthly S&P 500 contract. Oda ones dey settle against expiration day closing values, na PM settlement.

QuerySPY: widest open print to close print gaps on monthly expiration Fridays since 2021
The exact SQL behind every number
SELECT
    formatDateTime(date, '%b %e, %Y')                                        AS expiration_label,
    round(toFloat64(open), 2)                                                AS open_print_usd,
    round(toFloat64(close), 2)                                               AS close_print_usd,
    round(100 * abs(toFloat64(close) - toFloat64(open)) / toFloat64(open), 2) AS open_to_close_gap_pct
FROM global_markets.stocks_daily_aggs
WHERE ticker = 'SPY'
  AND date >= '2021-01-04'
  AND date <  today()
  AND toDayOfWeek(date) = 5
  AND toDayOfMonth(date) BETWEEN 15 AND 21
ORDER BY open_to_close_gap_pct DESC
LIMIT 12
Run this yourself

The widest of the twelve, Oct 21, 2022, put 2.51% between the opening print at $365.12 and the close at $374.29. The twelfth widest still measure 0.92%. Against a $100 multiplier, that distance na real money on top one single contract, na why AM and PM settled options suppose dey for the checklist before person hold anything reach expiration.

Wetin dey happen wen cash-settled option wey dey in the money expire?

One line go show for your account, nothing else. The clearing house dey automatically exercise contracts wey dey in the money base on dia exercise by exception rule, wey dey trigger once the option dey one penny in the money, except if the holder give contrary instruction. Dem go calculate the exercise settlement value and post one single net debit or credit. No assignment notice go come during the weekend, no shares go show for your position list, no need to arrange borrow, and no dividend go dey due. The position just disappear come Monday.

The physically delivered version dey end with stock position instead: one hundred shares per contract, long or short, with cash wey you owe or receive for the next settlement date. Wetin go happen if option expire in the money explain that path step by step.

One difference dey inside tax code instead of clearing house. Broad-based index options na section 1256 contracts for US taxpayers: dem dey mark-to-market for year-end, with gains wey dem split sixty percent long-term and forty percent short-term regardless of how long you hold the asset. Options on ETF wey dey track the same index dey taxed as ordinary equity options. The 60/40 tax treatment get the details, and make you check with tax professional for wetin concern your account.

How dem build these panels

The contract value panel dey multiply each name most recent close by the one hundred share multiplier, and e dey use that close as stand-in for strike price wey dey near the money. The dividend panel dey take the latest ex-dividend date inside one hundred and thirty day window and e dey scale the cash amount to one contract. The pin panel dey measure the distance of closing price to the nearest whole dollar, then e dey split every session since the start of 2021 into third Friday expirations and everything else. The settlement print panel dey use SPY regular session open and close as proxy for the difference between morning and afternoon reference value. E no be the Special Opening Quotation itself, wey dem dey calculate from the opening prints of the index components.

FAQ

SPY na cash settled abi na physically delivered?

SPY options na physically delivered. Exercise dey move 100 shares of the ETF per contract for the strike, and the contracts na American style, so assignment fit happen any business day before expiry. SPX options for the same index dey settle for cash.

Wetin be the exercise settlement value?

Na the single value wey dem dey measure cash settled contract against for expiry, wey the exchange calculate and publish under one rule for the contract specification. E no must be the index close: AM settled contract dey use value wey dem build from component opening prints.

Cash settled index option fit get early assignment?

Standard broad based index options na European style, so exercise dey happen only for expiry and early assignment no dey exist for dem. Settlement type and exercise style na two separate fields for the specification, even though for index products, dem usually dey travel together.

Pin risk dey apply to cash settled options?

No. Pin risk na the uncertainty about whether shares go change hand when the close dey sit on the strike. Cash settled contract dey post dollar amount from the exercise settlement value, so one penny in the money and one dollar in the money dey finish the same way.

How I go take find the settlement type for one specific contract?

Open the contract specification for the listing exchange site, or the contract details for one broker option chain, and read the settlement field wey dey beside the exercise style field. The ticker root no be reliable guide, and two products on one underlying exposure fit differ for both.


Every panel wey dey here dey come with the SQL wey produce am, so the same obligation check dey run on any other name with a ticker swap. Ask am for plain English on the Strasmore terminal.