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

Broker Exercise Cut-Off Times Explained

Your broker's option exercise cut-off falls after the close and before OCC's deadline. How auto exercise and do not exercise instructions really work.

A broker exercise cut-off time is the deadline your firm sets for receiving instructions about an expiring option, and it lands in a gap you do not control: after the 4:00 p.m. ET close, when the contract stops trading, and before the industry deadline that ends every holder's right to decide. Miss it and the outcome is settled by rule instead of by you. This page walks the chain in order and names the source behind each deadline.

What is a broker exercise cut-off time?

Exercise travels through a chain. You instruct your broker. Your broker, as a clearing member, passes exercise and contrary instructions to the Options Clearing Corporation (OCC), the clearinghouse standing between the buyer and the seller of every listed US option. OCC allocates the assignment to a firm carrying a short position, and that firm allocates it among its own customers.

Every link carries a deadline, and each sits earlier than the one above it. The industry level deadline is fixed and public: FINRA Rule 2360(b)(23) gives an option holder until 5:30 p.m. ET on the expiration date to make a final exercise decision, and it lets a member set an earlier time while barring any member from accepting instructions after 5:30 p.m. ET. Your broker's cut-off is that earlier time. No rule fixes the minute, which is why investor education pages describe it only as the firm's own cut-off for the day and never print a number.

Treat your cut-off as a documented rule rather than a remembered clock time. It appears in the options account agreement and in the expiration notices your firm sends. Firms move it. The version in your firm's current disclosure is the one that governs your account.

The expiration day chain, in order

  1. The contract stops trading. Listed equity options trade until the 4:00 p.m. ET close on the expiration date. After that there is no market in the contract, only a decision about it. What time options stop trading covers the product by product exceptions.
  2. Your broker's cut-off passes. Some minutes after the close, at a time the firm publishes. This is the last moment you can act.
  3. The 5:30 p.m. ET holder deadline passes. Past this point no member firm may accept an exercise or contrary instruction from a customer for that expiration.
  4. The firm files. A member's own window to submit contrary exercise advices runs later into the evening under exchange rules. Instructions keep moving through the system after you can no longer send one.
  5. Exercise by exception runs and assignment is allocated overnight. Stock changes hands on the standard T+1 settlement timetable.

Steps 2 and 3 are the whole problem. They are different moments, and the stock trades through both.

What is exercise by exception?

Exercise by exception, the auto exercise most traders have heard of, is OCC Rule 805. At expiration the clearinghouse exercises every option that finishes in the money by a threshold amount unless a contrary instruction arrives first. The threshold is one cent: $0.01 per contract in the money for equity options, in customer accounts and firm accounts alike, and $0.01 for index options in every account type.

One penny of intrinsic value at the closing price is enough to deliver 100 shares per contract into an account. OCC describes the procedure as an administrative convenience for its clearing members. It was never designed to replace the instruction a customer gives a broker.

That penny makes the official closing price the most important number of the day for anything resting near a strike. The panel below counts how close expiring contracts actually finish.

QueryHow close expiring AAPL contracts finish to the strike
The exact SQL behind every number
SELECT
    multiIf(dist < 0.0025, '0.00 to 0.25%',
            dist < 0.005,  '0.25 to 0.50%',
            dist < 0.01,   '0.50 to 1.00%',
            dist < 0.02,   '1.00 to 2.00%',
            dist < 0.05,   '2.00 to 5.00%',
                           'over 5.00%')  AS strike_distance,
    count()                               AS contract_count
FROM
(
    SELECT
        ticker,
        argMin(abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1), days_to_expiry) AS dist
    FROM global_markets.options_greeks
    WHERE underlying_symbol = 'AAPL'
      AND days_to_expiry <= 1
      AND date >= '2026-01-01'
      AND date <  '2026-08-01'
      AND volume > 0
      AND underlying_close > 0
    GROUP BY ticker
)
GROUP BY strike_distance
ORDER BY min(dist)
Run this yourself

Across AAPL contracts expiring between January and July 2026, 58 finished their last session with the stock inside a quarter of one percent of the strike. Another 74 landed between a quarter and half a percent away. On a stock trading near $200, a quarter of one percent is 50 cents. Those are the positions where the exercise question is live, and where the distance between 4:00 p.m. and 5:30 p.m. is measured in pennies.

Why the price after 4:00 p.m. still matters

The option stops trading at 4:00 p.m. ET. The stock does not. Extended hours sessions run to 8:00 p.m. ET, and prints in that window carry the underlying across the strikes that decide the question. Exercise by exception is applied to the official closing price. A stock that moves after the close changes what a holder would have wanted without changing what the rule does.

