5 Calculating Fama French Factors FamaFrench Portfolio Monthly

  • Slides: 10
Download presentation

5. Calculating Fama. French Factors

5. Calculating Fama. French Factors

Fama-French Portfolio Monthly Returns End of June t End of Dec. t-1 End of

Fama-French Portfolio Monthly Returns End of June t End of Dec. t-1 End of July t holding period 3 Wharton Research Data Services

Portfolio Returns 1/2 /* Calculate monthly time series of weighted average portfolio returns */

Portfolio Returns 1/2 /* Calculate monthly time series of weighted average portfolio returns */ proc means data=ccm 4 noprint; where weight_port>0 and positivebeme=1 and exchcd in (1, 2, 3) and shrcd in (10, 11) and nonmissport=1; by date sizeport btmport; var retadj; weight_port; output out=vwret (drop= _type_ _freq_ ) mean=vwret; run; /* Monthly Factor Returns: SMB and HML */ proc transpose data=vwret(keep=date sizeport btmport vwret) out=vwret 2 (drop=_name_ _label_); by date ; ID sizeport btmport; Var vwret; run; 4 Name of Initiative

5 Name of Initiative

5 Name of Initiative

Portfolio Returns 2/2 data ff_factors; set vwret 2; WH = (bh + sh)/2 ;

Portfolio Returns 2/2 data ff_factors; set vwret 2; WH = (bh + sh)/2 ; WL = (sl + bl)/2 ; WHML = WH - WL; WB = (bl + bm + bh)/3 ; WS = (sl + sm + sh)/3 ; WSMB = WS - WB; label WH = 'WRDS High' WL = 'WRDS Low' WHML = 'WRDS HML' WS = 'WRDS Small' WB = 'WRDS Big' WSMB = 'WRDS SMB'; run; 6 Name of Initiative

Finish! 7 Name of Initiative

Finish! 7 Name of Initiative

… and correlation between our replication and Prof French’s smb and hml 8 Name

… and correlation between our replication and Prof French’s smb and hml 8 Name of Initiative

Fama-French 93 (SAS Replication): 1. Introduction. SMB and HML 2. Book-Equity (Compustat) 3. Stock

Fama-French 93 (SAS Replication): 1. Introduction. SMB and HML 2. Book-Equity (Compustat) 3. Stock data (CRSP) 4. Merge CRSP and Compustat 5. Portfolio Formation 6. Calculating FF Factors 7. Comparing with Ken French data 9 Wharton Research Data Services