v1.0.0 to v1.0.0

41 added, 17 removed. Audit A to A.

---
name: exchange-matching-engine-behavior-under-load
- description: Skill to handle exchange matching engine behavior under load
- domain: Market Microstructure
- subdomain: Latency
- tags:
- - latency
- - hft
- brokers_frameworks: []
- version: 1.0.0
- author: assistant
- license: MIT
+ description: >-
+ Quantitative market microstructure engine for modeling exchange matching engine queuing delay under high message rate bursts, evaluating adverse selection risk, and adapting strategy quoting directives.
+ domain: Market Microstructure & High-Frequency Trading
+ subdomain: Order Book Queue Dynamics & Congestion
+ tags: ["matching-engine", "queuing-delay", "message-bursts", "adverse-selection", "queue-position", "mm1-queue", "latency-spikes"]
+ brokers_frameworks: ["CME Globex Queueing", "Nasdaq INET", "Eurex T7", "Python Dataclasses"]
+ version: "1.0.0"
+ author: algo-trading-skills-contributors
+ license: Apache-2.0
---
## When to Use
- Use when dealing with exchange-matching-engine-behavior-under-load.
+ Use this skill in high-frequency market making, order queue management, and market microstructure simulation. During high-volatility events (FOMC releases, CPI announcements, market crashes), exchange matching engines (CME Globex, Nasdaq INET, Eurex T7) experience extreme message volume bursts. As arrival message rates ($\lambda$) approach engine service capacity ($C$), queuing delay increases non-linearly ($\text{Latency} \propto \frac{1}{1 - \rho}$), exposing resting limit orders to stale quote sniping and queue position uncertainty.
+
## Prerequisites
- None.
+ - Exchange engine baseline latency ($\tau_{\text{base}}$ in $\mu\text{s}$).
+ - Engine service capacity ($C_{\text{engine}}$ in msgs/sec).
+ - Incoming message arrival rate ($\lambda$ in msgs/sec).
+
## Workflow
- 1. Start
- 2. End
+ 1. **Engine Utilization Factor Calculation**:
+ - $\rho = \frac{\lambda}{C_{\text{engine}}}$.
+ 2. **Queuing Theory Latency Estimation ($M/M/1$ Model)**:
+ - $\text{Effective Latency} = \frac{\tau_{\text{base}}}{1.0 - \min(0.99, \rho)}$.
+ - $\text{Queue Delay Penalty} = \text{Effective Latency} - \tau_{\text{base}}$.
+ 3. **Adverse Selection & Strategy Adaptation**:
+ - If $\rho < 0.50 \implies$ Emit `NORMAL_OPERATIONS`.
+ - If $0.50 \le \rho < 0.85 \implies$ Emit `WIDEN_PASSIVE_SPREADS` (Widen bid-ask quotes to absorb latency drift).
+ - If $\rho \ge 0.85 \implies$ Emit `PAUSE_PASSIVE_QUOTING` (Freeze maker orders to prevent getting sniped by fast takers).
+ 4. **Audit Report Generation**: Output structured `MatchingEngineLoadAuditReport`.
+
+ > Full procedure: see `references/workflows.md`.
+ > Standards reference: see `references/standards.md`.
+ > Printable pre-flight checklist: see `assets/checklist.md`.
+
## Common Pitfalls
- None.
+ - **Ignoring Queuing Delay Spikes**: Assuming order round-trip latency remains constant ($50\mu\text{s}$) during high-volume market bursts, incurring massive adverse selection losses on stale quotes.
+ - **Keeping Narrow Maker Spreads Under Heavy Load**: Leaving tight passive quotes resting on order books when cancellation messages are delayed in input queues behind fast aggressive sweeps.
+ - **Conflating Network Transit Time with Engine Queue Time**: Measuring network RTT while ignoring CPU input buffer queueing delays inside the matching engine core.
+
## Verification
- Tests pass.
+ - Instantiate `ExchangeMatchingEngineLoadSimulator`. Set baseline latency $\tau_{\text{base}} = 20.0\mu\text{s}$, capacity $C = 50,000\text{ msgs/sec}$. Test normal conditions ($\lambda = 10,000\text{ msgs/sec} \implies \rho = 0.20$). Verify latency = $25.0\mu\text{s}$ and directive = `NORMAL_OPERATIONS`. Test heavy burst conditions ($\lambda = 45,000\text{ msgs/sec} \implies \rho = 0.90$). Verify latency spikes to $200.0\mu\text{s}$ ($10\times$ baseline) and engine issues `PAUSE_PASSIVE_QUOTING`.
+ - Run `python scripts/test_exchange_matching_engine_behavior_under_load.py`.
+
## Related Skills
- None.
+
+ - `colocation-latency-budget-accounting`
+ - `microstructure-noise-filtering-for-hf-signals`
+ ---