1.1 — Underlying theory
Fractional calculus generalizes differentiation to non-integer orders. The three workhorse definitions in quantitative finance are the Riemann–Liouville, Caputo (preferred for initial-value problems), and Grünwald–Letnikov derivatives. All are non-local convolution operators: the value of \(D^{\alpha} f(t)\) depends on the full history of \(f\), not just its local behaviour — which is precisely why they matter for markets that remember.
Hurst exponent & long memory
The Hurst exponent \(H \in (0,1)\) parameterises self-similarity. \(H = 0.5\) is Brownian motion; \(H > 0.5\) is persistent (trending); \(H < 0.5\) is anti-persistent or rough. Empirically, signed order flow exhibits H ≈ 0.7 (strong long memory), while realized volatility is rough with H ≈ 0.1 — the foundational stylized fact behind the rough volatility paradigm (Gatheral, Jaisson, Rosenbaum 2018; Gould, Porter, Howison 2015).
Fractional Brownian motion & rough volatility
Fractional Brownian motion \(B^H\) is the Gaussian process with covariance \(\mathbb{E}[B^H_s B^H_t] = \tfrac{1}{2}(|s|^{2H} + |t|^{2H} - |s-t|^{2H})\). For \(H \ne 0.5\) it is neither Markov nor a semimartingale, requiring Malliavin calculus extensions. Modern rough-vol models drive log-volatility with fBm of small \(H\):
Why fractional models matter
- Long memory — power-law autocorrelations replace GARCH/Heston's exponential decay, matching data.
- Non-Markovian dynamics — future volatility depends on the entire past, not just the current state.
- Heavy tails — Mittag-Leffler waiting-time CTRWs produce fat tails without ad-hoc tuning.
- Microstructural foundation — Hawkes-process scaling limits link \(H_\text{flow} \approx 0.75\) to rough volatility \(H_\text{vol} \approx 0.1\) (Muhle-Karbe et al. 2026).
1.2 — Academic literature, 2020–2026
Eighteen papers organised into four tracks. Every citation links to the primary source.
Rough volatility — core
Volatility is Rough
The foundational empirical paper. Log-volatility behaves as fBm with H ≈ 0.1 at every scale; introduces the RFSV model and proves rough processes can mimic apparent long memory in statistical tests.
Pricing Under Rough Volatility
Introduces the rough Bergomi (rBergomi) model — a three-parameter fBm-driven stochastic volatility model with remarkable fit to empirical implied vol surfaces. The reference computational benchmark.
The Characteristic Function of Rough Heston Models
The classical Riccati ODE becomes a fractional Riccati equation. Enables semi-analytic Fourier pricing under rough Heston and links rough vol to nearly-unstable Hawkes microstructure.
Statistical Inference for Rough Volatility: Minimax Theory
Proves the optimal convergence rate for estimating H from n observations is n^(-1/(4H+2)) — substantially slower than parametric rates, quantifying how genuinely hard rough estimation is.
Multivariate Rough Volatility
Extends rough volatility to multivariate fractional Ornstein-Uhlenbeck with asset-specific Hurst exponents and non-trivial cross-covariance. Validated on the full Oxford-Man realized library.
Detecting Rough Volatility: A Filtering Approach
Uses fBm's superposition representation as OU processes to develop a filter-based method for identifying roughness directly from observable prices — practical estimation for discrete data.
Fractional SDEs & option pricing
Hierarchical Adaptive Sparse Grids and QMC for rBergomi
Adaptive sparse-grid quadrature + QMC + Brownian bridge construction for rBergomi Monte Carlo. Substantial speedups over naive simulation without loss of accuracy.
Anomalous Diffusions in Option Prices
CTRWs with Mittag-Leffler waiting times — a fractional Fokker-Planck setting — reproduce the declining implied vol term structure that standard Lévy and SV models miss.
Fractional Black–Scholes with Physics-Informed Neural Networks
PINN for free-boundary problems under Caputo, Caputo–Fabrizio, and Atangana–Baleanu-Caputo derivatives. Yields more realistic American put pricing than classical BS.
Unsupervised Calibration of Rough Bergomi
Unsupervised deep-learning scheme for calibrating rBergomi without labelled training data; jointly learns the BSDE solution and model parameters — bypasses expensive Monte Carlo precomputation.
Long memory in microstructure
Long Memory of Order Flow in FX Spot Market
Clean empirical evidence that signed order flow has H ≈ 0.7 across three FX pairs — estimable within a single trading day, isolating microstructural persistence.
A Unified Theory of Order Flow, Market Impact, and Volatility
Hawkes-process scaling limit ties signed order-flow persistence (H₀), rough volatility (2H₀ − 3/2), and square-root market impact to a single estimable parameter H₀ ≈ 3/4. The most ambitious recent synthesis.
Convergence of Heavy-Tailed Hawkes Processes and Microstructure of Rough Volatility
Weak convergence of nearly-unstable Hawkes processes with power-law kernels to rough Heston. Extends the Hawkes → rough vol bridge to the empirically relevant heavy-tailed case.
Fractional SV Models for Microstructure & Optimal Execution
Reviews FSV models for execution algorithms; the Hurst parameter interpolates between diffusion and rough regimes with direct implications for transaction-cost estimation.
Machine learning + fractional hybrids
Combining Fractional Derivatives and Machine Learning: A Review
Systematic taxonomy of fractional+ML approaches: fractional differencing for stationarity, fractional dynamics for physics-informed learning, fractional-order optimization. Maps directly to López de Prado's fracdiff feature engineering.
Why Do Big Data and Machine Learning Entail the Fractional Dynamics?
First-principles argument that optimal ML over heavy-tailed data requires fractional-order operators; demonstrates how fractional dynamics emerge in stochastic configuration networks under heavy-tailed noise.
1.3 — Computational complexity
The fundamental bottleneck is non-locality: every fractional derivative is a convolution over the full history. Unlike standard SDEs (Euler–Maruyama is O(1) per step), fractional schemes are naively O(N²), scaling to O(M·N²) for Monte Carlo with M paths and N steps.
| Method | Time | Memory | Notes |
|---|---|---|---|
| Naive GL/RL (full history) | O(N²) | O(N) | Convolution over all prior points |
| L1 scheme (Caputo) | O(N²) | O(N) | Piecewise-linear quadrature; standard workhorse |
| Fast L1 / exp-sum | O(N log N) | O(log N) | Kernel as sum of exponentials → auxiliary ODEs |
| Short-memory truncation | O(N·L) | O(L) | Lose exactness; OK if H not near 1 |
| FFT-based GL | O(N log N) | O(N) | Circulant convolution; exact; uniform grid |
| Markovian lifting (Abi Jaber) | O(kN) | O(k) | k OU factors approximate rough kernel; restores Markov |
Mitigation strategies
- Hybrid scheme (Bennedsen–Lunde–Pakkanen 2017) — standard for rBergomi MC.
- Markovian lifting — k = 5–10 OU factors recovers most accuracy at O(N) cost.
- Neural surrogate — offline-trained network produces millisecond rBergomi calibration in inference.
GPU feasibility
Naive fractional operators are sequential per path — poor GPU fit. But path-level parallelism (Monte Carlo over M paths) is embarrassingly parallel; cuFFT makes FFT-based methods scale near-linearly; neural surrogates are pure GPU forward passes. Direct fractional computation is not real-time feasible at meaningful path counts; surrogates and fractional differencing (offline) are.
1.4 — HFT versus macro
HFT
Mixed — feasible but contestedMicrostructure long memory in order flow (H ≈ 0.7) is real and well-documented. Rough intraday volatility forecasts beat GARCH. But estimating H in real time has slow minimax rates, and alpha in liquid instruments is largely competed away.
- Order-flow persistence signals
- Intraday rough vol forecasting
- Markovian-lifted models for risk
- Caveat: wide confidence intervals; latency demands surrogates
Macro
Strong — primary habitatLong-horizon vol forecasting, term structure modelling, and pricing of long-dated derivatives are where fractional models have a demonstrated edge over GARCH/Heston. The advantage grows with horizon.
- 1d–multi-month realized vol forecasts (RFSV)
- Implied vol term structure (T^(H-1/2) skew)
- VIX and variance swap modelling
- Long-dated derivatives, life insurance
1.5 — Alpha generation, honestly assessed
| Claim | Evidence | Source |
|---|---|---|
| Rough vol fits SPX surface better than standard SV | Strong — replicated across data/venues | Bayer 2016 |
| RFSV beats HAR/GARCH for realized vol | Moderate–strong — major indices | Gatheral 2018 |
| Signed order flow long memory (H ≈ 0.7) | Very strong — multi-market replication | Gould 2015 |
| Fractional differencing preserves ML signal | Moderate — backtests, regime-dependent | López de Prado 2018 |
| Live trading Sharpe lift from rough-vol strategies | Unproven — no peer-reviewed live PnL | — |
Bottom line: fractional calculus delivers real, documented value in options market-making, volatility-product pricing, and realized-volatility forecasting. Its contribution to directional alpha is plausible but largely undemonstrated in transaction-cost-adjusted terms. Most actionable today: rough-vol-informed delta/vega hedging, fractional differencing in ML pipelines, and vol forecasting feeding volatility risk premium strategies.