THE UNIVERSITY OF CHICAGO Graduate School of Business Business 41202, Spring Quarter 2003, Mr. Ruey S. Tsay

Size: px
Start display at page:

Download "THE UNIVERSITY OF CHICAGO Graduate School of Business Business 41202, Spring Quarter 2003, Mr. Ruey S. Tsay"

Transcription

1 THE UNIVERSITY OF CHICAGO Graduate School of Business Business 41202, Spring Quarter 2003, Mr. Ruey S. Tsay Homework Assignment #2 Solution April 25, 2003 Each HW problem is 10 points throughout this quarter. The final grade for HW is the average (times 10) over the total number of HW problems.. 1. Consider the quarterly U.S. unemployment rate from 1948.I to 2003.I, for 221 observations. The quarterly data are obtained by averaging over seasonally adjusted monthly data, which are in turn obtained from the Federal Reserve Bank at St Louis, website Build a time series model for the series and use the model to forecast the unemployment rate for the 2nd and 3rd quarters of In addition, compute the average period of business cycles if they exist? [Note that there are more than one model fits the data well. You only need an adequate model.] Explanatory Analysis of the Series The first thing one should do is an exploratory analysis of the series to try and figure out what the data looks like. Let X t be the series of quarterly unemployment rate, in percentages. Figure 1 shows that there seems to be some sort of cycle, since every so often you have peaks, although they do not seem to occur at regular intervals. This may be an indication of a business cycle or a combination of business cycles. X(t) (in percentages) Time Figure 1: Time series plot for quarterly US unemployment rate. Figure 2 shows the ACF and the PACF for X t. On the ACF we see that the lags are decaying somewhat faster than linearly, but not quite exponentially. This could be an indication that the series may not be stationary and, thus, a (regular) difference could be needed. The PACF shows 1

2 ACF of X(t) PACF of X(t) ACF Partial ACF Lag Lag Figure 2: Autocorrelation function and partial autocorrelation function for quarterly US unemployment rate. that lag 1 and 2 are significantly different from zero; the first lag is quite big actually, very close to one, this is also an indication that a difference might be needed. Simple Solution After considering a couple of models, a simple model that fits reasonably well the series is (1 φ 1 B φ 2 B 2 φ 4 B 4 )(1 B)X t = a t (1) where (1 B)X t means that we have used one regular difference on the series. The commands to produce and estimate such model in SCA are tsm m1. (1,2,,4)series(1) = noise. estim m1. hold resid(r1). The output from SCA is displayed bellow. SUMMARY FOR UNIVARIATE TIME SERIES MODEL M1 1 UMP RANDOM ORIGINAL (1-B ) 1 UMP AR 1 1 NONE UMP AR 1 2 NONE UMP AR 1 4 NONE EFFECTIVE NUMBER OF OBSERVATIONS R-SQUARE RESIDUAL STANDARD ERROR E+00 2

3 The command for S-Plus is m1 <- arima.mle(series,model=list(order=c(4,1,0),ar.opt=c(t,t,f,t))) where series is simply the name you gave to the series. Also note that the results are exactly the same using both packages (although S-Plus does not give you the t-stats by default). Thus, the estimated model is (1 0.70B B B 4 )(1 B)X t = a t. If we solve that characteristic polynomial, we obtain the following complex roots (with their respective conjugates): { i, i} resulting in two business cycles. The first one with an average length of quarters (or 9 months); and the second one with an average length of quarters (almost 3 years.) Using SCA the forecast for the 2nd and 3rd quarters of 2003 with model (1) are fore m1. nofs 2. hold fore(f1), stderr(e1) 2 FORECASTS, BEGINNING AT 221 TIME FORECAST STD. ERROR ACTUAL IF KNOWN The results are the same using S-Plus. The command is fore.m1 <- arima.forecast(series,m1$model,n=2) Notice that we said that the model in equation (1) fits reasonably well because actually, if we compute the ACF and PACF on the residuals, there are lags that are significantly different from zero (individually for both and jointly for the ACF). In particular Q(12) = 20.2, and the cut-off point of a χ 2 0.5,ν = 16.92, where ν := m p q = = 9 degrees of freedom. If we look at the actual ACF and PACF (not shown here) we see that lags 4, 8 and 12 are significant, implying some sort of seasonality (remember that the data is quarterly and thus, the periodicity is 4.) Thus, a more detailed analysis is required. Solution Taking into Account Seasonality This part is not required in the solution of the homework, but it is shown as an example on how to deal with such an effect. After doing some exploratory analysis, a simple and good model was found. In the sense that it has the least number of parameters that produce a good fit to the data, and shows uncorrelated residuals. The model is (1 φ 1 B)(1 B)X t = (1 θ 4 B 4 θ 8 B 8 )a t. (2) The interpretation of this models goes as follows: rate at which the unemployment rate grows at a given quarter is influenced by the previous quarter (AR part); there will also be an influence on on the rate of growth from a shock that occurred in the same quarter but one and two years before 3

4 (seasonal MA part). In this model there is no stochastic cycle, we are already assessing from some periodicity via the seasonal moving average part. The specification and estimation, using SCA, gives tsm m2. model is (1)series(1)=(4,8)noise estim m2. hold resid(r2). method exact. SUMMARY FOR UNIVARIATE TIME SERIES MODEL M2 1 UMP RANDOM ORIGINAL (1-B ) 1 UMP MA 1 4 NONE UMP MA 1 8 NONE UMP AR 1 1 NONE EFFECTIVE NUMBER OF OBSERVATIONS R-SQUARE RESIDUAL STANDARD ERROR E+00 X(t) (in percentages) Time Figure 3: Forecast for the 2nd and 3rd quarters of 2003, for the US unemployment rate. The forecasts, shown in Figure 3, are fore m2. nofs 2. hold fore(f2), stderr(e2) 2 FORECASTS, BEGINNING AT 221 TIME FORECAST STD. ERROR ACTUAL IF KNOWN

