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

Broker Option Exercise Cut-Off Time Explained

Broker cut-off time dey come after market close but before OCC deadline. Learn how auto exercise and do not exercise instructions really work.

Broker exercise cut-off time na deadline wey your firm set to receive instruction about option wey dey expire. E dey fall inside gap wey you no control: after 4:00 p.m. ET close, when contract stop trading, and before industry deadline wey end every holder’s right to decide. If you miss am, rule go settle the outcome instead of you. This page go explain the chain in order and name the source behind each deadline.

Wetin be broker exercise cut-off time?

Exercise dey pass through one chain. You give your broker instruction. Your broker, as clearing member, send exercise and contrary instructions to Options Clearing Corporation (OCC), the clearinghouse wey stand between buyer and seller of every listed US option. OCC allocate the assignment to firm wey carry short position, and that firm allocate am among its own customers.

Every link get deadline, and each one come before the next one. Industry-level deadline fixed and public: FINRA Rule 2360(b)(23) give option holder until 5:30 p.m. ET on expiration date to make final exercise decision. E also allow member set earlier time, but no member fit accept instruction after 5:30 p.m. ET. Your broker’s cut-off na that earlier time. No rule fix the exact minute, na why investor education pages describe am only as the firm’s own cut-off for the day and no publish number.

Treat your cut-off as documented rule, no be clock time wey you just remember. E dey inside options account agreement and expiration notices wey your firm send. Firms fit change am. The version inside your firm’s current disclosure na the one wey control your account.

The expiration day chain, in order

  1. The contract stop trading. Listed equity options dey trade until 4:00 p.m. ET close on expiration date. After that, market for the contract no dey again; na only decision about am remain. Wetin time options stop trading cover the exceptions for each product.
  2. Your broker’s cut-off pass. E happen some minutes after the close, at time wey the firm publish. Na the last moment wey you fit act.
  3. The 5:30 p.m. ET holder deadline pass. After this point, no member firm fit accept exercise or contrary instruction from customer for that expiration.
  4. The firm file the instructions. Member’s own window to submit contrary exercise advices dey continue later into the evening under exchange rules. Instructions still dey move through the system after you no fit send any again.
  5. Exercise by exception run and assignment dey allocated overnight. Stock change hands under standard T+1 settlement timetable.

Steps 2 and 3 na the main issue. Dem be different moments, and stock dey trade through both.

Wetin be exercise by exception?

Exercise by exception, the auto exercise wey many traders don hear about, na OCC Rule 805. At expiration, clearinghouse exercise every option wey finish in the money by threshold amount unless contrary instruction enter first. The threshold na one cent: $0.01 per contract in the money for equity options, for both customer and firm accounts, and $0.01 for index options for every account type.

One penny of intrinsic value at closing price dey enough to deliver 100 shares per contract into account. OCC describe the procedure as administrative convenience for clearing members. Dem no design am to replace instruction wey customer give broker.

That penny make official closing price the most important number of the day for anything wey dey close to strike. The panel below count how close expiring contracts really finish.

QueryHow close AAPL contracts wey dey expire 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 wey expire between January and July 2026, 58 finish their last session with stock inside quarter of one percent from strike. Another 74 land between quarter and half a percent away. For stock wey dey trade near $200, quarter of one percent na 50 cents. Na these positions exercise question dey active, and na here distance between 4:00 p.m. and 5:30 p.m. dey measured in pennies.

Why price after 4:00 p.m. still matter

Option stop trading at 4:00 p.m. ET. Stock no stop. Extended hours sessions dey run until 8:00 p.m. ET, and prints for that period fit carry underlying across strikes wey decide the question. Exercise by exception use official closing price. If stock move after close, e change wetin holder for want, but e no change wetin the rule do.

QueryAverage move between 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 for the past two years, TSLA travel average of 0.257% between its 4:00 p.m. print and its last print before 5:30 p.m., with widest single move of 0.87%. For the other side of the group, SPY average 0.107%. The averages small. Na the tail matter at expiration: contract wey be one cent in the money at close and thirty cents out of the money at 5:25 p.m. still go get exercised.

One session show how e dey happen. The trace below follow NVDA on July 17, 2026, a monthly expiration Friday, in five-minute buckets from the last hour of regular session through 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 dey concentrate inside regular-session buckets and e thin after 4:00 p.m. ET close, while prices still dey print. Between the first bucket and the last one before 5:30 p.m., stock move from $203.09 to $202.75. Any strike between those two prices change status inside window wey most holders no fit act again. Na the same mechanism wey the pin risk at options expiration guide describe from short side, and e decide wetin happen when option expire in the money for long position.

