Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Which funds do you recommend for investment? R Studio Data for 4 mutual funds: GLCGX , TRBCX , DTMVX , DVPEX > # GLCGX fund

Which funds do you recommend for investment?
R Studio Data for 4 mutual funds: GLCGX, TRBCX, DTMVX, DVPEX
> # GLCGX fund
> r_glcgx=da$GLCGX-tbills # excess return for GLCGX
> #require(graphics)
> m1=lm(r_glcgx~rm) # CAPM MODEL with one regressor
> summary(m1)
Call:
lm(formula = r_glcgx ~ rm)
Residuals:
Min 1Q Median 3Q Max
-0.103809-0.0087050.0041350.0097940.043773
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept)-0.0070490.002898-2.4320.0181*
rm 1.1672010.05890619.815<2e-16***
---
Signif. codes: 0***0.001**0.01*0.05.0.11
Residual standard error: 0.02243 on 58 degrees of freedom
Multiple R-squared: 0.8713, Adjusted R-squared: 0.8691
F-statistic: 392.6 on 1 and 58 DF, p-value: <2.2e-16
> m2=lm(r_glcgx~rm+hml+smb+mom) #Multifactor model
> summary(m2)
Call:
lm(formula = r_glcgx ~ rm + hml + smb + mom)
Residuals:
Min 1Q Median 3Q Max
-0.075820-0.0066590.0015660.0096110.033015
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept)0.00094670.00245670.3850.701
rm 1.00758310.049817020.226<2e-16***
hml -0.48322660.0672459-7.1861.87e-09***
smb -0.25847570.0522464-4.9477.47e-06***
mom -0.00185800.0313426-0.0590.953
---
Signif. codes: 0***0.001**0.01*0.05.0.11
Residual standard error: 0.01643 on 55 degrees of freedom
Multiple R-squared: 0.9345, Adjusted R-squared: 0.9297
F-statistic: 196.2 on 4 and 55 DF, p-value: <2.2e-16
> # TRCBX fund
> r_trbcx=da$TRBCX-tbills # excess return for TRBCX
> m3=lm(r_trbcx~rm) # CAPM MODEL with one regressor
> summary(m3)
Call:
lm(formula = r_trbcx ~ rm)
Residuals:
Min 1Q Median 3Q Max
-0.040955-0.005516-0.0016230.0055280.034593
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept)-0.0014600.001603-0.9110.366
rm 1.0075050.03258430.921<2e-16***
---
Signif. codes: 0***0.001**0.01*0.05.0.11
Residual standard error: 0.01241 on 58 degrees of freedom
Multiple R-squared: 0.9428, Adjusted R-squared: 0.9418
F-statistic: 956.1 on 1 and 58 DF, p-value: <2.2e-16
> m4=lm(r_trbcx~rm+hml+smb+mom) #Multifactor model
> summary(m4)
Call:
lm(formula = r_trbcx ~ rm + hml + smb + mom)
Residuals:
Min 1Q Median 3Q Max
-0.0277892-0.00615670.00009760.00440260.0227884
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept)0.0027860.0013842.0130.049027*
rm 0.9458560.02806633.701<2e-16***
hml -0.1473670.037885-3.8900.000273***
smb -0.1141670.029434-3.8790.000283***
mom -0.0834960.017658-4.7291.61e-05***
---
Signif. codes: 0***0.001**0.01*0.05.0.11
Residual standard error: 0.009256 on 55 degrees of freedom
Multiple R-squared: 0.9698, Adjusted R-squared: 0.9676
F-statistic: 441.7 on 4 and 55 DF, p-value: <2.2e-16
> # DTMVX fund
> r_dtmvx=da$DTMVX-tbills #alpha
> m5=lm(r_dtmvx~rm) #CAPM model with one regressor
> summary(m5)
Call:
lm(formula = r_dtmvx ~ rm)
Residuals:
Min 1Q Median 3Q Max
-0.094728-0.0222740.0051420.0218240.070964
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept)0.0137910.0042433.2

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Financial management theory and practice

Authors: Eugene F. Brigham and Michael C. Ehrhardt

13th edition

1439078106, 111197375X, 9781439078105, 9781111973759, 978-1439078099

More Books

Students also viewed these Finance questions