Half-Day Session Compression Slippage Playbook

2026-03-14 · finance

Half-Day Session Compression Slippage Playbook

Date: 2026-03-14
Category: research (execution microstructure)
Scope: Slippage modeling and execution-control design for early-close / shortened sessions (e.g., 13:00 ET close)


TL;DR

Half-day sessions are not just “normal days with fewer bars.”

They compress the intraday liquidity clock, accelerate close-imbalance dynamics, and can trigger late-day crowding into thinner pre-close windows. If you run full-day priors on half-days, you usually under-forecast urgency and overestimate passive completion reliability.

Core fixes:


1) Problem Statement

Many production execution stacks assume stable intraday structure:

On half-days (e.g., US equities early close at 13:00 ET on specific holidays), these assumptions fail:

  1. Volume-time mapping shifts (same wall-clock minute has different urgency meaning).
  2. Close auction/imbalance uncertainty arrives earlier and steeper.
  3. Liquidity replenishment cadence changes (fewer cycles before hard cutoff).
  4. Fallback options shrink (less time for passive retries before forced completion).

Net effect: latent slippage tax in q90/q95 tails, often hidden by aggregate daily averages.


2) Mechanism: Why Compression Raises Costs

Let:

If your model uses wall-clock features trained on full days, then at real time t:

This creates a deadline convexity effect: small delays near tau -> 1 produce disproportionately large market-impact jumps.


3) Data Contract Additions (Minimal)

3.1 Session Regime Metadata

Per venue/date:

3.2 Intraday Shape Layer

Per symbol bucket (or symbol-venue):

3.3 Execution Layer

Per parent/child:

Without explicit short-session tags, calibration silently blends incompatible regimes.


4) Feature Engineering

4.1 Replace Wall-Clock with Session-Clock

Use normalized time as first-class feature:

4.2 Compression-Aware Urgency Features

4.3 Auction Risk Features

4.4 Recovery-Capacity Features


5) Model Architecture

5.1 Baseline

Standard slippage model (spread/volatility/imbalance/urgency/venue).

5.2 Regime Overlay

Add interactions:

5.3 Objective

Optimize tail-aware targets (q90/q95), not just mean bps.

Half-day failures concentrate in tails due to compressed fallback window.


6) Real-Time Control State Machine

State A: NORMAL

State B: SHORT_SESSION_ACTIVE

Trigger: isShortSession=true.

Actions:

State C: COMPRESSION_STRESS

Triggers:

Actions:

State D: SAFE_COMPLETION

Trigger: hard cutoff risk high.

Actions:

Use hysteresis to avoid oscillation between B/C in noisy pre-close windows.


7) Control Levers That Usually Work

  1. Time-Normalized POV/TWAP
    Drive schedule by tau, not wall-clock.

  2. Pre-Close Inventory Guardrail
    Hard cap residual inventory at key normalized checkpoints (e.g., tau=0.85, 0.92).

  3. Adaptive Passive Dwell
    Shrink maximum passive dwell as compression and imbalance risk rise.

  4. Earlier Auction Decision Gate
    Move auction-join decision earlier on short sessions.

  5. Residual Convexity Penalty
    Penalize plans that defer too much quantity into final compressed window.


8) Monitoring Metrics (Dedicated Dashboard)

If CTAX drifts positive for multiple short sessions, regime handling is stale.


9) Validation Protocol

Offline

Shadow Online

Canary


10) Common Failure Modes

  1. “Same curve, fewer minutes” shortcut
    Misses structural shift in close-phase behavior.

  2. Wall-clock features only
    Creates hidden urgency miscalibration.

  3. No short-session auction priors
    Auction participation becomes reactive, not planned.

  4. Late fallback activation
    Leaves insufficient retry budget before cutoff.

  5. Average-only KPI governance
    Tail damage stays invisible.


11) Deployment Checklist


12) Key Takeaway

Half-day sessions are a distinct execution regime with compressed optionality.

Treating them as ordinary days causes systematic under-urgency and late forced impact. A session-clock-aware model plus compression-specific controls is usually enough to recover most of the hidden tax.


References (starting points)