5 They seem to be a bit smaller than the ones obtained by the model (1). In S-Plus do m2 <- arima.mle(series,model=list(list(order=c(1,1,0)),list(order=c(0,0,2),period=4)),max.iter=40,max.fcal=40) diag.m2 <- arima.diag(m2,type="l",lag.max=16) fore.m2 <- arima.forecast(series,model=m2$model,n=2) giving exactly the same results. Note that in the forecast we do not need to add the mean, since the differenced process has already mean zero and this has been specified into the model. Finally, Figure 4 shows the diagnostic analysis for the residuals in model (2). There seems not be no pattern or information left. PACF ACF ARIMA Model Diagnostics: unemp.ts Plot of Standardized Residuals ACF Plot of Residuals PACF Plot of Residuals P values of Ljung Box Chi Squared Statistics p value Lag ARIMA() Model with Mean 0 Figure 4: Diagnostics for the residuals of model (2). 2. Consider the monthly log returns of CRSP equal-weighted index from January 1962 to December of (a) Build an AR model for the series and check the fitted model. From inspection of the series (ACF and PACF), we observe that the mean is significantly different from zero (with a t-stat of 3.7); we can also see that the 1st and 2nd lags in the PACF are significant, indicating a possible AR(2) model. The 8th lag of the PACF is also significant, but it could be due to randomness only; plus it does not have a clear interpretation. NAME OF THE SERIES EW TIME PERIOD ANALYZED TO 492 MEAN OF THE (DIFFERENCED) SERIES STANDARD DEVIATION OF THE SERIES T-VALUE OF MEAN (AGAINST ZERO)

6 AUTOCORRELATIONS ST.E Q I IX+XXX XI XI XI I I XI X+XI I IX IX IXX PARTIAL AUTOCORRELATIONS ST.E I IX+XXX XXI I I I XI XI X+XI IX IX IX IXX Let rt ew denote the monthly log returns on the equally-weighted index. After evaluating a couple of different models, we came up with the following The estimated coefficients are tsm m3. model is (1)ew = c + noise. estim m3. hold resid(r3). (1 φ 1 B) t = φ 0 + a t (3) 6

7 SUMMARY FOR UNIVARIATE TIME SERIES MODEL M3 EW RANDOM ORIGINAL NONE 1 C CNST 1 0 NONE EW AR 1 1 NONE EFFECTIVE NUMBER OF OBSERVATIONS R-SQUARE RESIDUAL STANDARD ERROR E+01 We can see that the two coefficients are significant, but the fit is rather poor, since the R 2 is not even 5%. The residuals, however, do not show visible pattern, and Q(12) = 16.1 which, compared to χ ,11 = does not give enough evidence to reject the null hypothesis (of no serial correlation). (b) Build an MA model for the series and check the fitted model. Form the ACF of the original series, we observe that lag 1 is significant, pointing toward an MA(1). Again, although 8 is seems significant, it would create a very complicated model that may not necessarily be a better predictor. Thus, we can estimate the simple model with estimates tsm m4. model is ew = c + (1)noise. estim m4. hold resid(r4). method exact. t = φ 0 + (1 θ 1 B)a t (4) SUMMARY FOR UNIVARIATE TIME SERIES MODEL M4 EW RANDOM ORIGINAL NONE 1 C CNST 1 0 NONE EW MA 1 1 NONE EFFECTIVE NUMBER OF OBSERVATIONS R-SQUARE RESIDUAL STANDARD ERROR E+01 The fit close to the model in Eq. (3). Similarly, the residuals do not show enough evidence of serial correlation. In particular Q(12) = 13.6 which, compared to the same cut-off point as before, does not lead us to reject the null. 7

8 (c) Compute 1- and 2-step ahead forecasts of the AR and MA models built in the previous questions. Table 1 shows the forecasts and their standard errors (in parenthesis). As expected, the MA forecasts go back to the mean after one step, while the AR forecasts tend to the mean in a slower fashion. Table 1: 1-step to 5-step ahead forecasts for t T T T T T AR(1) MA(1) (1) (5.7081) (5.6896) (2) (5.8299) (5.8396) (3) (5.8352) (5.8396) (4) (5.8354) (5.8396) (5) (5.8354) (5.8396) (with standard errors). (d) Compare the fitted AR and MA fitted models. The MA seems to give a slightly better fit. It has a higher R 2 and the residuals seem to behave better. The 1-step ahead forecast of the MA(1) model is low because of a large shock in the last period of the data. The standard errors for the predictions are huge, making the forecasts basically not significant. This could be an indication of no arbitrage. Note that for this problem, the results obtained in SCA and S-Plus may vary a little bit, in particular with respect of the forecasts. 3. The file m-geln2602.dat contains monthly log returns, in percentage, of GE stock from 1926 to 2002 for 924 observations. (a) Find the sample mean and sample standard deviation of the series. Is the sample mean different from zero at the 5% significance level? This is simple to do in SCA. Once you compute the ACF, the first part of the output gives the result. In S-Plus, simply use the command t.test(x), where x is the name of your variable. As shown in part (c), the sample mean of the series is The t-statistic is 3.6, well above the cut-off point (1.96) leading, thus, to reject the null that the mean is equal to zero at the 5% significance level. (b) Compute the PACF of the series to confirm that lags 1 and 3 are significant at the 5% level. Indeed, the plot shows that the 3rd lag is significant. We can also see this from the estimate itself and the standard error. PARTIAL AUTOCORRELATIONS ST.E

9 I IXX XI X+XI IXX IX XI I IXX I I I IXX (c) Fit an AR(3) model to the series. What is the fitted model? What is the expectation of the series implied by the model? After removing the non-significant coefficients, we obtained the model (via re-estimation) with estimates tsm m5. model is (3)ge = c + noise. estim m5. hold resid(r5). (1 φ 3 B 3 )r vw t = φ 0 + a t, (5) SUMMARY FOR UNIVARIATE TIME SERIES MODEL M5 GE RANDOM ORIGINAL NONE 1 C CNST 1 0 NONE GE AR 1 3 NONE EFFECTIVE NUMBER OF OBSERVATIONS R-SQUARE RESIDUAL STANDARD ERROR E+01 From (5), it is easy to see that the expectation of the series implied by the model is which is very close to our original estimate. E(r vw t ) = φ 0 1 φ 3 = = ; (d) Compute the ACF of the series to confirm that lag 1 and lag 3 are significant at the 5% level. Similarly we have that the plot shows a significant 3rd lag. We can also see this from the estimate itself and the standard error, as well as from the Q-statistic which is quite large. 9

10 AUTOCORRELATIONS ST.E Q I IXX XI X+XI IX IX XI I IXX IX I XI IXX (e) Fit a MA(3) model to the series. What is the fitted model? What is the expectation of the series implied by the model? The model is r vw t = φ 0 + (1 θ 1 B θ 3 B 3 )a t (6) with estimates tsm m6. model is ge = c + (1,3)noise. estim m6. hold resid(r5). method exact. SUMMARY FOR UNIVARIATE TIME SERIES MODEL M6 GE RANDOM ORIGINAL NONE 1 C CNST 1 0 NONE GE MA 1 1 NONE GE MA 1 3 NONE EFFECTIVE NUMBER OF OBSERVATIONS R-SQUARE RESIDUAL STANDARD ERROR E+01 In this case, equation (6) implies that E(r vw t ) = φ 0 = ; which is even closer to the original estimate of the mean. 10

