PPrepLearn
Progress Β· 0/5 phases

πŸ“ˆ πŸ“ˆ Quant Analyst Roadmap β€” Beginner to Advanced

4 min read Β· Notion

πŸ“ˆ From statistics fundamentals to building production trading systems. Math, programming, financial markets, derivatives pricing, statistical/ML models, backtesting, and risk management β€” the complete path to working as a quantitative analyst.


πŸ“Œ How to use this template

  • Work phases in order β€” each builds on the math/code of the previous one
  • Every concept has a corresponding implementation (Python/Go). Quant work is computational β€” derivations without code are half-finished
  • Use the Daily Tracker to log study + code + one market insight per day
  • Each phase ends with a project that ties theory to a working artifact (pricer, backtester, model)

πŸ’‘ The core skill being built: translating a real-world financial question into a mathematical model, implementing it correctly, and knowing exactly where the model breaks down.


πŸ—ΊοΈ Roadmap at a glance

PhaseFocusKey Outcome
Phase 1 β€” Mathematical & Statistical FoundationsProbability, statistics, linear algebra, stochastic calculus, time seriesBuild the math toolkit every quant model rests on
Phase 2 β€” Programming & Data InfrastructurePython for quant (NumPy/Pandas), SQL, market data, performanceClean, fast, production-grade data pipelines
Phase 3 β€” Financial Markets & InstrumentsEquities, fixed income, FX, derivatives, market microstructureUnderstand what you're actually modelling
Phase 4 β€” Derivatives Pricing & Risk ModelsBlack-Scholes, binomial trees, Monte Carlo, Greeks, VaRPrice and hedge real instruments
Phase 5 β€” Quant Strategies, ML & BacktestingFactor models, statistical arbitrage, ML in finance, backtesting enginesBuild and rigorously test a trading strategy

⚑ The quant decision framework

For every model or strategy, ask:

  1. What is the economic intuition? β€” if you can't explain it in one sentence to a non-quant, you don't understand it yet
  2. What are the assumptions, and which ones are false in practice? β€” every model is wrong; know HOW it's wrong
  3. What does the data actually look like? β€” plot it before modelling it. Fat tails, autocorrelation, regime shifts
  4. How does this fail? β€” what market conditions break this model (2008, 2020, flash crashes)?
  5. What's the simplest version that captures 80% of the value? β€” start simple, add complexity only when justified by out-of-sample performance
  6. Is this overfit? β€” in-sample Sharpe of 3.0 with 10 parameters on 2 years of data is a red flag, not a strategy

πŸ“Š My progress

  • Current phase: Phase 1
  • Current day: Day 1
  • Models implemented: 0
  • Backtests run: 0
  • Papers read: 0

  • πŸ“ Phase 1 β€” Mathematical & Statistical Foundations
  • πŸ’» Phase 2 β€” Programming & Data Infrastructure
  • 🏦 Phase 3 β€” Financial Markets & Instruments
  • βš–οΈ Phase 4 β€” Derivatives Pricing & Risk Models
  • πŸ€– Phase 5 β€” Quant Strategies, ML & Backtesting

πŸ› οΈ Core tech stack

LayerTools
LanguagePython (primary), with Go for production systems
Numerical computingNumPy, SciPy, Pandas
Statistical modellingstatsmodels, scikit-learn
VisualizationMatplotlib, Seaborn, Plotly
Backtestingvectorbt, backtrader, or custom event-driven engine
Data sourcesyfinance, Quandl, Alpha Vantage, IEX, Bloomberg/Refinitiv (if available)
DatabasesPostgreSQL/TimescaleDB for tick/OHLCV data
NotebooksJupyter for research, scripts for production
PerformanceNumPy vectorization, Numba/Cython for hot loops

πŸ“˜ Essential reading list (by phase)

BookUse for
Introduction to Probability β€” Blitzstein & HwangPhase 1 probability foundation
A First Course in Stochastic Processes β€” Karlin & TaylorPhase 1 stochastic processes
Python for Data Analysis β€” Wes McKinneyPhase 2 Pandas mastery
Options, Futures, and Other Derivatives β€” John HullPhase 3–4 the quant bible
Paul Wilmott Introduces Quantitative FinancePhase 4 derivatives intuition
Advances in Financial Machine Learning β€” Marcos LΓ³pez de PradoPhase 5 ML pitfalls in finance
Quantitative Trading β€” Ernest ChanPhase 5 strategy design + backtesting
Active Portfolio Management β€” Grinold & KahnPhase 5 factor models

πŸ“… Quant Daily Tracker

Related