Introduction¶
Chapter Quantitative Investment Fundamentals classified investment strategies by economic hypothesis and practical methodology. This chapter provides the mathematical foundations for each strategy class. The goal is to move from the qualitative insight — “prices tend to revert to their mean” or “recent winners outperform recent losers” — to a precise formulation: how to detect the property, how to calibrate its parameters, how to derive the optimal entry and exit rules, and how to construct the portfolio.
We develop four blocks of theory, following the taxonomy of the preceding chapter. Section Mean reversion strategies treats mean-reversion strategies in depth: the Ornstein-Uhlenbeck (OU) model and its discrete AR(1) representation, hypothesis tests for mean reversion (Dickey-Fuller, Augmented Dickey-Fuller, Hurst exponent), the half-life as a natural strategy timescale, and the extension to multi-instrument portfolios via cointegration (the Engle-Granger and Johansen tests). We also derive the Kalman filter update equations for a pairs-trading strategy with time-varying hedge ratio. Section Trend following and momentum treats trend-following strategies: the statistical characterisation of momentum, MACD-style signal filters, and the relation between the Hurst exponent and the autocorrelation structure. Section Statistical arbitrage covers statistical arbitrage, focusing on the PCA-based factor decomposition approach of Avellaneda & Lee (2010). Section Factor models and factor investing develops the Arbitrage Pricing Theory and the Fama-French factor models. Finally, section Optimal portfolio construction derives the key results in portfolio optimisation: the efficient frontier, the maximum Sharpe ratio portfolio, risk parity, and the Black-Litterman framework.
Mathematical prerequisites are the stochastic calculus of chapter Stochastic Calculus (Itô’s lemma, Brownian motion, SDEs), the stochastic optimal control tools of chapter Stochastic Optimal Control (Bellman equations, HJB), and the Bayesian inference tools of chapter Bayesian Modelling (Gaussian updates, prior-posterior analysis).
Mean reversion strategies¶
The Ornstein-Uhlenbeck model¶
The fundamental continuous-time model of mean-reverting dynamics is the Ornstein-Uhlenbeck (OU) process:
where is the speed of mean reversion, is the long-run mean, and is the volatility. Unlike geometric Brownian motion (the default model for non-mean-reverting prices), the OU process has a negative feedback term: when , the drift is negative, pulling the process downward; when , the drift is positive. The strength of this restoring force is proportional to .
The OU SDE can be solved exactly (see chapter Stochastic Calculus). Starting from :
Taking expectations and variance:
The mean decays exponentially to with time constant . The stationary distribution is .
Half-life: the time for the expected deviation from to halve:
The half-life is a natural timescale for strategy design: holding periods should be of order , and lookback windows for estimating the mean and standard deviation should span several half-lives to capture the stationary distribution.
Autocovariance: for the stationary process,
decaying exponentially with lag . The autocorrelation function (ACF) is , which is always positive but decreasing — a distinguishing feature of OU versus a trend-following process (which would have and potentially increasing autocorrelations at short lags).
Discrete-time AR(1) representation¶
Discretising the OU SDE with time step :
where the parameters map from the continuous OU as:
This is a first-order autoregressive model (AR(1)) with coefficient . Mean reversion requires ; a random walk corresponds to (no drift). Equivalently, the differences follow:
The key insight: the difference is a linear function of the level , with a negative coefficient . Testing whether (random walk) versus (mean reversion) is the basis of the Dickey-Fuller test.
Testing for mean reversion¶
The Dickey-Fuller and Augmented Dickey-Fuller tests¶
The Dickey-Fuller (DF) test Dickey & Fuller, 1979 regresses the first differences on the level:
and tests the null hypothesis (unit root / random walk) against the alternative (mean reversion) using the t-statistic:
Under , the distribution of is non-standard (not a normal or standard distribution), reflecting the non-stationarity of the random walk. Critical values at 5% significance are approximately -1.95 (no trend), -2.86 (with constant), and -3.41 (with constant and trend) for large samples. If is more negative than the critical value, is rejected: the series is mean-reverting with statistical significance.
The Augmented Dickey-Fuller (ADF) test generalises the regression to include lagged differences to control for serial correlation in the residuals:
The test statistic and critical values are the same. The lag order is chosen by information criteria (AIC, BIC). The ADF is the standard version used in practice, as the simple DF test can be over-sized in the presence of autocorrelation.
The Hurst exponent¶
The Hurst exponent Hurst, 1951 quantifies the long-term memory of a time series. Define for a price series. The structure function scales as:
The exponent is estimated by log-log regression of the variance of log-increments at different lags against . The three regimes are:
: geometric random walk — no memory, increments are uncorrelated.
: mean-reverting behaviour — the series diffuses slower than a random walk; positive increments are followed by negative ones on average.
: trending behaviour — the series diffuses faster than a random walk; positive increments are followed by positive ones on average.
The Hurst exponent is complementary to the ADF test: the ADF is a formal hypothesis test for a unit root; the Hurst exponent is a descriptive statistic for the degree of memory. A series with and a significant ADF test is a strong mean-reversion candidate; is a strong trend-following candidate.
Estimation: the standard estimator is the rescaled range (R/S) method. Partition the series into blocks of length . For each block, compute the range (max cumulative deviation from the block mean) and the standard deviation . The statistic scales as ; regressing on yields .
Z-score trading strategy¶
Given that a price series is mean-reverting with estimated parameters and (rolling, computed over a half-life window), the z-score is:
The canonical entry-exit rule:
Short entry: (e.g., +1.96) — price is high relative to mean, expect reversion down.
Long entry: — price is low, expect reversion up.
Exit: (e.g., 0.5) — price has returned sufficiently close to mean.
Stop loss: (e.g., 3.0) — the deviation has grown so large that the mean-reversion thesis is questioned.
The strategy’s expected holding period is related to the OU half-life: a half-life of 5 days implies typical holding periods of 5–15 days. Calibrating the thresholds against the half-life and the distribution of the stationary OU process is a standard backtesting exercise.
Cointegration and pairs trading¶
Mean-reversion strategies are most powerful when applied to a portfolio of instruments whose combination is mean-reverting, even if each individual series is non-stationary. This is the concept of cointegration Engle & Granger, 1987.
Definition: a set of time series (i.e., each is a random walk individually) is cointegrated if there exists a vector such that the linear combination is (stationary / mean-reverting). The vector is called the cointegrating vector, and the stationary portfolio is the spread.
Economic intuition: two instruments that share a common long-run trend — because they have fundamentally linked values (e.g., futures contract and its underlying basket, two large-cap equity indices with overlapping constituents) — will drift together in the long run even if they deviate temporarily. Cointegration formalises this co-movement without requiring the individual series to be stationary.
The Engle-Granger two-step procedure¶
For two series :
Regression: regress on (and possibly a constant): . The OLS estimate is the hedge ratio of the cointegrating portfolio.
ADF on residuals: apply the ADF test to . If the residuals are stationary (ADF rejects the unit root), the series are cointegrated.
Note: the direction of the regression matters — regressing on and on yield different hedge ratios. A symmetric alternative is the Johansen test.
The Johansen test¶
The Johansen test Johansen, 1991 handles the multi-instrument case () simultaneously and produces the cointegrating vectors as part of the test procedure. It fits a Vector Autoregressive (VAR) model to :
and tests the rank of the matrix . The rank equals the number of cointegrating relationships:
: no cointegration (all series are independent random walks).
: cointegrating vectors exist.
: all series are stationary.
The test uses two statistics: the trace statistic and the maximum eigenvalue statistic, both compared against critical values derived from Brownian motion theory. If rank is established, the eigenvectors of corresponding to the largest eigenvalues define the cointegrating portfolios; the one with the largest eigenvalue is the best mean-reverting linear combination.
Advantages over Engle-Granger: the Johansen test works for instruments, simultaneously estimates the hedge ratios and performs the hypothesis test (eliminating the two-stage bias), and provides a likelihood-based framework with better finite-sample properties.
Kalman filter for time-varying hedge ratios¶
In practice, the cointegrating vector is not fixed but evolves over time as market conditions change. Fixing at a historical estimate (Engle-Granger or Johansen) causes the strategy to use a stale hedge ratio, increasing basis risk. The Kalman filter Kalman, 1960 provides an optimal solution to tracking time-varying hedge ratios.
For a pairs trading strategy with instruments , model the relationship as:
The hedge ratio is the latent state, modelled as a random walk. The Kalman filter optimal one-step update (see chapter Stochastic Optimal Control, LQSC section) gives:
where is the posterior variance of given observations up to . The ratio controls the speed of adaptation: high allows rapid updating (but introduces estimation noise); low produces a slowly moving hedge ratio. These noise variances are estimated from historical data via maximum likelihood.
The spread used for trading is the residual , which is z-scored and traded with the entry-exit rules of the previous section. Empirical studies consistently find that Kalman-filter pairs trading outperforms fixed-hedge-ratio strategies, particularly for pairs whose relationship drifts over months Chan, 2013.
The more general model with both intercept and slope time-varying is:
with . The Kalman filter generalises immediately to this two-dimensional state vector.
Trend following and momentum¶
Time-series momentum¶
The empirical finding of Moskowitz et al. (2012) is that the sign of the past 12-month return of a futures contract predicts the sign of the return over the next month. Define the time-series momentum (TSMOM) signal for instrument over lookback window :
The strategy goes long (short) instrument if the signal is +1 (-1). The position is scaled by (volatility-normalised) to equalise risk across instruments. Moskowitz, Ooi, and Pedersen show that an equally-weighted TSMOM strategy across 58 futures markets generates a Sharpe ratio of approximately 1.28 over 1985–2012, after transaction costs.
Theoretical support: TSMOM profits are consistent with the slow adjustment hypothesis — news is impounded into prices gradually rather than instantaneously, creating serial correlation. It is also related to the behavioural underreaction literature: investors initially underreact to news, with subsequent adjustment creating trends. The autocorrelation structure for a trending series is:
which corresponds to a Hurst exponent . The magnitude of TSMOM profits is proportional to the magnitude of the autocorrelation at the relevant lag.
Cross-sectional momentum¶
Cross-sectional (or relative) momentum Jegadeesh & Titman, 1993 ranks instruments by their past -period returns and forms a long-short portfolio: long the top decile, short the bottom decile, holding for periods. The canonical parameters (from the original Jegadeesh-Titman paper) are months formation, month holding, skipping the most recent month to avoid microstructure effects.
For a universe of stocks with returns , the cross-sectional momentum score is the rank-transformed z-score:
The portfolio weights are proportional to (a dollar-neutral long-short portfolio). The key economic driver is not the same as TSMOM: cross-sectional momentum profits arise from relative underperformance — the bottom decile has negative alpha, not just lower-than-average returns.
Detection: MACD and moving-average crossovers¶
In practice, trend-following strategies use moving average convergence-divergence (MACD) signals and moving-average crossovers rather than raw past returns. The exponential moving average (EMA) with decay rate is:
The MACD signal is the difference between a fast and slow EMA:
A positive MACD indicates recent returns exceed their long-term average — a bullish momentum signal. Moving-average crossover strategies trigger a long (short) entry when the fast MA crosses above (below) the slow MA. These signals are approximately proportional to the first difference of the MACD and are consistent with the TSMOM signal at the appropriate lag.
Connection to autocorrelation: it can be shown that the expected profit of a MA-crossover strategy is approximately proportional to the autocorrelation of returns at the lags spanned by the fast and slow MA windows. This provides a direct connection between the empirical autocorrelation structure (Hurst exponent) and the expected alpha of trend-following strategies.
Statistical arbitrage¶
The no-arbitrage foundation¶
The law of one price states that two assets with identical payoffs must have the same price in an efficient market; otherwise a risk-free arbitrage exists. The no-arbitrage condition is the starting point for derivatives pricing (Black-Scholes, term structure models) and for the theoretical fair value of futures, forwards, and replication strategies.
In practice, true arbitrages — riskless profit opportunities — are extremely rare. The presence of transaction costs, liquidity differences, and execution risk means that even apparently model-free mispricings may not be exploitable profitably. The conversion of a true arbitrage into a statistical arbitrage occurs when:
The fair-value relationship involves model assumptions (e.g., a volatility surface arbitrage depends on the assumed dynamics of implied volatility).
There is a basis — a persistent, non-zero spread between the instrument and its theoretical value — due to liquidity premiums, contractual differences, or funding costs.
The convergence of the mispricing is not guaranteed within any fixed horizon.
A statistical arbitrage is characterised by positive expected return and small (but non-zero) variance: it profits on average across many repetitions but can lose on any individual trade.
PCA-based statistical arbitrage¶
A powerful framework for equity StatArbs is the factor decomposition approach of Avellaneda & Lee (2010). Each stock’s log-return is decomposed into a systematic (factor) component and an idiosyncratic residual:
where are the returns of the first principal components of the return covariance matrix, are the factor loadings, and is the idiosyncratic residual. Principal component analysis (PCA) orthogonalises the factors.
Statistical arbitrage strategy: trade the idiosyncratic residuals , which by construction are uncorrelated with the systematic market moves. If is mean-reverting (tested via ADF or Hurst), the strategy goes long stock when its cumulative residual deviates negatively from its mean, and short when it deviates positively.
The intuition: the PCA factors capture the co-movements of all stocks (sector, size, beta effects); what remains is the idiosyncratic component, which reflects the stock-specific dynamics not explained by the market. If a stock has underperformed its factor model — i.e., its idiosyncratic return is negative — the strategy bets on a recovery.
The number of factors is chosen to balance explanatory power and dimensionality: too few factors and the residuals contain systematic risk; too many and the idiosyncratic component is diluted. In practice, –50 factors captures 50–70% of the variance of a large-cap equity universe.
Risk-neutral model arbitrages¶
Volatility surface arbitrage: in options markets, the Black-Scholes implied volatility surface as a function of strike and maturity encodes the market’s risk-neutral distribution of the underlying. Static no-arbitrage conditions constrain the surface: (i) call prices must be decreasing in (put-call parity), (ii) call prices must be decreasing in at rate bounded by the discount factor (butterfly spread must be non-negative), (iii) calendar spread must be non-negative. A violation of any of these conditions is a true arbitrage. Near-violations (surfaces near the boundary of the no-arbitrage region) are statistical arbitrages: the surface is likely to correct, but convergence is not instantaneous.
Yield curve arbitrage: the term structure of interest rates must satisfy no-arbitrage conditions relating spot rates, forward rates, and bond prices. Butterfly strategies — long the 5-year, short the 2-year and 10-year with duration-matched weights — are zero-cost portfolios that profit from convexity and curvature changes while hedging parallel and slope movements. These are classic StatArbs in rates markets.
Factor models and factor investing¶
The Arbitrage Pricing Theory¶
The Arbitrage Pricing Theory of Ross (1976) derives a linear factor model for expected returns from a no-arbitrage argument. Consider assets with returns generated by common factors :
where , (idiosyncratic risk is uncorrelated with factors), and for (idiosyncratic risks are nearly uncorrelated with each other). Under the assumption that no asymptotic arbitrage exists — i.e., that no portfolio of idiosyncratic risks can generate riskless returns — it follows that:
where is the risk premium of factor . The expected excess return of asset is therefore a linear combination of its factor exposures, weighted by the factor risk premia.
CAPM as a special case: the Capital Asset Pricing Model is the APT with a single factor — the market portfolio. The CAPM risk premium is (the equity risk premium), and is the standard market beta.
The Fama-French-Carhart four-factor model¶
Fama & French (1993) showed empirically that the CAPM fails to explain the cross-section of equity returns: small-cap stocks earn higher returns than predicted by CAPM, and high book-to-market (value) stocks earn higher returns than growth stocks. Their three-factor model adds two factors to the market factor:
where:
MKT : market excess return.
SMB (Small Minus Big): return of small-cap stocks minus large-cap stocks, capturing the size premium.
HML (High Minus Low): return of high book-to-market stocks minus low book-to-market stocks, capturing the value premium.
Carhart (1997) extended the model with a momentum factor:
WML (Winners Minus Losers): return of the top decile by 12-month return minus the bottom decile, capturing the momentum premium.
The four-factor Fama-French-Carhart model explains roughly 90–95% of the time-series variance of diversified equity portfolio returns. The in the regression — the intercept, representing return unexplained by the four factors — is the asset’s true alpha relative to these systematic risk premia.
Factor exposure estimation and the factor zoo¶
For a given set of factor portfolios , the factor loadings of asset are estimated by ordinary least squares on the time-series regression above. The standard errors account for heteroskedasticity and autocorrelation (HAC estimators).
The factor zoo problem: Prado (2022) surveys hundreds of factors proposed in the academic literature and argues that most are spurious. The hierarchy of evidence in financial research (from the lecture notes, AlgoTradingVII slide 15) ranks factor evidence by rigour:
| Type | Rigour | Example |
|---|---|---|
| Randomised controlled trials | Very high | Algo-wheel experiments |
| Natural experiments | High | Market-maker reaction to random spikes |
| Simulated interventions | Medium | Causal graph analysis of HML |
| Econometric (observational) studies | Low | Backtested factor strategies |
| Case studies | Very low | Broker analysis |
| Expert opinion | Anecdotal | Investment guru predictions |
Most factor research relies on econometric observational studies, which are vulnerable to multiple testing and selection bias. A causal validation approach — asking whether a factor represents a genuine, structurally interpretable source of risk rather than a data-mining artefact — substantially reduces the factor zoo. Chapter Causal inference provides the causal inference tools (do-calculus, back-door criterion) needed for this validation.
Factor selection in practice: the standard approach is to:
Require a theoretical rationale for the factor (risk-based or behavioural).
Require evidence across multiple markets, time periods, and asset classes.
Apply multiple-testing corrections (deflated Sharpe ratio, false discovery rate control).
Require the factor premium to survive transaction costs and to be estimable with low data requirements.
Optimal portfolio construction¶
Mean-variance optimisation¶
The mean-variance optimisation (MVO) of Markowitz (1952) solves:
subject to (and optionally for long-only). Here is the vector of expected excess returns and is the return covariance matrix. The parameter is the risk-aversion coefficient.
The first-order conditions give the analytical solution:
where is the Lagrange multiplier for the budget constraint, determined by . For an unconstrained (long-short) portfolio with zero-cost constraint (), the solution simplifies to .
The efficient frontier: as ranges from 0 to , the solution traces a curve in the (risk, return) space — the efficient frontier. Each point on the frontier is the portfolio with minimum risk for a given expected return (equivalently, maximum expected return for given risk). The relationship between risk and return traces a hyperbola in the plane.
Maximum Sharpe ratio portfolio: the tangency portfolio maximises:
Its analytical solution (for a long-short portfolio with budget constraint ) is:
Instability and estimation error: MVO is notoriously sensitive to errors in and . The covariance matrix can be estimated with reasonable precision from historical data, but expected returns are very noisy: the estimation error in over typical historical windows is comparable in magnitude to itself. The optimiser then amplifies small estimation errors into extreme portfolio weights. Common remedies:
Shrinkage estimators for (Ledoit-Wolf, factor models).
Robust optimisation (worst-case constraints on the uncertainty set of ).
Regularisation (penalty on or ).
Black-Litterman (Bayesian shrinkage of toward a prior).
Risk parity¶
Risk parity abandons expected return forecasts and focuses entirely on equalising the risk contribution of each asset to the portfolio. The risk contribution of asset is:
It measures how much asset contributes to total portfolio volatility . A risk-parity portfolio requires for all — each asset contributes equally to portfolio risk. For a diagonal (uncorrelated assets), this reduces to : inverse-volatility weighting.
For general , the risk-parity weights are found by solving the system:
This is a non-linear system without a closed-form solution in general, solved by iterative methods (Newton-Raphson, sequential quadratic programming).
Advantages over MVO: risk parity does not require expected return estimates (only covariance), which makes it much more stable. It naturally diversifies risk across assets, avoiding the concentration that plagues MVO. Its main limitation is that it does not account for return expectations — a lower-risk asset may have a higher (or lower) expected return per unit of risk than a higher-risk asset, and risk parity treats them identically.
The Black-Litterman framework¶
The Black-Litterman model Black & Litterman, 1992 solves the estimation error problem of MVO by combining an equilibrium prior on expected returns with the investor’s subjective views, using a Bayesian update.
Step 1 — Equilibrium prior: from the CAPM, the market-clearing expected excess return vector is:
where is the market-capitalisation weight vector and is calibrated so that matches the empirical equity risk premium. This gives a reasonable prior on expected returns that is consistent with the market equilibrium and does not require forecasting.
Step 2 — Views: the investor expresses views on linear combinations of returns: , where selects the relevant assets, is the expected return vector for each view, and reflects the uncertainty in the views.
Step 3 — Bayesian update: combining the prior (with small reflecting confidence in the prior) and the view likelihood, the posterior expected return (see chapter Bayesian Modelling for the Gaussian update formula) is:
The posterior is a precision-weighted average of the equilibrium prior and the investor’s views. It is then used as the expected return input to MVO, producing an optimal portfolio that tilts away from the market portfolio in proportion to the investor’s views and confidence.
Key properties: if the investor has no views (), the BL optimal portfolio equals the market portfolio. As views become more confident (), the portfolio tilts aggressively toward the views. The blending ensures that the portfolio is always a well-behaved tilt from a sensible baseline, avoiding the extreme weights that pure MVO produces.
Connection to Bayesian inference: the BL update is a special case of the Gaussian conjugate update derived in chapter Bayesian Modelling. The equilibrium CAPM return is the prior; the investor’s views are the likelihood; the posterior is the BL expected return. This connection is particularly clean because both the prior and the views are modelled as Gaussian, making the update exact and closed-form.
Exercises¶
OU calibration. A price spread has sample mean and is found to follow an AR(1) model with coefficient , estimated on daily data ( day). (a) Estimate the OU parameters , , and (assuming ). (b) Compute the half-life in trading days. (c) Compute the stationary standard deviation . (d) How would you set the z-score entry threshold to achieve an expected holding period of roughly one half-life?
Dickey-Fuller test. You have 500 daily observations of a price spread. The OLS regression of on (with constant) gives with . (a) Compute the DF test statistic. (b) Is the null hypothesis of a unit root rejected at the 5% level? (c) If the regression also includes a time trend and gives with , what is the conclusion?
Hurst exponent. Log-log regression of the structure function on gives a slope of . For three price series: (A) slope 1.0, (B) slope 0.7, (C) slope 1.4. Identify which series exhibits mean reversion, random walk behaviour, and trending behaviour. For which would a pairs-trading strategy be appropriate? For which a trend-following strategy?
Cointegration and Johansen test. Describe the key difference between the Engle-Granger two-step procedure and the Johansen test for detecting cointegration among a set of price series. Under what conditions would the two methods disagree about the number of cointegrating relationships? Which would you prefer in practice, and why?
APT and factor premia. An asset has factor loadings (market), (SMB), (HML). The factor risk premia are , , (annualised). (a) Compute the expected excess return from the APT. (b) If the asset’s actual average excess return is 8%, what is its four-factor alpha? (c) Interpret the sign of the HML loading economically.
Black-Litterman with one view. A universe of two assets has equilibrium returns and covariance . The market weights are and . An investor holds one view: asset 1 will outperform asset 2 by 2% (i.e., , ) with view uncertainty . (a) Write out the BL update formula and compute . (b) Compare to the equilibrium prior . How has the investor’s view shifted the expected returns?
Risk parity. A two-asset portfolio has standard deviations and , and correlation . (a) Compute the inverse-volatility weights. (b) Verify that these weights are exactly risk-parity when the two assets are uncorrelated (). (c) For , compute the exact risk contribution of each asset under the inverse-volatility weights — do they equalise risk contributions? If not, describe qualitatively how the weights would change to achieve exact risk parity.
- Avellaneda, M., & Lee, J.-H. (2010). Statistical Arbitrage in the U.S. Equities Market. Quantitative Finance, 10(7), 761–782. 10.1080/14697680903124632
- Dickey, D. A., & Fuller, W. A. (1979). Distribution of the Estimators for Autoregressive Time Series with a Unit Root. Journal of the American Statistical Association, 74(366), 427–431. 10.2307/2286348
- Hurst, H. E. (1951). Long-Term Storage Capacity of Reservoirs. Transactions of the American Society of Civil Engineers, 116, 770–799.
- Engle, R. F., & Granger, C. W. J. (1987). Co-Integration and Error Correction: Representation, Estimation, and Testing. Econometrica, 55(2), 251–276. 10.2307/1913236
- Johansen, S. (1991). Estimation and Hypothesis Testing of Cointegration Vectors in Gaussian Vector Autoregressive Models. Econometrica, 59(6), 1551–1580. 10.2307/2938278
- Kalman, R. E. (1960). A new approach to linear filtering and prediction problems. Journal of Basic Engineering, 82(1), 35–45.
- Chan, E. P. (2013). Algorithmic Trading: Winning Strategies and Their Rationale (p. 224). John Wiley & Sons.
- Moskowitz, T. J., Ooi, Y. H., & Pedersen, L. H. (2012). Time Series Momentum. Journal of Financial Economics, 104(2), 228–250. 10.1016/j.jfineco.2011.11.003
- Jegadeesh, N., & Titman, S. (1993). Returns to Buying Winners and Selling Losers: Implications for Stock Market Efficiency. Journal of Finance, 48(1), 65–91. 10.1111/j.1540-6261.1993.tb04702.x
- Ross, S. A. (1976). The Arbitrage Theory of Capital Asset Pricing. Journal of Economic Theory, 13(3), 341–360. 10.1016/0022-0531(76)90046-6
- Fama, E. F., & French, K. R. (1993). Common Risk Factors in the Returns on Stocks and Bonds. Journal of Financial Economics, 33(1), 3–56. 10.1016/0304-405X(93)90023-5
- Carhart, M. M. (1997). On Persistence in Mutual Fund Performance. Journal of Finance, 52(1), 57–82. 10.1111/j.1540-6261.1997.tb03808.x
- López de Prado, M. (2022). Causal Factor Investing: Can Factor Investing Become Scientific? 10.2139/ssrn.4205613
- Markowitz, H. (1952). Portfolio Selection. Journal of Finance, 7(1), 77–91. 10.1111/j.1540-6261.1952.tb01525.x
- Black, F., & Litterman, R. (1992). Global Portfolio Optimization. Financial Analysts Journal, 48(5), 28–43. 10.2469/faj.v48.n5.28