AIAny
AI Train2025
Icon for item

Kronos: A Foundation Model for the Language of Financial Markets

Forecasts financial candlesticks (OHLCV K-lines) with a decoder-only transformer pre-trained on 12B+ records from 45 exchanges. A tokenizer turns market data into discrete tokens, enabling price/volatility forecasting and synthetic K-line generation.

Introduction

Most time-series foundation models treat market data as just another numeric signal and drown in its noise. Kronos instead borrows the LLM playbook: it learns the "language" of candlesticks, tokenizing OHLCV bars into a discrete vocabulary and predicting the next bar autoregressively. It is the first open foundation model built specifically for financial K-lines.

Key Capabilities
  • Two-stage design. A specialized tokenizer turns continuous, multi-dimensional OHLCV bars into hierarchical discrete tokens, which a decoder-only transformer then models autoregressively. This split is what lets it absorb the high noise that trips up general-purpose time-series models.
  • Cross-market scale. Pre-trained on over 12 billion K-line records from 45 global exchanges, so it carries priors across assets and venues rather than overfitting one market.
  • One backbone, many tasks. The same model handles multistep price/return forecasting, realized-volatility forecasting, synthetic K-line generation, and trading simulation.
  • Reported gains. Versus baselines: ~93% improvement over the leading time-series foundation model and ~87% over the best non-pre-trained baseline on price forecasting, 9% lower MAE on volatility, and 22% better generative fidelity for synthetic data.
Who It's For

Great fit if you are a quant researcher or builder who wants a pre-trained OHLCV backbone instead of training a forecaster from scratch — three of its four sizes ship openly (Kronos-mini at 4.1M params/2048 context, Kronos-small, and Kronos-base at 102.3M). Look elsewhere if you need the strongest variant (Kronos-large, ~499M, is closed-source), or if your edge comes from order-book microstructure, news, or fundamentals: Kronos only sees candlesticks, not order flow or text. Outputs are probabilistic samples controlled by temperature and nucleus sampling, not deterministic trade signals.

Information

  • Websitegithub.com
  • OrganizationsTsinghua University
  • AuthorsYu Shi, Zongliang Fu, Shuo Chen, Bohan Zhao, Wei Xu, Changshui Zhang, Jian Li, shiyu-coder (GitHub)
  • Published date2025/07/01

Categories

More Items

GitHub
AI Train2019

Train and experiment with multi-billion to trillion-parameter transformer models on large GPU clusters using GPU-optimized building blocks and reference training scripts; offers advanced parallelism and mixed-precision support for research teams and ML engineers.

GitHub
AI Train2026

Provides a one-command CLI to fine-tune and post-train LLMs, with layer streaming that lets an 8B model be fine-tuned on a 4 GB laptop GPU. Auto-configures quantization, LoRA adapters, batching and evaluation gates, and supports export and serving workflows.

GitHub
AI Train2025

A PyTorch DTensor-native SPMD library for training and fine-tuning LLMs, VLMs, diffusion and retrieval models. Integrates with Hugging Face for day-0 model support, provides YAML-driven recipes, DTensor/FSDP2 parallelism and NVIDIA-optimized kernels (Transformer Engine, DeepEP, FlexAttn).