Protected-Quote Fade & Intermarket-Sweep Slippage Playbook

2026-03-05 · finance

Protected-Quote Fade & Intermarket-Sweep Slippage Playbook

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

Why this matters

When your router decides using a snapshot of protected quotes, those quotes may disappear before the child order reaches the venue.
That quote-fade gap turns expected spread capture into reject loops, misses, and worse sweep prices.

The practical failure mode:

You route for displayed liquidity that no longer exists, then pay escalation cost to finish.


1) Cost decomposition with fade-aware terms

Let:

[ C_{obs}= side\cdot\frac{P_{fill}-P_0}{P_0}\times 10^4 ]

Define additional decomposition:

[ C_{obs}= C_{spread}+C_{impact}+C_{timing}+C_{fade}+C_{retry} ]

Where:

A useful operational metric:

[ \text{Fade Tax} = C_{fade}+C_{retry} ]

This is often hidden if TCA only reports top-level implementation shortfall.


2) Core fade-risk features

For each child-order decision, log:

Define Fade Probability:

[ \pi_{fade}=\Pr(\text{quote unavailable at arrival}\mid Q_{age},L_{path},\chi,F_d,S_p) ]

Estimate with survival/hazard models or calibrated gradient-boosted probabilities.


3) Fade-aware expected cost model

At decision time for candidate route (r):

[ \mathbb{E}[C_r] = (1-\pi_{fade,r}),C^{hit}r + \pi{fade,r},\big(C^{miss}_r + C^{retry}_r\big) ]

Choose route minimizing tail-aware objective:

[ \min_r; \mathbb{E}[C_r] + \lambda,\mathrm{CVaR}_{95}(C_r) ]

This avoids overfitting to average outcomes while ignoring bursty fade episodes.


4) Execution policy state machine

STATE A — STABLE_TOUCH

Trigger: low (\pi_{fade}), low churn.

STATE B — FRAGILE_PROTECTED

Trigger: medium/high (\pi_{fade}) on top-ranked venue.

STATE C — RETRY_SPIRAL_RISK

Trigger: rising reject loop count + widening markout tails.

STATE D — DISLOCATED_SWEEP

Trigger: multi-venue fade spike + depth collapse.

Use hysteresis and minimum dwell times to prevent mode flapping.


5) Data contract (minimum viable)

Without aligned timestamps across market data + order events, fade attribution becomes unreliable.


6) Validation protocol

Offline counterfactual replay

Shadow mode

Canary rollout


7) Common failure modes

  1. Quote timestamp blindness
    Router treats fresh and stale quotes equally.

  2. Single-point latency assumptions
    Using average latency instead of percentile distribution understates tail fade risk.

  3. Retry escalation without budget
    Repeated misses silently convert into marketable urgency.

  4. Venue-agnostic fade model
    Fade dynamics are venue- and symbol-specific.

  5. No reject taxonomy
    All misses look the same, so policy cannot improve the right failure mode.


8) Minimal implementation checklist


References to review

If your router is fast but not fade-aware, it is still trading against a ghost book.