Open-Auction Uncross → Continuous Transition Slippage Playbook

2026-03-04 · finance

Open-Auction Uncross → Continuous Transition Slippage Playbook

Date: 2026-03-04
Category: research
Domain: finance / execution / market microstructure

Why this matters

Many desks model the open as either:

  1. an auction problem, or
  2. a normal continuous-book problem.

In production, the expensive part is often the transition between the two.

You can get a decent opening print, then lose the win in the first 30–180 seconds when:

If this transition state is not explicit in your slippage model, p95 cost spikes at the open will look “random.”


Core idea

Treat open execution as a 3-leg problem:

  1. Auction leg (pre-open call auction to uncross print)
  2. Transition leg (uncross + first N seconds of continuous trading)
  3. Stabilized leg (post-transition normal intraday regime)

Then optimize parent scheduling and urgency using a dedicated transition-risk signal, not a one-regime average.


1) Cost decomposition with transition term

For parent order (Q):

[ C_{total} = C_{auction} + C_{transition} + C_{stabilized} + C_{delay} + C_{opp} + \epsilon ]

Where (C_{transition}) captures post-uncross instability cost. A practical parametric proxy:

[ C_{transition} \approx \beta_1 \cdot TSI + \beta_2 \cdot TSI \cdot ResidualFrac + \beta_3 \cdot TSI \cdot Urgency ]

Interpretation: same residual size can be cheap or expensive depending on transition stress.


2) Transition Stress Index (TSI)

Build a robust, online score from open-specific microstructure signals.

Components

  1. Indicative instability before open

    • indicative price velocity in final pre-open window
    • imbalance-side flips (buy↔sell)
    • matched-volume ratio instability
  2. Uncross shock

    • (|P_open - P_ind,last|) in ticks
    • uncross volume surprise vs pre-open expectation
  3. Post-open fragility (first 30–120s)

    • spread blowout ratio vs rolling baseline
    • depth refill half-time
    • cancel intensity burst
    • microprice oscillation amplitude

Example normalized score

[ TSI_t = w_1 z(PreOpenInstability) + w_2 z(UncrossShock) + w_3 z(PostOpenFragility) ]

Use robust scaling (median/MAD or winsorized z-score) and per-liquidity-bucket calibration.


3) Stabilization Half-Life (SHL): key state variable

Define SHL as estimated time for transition disturbance to decay by 50% after uncross.

Examples of disturbance measure:

If SHL is long, immediate residual completion is usually expensive.

Operational shortcut:


4) Data contract (minimum viable)

At 1s (or finer if available) around open:

Without this transition tape, model diagnostics will collapse into noise.


5) Modeling architecture

Layer A: auction fill/price model

Predict:

Layer B: transition cost model

Conditional on residual > 0, predict quantiles of transition completion cost using TSI/SHL features.

Layer C: policy optimizer

Choose:

to minimize:

[ \mathbb{E}[C] + \lambda_1 \cdot CVaR_{95}(C) + \lambda_2 \cdot UnderfillPenalty ]

Keep layers separable for rollback and explainability.


6) Execution controller (state machine)

State 1 — ANCHORED

Condition: low TSI, short SHL

State 2 — FRAGILE

Condition: medium TSI or rising SHL uncertainty

State 3 — DISLOCATED

Condition: high TSI + long SHL posterior

Use hysteresis to avoid mode-chatter around thresholds.


7) Validation protocol

Offline

Shadow live

Canary live


8) Monitoring dashboard (must-have)

If transition attribution is missing, open performance tuning becomes guesswork.


9) Common failure modes

  1. Open treated as one regime

    • Fix: explicit auction/transition/stabilized decomposition.
  2. Good auction print, bad residual handling

    • Fix: residual policy keyed to TSI/SHL.
  3. Thresholds copied across all symbols

    • Fix: bucketed calibration by liquidity/vol profile.
  4. Mean-cost optimization only

    • Fix: p95 + CVaR constraints in promotion gates.
  5. No transition telemetry in logs

    • Fix: mandatory pre-open and first-minute microstructure tape.

10) Minimal implementation checklist


References


One-line takeaway

At the open, most hidden execution damage is not the auction itself but the uncross-to-continuous transition—model that regime explicitly or pay for it in tail slippage.