Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Provide a short description for the concepts addressed in the... 1. Provide a short description for the concepts addressed in the following questions: (a.)

1. Provide a short description for the concepts addressed in the...

1. Provide a short description for the concepts addressed in the following questions:

(a.) Why study an asset return and not its price?

(b.) Let denote the daily log return of an asset. Describe a procedure for testing the existence of serial correlations in .

(c.) What is a white noise process?

(d.) Describe a nice feature and a drawback of using ARCH model to modeling asset volatility.

(e.) What is a stationary time series? What is a non-stationary process?

(f.) Describe the different steps involved in performing a GARCH analysis.

2. Consider the return time series for the DJIA index.

(a.) Download the DJIA data from Yahoo! Finance using quantmod (the index ticker is ^DJI) from 1991-01-01 to 2019-06-30 and calculate the daily return time series.

(b.) Write down the AR model for the series. Remove insignificant coefficient estimates (based

on t-ratio in absolute value of 1.645). Provide model checking to confirm that the model is adequate.

(c.) Use the fitted model to obtain 1-step to 4-step ahead predictions series (forecast origin is the last data point). Also, compute the corresponding 95% interval forecasts.

(d.). Does the series exhibit GARCH effects? If yes, why?

(e.) Provide the volatility equation and perform model checking. Consider both a normal innovation and a Student-t innovation.

(f.) Write the full model for the series.

3. Considering the issue of volatility modelling, compare the volatility estimation using the VIX index and the volatility of the S&P500 index, using an econometric model.

(a.) What is the use of the Spearman correlation, compared to the Pearson correlation?

(b.) Consider the CBOE daily volatility index (VIX) from January 1, 1990 to June 30, 2019. The data are available from FRED via quantmod. Use the commands below:

getSymbols("VIXCLS",src="FRED")

vix <- VIXCLS['1990-01::2019-06']

n <- length(vix)

idx <- c(1:n)[is.na(vix)]

vix <- vix[-idx]

vix <- as.numeric(vix)

Find an AR model for the VIX series. Remove insignificant coefficient estimates (based on t-ratio 1.645). Provide model checking to confirm that the model is adequate. Write down the model.

(c.) Consider the S&P500 index from January 1, 1990 to June 30, 2019. The data is available using quantmod, and the symbol for the index is ^GSPC. Fit an ARMA model to the index return time series (calculate the returns using the adjusted closing prices), and a GARCH model for the index volatility.

(d.) Calculate the correlation between the VIX and the squared returns of the S&P500 index, and the fitted volatility using the GARCH model.Calculate the correlation over the entire time sample. Calculate the correlation on a year by year basis and plot the annual correlation.

(e.) Considering the correlation values, is the VIX a good representative of the volatility of the index? If not, why? Propose a way to test this in a quantitative way.

4. Consider the monthly U.S. unemployment rates from January 1, 1950 till June 30, 2019. Data are available from FRED and is listed as "UNRATE". Let be the unemployment at time t.

(a.) Fit the seasonal model as below

m1 <- arima(UNRATE,order=c(4,0,1),seasonal=list(order=c(1,0,1),period=12))

Perform model checking and write down the fitted model, including model checking.

(b.) Fit an AR(11) model to the time series.

(c.) Compare the two models. Which model is preferred? Why?

(d.) Use a GARCH(1,1) model for the volatility for the original time series, and the de-seasonalized series. Which one is better? Why?

(e.) Use the fitted model to obtain 1-step to 5-step ahead predictions series (forecast origin is the last data point). Also, compute the corresponding 95% interval forecasts. Perform the predictions separately for the return and volatility models, for both the original time series and the de-seasonalized time series.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Introduction to Probability

Authors: Mark Daniel Ward, Ellen Gundlach

1st edition

716771098, 978-1319060893, 1319060897, 978-0716771098

Students also viewed these Economics questions