QueryAverage move between the 4:00 p.m. close and 5:30 p.m. ET
The exact SQL behind every number
SELECT
    ticker,
    count()                     AS friday_count,
    round(avg(drift_pct), 3)    AS avg_abs_drift_pct,
    round(max(drift_pct), 2)    AS max_abs_drift_pct
FROM
(
    SELECT
        ticker,
        session_date,
        abs(100 * (argMaxIf(px, ts, et_minute >= 960 AND et_minute < 1050)
                   / argMaxIf(px, ts, et_minute >= 570 AND et_minute < 960) - 1)) AS drift_pct
    FROM
    (
        SELECT
            ticker,
            toDate(toTimeZone(window_start, 'America/New_York'))       AS session_date,
            toHour(toTimeZone(window_start, 'America/New_York')) * 60
              + toMinute(toTimeZone(window_start, 'America/New_York')) AS et_minute,
            toFloat64(close)                                           AS px,
            window_start                                               AS ts
        FROM global_markets.delayed_stocks_minute_aggs
        WHERE ticker IN ('AAPL', 'KO', 'MSFT', 'NVDA', 'SPY', 'TSLA')
          AND window_start >= today() - 730
          AND toDayOfWeek(toDate(toTimeZone(window_start, 'America/New_York'))) = 5
          AND toDayOfMonth(toDate(toTimeZone(window_start, 'America/New_York'))) BETWEEN 15 AND 21
    )
    GROUP BY ticker, session_date
    HAVING countIf(et_minute >= 960 AND et_minute < 1050) > 0
       AND countIf(et_minute >= 570 AND et_minute < 960) > 0
)
GROUP BY ticker
ORDER BY avg_abs_drift_pct DESC
Run this yourself

Measured across monthly expirations over the past two years, TSLA traveled an average of 0.257% between its 4:00 p.m. print and its last print before 5:30 p.m., with a widest single move of 0.87%. At the other end of the group, SPY averaged 0.107%. The averages are small. The tail is what matters at expiration: a contract one cent in the money at the close and thirty cents out of the money at 5:25 p.m. is exercised anyway.

One session shows the shape of it. The trace below pins NVDA on July 17, 2026, a monthly expiration Friday, in five minute buckets from the last hour of the regular session through the post close window.

QueryNVDA on July 17, 2026: the close and the post close window
The exact SQL behind every number
SELECT
    bucket                               AS window_start,
    round(argMax(px, ts), 2)             AS last_price,
    sum(vol)                             AS volume
FROM
(
    SELECT
        toStartOfInterval(toTimeZone(window_start, 'America/New_York'), INTERVAL 5 MINUTE) AS bucket,
        window_start     AS ts,
        toFloat64(close) AS px,
        volume           AS vol
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker = 'NVDA'
      AND window_start >= toDateTime('2026-07-17 19:00:00', 'UTC')
      AND window_start <  toDateTime('2026-07-17 21:30:00', 'UTC')
)
GROUP BY bucket
ORDER BY bucket
Run this yourself

Volume concentrates in the regular session buckets and thins after the 4:00 p.m. ET close while prices keep printing. Between the first bucket and the last one before 5:30 p.m., the stock ran from $203.09 to $202.75. Any strike between those two prices changed status inside the window where most holders can no longer act. This is the same mechanism the pin risk at options expiration guide describes from the short side, and it decides what happens when an option expires in the money for the long.

What is a contrary instruction or a do not exercise?

A contrary exercise advice tells the chain to do the opposite of the automatic outcome. It takes two forms. One is a do not exercise instruction on an option that finished in the money, abandoning whatever value it has. The other is an exercise instruction on an option the threshold would have left alone.

Holders file them for reasons the threshold cannot see:

  • An exercised call delivers 100 shares per contract and demands the cash for them. An account without the cash starts the week in a margin call, and firms may close the position at their own discretion.
  • A penny of intrinsic value can be worth less than the exercise fee plus the weekend gap risk of holding stock nobody planned to own.
  • An option that closed just out of the money can be worth real money at 5:00 p.m. ET after the stock has moved in extended hours. The right to exercise it survives to the deadline.
  • A spread may need both legs to expire together. Taking delivery on one side alone converts the position into something the holder never chose.

Two details catch people out. The deadline for a contrary instruction is often earlier than the deadline for a plain exercise, and some firms accept one only by phone or on a written form. Nothing obliges a firm to take anything after its published cut-off. The 5:30 p.m. ET rule caps the industry. Your firm's cut-off is the one that binds your account.

How often does the post close window change the answer? One plain measure counts expirations where the last print before 5:30 p.m. sits on the other side of a whole dollar from the 4:00 p.m. close, since whole dollar levels are listed strikes on most liquid names.

QueryMonthly expirations where the post close print crossed a whole dollar
The exact SQL behind every number
SELECT
    ticker,
    count()                                      AS expirations_measured,
    countIf(floor(close_px) != floor(post_px))   AS dollar_line_crossings
