Implements the Fama and French (2015) five-factor model: $$R_i - R_f = \alpha + \beta_m (R_m - R_f) + \beta_s SMB + \beta_h HML + \beta_r RMW + \beta_c CMA + \epsilon$$
Requires columns: excess_return, market_excess, smb,
hml, rmw, cma.
Super classes
ModelBase -> LinearFactorModel -> FamaFrench5FactorModel
Public fields
model_nameName of the model.
formulaThe five-factor regression formula.
required_columnsRequired data columns.
Methods
Inherited methods
FamaFrench5FactorModel$new()
Create a new FamaFrench5FactorModel.
Usage
FamaFrench5FactorModel$new(use_hac = FALSE, hac_lag = NULL)