Wetin be contrary instruction or do not exercise?

Contrary exercise advice tell the chain to do the opposite of the automatic outcome. E get two forms. One na do not exercise instruction on option wey finish in the money, giving up whatever value e get. The other na exercise instruction on option wey threshold for leave alone.

Holders file dem for reasons wey threshold no fit see:

  • Exercised call deliver 100 shares per contract and require cash to pay for dem. Account wey no get the cash fit start the week with margin call, and firms fit close the position at their own discretion.
  • One penny of intrinsic value fit worth less than exercise fee plus weekend gap risk of holding stock wey nobody plan to own.
  • Option wey close just out of the money fit still worth real money at 5:00 p.m. ET after stock move during extended hours. The right to exercise am survive until deadline.
  • A spread fit need both legs to expire together. Taking delivery on only one side turn the position into something wey holder never choose.

Two details dey catch people. Deadline for contrary instruction often earlier than deadline for ordinary exercise, and some firms accept one only by phone or written form. No rule force firm to accept anything after its published cut-off. The 5:30 p.m. ET rule cap the industry. Your firm’s cut-off na the one wey bind your account.

How often post-close window change the answer? One simple measure count expirations where last print before 5:30 p.m. sit on the other side of whole dollar from 4:00 p.m. close, because whole-dollar levels na listed strikes for most liquid names.

QueryMonthly expirations wey post close print cross one 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

Across monthly expirations for the past two years, SPY end the post-close window across a whole-dollar line in 11 of 22 expirations measured. Whole dollar cover different percentage on $70 stock compared with $400 stock, so read the panel as count of near misses, no be ranking of risk.

Short options and cash-settled index options

Two positions dey outside the decision.

Short option no get cut-off time for you. Exercise na holder’s right. Assignment reach you through OCC allocation to member firm and that firm’s allocation among its customers, usually as position change wey you go read the next morning. The same one-way process dey happen before expiration, and when short options get assigned early explain am in detail.

Cash-settled index options no deliver shares. In-the-money value convert to cash at settlement price without instruction from anybody, so delivery problem disappear completely. Many of dem dey AM settled and stop trading the day before settlement print dey taken. Cash-settled versus physically delivered options and AM and PM settled contracts explain the difference.

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

Four questions go give you the full answer:

  1. What be the deadline for exercise instructions on expiration date?
  2. What be the deadline for do not exercise instruction, and e earlier than the first one?
  3. Wetin the firm go do by itself with in-the-money long position wey the account no fit pay to take delivery?
  4. Which channel count as filed: platform ticket, phone call, or written form?

The answers dey inside options account agreement, the firm’s exercise and assignment page, and expiration reminders wey e send by email. Written answer get stronger record on Friday afternoon. Phone queue at 4:45 p.m. ET fit no.

How these panels dey measured
  • Post-close window na every print between 4:00 p.m. and 5:30 p.m. ET on a given date, matched against the last regular-session print for that same day.
  • Expirations na third-Friday monthlies for the past two years of the minute tape. If third Friday fall on market holiday, e no enter.
  • The ladder read each expiring contract’s last observation before expiry and put am into bucket based on absolute distance between strike and underlying closing price. Contracts wey no get volume in that final session dey excluded.
  • Whole-dollar crossings stand in for strike crossings. Liquid names list strikes one dollar or less apart near the money, and wider further out.

FAQ

Wetin be broker exercise cut-off time?

Na deadline wey your brokerage set to receive instructions about option wey dey expire. E come after 4:00 p.m. ET close and no later than 5:30 p.m. ET industry deadline. Each firm publish its own time inside options account agreement.

In-the-money options dey exercise automatically?

Yes. OCC exercise expiring options wey finish in the money by $0.01 or more unless contrary instruction enter before deadline. Brokers add their own handling, including closing positions wey account no fit pay to take delivery of.

I fit stop automatic exercise after market close?

Only inside your firm’s cut-off window, by filing do not exercise instruction. Once that window close, no instruction fit reach clearinghouse through your firm again, and exercise by exception rule go settle the outcome.

Wetin happen if stock cross my strike after 4:00 p.m.?

Exercise test use official closing price, no be extended-hours price. Option wey be one cent in the money at close go get exercised even if stock trade through strike at 5:00 p.m., unless you file do not exercise instruction on time.

Cash-settled index options need exercise instruction?

No. Their in-the-money value convert to cash at settlement price and no shares change hands, so nothing remain to decide. Na physically settled equity options carry the cut-off problem.


Every panel for this page carry the exact SQL underneath, so you fit check each count line by line. You fit ask the same questions in plain English on the Strasmore terminal.