Execution Models Need Timing-Surprise Telemetry
A new arXiv proposal argues that execution systems should detect market impact from the timing of adverse prints after fills, not only from slow slippage statistics.
A June 2026 arXiv paper, "Realtime price impact detection" by Ilija I. Zovko, makes a useful point for investment AI builders: live execution systems need telemetry that reacts before realized slippage becomes statistically visible. The paper is not a production deployment and it does not claim a completed empirical validation. It is an academic proposal for detecting whether a trader's own fills are being followed by unusually fast adverse market events.
That matters now because many AI trading discussions still focus on signal generation, portfolio weights, or agent architecture, while execution risk is treated as an after-the-fact transaction-cost adjustment. A model that can choose trades but cannot sense when its own activity is changing the local market is incomplete. The execution layer needs a small, fast diagnostic loop.
The frontier signal
The paper's central signal is simple: slippage is often too slow and too ambiguous for real-time execution control. If an order is live and adverse price movement appears after fills, the trader has two different possible problems. One is self-impact: the order is revealing intent and the market is responding against the remaining parent order. The other is unrelated market activity or alpha: another participant is moving the same liquidity, and slowing down may be the wrong response.
Zovko proposes looking at timing, not only price. After each fill, measure the time until the next adverse market print. Then compare that duration with a locally estimated background rate of adverse prints. If adverse prints arrive unusually quickly after the trader's own fills, the system treats that as statistical surprise. A single surprise is weak evidence. A sequence of surprises can be combined into a stronger real-time statistic.
The author is careful about evidence. The paper states that the method assumes surprisingly fast adverse events are evidence of causation and information leakage, and it presents the metric as a proposal rather than a validated trading result. That caveat is the reason the paper is more useful than another glossy execution-AI pitch. It gives builders a measurable diagnostic and a validation agenda.
Why investors care
For investors, execution is where small modeling errors become recurring costs. A portfolio signal can be directionally correct and still lose edge if the order leaks intent, chases liquidity, or responds to the wrong kind of adverse move. This is especially relevant for systematic strategies, high-turnover books, and any workflow where an AI component adjusts participation rate, venue selection, order type, or urgency.
The practical question is not "did this order have bad slippage?" That answer usually arrives too late. The question is "while the order is still live, are my fills being echoed by the market in a way that should change behavior?" That distinction is close to the argument in WisdomChain's earlier note on an agentic trading evidence ledger: an agent should not only act, it should retain evidence about why it acted and what the market did next.
The weekly performance report also highlights reader interest around algorithmic trading and deep learning. This paper gives that audience a narrower point than "use reinforcement learning for execution." Before a model learns a new policy, it needs a trustworthy sensor for when a venue, order type, or participation rule has become toxic.
Technical read-through
The proposed detector treats market prints, excluding the trader's own fills, as an inhomogeneous Poisson point process with locally estimated intensity. Around a given fill, the intensity is treated as approximately constant. The duration from the fill to the next adverse print can then be scored under the local background distribution.
In builder terms, each fill produces a feature: "how surprising was the next adverse event, given recent market activity?" The paper frames this as a per-fill p-value. Shorter-than-expected adverse durations produce stronger evidence. Successive p-values are combined using Fisher's method, giving a continuously updated statistic rather than a batch report after hundreds of fills.
This is not a deep neural architecture. That is part of the appeal. A timing-surprise layer can sit beside an RL execution policy, a broker algo selector, or a rules-based parent-order scheduler. It can also become training data: label moments when the execution environment likely shifted from neutral liquidity access to adverse echo.
The paper contrasts this with real-time slippage monitoring. Slippage estimates mix self-impact, background volatility, and unrelated alpha. They can require many fills before the signal separates from noise. The timing statistic is aimed at a narrower hypothesis: did adverse market activity arrive unusually soon after our action?
There is a natural internal link to WisdomChain's older review of deep learning and reinforcement learning in algorithmic trading. Many trading AI systems optimize a policy, but the deployment question is whether the policy has a local market-state monitor. Timing-surprise telemetry can become one of those monitors.
Reality check
The main weakness is also the main honesty of the paper: timing synchronicity is not causality by itself. A fast adverse print after a fill may reflect self-impact, but it may also reflect a burst of market activity into which the fill happened to land. The local intensity estimate helps adjust for busy periods, but it can lag sudden clustering.
The Poisson assumption is another simplification. Real order-flow data are clustered, regime-dependent, and shaped by venue mechanics. In practice, a production version would need calibration by instrument, time of day, spread state, volatility regime, venue, and order type. The detector should be judged not only by statistical significance but by action usefulness: did throttling, rerouting, or changing order style improve implementation shortfall out of sample?
There is also a model-risk issue. If an execution AI is allowed to slow down whenever the detector fires, it may miss genuine alpha or fail to complete urgent trades. If it speeds up when adverse moves appear unrelated to self-impact, it may amplify losses. That means the telemetry should feed a decision policy with guardrails, not directly become a one-line command.
Finally, the paper is an academic proposal. It does not provide a production backtest across broker routes or a vendor claim from a deployed execution platform. The right conclusion is not "this detector works everywhere." The right conclusion is "execution AI needs this class of real-time causal diagnostic, and this paper gives a concrete first implementation to test."
Builder takeaway
- Add per-fill event telemetry to the execution log: fill timestamp, side, size, venue, order type, local spread, local volatility, next adverse print time, and short-horizon markout.
- Prototype a timing-surprise score beside existing slippage and implementation-shortfall metrics; compare whether it fires earlier and with fewer false operational decisions.
- Validate action value, not just statistical detection: when the score fires, test throttle, venue exclusion, minimum fill-size adjustment, and urgency changes on historical replay.
- Separate sensor from controller. The detector should inform an execution policy, while hard risk limits and completion constraints prevent runaway behavior.
- Treat the result as part of an auditable trading ledger, especially for AI agents that need post-trade review and governance. The same discipline behind AI agent auditability belongs inside execution systems.
Links / sources
- https://arxiv.org/abs/2606.13419 — Ilija I. Zovko, "Realtime price impact detection"; academic proposal for per-action market-impact detection using timing surprise, local Poisson intensity, and Fisher's method.
- https://arxiv.org/list/q-fin.TR/current — arXiv q-fin.TR current list showing the June 2026 market-microstructure context around execution, impact, and trading-system papers.
- https://insights.wisdomchain.com/agentic-trading-evidence-ledger/ — related WisdomChain note on why trading agents need evidence ledgers, not only generated actions.
- https://insights.wisdomchain.com/deep-learning-and-reinforcement-learning-in-algorithmic-trading-2018-2025/ — internal background page with current site-performance priority for algorithmic-trading readers.