Implements the Carhart (1997) four-factor model, which extends the Fama-French three-factor model with a momentum factor: $$R_i - R_f = \alpha + \beta_m (R_m - R_f) + \beta_s SMB + \beta_h HML + \beta_{mom} MOM + \epsilon$$
Requires columns: excess_return, market_excess, smb,
hml, mom.
Super classes
ModelBase -> LinearFactorModel -> Carhart4FactorModel
Public fields
model_nameName of the model.
formulaThe four-factor regression formula.
required_columnsRequired data columns.
Methods
Inherited methods
Carhart4FactorModel$new()
Create a new Carhart4FactorModel.
Usage
Carhart4FactorModel$new(use_hac = FALSE, hac_lag = NULL)