The Feedback Loop
Most trading systems are open-loop: they execute and move on. Execution Intelligence closes the loop by feeding results back into the strategy.
Execution Quality Metrics
| Metric | What It Measures | Why It Matters |
|---|---|---|
| Fill rate | % of orders that get filled | Low fill rate = quoting too aggressively |
| Slippage | Difference between expected and actual fill price | High slippage = poor execution or thin books |
| Adverse selection | P&L immediately after fill | Negative = we’re getting picked off by informed traders |
| Market impact | Price movement caused by our orders | High impact = we’re too large for this market |
| Timing cost | Cost of delayed execution | Relevant for TWAP/VWAP algos |
Adaptive Execution
Based on quality metrics, automatically adjust strategy parameters.Spread Auto-Tuning
| Signal | Parameter | Direction |
|---|---|---|
| Adverse selection > threshold | spread_width | Increase by 10% |
| Fill rate < 50% | spread_width | Decrease by 5% |
| Market impact > 10bps | order_size | Decrease by 20% |
| Fill rate > 90% and low adverse selection | order_size | Increase by 10% |
Time-of-Day Patterns
Markets have liquidity patterns. Execution Intelligence learns when to be more/less aggressive:Cross-Exchange Execution
When the same market exists on multiple exchanges, route to the best venue.Smart Routing
| Factor | Weight | Description |
|---|---|---|
| Price | 40% | Best bid/ask across venues |
| Liquidity | 30% | Depth available at target price |
| Fees | 20% | Maker/taker fee structure |
| Latency | 10% | Historical fill time |
Exchange Health Monitoring
Detect degraded exchange performance and route around it:- API latency spikes
- Increased error rates
- Orderbook thinning
- Fill rate drops
MCP Tools
| Tool | Description |
|---|---|
execution_quality | Quality metrics for a strategy or the fund |
execution_patterns | Time-of-day and market-specific patterns |
route_analysis | Best venue analysis for a given trade |
exchange_health | Current health status of all connected exchanges |