Modern ML for Trading
The full gradient-boosting-to-neural-operator toolkit — ensembles, AutoML, probabilistic forecasting, distillation and pruning for latency, plus physics-informed architectures like Neural ODEs and Fourier operators.
- 01
Aug 25, 2026 #machine-learningXGBoost for Return Direction: Class Imbalance and Decision Thresholds
Return-direction classifiers are imbalanced problems, and 0.5 is the wrong decision threshold. Comparing scale_pos_weight, focal loss, and precision-constrained threshold optimization on crypto data — plus the engineering differences between XGBoost, LightGBM, and CatBoost.
- 02
Aug 3, 2026 #machine-learningEnsemble Methods: Combining Weak Learners for Robust Alpha
Three things about trading ensembles this blog has not covered: why the covariance term — not model count — dominates ensemble error, how stacking works as a signal-combination layer with out-of-fold meta-features, and whether turnover netting across many signals actually reduces execution cost.
- 03
Jul 30, 2026 #AutoMLAutoML for Systematic Trading Pipelines
Automated feature generation (tsfresh, Featuretools), budget-aware model search (FLAML's cost-frugal optimizer), and the WorldQuant formulaic alpha factory — the parts of the research pipeline this blog's search-and-overfit arc never covered, and what the arc's own results say about them.
- 04
Aug 15, 2026 #deep-learningMulti-Task Learning for Simultaneous Price, Volume, and Volatility Prediction
Does jointly predicting return, volume, and volatility actually help? Measuring loss-balancing schemes and diagnosing negative transfer through gradient cosine similarity — with a classical baseline and purged walk-forward folds.
- 05
Feb 19, 2026 #algo tradingAnomaly Detection for Trading Bot Protection: From Z-Score to Transformer
Which anomaly detection methods actually work in crypto algo trading, how to build a cascading protection architecture, and why this is the foundation without which algo trading becomes gambling.
- 06
Aug 20, 2026 #forecastingScoring Probabilistic Forecasts: CRPS, PIT Calibration, and DeepAR
How to evaluate a predictive distribution honestly — CRPS as a proper scoring rule, the PIT histogram as a calibration diagnostic, and DeepAR sampling in GluonTS.
- 07
Aug 22, 2026 #HFTIrregular Time in Tick Models: Continuous-Time Encodings vs. Plain Positional Embeddings
Sequence models fed tick data still assume regular spacing. Three ways to tell a Transformer when a tick actually happened — learnable-timescale continuous encoding, ODE-RNN latent state, and delta_t as a plain feature — and the ablation that decides between them.
- 08
Aug 4, 2026 #deep-learningDoes a Full-Day Context Beat a Ten-Minute One? Flash Attention and the Sequence-Length Question
Flash Attention makes a 23,400-step trading context computationally free — tiling, online softmax, and an IO bound of N^2 d^2 / M. Whether that longer context makes the model better is a separate question, and it has to be measured, not asserted.
- 09
Aug 11, 2026 #model-compressionKnowledge Distillation: Compressing Trading Models for Low-Latency Deployment
The blog's standing answer to the accuracy-vs-latency tension is a two-stage fast/slow split. Distillation is a different answer: train one small model to mimic the ensemble. The KD loss, temperature, born-again nets, early exits for a variable latency budget, and the distill-to-FPGA pipeline — plus the measurements that would decide whether it beats the two-stage split.
- 10
Aug 14, 2026 #model-compressionModel Pruning for Low-Latency Trading Inference
Magnitude and structured pruning, the Lottery Ticket Hypothesis, movement pruning, distillation and 2:4 sparsity — the methods behind shrinking a trading model, and what still has to be measured before any of it ships.
- 11
Aug 6, 2026 #bayesianGaussian Processes for Non-Parametric Price Modeling
Kernel design for financial time series — Matern roughness, locally periodic composition, spectral mixtures — and the marginal likelihood as a regularizer that needs no validation set. Plus the honest list of what still has to be measured before any of it is tradeable.
- 12
Jul 31, 2026 #bayesianEpistemic vs Aleatoric: Measuring What a Return Model Doesn't Know
Every sizing rule on this blog treats uncertainty as one number. MC Dropout and deep ensembles split it into model ignorance and market noise — and those two deserve different position sizes.
- 13
Aug 16, 2026 #deep-learningNeural ODEs: Does Continuous Time Beat a Delta-Time Feature?
Neural ODEs, Neural SDEs and continuous normalizing flows for irregularly-sampled market data — and the one ablation that decides whether continuous dynamics are worth their solver cost.
- 14
Aug 8, 2026 #deep-learningHamiltonian Neural Networks: Does a Financial System Conserve Anything?
Hamiltonian Neural Networks are provably stable — but stability is worthless if the conserved quantity does not exist. Learning a scalar H via autograd, symplectic integration, and the falsification test that decides whether a financial (q, p) pair is canonical at all.
- 15
Aug 5, 2026 #deep-learningFourier Neural Operator for PDE-Based Financial Modeling
Operator learning maps whole function spaces, not points — how the Fourier Neural Operator parameterizes a PDE solution operator in frequency space, what that buys for option pricing, and which of its claims still need measuring on real hardware.