11 4. Revisit the file d-hwp3dx9302.dat of HW #1. (a) Compute the first 100 lags of ACF of the absolute daily simple returns of Hewlett-Packard stock. Is there evidence of long-range dependence? Why? Note that long memory means ACF decays slowly. Figure 5 shows the ACF of the absolute daily simple returns of Hewlett-Packard stock. Disregarding lag 0 (which is obviously 1), we see that there is a permanent effect in the autocorrelations and that is not decaying with time. This gives evidence of long memory. ACF for HP absolute daily returns ACF Lag Figure 5: ACF for absolute daily simple returns of HP stock (b) Compute the first 100 lags of ACF of the squared daily log returns of value-weighted index. Is there any evidence of long-range dependence? Why? Similarly, Figure 6 displays the ACF of the squared daily log returns of value-weighted index. It also shows a slow decay, implying some sort of long-range dependence. ACF for squared simple daily returns of VW index ACF Lag Figure 6: ACF for squared daily log returns of value-weighted index 11

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2016, Mr. Ruey S. Tsay. Solutions to Midterm

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2016, Mr. Ruey S. Tsay. Solutions to Midterm Booth School of Business, University of Chicago Business 41202, Spring Quarter 2016, Mr. Ruey S. Tsay Solutions to Midterm Problem A: (30 pts) Answer briefly the following questions. Each question has

More information

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2014, Mr. Ruey S. Tsay. Solutions to Midterm

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2014, Mr. Ruey S. Tsay. Solutions to Midterm Booth School of Business, University of Chicago Business 41202, Spring Quarter 2014, Mr. Ruey S. Tsay Solutions to Midterm Problem A: (30 pts) Answer briefly the following questions. Each question has

More information

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2010, Mr. Ruey S. Tsay. Solutions to Midterm

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2010, Mr. Ruey S. Tsay. Solutions to Midterm Booth School of Business, University of Chicago Business 41202, Spring Quarter 2010, Mr. Ruey S. Tsay Solutions to Midterm Problem A: (30 pts) Answer briefly the following questions. Each question has

More information

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2013, Mr. Ruey S. Tsay. Midterm

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2013, Mr. Ruey S. Tsay. Midterm Booth School of Business, University of Chicago Business 41202, Spring Quarter 2013, Mr. Ruey S. Tsay Midterm ChicagoBooth Honor Code: I pledge my honor that I have not violated the Honor Code during this

More information

Computer Lab Session 2 ARIMA, ARCH and GARCH Models

Computer Lab Session 2 ARIMA, ARCH and GARCH Models JBS Advanced Quantitative Research Methods Module MPO-1A Lent 2010 Thilo Klein http://thiloklein.de Contents Computer Lab Session 2 ARIMA, ARCH and GARCH Models Exercise 1. Estimation of a quarterly ARMA

More information

STAT758. Final Project. Time series analysis of daily exchange rate between the British Pound and the. US dollar (GBP/USD)

STAT758. Final Project. Time series analysis of daily exchange rate between the British Pound and the. US dollar (GBP/USD) STAT758 Final Project Time series analysis of daily exchange rate between the British Pound and the US dollar (GBP/USD) Theophilus Djanie and Harry Dick Thompson UNR May 14, 2012 INTRODUCTION Time Series

More information

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2009, Mr. Ruey S. Tsay. Solutions to Final Exam

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2009, Mr. Ruey S. Tsay. Solutions to Final Exam The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2009, Mr. Ruey S. Tsay Solutions to Final Exam Problem A: (42 pts) Answer briefly the following questions. 1. Questions

More information

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2012, Mr. Ruey S. Tsay. Solutions to Midterm

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2012, Mr. Ruey S. Tsay. Solutions to Midterm Booth School of Business, University of Chicago Business 41202, Spring Quarter 2012, Mr. Ruey S. Tsay Solutions to Midterm Problem A: (34 pts) Answer briefly the following questions. Each question has

More information

Lecture Note: Analysis of Financial Time Series Spring 2017, Ruey S. Tsay

Lecture Note: Analysis of Financial Time Series Spring 2017, Ruey S. Tsay Lecture Note: Analysis of Financial Time Series Spring 2017, Ruey S. Tsay Seasonal Time Series: TS with periodic patterns and useful in predicting quarterly earnings pricing weather-related derivatives

More information

Financial Econometrics

Financial Econometrics Financial Econometrics Volatility Gerald P. Dwyer Trinity College, Dublin January 2013 GPD (TCD) Volatility 01/13 1 / 37 Squared log returns for CRSP daily GPD (TCD) Volatility 01/13 2 / 37 Absolute value

More information

Lecture Note: Analysis of Financial Time Series Spring 2008, Ruey S. Tsay. Seasonal Time Series: TS with periodic patterns and useful in

Lecture Note: Analysis of Financial Time Series Spring 2008, Ruey S. Tsay. Seasonal Time Series: TS with periodic patterns and useful in Lecture Note: Analysis of Financial Time Series Spring 2008, Ruey S. Tsay Seasonal Time Series: TS with periodic patterns and useful in predicting quarterly earnings pricing weather-related derivatives

More information

This homework assignment uses the material on pages ( A moving average ).

