- Fama Macbeth Two Step Regression (1973)
- Three pass method (Asset Pricing with Omitted Factors, 2021)
This study empirically analyzes methodologies for estimating risk premiums of factors. It compares the traditional Fama-Macbeth Two-Step Regression with the Three-Step Regression proposed in 2021, estimating risk premiums for the FF-5 factors and macroeconomic variables. The Three-Step Regression produced more reasonable estimates when estimating the risk premiums of macro factors.
python main.py
from riskpremia import *
Est = Estimator(portfolio, factor)
# Two-pass
Est.two_pass(adjust_autocorr=True)
# Three-pass
Est.three_pass(max_k=300)
- Risk, Return, and Equilibrium: Empirical Tests (EF Fama, 1973)
- Asset Pricing with Omitted Factors (S Giglio, 2021)