FROM
(
    SELECT
        ticker,
        session_date,
        argMaxIf(px, ts, et_minute >= 570 AND et_minute < 960)  AS close_px,
        argMaxIf(px, ts, et_minute >= 960 AND et_minute < 1050) AS post_px
    FROM
    (
        SELECT
            ticker,
            toDate(toTimeZone(window_start, 'America/New_York'))       AS session_date,
            toHour(toTimeZone(window_start, 'America/New_York')) * 60
              + toMinute(toTimeZone(window_start, 'America/New_York')) AS et_minute,
            toFloat64(close)                                           AS px,
            window_start                                               AS ts
        FROM global_markets.delayed_stocks_minute_aggs
        WHERE ticker IN ('AAPL', 'KO', 'MSFT', 'NVDA', 'SPY', 'TSLA')
          AND window_start >= today() - 730
          AND toDayOfWeek(toDate(toTimeZone(window_start, 'America/New_York'))) = 5
          AND toDayOfMonth(toDate(toTimeZone(window_start, 'America/New_York'))) BETWEEN 15 AND 21
    )
    GROUP BY ticker, session_date
    HAVING countIf(et_minute >= 960 AND et_minute < 1050) > 0
       AND countIf(et_minute >= 570 AND et_minute < 960) > 0
)
GROUP BY ticker
ORDER BY dollar_line_crossings DESC, ticker
Run this yourself

Over monthly expirations in the past two years, SPY ended the post close window across a whole dollar line on 11 of 22 expirations measured. A whole dollar covers a different percentage on a $70 stock than on a $400 one, so read the panel as a count of near misses rather than a ranking of risk.

Short options and cash settled index options

Two positions sit outside the decision.

A short option carries no cut-off time for you at all. Exercise is the holder's right. Assignment reaches you through OCC's allocation to a member firm and that firm's allocation among its customers, usually as a position change you read the next morning. The same one way street operates before expiration, which when short options get assigned early covers in detail.

Cash settled index options deliver no shares. In the money value converts to cash at the settlement price with no instruction from anyone, which removes the delivery problem entirely. Many of them are AM settled and stop trading the day before the settlement print is taken. Cash settled versus physically delivered options and AM and PM settled contracts lay out the difference.

How to find your firm's exact cut-off time

Four questions get the whole answer:

  1. What is the deadline for exercise instructions on the expiration date?
  2. What is the deadline for a do not exercise instruction, and is it earlier than the first one?
  3. What does the firm do on its own with an in the money long the account cannot pay for?
  4. Which channel counts as filed: a platform ticket, a phone call, or a written form?

The answers live in the options account agreement, on the firm's exercise and assignment page, and in the expiration reminders it emails. A written answer holds up on a Friday afternoon. A phone queue at 4:45 p.m. ET may not.

How these panels are measured
  • The post close window is every print between 4:00 p.m. and 5:30 p.m. ET on a given date, matched against the last regular session print that same day.
  • Expirations are third Friday monthlies over the past two years of the minute tape. A third Friday that lands on a market holiday drops out.
  • The ladder reads each expiring contract's last observation before expiry and buckets it by the absolute distance between the strike and the closing price of the underlying. Contracts with no volume in that final session are excluded.
  • Whole dollar crossings stand in for strike crossings. Liquid names list strikes a dollar or less apart near the money and wider further out.

FAQ

What is a broker exercise cut-off time?

It is the deadline your brokerage sets for receiving instructions about an expiring option. It falls after the 4:00 p.m. ET close and no later than the 5:30 p.m. ET industry deadline, and each firm publishes its own time in its options account agreement.

Are in-the-money options exercised automatically?

Yes. OCC exercises expiring options that finish in the money by $0.01 or more unless a contrary instruction arrives before the deadline. Brokers add their own handling on top, including closing positions an account cannot pay to take delivery on.

Can I stop an automatic exercise after the market closes?

Only inside your firm's cut-off window, by filing a do not exercise instruction. Once that window shuts, no instruction can reach the clearinghouse through your firm, and the exercise by exception rule settles the outcome.

What happens if the stock crosses my strike after 4:00 p.m.?

The exercise test uses the official closing price, not the extended hours price. An option one cent in the money at the close is exercised even with the stock trading through the strike at 5:00 p.m., unless a do not exercise instruction was filed in time.

Do cash settled index options need an exercise instruction?

No. Their in the money value converts to cash at the settlement price and no shares change hands, which leaves nothing to decide. Physically settled equity options are the ones carrying the cut-off problem.


Every panel on this page carries the exact SQL beneath it, so each count can be checked line by line. The same questions can be asked in plain English on the Strasmore terminal.