REVIEW 3 major objections 6 minor 2 cited by
Limit Order Book Event Stream Prediction with Diffusion Model
T0 review · 3 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read LOBDIF models the next limit-order-book event's time and type as the endpoint of a Gaussian diffusion chain conditioned on history, and reports lower error and higher accuracy than point-process baselines on six datasets.
desk verdict New diffusion-based approach to LOB event-stream prediction is worth engaging, but the reported Wilcoxon p-values cannot come from five paired runs and the discrete event-type decoding rule is missing; major revision needed before the significance claim is credible. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the conditional diffusion chain over the event tuple. The forward process in Eq. (4) adds Gaussian noise to time and event type with a shared variance schedule, and the reverse process in Eq. (5) is conditioned on the historical context $h_{i-1}$ produced by a self-attention encoder over time, event, and joint embeddings. A dedicated denoising network computes time attention and event attention at each step to predict the noise, and skip-step sampling, a DDIM-style reparameterization, lets inference jump from step $k$ to step $s < k$. The whole mechanism converts the intractable joint time-event distribution into a sequence of tractable Gaussian transitions.
What would settle it
A direct check would be to change only the decoding of the event-type coordinate and re-run Table III on MSFT1 with nearest-integer rounding, with argmax over the learned event embedding, and with a small learned classifier head on the denoised output. If any of these reproduces the reported accuracy only through a rule the paper does not state, or if the accuracy drops below PCT-LSTM under a natural rule, the event-type claim is not carried by the generative model.
Extended reading notes
Core claim
On the paper's own terms, the discovery is that a diffusion model can serve as a replacement for intensity-based point processes in LOB event stream prediction. Instead of assuming a Poisson or Hawkes intensity that governs event arrivals, LOBDIF adds Gaussian noise to both coordinates of each event $(t_i, e_i)$ over $K$ steps, then learns a reverse process that removes the noise while attending to the historical context $h_{i-1}$. Because each reverse step is a Gaussian transition, sampling is closed-form; because the target is the full time-event distribution, the model can predict time and type jointly. The reported experiments show LOBDIF beating the strongest baselines on most datasets, with Wilcoxon signed-rank p-values below 0.05, and the case-study visualization shows the denoised distribution converging toward the empirical time-event scatter.
Load-bearing premise
The forward diffusion adds Gaussian noise to the discrete event-type label as if it were a continuous number, and the paper never says how the denoised continuous value is turned back into an event class, so the reported event-type accuracy rests on an unstated conversion step.
Editorial extensions
If this is right
- If LOBDIF's central claim is right, next-event prediction in LOB systems no longer needs an intensity function; the joint distribution over time and type can be sampled in closed form through Gaussian steps.
- The skip-step sampling result means the same trained model can trade speed against latency by picking a step size at inference time, with no retraining.
- Because the diffusion decomposition replaces a single global intensity model with many local Gaussian transitions, the approach should track non-stationary order-flow regimes better than Hawkes-style models.
- On the reported datasets, removing time encoding hurts more than removing event encoding, pointing to event times as the harder channel to model.
Reading between the lines
- Editorial extension: the paper's event-type channel is diffused as a continuous scalar without a stated rounding rule; a discrete-diffusion variant over the one-hot label would make the type channel fully grounded and is the natural next test.
- Editorial extension: because the shared Gaussian noise schedule treats time and type on the same scale, rescaling time by its empirical spread before diffusion could change the MAE results without altering the architecture.
- Editorial extension: the skip-step sampler is largely agnostic to the denoising network, so the same conditioning scheme could be applied to other irregular event streams such as clickstreams or social-media activity, where closed-form sampling also matters.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes LOBDIF, a conditional diffusion model for predicting the next event in a limit order book event stream: given the last L events (time and type), it learns a joint time-event distribution by adding Gaussian noise to both coordinates and training a history-conditioned denoising network, then generates predictions by reverse denoising with a skip-step strategy. Experiments on six datasets from three assets compare LOBDIF with Hawkes, LSTM, CT-LSTM, SAHP, and PCT-LSTM, reporting lower MAE and higher accuracy, and use paired Wilcoxon tests to claim statistical significance.
Significance. The idea of applying diffusion models to marked point-process-style event streams is timely and, if the empirical claims hold, would provide a useful alternative to neural Hawkes processes, with reported millisecond-level per-event inference times. Strengths of the paper are the use of real order-book data from two databases, the availability of code, and a clear ablation structure. The contribution is incremental relative to standard conditional DDPMs, and the main empirical conclusion currently rests on a statistically impossible significance test; the event-type decoding rule is also missing. With those issues corrected, the paper could be acceptable as an application-oriented contribution.
major comments (3)
- [Section VI-B, Table III] The paired Wilcoxon signed-rank test described in Section VI-B is based on '5 pairs of experimental results,' i.e., five runs of LOBDIF and five runs of the strongest baseline. For n=5 paired observations, the smallest attainable two-sided Wilcoxon signed-rank p-value is 2/2^5 = 0.0625, and the smallest one-sided p-value is 1/32 = 0.03125. Every p-value in Table III (1.52e-3 to 7.63e-3) is therefore impossible under the stated protocol. The sentence 'all p-values are below 0.05, confirming that the experimental results are statistically significant' is unsupported. Please disclose the actual unit of pairing (for example, per-event paired predictions, which would yield a much larger n) and recompute all p-values, or remove the significance language and treat Table III as point estimates.
- [Section IV-A, Eq. (4); Section VI-B] Equation (4) adds Gaussian noise to the event-type coordinate e_i exactly as if it were a continuous scalar, although e_i is a categorical label in {0,...,3} for the LOBSTER datasets and has three classes for the CSMAR datasets. The reverse process in Section IV-B and Algorithm 2 operates on the same continuous coordinate and returns a continuous x0_i. The paper never specifies how the denoised continuous e0_i is mapped to a class label for the reported Acc. metric, and it does not include a rounding rule, one-hot reconstruction, or any discrete-diffusion correction. Without this decoding rule, the event-type accuracy numbers in Table III are not attributable to the generative model. Please specify the decoding rule or replace the categorical diffusion formulation with one that is defined for discrete event types.
- [Section III-B, Eqs. (1)-(2); Eq. (11)] The forward-process equations are internally inconsistent. Equation (1) writes x_k = sqrt(1-β_k) x_{k-1} + β_k ε_k and then x_k = sqrt(α_k) x_0 + (1-α_k) ε_k, while Eq. (3) and the training loss in Eq. (11) use sqrt(1-α_k) ε_k. The standard DDPM recursion requires sqrt(β_k) ε and sqrt(1-α_k) ε; as written, Eq. (1) does not imply the stated closed-form marginal. Equation (2) also contains ambiguous fractions and missing square roots in the posterior mean. Please correct these equations so that the forward process, the training objective, and the skip-step sampling derivation in Eq. (12) are mutually consistent.
minor comments (6)
- [Section I; Table I] The term 'closed-form sampling' and the Table I entry 'Sampling without any approximation' overstate the method: the reverse process of Eq. (2) is iterative and stochastic, and the skip-step strategy in Section V-B reduces but does not eliminate iterative denoising. Consider rewording to 'efficient ancestral sampling' or similar.
- [Section VI-A.4] The text states that next-event type accuracy is assessed both when the event time is known and unknown, but Table III reports only a single Acc. column. Please clarify which protocol is actually used.
- [Table III] The p-value row contains stray spaces (e.g., '4 .27e-3') and should be reformatted for readability.
- [Section VI-C.2] The text says 'Due to space limitations, we present results for only three datasets,' but Table V contains results for all six datasets. The statement should be corrected.
- [Section VI-A.1; Abstract] 'China Telecommute' should be 'China Telecom,' and 'Hawke stochastic process' should be 'Hawkes stochastic process.' These typos appear in the abstract and body text.
- [Figure 2] Figure 2 is too small and low-resolution to read the framework details, especially the forward/reverse and conditioning arrows. A larger, clearer figure is needed.
Circularity Check
No significant circularity: LOBDIF is trained on held-out training splits, evaluated on fresh test events, and its diffusion components come from external standard DDPM machinery; reported statistical-significance issues are correctness risks, not circularity.
full rationale
The derivation chain is self-contained against external benchmarks. The forward process in Eq. (4) adds Gaussian noise to time and event type values, and the training objective in Eq. (11) is the standard DDPM noise-prediction loss; no fitted parameter is renamed as a prediction. The reverse process in Eq. (5) conditions on an encoded history context, and the skip-step sampling in Eq. (12) follows the standard DDIM reparameterization from external prior work. The central claim is an empirical comparison against several baselines on held-out test events, trained on separate splits, so the predictions are not fitted to the test data by construction. There are no load-bearing self-citations: the diffusion and attention machinery cited is external standard work, and no uniqueness theorem or prior result by the same authors is used to force the model choice. The reported p-values in Table III appear impossible for five paired runs, and the paper does not describe how continuous denoised event values are decoded into discrete class labels for accuracy, but these are validity and reproducibility concerns rather than circular reductions. The paper's derivation does not reduce to its own inputs, so no circular step is identified.
Assumptions & free parameters
free parameters (5)
- history length L =
50
- embedding dimension M =
64
- diffusion steps K =
Not explicitly reported for main experiments; case study uses 100
- skip-step interval tau =
Not reported for main results
- learning rate and training epochs =
2e-3 and 200 epochs
assumptions (4)
- domain assumption The next event depends only on the previous L=50 events.
- domain assumption Event time and event type are conditionally independent in each reverse denoising step given history and step.
- ad hoc to paper A categorical event type can be treated as a real-valued quantity under additive Gaussian noise.
- standard math Standard DDPM and DDIM theory is valid for the time component and for the reverse process.
invented entities (1)
-
None
Cite this review
Pith. "Pith review of Limit Order Book Event Stream Prediction with Diffusion Model." pith.science (2026). https://pith.science/paper/3SSTKHMD
@misc{pith2026241209631,
author = {Pith},
title = {Pith review of: Limit Order Book Event Stream Prediction with Diffusion Model},
year = {2026},
howpublished = {\url{https://pith.science/paper/3SSTKHMD}},
note = {Machine review of arXiv:2412.09631}
}
read the original abstract
Limit order book (LOB) is a dynamic, event-driven system that records real-time market demand and supply for a financial asset in a stream flow. Event stream prediction in LOB refers to forecasting both the timing and the type of events. The challenge lies in modeling the time-event distribution to capture the interdependence between time and event type, which has traditionally relied on stochastic point processes. However, modeling complex market dynamics using stochastic processes, e.g., Hawke stochastic process, can be simplistic and struggle to capture the evolution of market dynamics. In this study, we present LOBDIF (LOB event stream prediction with diffusion model), which offers a new paradigm for event stream prediction within the LOB system. LOBDIF learns the complex time-event distribution by leveraging a diffusion model, which decomposes the time-event distribution into sequential steps, with each step represented by a Gaussian distribution. Additionally, we propose a denoising network and a skip-step sampling strategy. The former facilitates effective learning of time-event interdependence, while the latter accelerates the sampling process during inference. By introducing a diffusion model, our approach breaks away from traditional modeling paradigms, offering novel insights and providing an effective and efficient solution for learning the time-event distribution in order streams within the LOB system. Extensive experiments using real-world data from the limit order books of three widely traded assets confirm that LOBDIF significantly outperforms current state-of-the-art methods.
Figures
Figures from the paper (3 more)
Forward citations
Cited by 2 Pith papers
-
FlowLOB: Efficient and Controllable Limit Order Book Generation with Flow Matching
Flow matching with a tick-relative LOB representation and transformer backbone generates realistic, controllable, and cross-instrument limit order book states at low sampling cost on HKEX data.
-
Exploring Microstructural Dynamics in Cryptocurrency Limit Order Books: Better Inputs Matter More Than Stacking Another Hidden Layer
On one day of BTC/USDT order book data, Savitzky-Golay smoothing and feature choice helped simple models match or beat deeper neural networks.
Reference graph
Works this paper leans on
-
[1]
A stochastic model for order book dynamics,
R. Cont, S. Stoikov, and R. Talreja, “A stochastic model for order book dynamics,” Oper. Res., vol. 58, no. 3, pp. 549–563, 2010
work page 2010
-
[2]
Long-time behavior of a hawkes process- based limit order book,
F. Abergel and A. Jedidi, “Long-time behavior of a hawkes process- based limit order book,” SIAM J. Financial Math. , vol. 6, no. 1, pp. 1026–1043, 2015
work page 2015
-
[3]
The neural hawkes process: A neurally self- modulating multivariate point process,
H. Mei and J. Eisner, “The neural hawkes process: A neurally self- modulating multivariate point process,” in Advances in Neural Informa- tion Processing Systems 30: Annual Conference on Neural Information Processing Systems 2017 , 2017, pp. 6754–6764
work page 2017
-
[4]
Self-attentive hawkes process,
Q. Zhang, A. Lipani, ¨O. Kirnap, and E. Yilmaz, “Self-attentive hawkes process,” in Proceedings of the 37th International Conference on Ma- chine Learning, ICML 2020 , 2020, pp. 11 183–11 193
work page 2020
-
[5]
Deep Reinforcement Learning for Market Making Under a Hawkes Process-Based Limit Order Book Model
B. Gasperov and Z. Kostanjcar, “Deep reinforcement learning for market making under a hawkes process-based limit order book model,” CoRR, vol. abs/2207.09951, 2022
work page Pith review arXiv 2022
-
[6]
Z. Shi and J. Cartlidge, “State dependent parallel neural hawkes process for limit order book event stream prediction and simulation,” in KDD ’22: The 28th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, 2022, pp. 1607–1615
work page 2022
-
[7]
Neural marked hawkes process for limit order book modeling,
G. Chung, Y . Lee, and W. C. Kim, “Neural marked hawkes process for limit order book modeling,” in Advances in Knowledge Discovery and Data Mining - 28th Pacific-Asia Conference on Knowledge Discovery and Data Mining, PAKDD 2024, Proceedings, Part III , 2024, pp. 197– 209
work page 2024
-
[8]
Deep unsupervised learning using nonequilibrium thermodynamics,
J. Sohl-Dickstein, E. A. Weiss, N. Maheswaranathan, and S. Ganguli, “Deep unsupervised learning using nonequilibrium thermodynamics,” in Proceedings of the 32nd International Conference on Machine Learning, ICML 2015, 2015, pp. 2256–2265
work page 2015
Show all 39 references
-
[9]
Price dynamics in a markovian limit order market,
R. Cont and A. de Larrard, “Price dynamics in a markovian limit order market,” SIAM J. Financial Math. , vol. 4, no. 1, pp. 1–25, 2013
2013
-
[10]
Modelling trades-through in a limit order book using hawkes processes,
I. M. Toke and F. Pomponio, “Modelling trades-through in a limit order book using hawkes processes,” Economics, vol. 6, no. 1, pp. 2012–22, 2012
2012
-
[11]
A non-linear model of limit order book dynamics,
N. D. Vvedenskaya, Y . M. Suhov, and V . Belitsky, “A non-linear model of limit order book dynamics,” in 2011 IEEE International Symposium on Information Theory Proceedings, ISIT 2011 , 2011, pp. 1260–1262
2011
-
[12]
A dynamic model of the limit order book,
I. Rocsu, “A dynamic model of the limit order book,” The Review of Financial Studies, vol. 22, no. 11, pp. 4601–4641, 2009
2009
-
[13]
Price dynamics in limit order markets,
C. A. Parlour, “Price dynamics in limit order markets,” The Review of Financial Studies, vol. 11, no. 4, pp. 789–816, 1998
1998
-
[14]
High frequency trading strategies, market fragility and price spikes: an agent based model perspective,
F. McGroarty, A. Booth, E. H. Gerding, and V . L. R. Chinthalapati, “High frequency trading strategies, market fragility and price spikes: an agent based model perspective,” Ann. Oper. Res., vol. 282, no. 1-2, pp. 217–244, 2019
2019
-
[15]
Deeplob: Deep convolutional neural networks for limit order books,
Z. Zhang, S. Zohren, and S. J. Roberts, “Deeplob: Deep convolutional neural networks for limit order books,” IEEE Trans. Signal Process. , vol. 67, no. 11, pp. 3001–3012, 2019
2019
-
[16]
Towards realistic market simulations: a generative adversarial networks approach,
A. Coletta, M. Prata, M. Conti, E. Mercanti, N. Bartolini, A. Moulin, S. Vyetrenko, and T. Balch, “Towards realistic market simulations: a generative adversarial networks approach,” in 2nd ACM International Conference on AI in Finance, 2021 , 2021, pp. 1–9
2021
-
[17]
Generating real- istic stock market order streams,
J. Li, X. Wang, Y . Lin, A. Sinha, and M. P. Wellman, “Generating real- istic stock market order streams,” in The Thirty-Fourth AAAI Conference on Artificial Intelligence, AAAI 2020 , 2020, pp. 727–734
2020
-
[18]
The limit order book recreation model (LO- BRM): an extended analysis,
Z. Shi and J. Cartlidge, “The limit order book recreation model (LO- BRM): an extended analysis,” in Machine Learning and Knowledge Discovery in Databases. Applied Data Science Track - European Con- ference, ECML PKDD 2021, Proceedings, Part IV , 2021, pp. 204–220
2021
-
[19]
The LOB recreation model: Predicting the limit order book from TAQ history using an ordinary differential equation recurrent neural network,
Z. Shi, Y . Chen, and J. Cartlidge, “The LOB recreation model: Predicting the limit order book from TAQ history using an ordinary differential equation recurrent neural network,” in Thirty-Fifth AAAI Conference on Artificial Intelligence, AAAI 2021 , 2021, pp. 548–556
2021
-
[20]
High- resolution image synthesis with latent diffusion models,
R. Rombach, A. Blattmann, D. Lorenz, P. Esser, and B. Ommer, “High- resolution image synthesis with latent diffusion models,” in IEEE/CVF Conference on Computer Vision and Pattern Recognition, CVPR 2022 , 2022, pp. 10 674–10 685
2022
-
[21]
Diffusion pixelation: A game diffusion model of rumor & anti-rumor inspired by image restoration,
Y . Xiao, Z. Huang, Q. Li, X. Lu, and T. Li, “Diffusion pixelation: A game diffusion model of rumor & anti-rumor inspired by image restoration,” IEEE Trans. Knowl. Data Eng. , vol. 35, no. 5, pp. 4682– 4694, 2023
2023
-
[22]
Non-autoregressive conditional diffusion models for time series prediction,
L. Shen and J. T. Kwok, “Non-autoregressive conditional diffusion models for time series prediction,” in International Conference on Machine Learning, ICML 2023 , 2023, pp. 31 016–31 029
2023
-
[23]
Diffusion variational autoencoder for tackling stochasticity in multi-step regression stock price prediction,
K. J. L. Koa, Y . Ma, R. Ng, and T. Chua, “Diffusion variational autoencoder for tackling stochasticity in multi-step regression stock price prediction,” in Proceedings of the 32nd ACM International Conference on Information and Knowledge Management, CIKM 2023 , 2023, pp. 1087–1096
2023
-
[24]
Pristi: A conditional diffusion framework for spatiotemporal imputation,
M. Liu, H. Huang, H. Feng, L. Sun, B. Du, and Y . Fu, “Pristi: A conditional diffusion framework for spatiotemporal imputation,” in 39th IEEE International Conference on Data Engineering, ICDE 2023, 2023, pp. 1927–1939
2023
-
[25]
Imdiffusion: Imputed diffusion models for mul- tivariate time series anomaly detection,
Y . Chen, C. Zhang, M. Ma, Y . Liu, R. Ding, B. Li, S. He, S. Rajmohan, Q. Lin, and D. Zhang, “Imdiffusion: Imputed diffusion models for mul- tivariate time series anomaly detection,” Proc. VLDB Endow. , vol. 17, no. 3, pp. 359–372, 2023
2023
-
[26]
Scope- free global multi-condition-aware industrial missing data imputation framework via diffusion transformer,
D. Liu, Y . Wang, C. Liu, X. Yuan, K. Wang, and C. Yang, “Scope- free global multi-condition-aware industrial missing data imputation framework via diffusion transformer,” IEEE Trans. Knowl. Data Eng. , vol. 36, no. 11, pp. 6977–6988, 2024
2024
-
[27]
A survey on generative diffusion models,
H. Cao, C. Tan, Z. Gao, Y . Xu, G. Chen, P. Heng, and S. Z. Li, “A survey on generative diffusion models,” IEEE Trans. Knowl. Data Eng., vol. 36, no. 7, pp. 2814–2830, 2024
2024
-
[28]
Controllable tabular data synthesis using diffusion models,
T. Liu, J. Fan, N. Tang, G. Li, and X. Du, “Controllable tabular data synthesis using diffusion models,” Proc. ACM Manag. Data , vol. 2, no. 1, pp. 28:1–28:29, 2024
2024
-
[29]
DOSE: diffusion dropout with adaptive prior for speech enhancement,
W. Tai, Y . Lei, F. Zhou, G. Trajcevski, and T. Zhong, “DOSE: diffusion dropout with adaptive prior for speech enhancement,” in Advances in Neural Information Processing Systems, NeurIPS 2023 , 2023
2023
-
[30]
Diffsformer: A diffusion transformer on stock factor augmentation,
Y . Gao, H. Chen, X. Wang, Z. Wang, X. Wang, J. Gao, and B. Ding, “Diffsformer: A diffusion transformer on stock factor augmentation,” CoRR, vol. abs/2402.06656, 2024
2024 arXiv
-
[31]
Friedman, The double auction market: institutions, theories, and evidence
D. Friedman, The double auction market: institutions, theories, and evidence. Routledge, 2018
2018
-
[32]
Statistical properties of stock order books: empirical results and models,
J.-P. Bouchaud, M. M ´ezard, and M. Potters, “Statistical properties of stock order books: empirical results and models,” Quantitative finance, vol. 2, no. 4, p. 251, 2002
2002
-
[33]
Denoising diffusion probabilistic models,
J. Ho, A. Jain, and P. Abbeel, “Denoising diffusion probabilistic models,” in Advances in Neural Information Processing Systems, NeurIPS 2020 , 2020, pp. 6840–6851
2020
-
[34]
Attention is all you need,
A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, L. Kaiser, and I. Polosukhin, “Attention is all you need,” in Advances in Neural Information Processing Systems 30: Annual Conference on Neural Information Processing Systems 2017 , 2017, pp. 5998–6008
2017
-
[35]
gddim: Generalized denoising diffusion implicit models,
Q. Zhang, M. Tao, and Y . Chen, “gddim: Generalized denoising diffusion implicit models,” in The Eleventh International Conference on Learning Representations, ICLR 2023 , 2023
2023
-
[36]
Denoising diffusion implicit models,
J. Song, C. Meng, and S. Ermon, “Denoising diffusion implicit models,” in 9th International Conference on Learning Representations, ICLR 2021, 2021
2021
-
[37]
State-dependent hawkes pro- cesses and their application to limit order book modelling,
M. Morariu-Patrichi and M. S. Pakkanen, “State-dependent hawkes pro- cesses and their application to limit order book modelling,” Quantitative Finance, vol. 22, no. 3, pp. 563–583, 2022
2022
-
[38]
Long short-term memory,
S. Hochreiter and J. Schmidhuber, “Long short-term memory,” Neural Comput., vol. 9, no. 8, pp. 1735–1780, 1997
1997
-
[39]
Neighbor profile: Bagging nearest neigh- bors for unsupervised time series mining,
Y . He, X. Chu, and Y . Wang, “Neighbor profile: Bagging nearest neigh- bors for unsupervised time series mining,” in 36th IEEE International Conference on Data Engineering, ICDE 2020 , 2020, pp. 373–384
2020
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.