VolaTTM is a compact time series foundation model adapted for cross-asset
realized-volatility forecasting. It is a single fine-tuned IBM Granite Tiny Time
Mixer R2.1 model. It is not an ensemble and does not use a mixture-of-experts
architecture.
The model enables TTM's forecast-channel-mixing decoder and predicts the target
channel from the twelve-channel end-of-day context.
Data
Fine-tuning used official realized-variance archives from
VOLARE, downloaded on 2026-07-13. The files contain
158,887 daily observations for 40 equities, 5 foreign-exchange rates, and 5
futures through 2026-06-30. The prediction target is rv5, realized variance
computed from 5-minute returns.
The VOLARE data are not included in this model repository. Raw archives,
processed tables, row-level predictions, and data caches are intentionally
excluded. Users must obtain the archives from VOLARE and follow the provider's
usage terms. The data construction is described by
Cipollini et al..
All channels are observable after the forecast-origin session closes. This is
an end-of-day model and should not be interpreted as an intraday nowcaster.
Training
Eligible training targets end before 2024-01-01. Calendar year 2024 is used for
early stopping and seed selection. The final checkpoint is seed 17 at epoch 3.
The 2025 to June 2026 period is used only for evaluation of the released run.
The objective is a weighted combination of Smooth L1 loss and QLIKE in
log-variance space over the 22-step path. Training uses AdamW, OneCycle
scheduling, gradient clipping, mixed precision, asset-balanced sampling, and
three random seeds. The TTM configuration retains internal standard scaling.
Evaluation results
HAR-RV and Log-HAR are direct horizon models re-estimated at every forecast
origin on a rolling 1,000-session window. Scores are macro averages across 50
assets. MAE and RMSE are measured on annualized volatility. QLIKE is measured on
variance. Lower values are better.
Horizon
Model
MAE
RMSE
QLIKE
1
HAR-RV
0.05164
0.08592
0.22188
1
Log-HAR
0.04958
0.08610
0.23887
1
VolaTTM
0.05192
0.08505
0.21483
5
HAR-RV
0.06134
0.10099
0.33504
5
Log-HAR
0.05832
0.10030
0.36285
5
VolaTTM
0.06173
0.09996
0.31054
22
HAR-RV
0.06686
0.10678
0.39199
22
Log-HAR
0.06433
0.10644
0.43810
22
VolaTTM
0.06466
0.10262
0.34682
VolaTTM improves macro RMSE and QLIKE at all three horizons. It does not improve
MAE relative to Log-HAR. Against Log-HAR, VolaTTM has lower QLIKE on 50 of 50
assets at one session, 49 of 50 at five sessions, and 47 of 50 at 22 sessions.
Loading the checkpoint
Install the same major model implementation used for training:
features must be reconstructed with the transformations documented in the
source repository. A different channel
order or target scale is not compatible with this checkpoint.
Intended use
The model is intended for research on end-of-day volatility forecasting,
time-series foundation-model adaptation, and econometric benchmarking. It is
not designed for order execution, automated risk limits, or investment advice.
Limitations
The test period is isolated from checkpoint selection, but it is not a fully
project-blind holdout. Earlier proxy-based experiments had identified 2026 as
a difficult regime before this model was trained.
The fixed VOLARE universe can contain selection and survivorship effects.
Trading calendars differ across asset classes.
Diebold-Mariano p-values are not corrected for multiple testing.
Forecast accuracy has not been translated into a transaction-cost-aware
strategy or economic utility result.
Future data may differ materially from the evaluation period.
The full protocol and leakage assessment are documented in the
audit.
Base-model and data attribution
VolaTTM is an independent research fine-tune and is not an IBM product. The
base TTM checkpoint is released by IBM under Apache 2.0. The IBM model card lists
the base pretraining sources and does not list VOLARE.
Please cite the original model and data work when using this checkpoint:
bibtex
1@inproceedings{ekambaram2024tinytimemixers,
2 title = {Tiny Time Mixers: Fast Pre-trained Models for Enhanced Zero/Few-Shot Forecasting of Multivariate Time Series},
3 author = {Ekambaram, Vijay and Jati, Arindam and Dayama, Pankaj and Mukherjee, Sumanta and Nguyen, Nam H. and Gifford, Wesley M. and Reddy, Chandra and Kalagnanam, Jayant},
4 booktitle = {Advances in Neural Information Processing Systems},
5 year = {2024}
6}
78@article{cipollini2026volare,
9 title = {VOLatility Archive for Realized Estimates},
10 author = {Cipollini, Fabrizio and Cruciani, Giulia and Gallo, Giampiero M. and Insana, Alessandra and Otranto, Edoardo and Spagnolo, Fabio},
11 journal = {arXiv preprint arXiv:2602.19732},
12 year = {2026}
13}
License
The fine-tuned weights and project code are released under Apache 2.0. VOLARE
data are not redistributed and remain subject to the source provider's terms.