LULD Band-Proximity & Rejection Slippage Playbook

2026-03-05 · finance

LULD Band-Proximity & Rejection Slippage Playbook

Date: 2026-03-05
Category: research
Domain: finance / execution / market microstructure / slippage modeling

Why this matters

When a symbol drifts close to its Limit Up/Limit Down (LULD) bands, execution quality changes regime fast:

If your model treats this like normal high-volatility trading, it underestimates tail slippage exactly when control matters most.


1) Cost decomposition for band-stress regimes

Let:

[ C = side\cdot\frac{P_{exec}-P_{arr}}{P_{arr}}\times 10^4 ]

Now split cost into four interpretable components:

[ C = C_{impact}+C_{timing}+C_{reject}+C_{reopen} ]

In band-proximity regimes, (C_{reject}) and (C_{reopen}) often dominate.


2) Core feature set: distance-to-band is not enough

For each decision time (t):

Recommended interaction terms:


3) Model stack

Use a two-layer architecture instead of one monolithic regressor.

Layer A: Regime classifier

Predict state (S_t\in{normal,\ near_band,\ pre_pause,\ reopen}):

[ \Pr(S_t\mid X_t)=g(X_t) ]

Layer B: State-conditional cost model

[ \widehat{C}_t = \sum_s \Pr(S_t=s\mid X_t)\cdot f_s(X_t) ]

Where each (f_s) is trained per regime (quantile model preferred).

Tail-aware objective

[ \min\ \mathbb{E}[C] + \lambda,\mathrm{CVaR}_{95}(C) ]

Near-band execution is mostly a tail-governance problem, not a mean-only optimization problem.


4) Control policy (live execution)

STATE 1 — NORMAL

Trigger: NBD wide, RI stable.

STATE 2 — NEAR_BAND

Trigger: NBD below threshold + rising BS.

STATE 3 — PRE_PAUSE

Trigger: high PH and accelerating RI/RC.

STATE 4 — REOPEN

Trigger: pause event or auction transition detected.

Apply hysteresis and minimum dwell constraints to avoid state flapping.


5) Data contract (must-have)

Without event-level reject/reprice telemetry, (C_{reject}) cannot be estimated reliably.


6) Validation protocol

Offline replay

Shadow mode

Canary rollout


7) Common failure modes

  1. Volatility-only modeling
    High realized vol is not equivalent to band-constrained executability.

  2. Ignoring reject loops
    Rejections are not noise; they are state information.

  3. No reopen-specific benchmark
    Post-pause costs are misattributed to normal impact/timing.

  4. Overfitting rare tails
    Use shrinkage + pooled priors across symbol buckets.

  5. Missing telemetry from one venue
    Cross-venue blind spots cause false confidence in control decisions.


8) Minimal implementation checklist


References to review

If your execution model sees only volatility but not band mechanics, it will fail exactly when the market stops behaving continuously.