This homework assignment uses the material on pages ( A moving average ). Module 2: Time series concepts HW Homework assignment: equally weighted moving average This homework assignment uses the material on pages 14-15 ( A moving average ). 2 Let Y t = 1/5 ( t + t-1 + t-2 +

More information

ARIMA ANALYSIS WITH INTERVENTIONS / OUTLIERS

ARIMA ANALYSIS WITH INTERVENTIONS / OUTLIERS TASK Run intervention analysis on the price of stock M: model a function of the price as ARIMA with outliers and interventions. SOLUTION The document below is an abridged version of the solution provided

More information

Homework Assignments for BusAdm 713: Business Forecasting Methods. Assignment 1: Introduction to forecasting, Review of regression

Homework Assignments for BusAdm 713: Business Forecasting Methods. Assignment 1: Introduction to forecasting, Review of regression Homework Assignments for BusAdm 713: Business Forecasting Methods Note: Problem points are in parentheses. Assignment 1: Introduction to forecasting, Review of regression 1. (3) Complete the exercises

More information

Lecture Notes of Bus (Spring 2013) Analysis of Financial Time Series Ruey S. Tsay

Lecture Notes of Bus (Spring 2013) Analysis of Financial Time Series Ruey S. Tsay Lecture Notes of Bus 41202 (Spring 2013) Analysis of Financial Time Series Ruey S. Tsay Simple AR models: (Regression with lagged variables.) Motivating example: The growth rate of U.S. quarterly real

More information

Economics 413: Economic Forecast and Analysis Department of Economics, Finance and Legal Studies University of Alabama

Economics 413: Economic Forecast and Analysis Department of Economics, Finance and Legal Studies University of Alabama Problem Set #1 (Linear Regression) 1. The file entitled MONEYDEM.XLS contains quarterly values of seasonally adjusted U.S.3-month ( 3 ) and 1-year ( 1 ) treasury bill rates. Each series is measured over

More information

Conditional Heteroscedasticity

Conditional Heteroscedasticity 1 Conditional Heteroscedasticity May 30, 2010 Junhui Qian 1 Introduction ARMA(p,q) models dictate that the conditional mean of a time series depends on past observations of the time series and the past

More information

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2016, Mr. Ruey S. Tsay. Midterm

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2016, Mr. Ruey S. Tsay. Midterm Booth School of Business, University of Chicago Business 41202, Spring Quarter 2016, Mr. Ruey S. Tsay Midterm ChicagoBooth Honor Code: I pledge my honor that I have not violated the Honor Code during this

More information

Per Capita Housing Starts: Forecasting and the Effects of Interest Rate

Per Capita Housing Starts: Forecasting and the Effects of Interest Rate 1 David I. Goodman The University of Idaho Economics 351 Professor Ismail H. Genc March 13th, 2003 Per Capita Housing Starts: Forecasting and the Effects of Interest Rate Abstract This study examines the

More information

Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay. Solutions to Final Exam

Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay. Solutions to Final Exam Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay Solutions to Final Exam Problem A: (30 pts) Answer briefly the following questions. 1. Suppose that

More information

Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay. Midterm

Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay. Midterm Graduate School of Business, University of Chicago Business 41202, Spring Quarter 2007, Mr. Ruey S. Tsay Midterm GSB Honor Code: I pledge my honor that I have not violated the Honor Code during this examination.

More information

Univariate Time Series Analysis of Forecasting Asset Prices

Univariate Time Series Analysis of Forecasting Asset Prices [ VOLUME 3 I ISSUE 3 I JULY SEPT. 2016] E ISSN 2348 1269, PRINT ISSN 2349-5138 Univariate Time Series Analysis of Forecasting Asset Prices Tanu Shivnani Research Scholar, Jawaharlal Nehru University, Delhi.

More information

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2017, Mr. Ruey S. Tsay. Solutions to Final Exam

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2017, Mr. Ruey S. Tsay. Solutions to Final Exam The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2017, Mr. Ruey S. Tsay Solutions to Final Exam Problem A: (40 points) Answer briefly the following questions. 1. Describe

More information

Lecture Notes of Bus (Spring 2010) Analysis of Financial Time Series Ruey S. Tsay

Lecture Notes of Bus (Spring 2010) Analysis of Financial Time Series Ruey S. Tsay Lecture Notes of Bus 41202 (Spring 2010) Analysis of Financial Time Series Ruey S. Tsay Simple AR models: (Regression with lagged variables.) Motivating example: The growth rate of U.S. quarterly real

More information

Yafu Zhao Department of Economics East Carolina University M.S. Research Paper. Abstract

Yafu Zhao Department of Economics East Carolina University M.S. Research Paper. Abstract This version: July 16, 2 A Moving Window Analysis of the Granger Causal Relationship Between Money and Stock Returns Yafu Zhao Department of Economics East Carolina University M.S. Research Paper Abstract

More information

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2010, Mr. Ruey S. Tsay Solutions to Final Exam

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2010, Mr. Ruey S. Tsay Solutions to Final Exam The University of Chicago, Booth School of Business Business 410, Spring Quarter 010, Mr. Ruey S. Tsay Solutions to Final Exam Problem A: (4 pts) Answer briefly the following questions. 1. Questions 1

More information

Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals

Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals Week 2 Quantitative Analysis of Financial Markets Hypothesis Testing and Confidence Intervals Christopher Ting http://www.mysmu.edu/faculty/christophert/ Christopher Ting : christopherting@smu.edu.sg :

More information

University of New South Wales Semester 1, Economics 4201 and Homework #2 Due on Tuesday 3/29 (20% penalty per day late)

University of New South Wales Semester 1, Economics 4201 and Homework #2 Due on Tuesday 3/29 (20% penalty per day late) University of New South Wales Semester 1, 2011 School of Economics James Morley 1. Autoregressive Processes (15 points) Economics 4201 and 6203 Homework #2 Due on Tuesday 3/29 (20 penalty per day late)

More information

Lecture 5a: ARCH Models

Lecture 5a: ARCH Models Lecture 5a: ARCH Models 1 2 Big Picture 1. We use ARMA model for the conditional mean 2. We use ARCH model for the conditional variance 3. ARMA and ARCH model can be used together to describe both conditional

More information

LONG MEMORY IN VOLATILITY

LONG MEMORY IN VOLATILITY LONG MEMORY IN VOLATILITY How persistent is volatility? In other words, how quickly do financial markets forget large volatility shocks? Figure 1.1, Shephard (attached) shows that daily squared returns

More information

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2012, Mr. Ruey S. Tsay. Solutions to Final Exam

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2012, Mr. Ruey S. Tsay. Solutions to Final Exam The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2012, Mr. Ruey S. Tsay Solutions to Final Exam Problem A: (40 points) Answer briefly the following questions. 1. Consider

More information

Modeling and Forecasting Consumer Price Index (Case of Rwanda)

Modeling and Forecasting Consumer Price Index (Case of Rwanda) American Journal of Theoretical and Applied Statistics 2016; 5(3): 101-107 http://www.sciencepublishinggroup.com/j/ajtas doi: 10.11648/j.ajtas.20160503.14 ISSN: 2326-8999 (Print); ISSN: 2326-9006 (Online)

More information

Forecasting Exchange Rate between Thai Baht and the US Dollar Using Time Series Analysis

Forecasting Exchange Rate between Thai Baht and the US Dollar Using Time Series Analysis Forecasting Exchange Rate between Thai Baht and the US Dollar Using Time Series Analysis Kunya Bowornchockchai International Science Index, Mathematical and Computational Sciences waset.org/publication/10003789

More information

Lloyds TSB. Derek Hull, John Adam & Alastair Jones

Lloyds TSB. Derek Hull, John Adam & Alastair Jones Forecasting Bad Debt by ARIMA Models with Multiple Transfer Functions using a Selection Process for many Candidate Variables Lloyds TSB Derek Hull, John Adam & Alastair Jones INTRODUCTION: No statistical

More information

INTERNATIONAL JOURNAL OF ADVANCED RESEARCH IN ENGINEERING AND TECHNOLOGY (IJARET)

INTERNATIONAL JOURNAL OF ADVANCED RESEARCH IN ENGINEERING AND TECHNOLOGY (IJARET) INTERNATIONAL JOURNAL OF ADVANCED RESEARCH IN ENGINEERING AND TECHNOLOGY (IJARET) ISSN 0976-6480 (Print) ISSN 0976-6499 (Online) Volume 5, Issue 3, March (204), pp. 73-82 IAEME: www.iaeme.com/ijaret.asp

More information

MODELING NIGERIA S CONSUMER PRICE INDEX USING ARIMA MODEL

MODELING NIGERIA S CONSUMER PRICE INDEX USING ARIMA MODEL MODELING NIGERIA S CONSUMER PRICE INDEX USING ARIMA MODEL 1 S.O. Adams 2 A. Awujola 3 A.I. Alumgudu 1 Department of Statistics, University of Abuja, Abuja Nigeria 2 Department of Economics, Bingham University,

More information

Econometrics II. Seppo Pynnönen. Spring Department of Mathematics and Statistics, University of Vaasa, Finland

Econometrics II. Seppo Pynnönen. Spring Department of Mathematics and Statistics, University of Vaasa, Finland Department of Mathematics and Statistics, University of Vaasa, Finland Spring 2018 Part IV Financial Time Series As of Feb 5, 2018 1 Financial Time Series Asset Returns Simple returns Log-returns Portfolio

More information

Model Construction & Forecast Based Portfolio Allocation:

Model Construction & Forecast Based Portfolio Allocation: QBUS6830 Financial Time Series and Forecasting Model Construction & Forecast Based Portfolio Allocation: Is Quantitative Method Worth It? Members: Bowei Li (303083) Wenjian Xu (308077237) Xiaoyun Lu (3295347)

More information

A Predictive Model for Monthly Currency in Circulation in Ghana

A Predictive Model for Monthly Currency in Circulation in Ghana A Predictive Model for Monthly Currency in Circulation in Ghana Albert Luguterah 1, Suleman Nasiru 2* and Lea Anzagra 3 1,2,3 Department of s, University for Development Studies, P. O. Box, 24, Navrongo,

More information

A Comparative Study of Various Forecasting Techniques in Predicting. BSE S&P Sensex

A Comparative Study of Various Forecasting Techniques in Predicting. BSE S&P Sensex NavaJyoti, International Journal of Multi-Disciplinary Research Volume 1, Issue 1, August 2016 A Comparative Study of Various Forecasting Techniques in Predicting BSE S&P Sensex Dr. Jahnavi M 1 Assistant

More information

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2011, Mr. Ruey S. Tsay. Solutions to Final Exam.

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2011, Mr. Ruey S. Tsay. Solutions to Final Exam. The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2011, Mr. Ruey S. Tsay Solutions to Final Exam Problem A: (32 pts) Answer briefly the following questions. 1. Suppose

More information

Financial Econometrics Jeffrey R. Russell. Midterm 2014 Suggested Solutions. TA: B. B. Deng

Financial Econometrics Jeffrey R. Russell. Midterm 2014 Suggested Solutions. TA: B. B. Deng Financial Econometrics Jeffrey R. Russell Midterm 2014 Suggested Solutions TA: B. B. Deng Unless otherwise stated, e t is iid N(0,s 2 ) 1. (12 points) Consider the three series y1, y2, y3, and y4. Match

More information

Financial Data Analysis, WS08/09. Roman Liesenfeld, University of Kiel 1

Financial Data Analysis, WS08/09. Roman Liesenfeld, University of Kiel 1 Financial Data Analysis, WS08/09. Roman Liesenfeld, University of Kiel 1 Data sets used in the following sections can be downloaded from http://faculty.chicagogsb.edu/ruey.tsay/teaching/fts/ Exercise Sheet

More information

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2013, Mr. Ruey S. Tsay. Final Exam

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2013, Mr. Ruey S. Tsay. Final Exam The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2013, Mr. Ruey S. Tsay Final Exam Booth Honor Code: I pledge my honor that I have not violated the Honor Code during this

More information

Homework Assignment Section 3

Homework Assignment Section 3 Homework Assignment Section 3 Tengyuan Liang Business Statistics Booth School of Business Problem 1 A company sets different prices for a particular stereo system in eight different regions of the country.

More information

Determinants of Stock Prices in Ghana

Determinants of Stock Prices in Ghana Current Research Journal of Economic Theory 5(4): 66-7, 213 ISSN: 242-4841, e-issn: 242-485X Maxwell Scientific Organization, 213 Submitted: November 8, 212 Accepted: December 21, 212 Published: December

More information

Lecture 5: Univariate Volatility

Lecture 5: Univariate Volatility Lecture 5: Univariate Volatility Modellig, ARCH and GARCH Prof. Massimo Guidolin 20192 Financial Econometrics Spring 2015 Overview Stepwise Distribution Modeling Approach Three Key Facts to Remember Volatility

More information

Forecasting the Philippine Stock Exchange Index using Time Series Analysis Box-Jenkins

Forecasting the Philippine Stock Exchange Index using Time Series Analysis Box-Jenkins EUROPEAN ACADEMIC RESEARCH Vol. III, Issue 3/ June 2015 ISSN 2286-4822 www.euacademic.org Impact Factor: 3.4546 (UIF) DRJI Value: 5.9 (B+) Forecasting the Philippine Stock Exchange Index using Time HERO

More information

US HFCS Price Forecasting Using Seasonal ARIMA Model

US HFCS Price Forecasting Using Seasonal ARIMA Model US HFCS Price Forecasting Using Seasonal ARIMA Model Prithviraj Lakkakula Research Assistant Professor Department of Agribusiness and Applied Economics North Dakota State University Email: prithviraj.lakkakula@ndsu.edu

More information

Chapter 4 Level of Volatility in the Indian Stock Market

Chapter 4 Level of Volatility in the Indian Stock Market Chapter 4 Level of Volatility in the Indian Stock Market Measurement of volatility is an important issue in financial econometrics. The main reason for the prominent role that volatility plays in financial

More information

Estimating the Dynamics of Volatility. David A. Hsieh. Fuqua School of Business Duke University Durham, NC (919)

Estimating the Dynamics of Volatility. David A. Hsieh. Fuqua School of Business Duke University Durham, NC (919) Estimating the Dynamics of Volatility by David A. Hsieh Fuqua School of Business Duke University Durham, NC 27706 (919)-660-7779 October 1993 Prepared for the Conference on Financial Innovations: 20 Years

More information

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2012, Mr. Ruey S. Tsay. Midterm

Booth School of Business, University of Chicago Business 41202, Spring Quarter 2012, Mr. Ruey S. Tsay. Midterm Booth School of Business, University of Chicago Business 41202, Spring Quarter 2012, Mr. Ruey S. Tsay Midterm ChicagoBooth Honor Code: I pledge my honor that I have not violated the Honor Code during this

More information

Variance clustering. Two motivations, volatility clustering, and implied volatility

Variance clustering. Two motivations, volatility clustering, and implied volatility Variance modelling The simplest assumption for time series is that variance is constant. Unfortunately that assumption is often violated in actual data. In this lecture we look at the implications of time

More information

Jaime Frade Dr. Niu Interest rate modeling

Jaime Frade Dr. Niu Interest rate modeling Interest rate modeling Abstract In this paper, three models were used to forecast short term interest rates for the 3 month LIBOR. Each of the models, regression time series, GARCH, and Cox, Ingersoll,

More information

University of Zürich, Switzerland

University of Zürich, Switzerland University of Zürich, Switzerland RE - general asset features The inclusion of real estate assets in a portfolio has proven to bring diversification benefits both for homeowners [Mahieu, Van Bussel 1996]

More information

IS INFLATION VOLATILITY CORRELATED FOR THE US AND CANADA?

IS INFLATION VOLATILITY CORRELATED FOR THE US AND CANADA? IS INFLATION VOLATILITY CORRELATED FOR THE US AND CANADA? C. Barry Pfitzner, Department of Economics/Business, Randolph-Macon College, Ashland, VA, bpfitzne@rmc.edu ABSTRACT This paper investigates the

More information

Financial Econometrics: Problem Set # 3 Solutions

Financial Econometrics: Problem Set # 3 Solutions Financial Econometrics: Problem Set # 3 Solutions N Vera Chau The University of Chicago: Booth February 9, 219 1 a. You can generate the returns using the exact same strategy as given in problem 2 below.

More information

Lecture Note of Bus 41202, Spring 2008: More Volatility Models. Mr. Ruey Tsay

Lecture Note of Bus 41202, Spring 2008: More Volatility Models. Mr. Ruey Tsay Lecture Note of Bus 41202, Spring 2008: More Volatility Models. Mr. Ruey Tsay The EGARCH model Asymmetry in responses to + & returns: g(ɛ t ) = θɛ t + γ[ ɛ t E( ɛ t )], with E[g(ɛ t )] = 0. To see asymmetry

More information

CAN MONEY SUPPLY PREDICT STOCK PRICES?

CAN MONEY SUPPLY PREDICT STOCK PRICES? 54 JOURNAL FOR ECONOMIC EDUCATORS, 8(2), FALL 2008 CAN MONEY SUPPLY PREDICT STOCK PRICES? Sara Alatiqi and Shokoofeh Fazel 1 ABSTRACT A positive causal relation from money supply to stock prices is frequently

More information

WEB APPENDIX 8A 7.1 ( 8.9)

WEB APPENDIX 8A 7.1 ( 8.9) WEB APPENDIX 8A CALCULATING BETA COEFFICIENTS The CAPM is an ex ante model, which means that all of the variables represent before-the-fact expected values. In particular, the beta coefficient used in

More information

Amath 546/Econ 589 Univariate GARCH Models: Advanced Topics

Amath 546/Econ 589 Univariate GARCH Models: Advanced Topics Amath 546/Econ 589 Univariate GARCH Models: Advanced Topics Eric Zivot April 29, 2013 Lecture Outline The Leverage Effect Asymmetric GARCH Models Forecasts from Asymmetric GARCH Models GARCH Models with

More information

starting on 5/1/1953 up until 2/1/2017.

starting on 5/1/1953 up until 2/1/2017. An Actuary s Guide to Financial Applications: Examples with EViews By William Bourgeois An actuary is a business professional who uses statistics to determine and analyze risks for companies. In this guide,

More information

Forecasting Financial Markets. Time Series Analysis

Forecasting Financial Markets. Time Series Analysis Forecasting Financial Markets Time Series Analysis Copyright 1999-2011 Investment Analytics Copyright 1999-2011 Investment Analytics Forecasting Financial Markets Time Series Analysis Slide: 1 Overview

More information

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2015, Mr. Ruey S. Tsay. Final Exam

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2015, Mr. Ruey S. Tsay. Final Exam The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2015, Mr. Ruey S. Tsay Final Exam Booth Honor Code: I pledge my honor that I have not violated the Honor Code during this

More information

Gloria Gonzalez-Rivera Forecasting For Economics and Business Solutions Manual

Gloria Gonzalez-Rivera Forecasting For Economics and Business Solutions Manual Solution Manual for Forecasting for Economics and Business 1/E Gloria Gonzalez-Rivera Completed download: https://solutionsmanualbank.com/download/solution-manual-forforecasting-for-economics-and-business-1-e-gloria-gonzalez-rivera/

More information

THE PENNSYLVANIA STATE UNIVERSITY SCHREYER HONORS COLLEGE DEPARTMENT OF ECONOMICS

THE PENNSYLVANIA STATE UNIVERSITY SCHREYER HONORS COLLEGE DEPARTMENT OF ECONOMICS THE PENNSYLVANIA STATE UNIVERSITY SCHREYER HONORS COLLEGE DEPARTMENT OF ECONOMICS MODELLING MAJOR ECONOMIC INDICATORS VIA MULTIVARIATE TIME SERIES ANALYSIS XUANHAO ZHANG SPRING 2017 A thesis submitted

More information

Financial Time Series Analysis (FTSA)

Financial Time Series Analysis (FTSA) Financial Time Series Analysis (FTSA) Lecture 6: Conditional Heteroscedastic Models Few models are capable of generating the type of ARCH one sees in the data.... Most of these studies are best summarized

More information

Market Risk Management for Financial Institutions Based on GARCH Family Models

Market Risk Management for Financial Institutions Based on GARCH Family Models Washington University in St. Louis Washington University Open Scholarship Arts & Sciences Electronic Theses and Dissertations Arts & Sciences Spring 5-2017 Market Risk Management for Financial Institutions

More information

TESTING STATISTICAL HYPOTHESES

TESTING STATISTICAL HYPOTHESES TESTING STATISTICAL HYPOTHESES In order to apply different stochastic models like Black-Scholes, it is necessary to check the two basic assumption: the return rates are normally distributed the return

More information

Financial Econometrics Notes. Kevin Sheppard University of Oxford

Financial Econometrics Notes. Kevin Sheppard University of Oxford Financial Econometrics Notes Kevin Sheppard University of Oxford Monday 15 th January, 2018 2 This version: 22:52, Monday 15 th January, 2018 2018 Kevin Sheppard ii Contents 1 Probability, Random Variables

More information

STOCK MARKET EFFICIENCY, NON-LINEARITY AND THIN TRADING EFFECTS IN SOME SELECTED COMPANIES IN GHANA

STOCK MARKET EFFICIENCY, NON-LINEARITY AND THIN TRADING EFFECTS IN SOME SELECTED COMPANIES IN GHANA STOCK MARKET EFFICIENCY, NON-LINEARITY AND THIN TRADING Abstract EFFECTS IN SOME SELECTED COMPANIES IN GHANA Wiredu Sampson *, Atopeo Apuri Benjamin and Allotey Robert Nii Ampah Department of Statistics,

More information

Empirical Analysis of the US Swap Curve Gough, O., Juneja, J.A., Nowman, K.B. and Van Dellen, S.

Empirical Analysis of the US Swap Curve Gough, O., Juneja, J.A., Nowman, K.B. and Van Dellen, S. WestminsterResearch http://www.westminster.ac.uk/westminsterresearch Empirical Analysis of the US Swap Curve Gough, O., Juneja, J.A., Nowman, K.B. and Van Dellen, S. This is a copy of the final version

More information

THE UNIVERSITY OF CHICAGO Graduate School of Business Business 41202, Spring Quarter 2008, Mr. Ruey S. Tsay. Solutions to Homework Assignment #1

THE UNIVERSITY OF CHICAGO Graduate School of Business Business 41202, Spring Quarter 2008, Mr. Ruey S. Tsay. Solutions to Homework Assignment #1 THE UNIVERSITY OF CHICAGO Graduate School of Business Business 41202, Spring Quarter 2008, Mr. Ruey S. Tsay Solutions to Homework Assignment #1 Assignment: 1. Consider the daily stock return of the Apple

More information

Relationship between Consumer Price Index (CPI) and Government Bonds

Relationship between Consumer Price Index (CPI) and Government Bonds MPRA Munich Personal RePEc Archive Relationship between Consumer Price Index (CPI) and Government Bonds Muhammad Imtiaz Subhani Iqra University Research Centre (IURC), Iqra university Main Campus Karachi,

More information

INFORMATION EFFICIENCY HYPOTHESIS THE FINANCIAL VOLATILITY IN THE CZECH REPUBLIC CASE

INFORMATION EFFICIENCY HYPOTHESIS THE FINANCIAL VOLATILITY IN THE CZECH REPUBLIC CASE INFORMATION EFFICIENCY HYPOTHESIS THE FINANCIAL VOLATILITY IN THE CZECH REPUBLIC CASE Abstract Petr Makovský If there is any market which is said to be effective, this is the the FOREX market. Here we

More information

Empirical Distribution Testing of Economic Scenario Generators

Empirical Distribution Testing of Economic Scenario Generators 1/27 Empirical Distribution Testing of Economic Scenario Generators Gary Venter University of New South Wales 2/27 STATISTICAL CONCEPTUAL BACKGROUND "All models are wrong but some are useful"; George Box

More information

Research on the Forecast and Development of China s Public Fiscal Revenue Based on ARIMA Model

Research on the Forecast and Development of China s Public Fiscal Revenue Based on ARIMA Model Theoretical Economics Letters, 2015, 5, 482-493 Published Online August 2015 in SciRes. http://www.scirp.org/journal/tel http://dx.doi.org/10.4236/tel.2015.54057 Research on the Forecast and Development

More information

Empirical Study on Short-Term Prediction of Shanghai Composite Index Based on ARMA Model

Empirical Study on Short-Term Prediction of Shanghai Composite Index Based on ARMA Model Empirical Study on Short-Term Prediction of Shanghai Composite Index Based on ARMA Model Cai-xia Xiang 1, Ping Xiao 2* 1 (School of Hunan University of Humanities, Science and Technology, Hunan417000,

More information

Amath 546/Econ 589 Univariate GARCH Models

Amath 546/Econ 589 Univariate GARCH Models Amath 546/Econ 589 Univariate GARCH Models Eric Zivot April 24, 2013 Lecture Outline Conditional vs. Unconditional Risk Measures Empirical regularities of asset returns Engle s ARCH model Testing for ARCH

More information

GARCH Models. Instructor: G. William Schwert

GARCH Models. Instructor: G. William Schwert APS 425 Fall 2015 GARCH Models Instructor: G. William Schwert 585-275-2470 schwert@schwert.ssb.rochester.edu Autocorrelated Heteroskedasticity Suppose you have regression residuals Mean = 0, not autocorrelated

More information

Simulating Logan Repayment by the Sinking Fund Method Sinking Fund Governed by a Sequence of Interest Rates

Simulating Logan Repayment by the Sinking Fund Method Sinking Fund Governed by a Sequence of Interest Rates Utah State University DigitalCommons@USU All Graduate Plan B and other Reports Graduate Studies 5-2012 Simulating Logan Repayment by the Sinking Fund Method Sinking Fund Governed by a Sequence of Interest

More information

Chapter 6 Forecasting Volatility using Stochastic Volatility Model

Chapter 6 Forecasting Volatility using Stochastic Volatility Model Chapter 6 Forecasting Volatility using Stochastic Volatility Model Chapter 6 Forecasting Volatility using SV Model In this chapter, the empirical performance of GARCH(1,1), GARCH-KF and SV models from

More information

DATABASE AND RESEARCH METHODOLOGY

DATABASE AND RESEARCH METHODOLOGY CHAPTER III DATABASE AND RESEARCH METHODOLOGY The nature of the present study Direct Tax Reforms in India: A Comparative Study of Pre and Post-liberalization periods is such that it requires secondary

More information

Web Appendix. Are the effects of monetary policy shocks big or small? Olivier Coibion

Web Appendix. Are the effects of monetary policy shocks big or small? Olivier Coibion Web Appendix Are the effects of monetary policy shocks big or small? Olivier Coibion Appendix 1: Description of the Model-Averaging Procedure This section describes the model-averaging procedure used in

More information

Unit 5: Sampling Distributions of Statistics

Unit 5: Sampling Distributions of Statistics Unit 5: Sampling Distributions of Statistics Statistics 571: Statistical Methods Ramón V. León 6/12/2004 Unit 5 - Stat 571 - Ramon V. Leon 1 Definitions and Key Concepts A sample statistic used to estimate

More information

Unit 5: Sampling Distributions of Statistics

Unit 5: Sampling Distributions of Statistics Unit 5: Sampling Distributions of Statistics Statistics 571: Statistical Methods Ramón V. León 6/12/2004 Unit 5 - Stat 571 - Ramon V. Leon 1 Definitions and Key Concepts A sample statistic used to estimate

More information

We will use an example which will result in a paired t test regarding the labor force participation rate for women in the 60 s and 70 s.

We will use an example which will result in a paired t test regarding the labor force participation rate for women in the 60 s and 70 s. Now let s review methods for one quantitative variable. We will use an example which will result in a paired t test regarding the labor force participation rate for women in the 60 s and 70 s. 17 The labor

More information

LAMPIRAN. Null Hypothesis: LO has a unit root Exogenous: Constant Lag Length: 1 (Automatic based on SIC, MAXLAG=13)

LAMPIRAN. Null Hypothesis: LO has a unit root Exogenous: Constant Lag Length: 1 (Automatic based on SIC, MAXLAG=13) 74 LAMPIRAN Lampiran 1 Analisis ARIMA 1.1. Uji Stasioneritas Variabel 1. Data Harga Minyak Riil Level Null Hypothesis: LO has a unit root Lag Length: 1 (Automatic based on SIC, MAXLAG=13) Augmented Dickey-Fuller

More information

Lecture 1: Empirical Properties of Returns

Lecture 1: Empirical Properties of Returns Lecture 1: Empirical Properties of Returns Econ 589 Eric Zivot Spring 2011 Updated: March 29, 2011 Daily CC Returns on MSFT -0.3 r(t) -0.2-0.1 0.1 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996

More information

Modeling Volatility of Price of Some Selected Agricultural Products in Ethiopia: ARIMA-GARCH Applications

Modeling Volatility of Price of Some Selected Agricultural Products in Ethiopia: ARIMA-GARCH Applications Modeling Volatility of Price of Some Selected Agricultural Products in Ethiopia: ARIMA-GARCH Applications Background: Agricultural products market policies in Ethiopia have undergone dramatic changes over

More information

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2011, Mr. Ruey S. Tsay. Final Exam

The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2011, Mr. Ruey S. Tsay. Final Exam The University of Chicago, Booth School of Business Business 41202, Spring Quarter 2011, Mr. Ruey S. Tsay Final Exam Booth Honor Code: I pledge my honor that I have not violated the Honor Code during this

More information

Volatility Analysis of Nepalese Stock Market

Volatility Analysis of Nepalese Stock Market The Journal of Nepalese Business Studies Vol. V No. 1 Dec. 008 Volatility Analysis of Nepalese Stock Market Surya Bahadur G.C. Abstract Modeling and forecasting volatility of capital markets has been important

More information

Robust Critical Values for the Jarque-bera Test for Normality

Robust Critical Values for the Jarque-bera Test for Normality Robust Critical Values for the Jarque-bera Test for Normality PANAGIOTIS MANTALOS Jönköping International Business School Jönköping University JIBS Working Papers No. 00-8 ROBUST CRITICAL VALUES FOR THE

More information

Inflat ion Modelling

Inflat ion Modelling Inflat ion Modelling Cliff Speed Heriot-Watt University, Riccarton Edinburgh, EH14 4AS, Britain. Telephone: +44 131451 3252 Fax: +44 131451 3249 e-mail: cliffs@ma. hw.ac.uk Abstract This paper reviews

More information

1 Volatility Definition and Estimation

1 Volatility Definition and Estimation 1 Volatility Definition and Estimation 1.1 WHAT IS VOLATILITY? It is useful to start with an explanation of what volatility is, at least for the purpose of clarifying the scope of this book. Volatility

More information

Introduction to Population Modeling

Introduction to Population Modeling Introduction to Population Modeling In addition to estimating the size of a population, it is often beneficial to estimate how the population size changes over time. Ecologists often uses models to create

More information

Financial Econometrics Jeffrey R. Russell Midterm 2014

Financial Econometrics Jeffrey R. Russell Midterm 2014 Name: Financial Econometrics Jeffrey R. Russell Midterm 2014 You have 2 hours to complete the exam. Use can use a calculator and one side of an 8.5x11 cheat sheet. Try to fit all your work in the space

More information

GARCH Models for Inflation Volatility in Oman

GARCH Models for Inflation Volatility in Oman Rev. Integr. Bus. Econ. Res. Vol 2(2) 1 GARCH Models for Inflation Volatility in Oman Muhammad Idrees Ahmad Department of Mathematics and Statistics, College of Science, Sultan Qaboos Universty, Alkhod,

More information

THE PENNSYLVANIA STATE UNIVERSITY SCHREYER HONORS COLLEGE DEPARTMENT OF STATISTICS ALVIN KAPIL. Spring 2012

THE PENNSYLVANIA STATE UNIVERSITY SCHREYER HONORS COLLEGE DEPARTMENT OF STATISTICS ALVIN KAPIL. Spring 2012 THE PENNSYLVANIA STATE UNIVERSITY SCHREYER HONORS COLLEGE DEPARTMENT OF STATISTICS MIRCOECONOMETRICS: TIME SERIES ANALYSIS AND MODEL DEVELOPMENT OF RELATIVE INFLATION AND CONSUMPTION TRENDS ALVIN KAPIL

More information

1. You are given the following information about a stationary AR(2) model:

1. You are given the following information about a stationary AR(2) model: Fall 2003 Society of Actuaries **BEGINNING OF EXAMINATION** 1. You are given the following information about a stationary AR(2) model: (i) ρ 1 = 05. (ii) ρ 2 = 01. Determine φ 2. (A) 0.2 (B) 0.1 (C) 0.4

More information