ECG 752: Econometrics II Spring Assessed Computer Assignment 3: Answer Key

Size: px
Start display at page:

Download "ECG 752: Econometrics II Spring Assessed Computer Assignment 3: Answer Key"

Transcription

1 ECG 752: Econometrics II Spring 2005 Assessed Computer Assignment 3: Answer Key Question 1 The time series plots of x(d), x(bw) and x(m) are presented below. 1

2 A common characteristic of all series is that they fluctuate randomly around zero. This should be expected since we are working with the first differences of the exchange rates logarithms which are known to follow the weak form of the Efficient Market Hypothesis. In terms of the volatility of the time series, some interesting differences emerge. First, note that the variation of the daily data appears to be fluctuating and we can observe many clusters of large and small movements. As we move to bi-weekly data, the volatility clustering is less obvious. We could argue that the period has the least volatility, whereas the has the most. However, apart from these two extremes, it is hard to observe any other differences in the series variation. Finally, the monthly data show the least volatility-clustering; it is much harder to distinguish between low and high volatility periods. Overall, the daily data 2

3 exhibit the most volatility clustering, whereas the monthly exhibit the least (see Question 4). Question 2 The following table presents the AIC and SBC values for all time series and specifications. GARCH(0,0) GARCH(1,1) GARCH(2,2) GARCH(3,3) AIC SBC AIC SBC AIC SBC AIC SBC Daily Bi-weekly Monthly The above results suggest that: -The daily data are best explained by a GARCH(3,3) -The biweekly data are best explained by a GARCH(1,1), in the case of AIC, and a GARCH(0,0) in the case of SBC. -The monthly data are best explained by a GARCH(0,0) The estimation results of these specifications are following. DAILY DATA GARCH(3, 3) Fit statistics SSE Observations 2973 MSE Uncond Var Log Likelihood Total R-Square. SBC AIC Normality Test Pr > ChiSq <.0001 GARCH(3, 3) Parameter Estimates Variable DF Estimate Standard Error t Value ApproxPr > t Intercept ARCH E E <.0001 ARCH <.0001 ARCH

4 Variable DF Estimate Standard Error t Value ApproxPr > t ARCH <.0001 GARCH <.0001 GARCH <.0001 GARCH <.0001 BI-WEEKLY DATA GARCH(0, 0) Fit statistics Ordinary Least Squares Estimates SSE DFE 281 MSE Root MSE SBC AIC Regress R-Square Total R-Square Durbin-Watson GARCH(0, 0) Parameter Estimates Variable DF Estimate Standard Error t Value ApproxPr > t Intercept GARCH(1, 1) Fit statistics GARCH Estimates SSE Observations 282 MSE Uncond Var Log Likelihood Total R-Square. SBC AIC Normality Test Pr > ChiSq

5 GARCH(1, 1) Parameter Estimates Variable DF Estimate Standard Error t Value ApproxPr > t Intercept ARCH ARCH GARCH MONTHLY DATA GARCH(0, 0) Fit statistics Ordinary Least Squares Estimates SSE DFE 137 MSE Root MSE SBC AIC Regress R-Square Total R-Square Durbin-Watson GARCH(0, 0) parameter Estimates Variable DF Estimate Standard Error t Value ApproxPr > t Intercept

6 Question 3 The plots of the estimated conditional variances of the three series are presented below. 6

7 The estimated conditional variances exhibit the most time variation for the daily data. On the basis of AIC/SIC, there is mixed evidence about whether the conditional variance is time varying at the bi-weekly frequency but even for the GARCH(1,1) model chosen by AIC, the estimated conditional variances have a far narrower range than their daily counterparts and the peaks in conditional variance for the bi-weekly data are an order of magnitude smaller than those exhibited in the daily data. The monthly data are conditionally homoscedastic and so the conditional variances are constant over time. 7

8 Question 4 Pulling together the results from Questions 1-3, it is clear that as the sampling frequency decreases the time dependence in the conditional variance dies out. The daily data clearly exhibit time variation in the conditional variances. At the bi-weekly frequency, the evidence is mixed as to whether the conditional variances are time varying. However, this series exhibits less time variation in its conditional variance than the daily data no matter which information criteria is used to select the model. Finally, at the monthly frequency, there is no evidence of time variation in the conditional variance. 8

9 SAS CODE /* IMPORT THE DATASET */ PROC IMPORT OUT=daily DATAFILE= "comprb305_data.xls" DBMS=EXCEL REPLACE;SHEET="DAILY$"; GETNAMES=YES;USEDATE=YES;RUN; PROC IMPORT OUT=biweekly DATAFILE= "comprb305_data.xls" DBMS=EXCEL REPLACE;SHEET="BIWEEKLY$"; GETNAMES=YES;USEDATE=YES;RUN; PROC IMPORT OUT=monthly DATAFILE= "comprb305_data.xls" DBMS=EXCEL REPLACE;SHEET="MONTHLY$"; GETNAMES=YES;USEDATE=YES;RUN; /*CREATE FIRST DIFFERENCES*/ data daily;set daily; uk_day=dif(uk_day);run; data biweekly;set biweekly; uk_biweek=dif(uk_biweek);run; data monthly;set monthly; uk_month=dif(uk_month);run; /*PLOT THE VARIABLES IF INTEREST*/ *ods graphics on;*ods latex; title1 UK vs US Spot exchange rate ; symbol c=blue i=join v=none; proc gplot data=daily; title2 Daily data: Data in 1st differences of logs ; plot uk_day*date;run;quit; proc gplot data=biweekly; title2 Biweekly data: Data in 1st differences of logs ; plot uk_biweek*date;run;quit; proc gplot data=monthly; title2 Monthly data: Data in 1st differences of logs ; plot uk_month*date;run;quit; goptions reset=all; /*GARCH estimation*/ /*DAILY DATA*/ proc autoreg data=daily; GARCH_11: model uk_day=/ garch=(p=1, q=1); 9

10 GARCH_22: GARCH_33: run; model uk_day=/ garch=(p=2, q=2); model uk_day=/ garch=(p=3, q=3);output out=final_daily cev=volatility; /*BIWEEKLY DATA*/ proc autoreg data=biweekly; GARCH_11: model uk_biweek=/ garch=(p=1, q=1);output out=final_biweekly cev=volatility; GARCH_22: model uk_biweek=/ garch=(p=2, q=2); GARCH_33: model uk_biweek=/ garch=(p=3, q=3); run; /*MONTHLY DATA*/ proc autoreg data=monthly; GARCH_11: model uk_month=/ garch=(p=1, q=1);output out=final_monthly cev=volatility; GARCH_22: model uk_month=/ garch=(p=2, q=2); GARCH_33: model uk_month=/ garch=(p=3, q=3); run; /* Estimator of the variance in the GARCH(0,0) case */ data final_biweekly;set final_biweekly; garch00= ;run; data final_monthly;set final_monthly; garch00= ;run; /*Plot the estimated conditional variances*/ title1 Estimated Conditional Variance ; symbol c=blue i=join v=none; proc gplot data=final_daily; title2 Daily data: GARCH(3,3) ; plot volatility*date;run;quit; proc gplot data=final_biweekly; title2 Biweekly data: AIC ---> GARCH(1,1) ; plot volatility*date;run;quit; proc gplot data=final_biweekly; title2 Biweekly data: SBC ---> GARCH(0,0) ; plot garch00*date;run;quit; proc gplot data=final_monthly; title2 Monthly data: GARCH(0,0) ; plot garch00*date;run;quit; goptions reset=all; 10

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

Risk Management. Risk: the quantifiable likelihood of loss or less-than-expected returns.

Risk Management. Risk: the quantifiable likelihood of loss or less-than-expected returns. ARCH/GARCH Models 1 Risk Management Risk: the quantifiable likelihood of loss or less-than-expected returns. In recent decades the field of financial risk management has undergone explosive development.

More information

EXST7015: Multiple Regression from Snedecor & Cochran (1967) RAW DATA LISTING

EXST7015: Multiple Regression from Snedecor & Cochran (1967) RAW DATA LISTING Multiple (Linear) Regression Introductory example Page 1 1 options ps=256 ls=132 nocenter nodate nonumber; 3 DATA ONE; 4 TITLE1 ''; 5 INPUT X1 X2 X3 Y; 6 **** LABEL Y ='Plant available phosphorus' 7 X1='Inorganic

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

Modeling Panel Data: Choosing the Correct Strategy. Roberto G. Gutierrez

Modeling Panel Data: Choosing the Correct Strategy. Roberto G. Gutierrez Modeling Panel Data: Choosing the Correct Strategy Roberto G. Gutierrez 2 / 25 #analyticsx Overview Panel data are ubiquitous in not only economics, but in all fields Panel data have intrinsic modeling

More information

Homework 0 Key (not to be handed in) due? Jan. 10

Homework 0 Key (not to be handed in) due? Jan. 10 Homework 0 Key (not to be handed in) due? Jan. 10 The results of running diamond.sas is listed below: Note: I did slightly reduce the size of some of the graphs so that they would fit on the page. The

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

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

Topic 30: Random Effects Modeling

Topic 30: Random Effects Modeling Topic 30: Random Effects Modeling Outline One-way random effects model Data Model Inference Data for one-way random effects model Y, the response variable Factor with levels i = 1 to r Y ij is the j th

More information

Docket Revenue Decoupling Mechanism Proposal Responses to Division Data Requests 1-19

Docket Revenue Decoupling Mechanism Proposal Responses to Division Data Requests 1-19 Thomas R. Teehan Senior Counsel April 29, 2011 VIA HAND DELIVERY & ELECTRONIC MAIL Luly E. Massaro, Commission Clerk Rhode Island Public Utilities Commission 89 Jefferson Boulevard Warwick, RI 02888 RE:

More information

Lecture 21: Logit Models for Multinomial Responses Continued

Lecture 21: Logit Models for Multinomial Responses Continued Lecture 21: Logit Models for Multinomial Responses Continued Dipankar Bandyopadhyay, Ph.D. BMTRY 711: Analysis of Categorical Data Spring 2011 Division of Biostatistics and Epidemiology Medical University

More information

Lecture 6: Non Normal Distributions

Lecture 6: Non Normal Distributions Lecture 6: Non Normal Distributions and their Uses in GARCH Modelling Prof. Massimo Guidolin 20192 Financial Econometrics Spring 2015 Overview Non-normalities in (standardized) residuals from asset return

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

A SEARCH FOR A STABLE LONG RUN MONEY DEMAND FUNCTION FOR THE US

A SEARCH FOR A STABLE LONG RUN MONEY DEMAND FUNCTION FOR THE US A. Journal. Bis. Stus. 5(3):01-12, May 2015 An online Journal of G -Science Implementation & Publication, website: www.gscience.net A SEARCH FOR A STABLE LONG RUN MONEY DEMAND FUNCTION FOR THE US H. HUSAIN

More information

Exchange rate. Level and volatility FxRates

Exchange rate. Level and volatility FxRates Comentario Económico y Financiero Carlos Sánchez Cerón VaR Financiero Exchange rate. Level and volatility Source: During 2015, the dollar gradually rose 13.9 MXN/USA from December 2014 to 17.21 at the

More information

The data definition file provided by the authors is reproduced below: Obs: 1500 home sales in Stockton, CA from Oct 1, 1996 to Nov 30, 1998

The data definition file provided by the authors is reproduced below: Obs: 1500 home sales in Stockton, CA from Oct 1, 1996 to Nov 30, 1998 Economics 312 Sample Project Report Jeffrey Parker Introduction This project is based on Exercise 2.12 on page 81 of the Hill, Griffiths, and Lim text. It examines how the sale price of houses in Stockton,

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

Chapter 8. Sampling and Estimation. 8.1 Random samples

Chapter 8. Sampling and Estimation. 8.1 Random samples Chapter 8 Sampling and Estimation We discuss in this chapter two topics that are critical to most statistical analyses. The first is random sampling, which is a method for obtaining observations from a

More information

Brief Sketch of Solutions: Tutorial 2. 2) graphs. 3) unit root tests

Brief Sketch of Solutions: Tutorial 2. 2) graphs. 3) unit root tests Brief Sketch of Solutions: Tutorial 2 2) graphs LJAPAN DJAPAN 5.2.12 5.0.08 4.8.04 4.6.00 4.4 -.04 4.2 -.08 4.0 01 02 03 04 05 06 07 08 09 -.12 01 02 03 04 05 06 07 08 09 LUSA DUSA 7.4.12 7.3 7.2.08 7.1.04

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

**BEGINNING OF EXAMINATION** A random sample of five observations from a population is:

**BEGINNING OF EXAMINATION** A random sample of five observations from a population is: **BEGINNING OF EXAMINATION** 1. You are given: (i) A random sample of five observations from a population is: 0.2 0.7 0.9 1.1 1.3 (ii) You use the Kolmogorov-Smirnov test for testing the null hypothesis,

More information

Financial Time Series Analysis: Part II

Financial Time Series Analysis: Part II Department of Mathematics and Statistics, University of Vaasa, Finland Spring 2017 1 Volatility Models Background ARCH-models Properties of ARCH-processes Estimation of ARCH models Generalized ARCH models

More information

The Simple Regression Model

The Simple Regression Model Chapter 2 Wooldridge: Introductory Econometrics: A Modern Approach, 5e Definition of the simple linear regression model "Explains variable in terms of variable " Intercept Slope parameter Dependent var,

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

Topic 8: Model Diagnostics

Topic 8: Model Diagnostics Topic 8: Model Diagnostics Outline Diagnostics to check model assumptions Diagnostics concerning X Diagnostics using the residuals Diagnostics and remedial measures Diagnostics: look at the data to diagnose

More information

SAS Simple Linear Regression Example

SAS Simple Linear Regression Example SAS Simple Linear Regression Example This handout gives examples of how to use SAS to generate a simple linear regression plot, check the correlation between two variables, fit a simple linear regression

More information

Factor Affecting Yields for Treasury Bills In Pakistan?

Factor Affecting Yields for Treasury Bills In Pakistan? Factor Affecting Yields for Treasury Bills In Pakistan? Masood Urahman* Department of Applied Economics, Institute of Management Sciences 1-A, Sector E-5, Phase VII, Hayatabad, Peshawar, Pakistan Muhammad

More information

STATISTICA MATEMATICA 1 A.A. 2006/07 LABORATORIO DI SAS A. MICHELETTI

STATISTICA MATEMATICA 1 A.A. 2006/07 LABORATORIO DI SAS A. MICHELETTI STATISTICA MATEMATICA 1 A.A. 2006/07 LABORATORIO DI SAS A. MICHELETTI LEZIONE 5: REGRESSIONE Procedura Reg REGR1.SAS proc reg data=mylib.taranto; model lungmg=altmg; plot r.*p.; /* grafico dei residui

More information

Time series: Variance modelling

Time series: Variance modelling Time series: Variance modelling Bernt Arne Ødegaard 5 October 018 Contents 1 Motivation 1 1.1 Variance clustering.......................... 1 1. Relation to heteroskedasticity.................... 3 1.3

More information

Fall 2004 Social Sciences 7418 University of Wisconsin-Madison Problem Set 5 Answers

Fall 2004 Social Sciences 7418 University of Wisconsin-Madison Problem Set 5 Answers Economics 310 Menzie D. Chinn Fall 2004 Social Sciences 7418 University of Wisconsin-Madison Problem Set 5 Answers This problem set is due in lecture on Wednesday, December 15th. No late problem sets will

More information

Modeling the volatility of FTSE All Share Index Returns

Modeling the volatility of FTSE All Share Index Returns MPRA Munich Personal RePEc Archive Modeling the volatility of FTSE All Share Index Returns Bayraci, Selcuk University of Exeter, Yeditepe University 27. April 2007 Online at http://mpra.ub.uni-muenchen.de/28095/

More information

Statistics and Finance

Statistics and Finance David Ruppert Statistics and Finance An Introduction Springer Notation... xxi 1 Introduction... 1 1.1 References... 5 2 Probability and Statistical Models... 7 2.1 Introduction... 7 2.2 Axioms of Probability...

More information

Research Article The Volatility of the Index of Shanghai Stock Market Research Based on ARCH and Its Extended Forms

Research Article The Volatility of the Index of Shanghai Stock Market Research Based on ARCH and Its Extended Forms Discrete Dynamics in Nature and Society Volume 2009, Article ID 743685, 9 pages doi:10.1155/2009/743685 Research Article The Volatility of the Index of Shanghai Stock Market Research Based on ARCH and

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

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 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

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

The Simple Regression Model

The Simple Regression Model Chapter 2 Wooldridge: Introductory Econometrics: A Modern Approach, 5e Definition of the simple linear regression model Explains variable in terms of variable Intercept Slope parameter Dependent variable,

More information

Estimation Procedure for Parametric Survival Distribution Without Covariates

Estimation Procedure for Parametric Survival Distribution Without Covariates Estimation Procedure for Parametric Survival Distribution Without Covariates The maximum likelihood estimates of the parameters of commonly used survival distribution can be found by SAS. The following

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

Appropriate exploratory analysis including profile plots and transformation of variables (i.e. log(nihss)) as appropriate will occur.

Appropriate exploratory analysis including profile plots and transformation of variables (i.e. log(nihss)) as appropriate will occur. Final Examination Project Biostatistics 581 Winter 2009 William Meurer, M.D. Introduction: The NINDS tpa stroke study was published in 1995. This medication remains the only FDA approved medication for

More information

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

Volatility in the Indian Financial Market Before, During and After the Global Financial Crisis

Volatility in the Indian Financial Market Before, During and After the Global Financial Crisis Volatility in the Indian Financial Market Before, During and After the Global Financial Crisis Praveen Kulshreshtha Indian Institute of Technology Kanpur, India Aakriti Mittal Indian Institute of Technology

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

Notice that X2 and Y2 are skewed. Taking the SQRT of Y2 reduces the skewness greatly.

Notice that X2 and Y2 are skewed. Taking the SQRT of Y2 reduces the skewness greatly. Notice that X2 and Y2 are skewed. Taking the SQRT of Y2 reduces the skewness greatly. The MEANS Procedure Variable Mean Std Dev Minimum Maximum Skewness ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ

More information

Conflict of Exchange Rates

Conflict of Exchange Rates MPRA Munich Personal RePEc Archive Conflict of Exchange Rates Rituparna Das and U R Daga 2004 Online at http://mpra.ub.uni-muenchen.de/22702/ MPRA Paper No. 22702, posted 17. May 2010 13:37 UTC Econometrics

More information

The FREQ Procedure. Table of Sex by Gym Sex(Sex) Gym(Gym) No Yes Total Male Female Total

The FREQ Procedure. Table of Sex by Gym Sex(Sex) Gym(Gym) No Yes Total Male Female Total Jenn Selensky gathered data from students in an introduction to psychology course. The data are weights, sex/gender, and whether or not the student worked-out in the gym. Here is the output from a 2 x

More information

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

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

More information

Volume 29, Issue 2. Measuring the external risk in the United Kingdom. Estela Sáenz University of Zaragoza

Volume 29, Issue 2. Measuring the external risk in the United Kingdom. Estela Sáenz University of Zaragoza Volume 9, Issue Measuring the external risk in the United Kingdom Estela Sáenz University of Zaragoza María Dolores Gadea University of Zaragoza Marcela Sabaté University of Zaragoza Abstract This paper

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

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

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

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

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

IMPACT OF MACROECONOMIC VARIABLE ON STOCK MARKET RETURN AND ITS VOLATILITY

IMPACT OF MACROECONOMIC VARIABLE ON STOCK MARKET RETURN AND ITS VOLATILITY 7 IMPACT OF MACROECONOMIC VARIABLE ON STOCK MARKET RETURN AND ITS VOLATILITY 7.1 Introduction: In the recent past, worldwide there have been certain changes in the economic policies of a no. of countries.

More information

2. Copula Methods Background

2. Copula Methods Background 1. Introduction Stock futures markets provide a channel for stock holders potentially transfer risks. Effectiveness of such a hedging strategy relies heavily on the accuracy of hedge ratio estimation.

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

Intro. Econometrics Fall 2015

Intro. Econometrics Fall 2015 ECO 5350 Prof. Tom Fomby Intro. Econometrics Fall 2015 MIDTERM EXAM TAKE-HOME PART KEY Assignment of Points: Q5.5 (2, 2, 3, 3) = 10 Q5.9 (2, 3, 2, 3) = 10 Q5.15 (2, 3, 3) = 8 Q5.18 (3, 3) = 6 Total = 34

More information

Econometric Models for the Analysis of Financial Portfolios

Econometric Models for the Analysis of Financial Portfolios Econometric Models for the Analysis of Financial Portfolios Professor Gabriela Victoria ANGHELACHE, Ph.D. Academy of Economic Studies Bucharest Professor Constantin ANGHELACHE, Ph.D. Artifex University

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

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

BEcon Program, Faculty of Economics, Chulalongkorn University Page 1/7

BEcon Program, Faculty of Economics, Chulalongkorn University Page 1/7 Mid-term Exam (November 25, 2005, 0900-1200hr) Instructions: a) Textbooks, lecture notes and calculators are allowed. b) Each must work alone. Cheating will not be tolerated. c) Attempt all the tests.

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

is the bandwidth and controls the level of smoothing of the estimator, n is the sample size and

is the bandwidth and controls the level of smoothing of the estimator, n is the sample size and Paper PH100 Relationship between Total charges and Reimbursements in Outpatient Visits Using SAS GLIMMIX Chakib Battioui, University of Louisville, Louisville, KY ABSTRACT The purpose of this paper is

More information

Chapter 6. Transformation of Variables

Chapter 6. Transformation of Variables 6.1 Chapter 6. Transformation of Variables 1. Need for transformation 2. Power transformations: Transformation to achieve linearity Transformation to stabilize variance Logarithmic transformation MACT

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

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

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

Models Multivariate GARCH Models Updated: April

Models Multivariate GARCH Models Updated: April Financial i Econometrics and Volatility Models Multivariate GARCH Models Updated: April 21. 2010 Eric Zivot Professor and Gary Waterman Distinguished Scholar Department of Economics, University of Washington

More information

Implied Volatility v/s Realized Volatility: A Forecasting Dimension

Implied Volatility v/s Realized Volatility: A Forecasting Dimension 4 Implied Volatility v/s Realized Volatility: A Forecasting Dimension 4.1 Introduction Modelling and predicting financial market volatility has played an important role for market participants as it enables

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

8.1 Example: Hormone treatment of steers Example with different slopes Example: Concentration of a hormone in cattle...

8.1 Example: Hormone treatment of steers Example with different slopes Example: Concentration of a hormone in cattle... St@tmaster 02429/MIXED LINEAR MODELS PREPARED BY THE STATISTICS GROUPS AT IMM, DTU AND KU-LIFE Module 8: SAS 8.1 Example: Hormone treatment of steers................. 1 8.2 Example with different slopes.....................

More information

Market Variables and Financial Distress. Giovanni Fernandez Stetson University

Market Variables and Financial Distress. Giovanni Fernandez Stetson University Market Variables and Financial Distress Giovanni Fernandez Stetson University In this paper, I investigate the predictive ability of market variables in correctly predicting and distinguishing going concern

More information

The SAS System 11:03 Monday, November 11,

The SAS System 11:03 Monday, November 11, The SAS System 11:3 Monday, November 11, 213 1 The CONTENTS Procedure Data Set Name BIO.AUTO_PREMIUMS Observations 5 Member Type DATA Variables 3 Engine V9 Indexes Created Monday, November 11, 213 11:4:19

More information

An Empirical Research on Chinese Stock Market Volatility Based. on Garch

An Empirical Research on Chinese Stock Market Volatility Based. on Garch Volume 04 - Issue 07 July 2018 PP. 15-23 An Empirical Research on Chinese Stock Market Volatility Based on Garch Ya Qian Zhu 1, Wen huili* 1 (Department of Mathematics and Finance, Hunan University of

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

Analysis of the Relation between Treasury Stock and Common Shares Outstanding

Analysis of the Relation between Treasury Stock and Common Shares Outstanding Analysis of the Relation between Treasury Stock and Common Shares Outstanding Stoyu I. Nancie Fimbel Investment Fellow Associate Professor San José State University Accounting and Finance Department Lucas

More information

Modeling Exchange Rate Volatility using APARCH Models

Modeling Exchange Rate Volatility using APARCH Models 96 TUTA/IOE/PCU Journal of the Institute of Engineering, 2018, 14(1): 96-106 TUTA/IOE/PCU Printed in Nepal Carolyn Ogutu 1, Betuel Canhanga 2, Pitos Biganda 3 1 School of Mathematics, University of Nairobi,

More information

proc genmod; model malform/total = alcohol / dist=bin link=identity obstats; title 'Table 2.7'; title2 'Identity Link';

proc genmod; model malform/total = alcohol / dist=bin link=identity obstats; title 'Table 2.7'; title2 'Identity Link'; BIOS 6244 Analysis of Categorical Data Assignment 5 s 1. Consider Exercise 4.4, p. 98. (i) Write the SAS code, including the DATA step, to fit the linear probability model and the logit model to the data

More information

The histogram should resemble the uniform density, the mean should be close to 0.5, and the standard deviation should be close to 1/ 12 =

The histogram should resemble the uniform density, the mean should be close to 0.5, and the standard deviation should be close to 1/ 12 = Chapter 19 Monte Carlo Valuation Question 19.1 The histogram should resemble the uniform density, the mean should be close to.5, and the standard deviation should be close to 1/ 1 =.887. Question 19. The

More information

And The Winner Is? How to Pick a Better Model

And The Winner Is? How to Pick a Better Model And The Winner Is? How to Pick a Better Model Part 2 Goodness-of-Fit and Internal Stability Dan Tevet, FCAS, MAAA Goodness-of-Fit Trying to answer question: How well does our model fit the data? Can be

More information

ESTIMATING MONEY DEMAND FUNCTION OF BANGLADESH

ESTIMATING MONEY DEMAND FUNCTION OF BANGLADESH BRAC University Journal, vol. VIII, no. 1&2, 2011, pp. 31-36 ESTIMATING MONEY DEMAND FUNCTION OF BANGLADESH Md. Habibul Alam Miah Department of Economics Asian University of Bangladesh, Uttara, Dhaka Email:

More information

Financial Risk Forecasting Chapter 9 Extreme Value Theory

Financial Risk Forecasting Chapter 9 Extreme Value Theory Financial Risk Forecasting Chapter 9 Extreme Value Theory Jon Danielsson 2017 London School of Economics To accompany Financial Risk Forecasting www.financialriskforecasting.com Published by Wiley 2011

More information

Crash Involvement Studies Using Routine Accident and Exposure Data: A Case for Case-Control Designs

Crash Involvement Studies Using Routine Accident and Exposure Data: A Case for Case-Control Designs Crash Involvement Studies Using Routine Accident and Exposure Data: A Case for Case-Control Designs H. Hautzinger* *Institute of Applied Transport and Tourism Research (IVT), Kreuzaeckerstr. 15, D-74081

More information

Are the movements of stocks, bonds, and housing linked? Zachary D Easterling Department of Economics The University of Akron

Are the movements of stocks, bonds, and housing linked? Zachary D Easterling Department of Economics The University of Akron Easerling 1 Are the movements of stocks, bonds, and housing linked? Zachary D Easterling 1140324 Department of Economics The University of Akron One of the key ideas in monetary economics is that the prices

More information

FIN 533. Autocorrelations of CPI Inflation

FIN 533. Autocorrelations of CPI Inflation FIN 533 Inflation & Interest Rates Fama (1975) AER: Expected real interest rates are (approximately) constant over time, so: E(r t F t-1 ) = R t E(r) where E(r t F t-1 ) is expected inflation given information

More information

Impact of Terrorism on Foreign Direct Investment in Pakistan

Impact of Terrorism on Foreign Direct Investment in Pakistan Impact of Terrorism on Foreign Direct Investment in Pakistan Mian Awais Shahbaz 1, Asifah Javed 1, Amina Dar 1, Tanzeela Sattar 1 1 UCP Business School, University of the Central Punjab, Lahore.Pakistan

More information

Econometrics and Economic Data

Econometrics and Economic Data Econometrics and Economic Data Chapter 1 What is a regression? By using the regression model, we can evaluate the magnitude of change in one variable due to a certain change in another variable. For example,

More information

Lecture 9: Markov and Regime

Lecture 9: Markov and Regime Lecture 9: Markov and Regime Switching Models Prof. Massimo Guidolin 20192 Financial Econometrics Spring 2017 Overview Motivation Deterministic vs. Endogeneous, Stochastic Switching Dummy Regressiom Switching

More information

Comparative Performance of ARIMA and ARCH/GARCH Models on Time Series of Daily Equity Prices for Large Companies

Comparative Performance of ARIMA and ARCH/GARCH Models on Time Series of Daily Equity Prices for Large Companies Comparative Performance of ARIMA and ARCH/GARCH Models on Time Series of Daily Equity Prices for Large Companies John J. Sparks and Yuliya V. Yurova Department of Information and Decision Sciences University

More information

To be two or not be two, that is a LOGISTIC question

To be two or not be two, that is a LOGISTIC question MWSUG 2016 - Paper AA18 To be two or not be two, that is a LOGISTIC question Robert G. Downer, Grand Valley State University, Allendale, MI ABSTRACT A binary response is very common in logistic regression

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

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

Quantitative Techniques Term 2

Quantitative Techniques Term 2 Quantitative Techniques Term 2 Laboratory 7 2 March 2006 Overview The objective of this lab is to: Estimate a cost function for a panel of firms; Calculate returns to scale; Introduce the command cluster

More information

Alastair Hall ECG 790F: Microeconometrics Spring Computer Handout # 2. Estimation of binary response models : part II

Alastair Hall ECG 790F: Microeconometrics Spring Computer Handout # 2. Estimation of binary response models : part II Alastair Hall ECG 790F: Microeconometrics Spring 2006 Computer Handout # 2 Estimation of binary response models : part II In this handout, we discuss the estimation of binary response models with and without

More information

FBBABLLR1CBQ_US Commercial Banks: Assets - Bank Credit - Loans and Leases - Residential Real Estate (Bil, $, SA)

FBBABLLR1CBQ_US Commercial Banks: Assets - Bank Credit - Loans and Leases - Residential Real Estate (Bil, $, SA) Notes on new forecast variables November 2018 Loc Quach Moody s Analytics added 11 new U.S. variables to its global model in November. The variables pertain mostly to bank balance sheets and delinquency

More information

Supplement materials for Early network events in the later success of Chinese entrepreneurs

Supplement materials for Early network events in the later success of Chinese entrepreneurs Supplement materials for Early network events in the later success of Chinese entrepreneurs Figure S1 Kinds of Event Sequences by Years Since Business Founding A1 A2 A3 B4 B5 B6 B7 C8 C9 C10 Profile A

More information

ANALYSIS OF THE RELATIONSHIP OF STOCK MARKET WITH EXCHANGE RATE AND SPOT GOLD PRICE OF SRI LANKA

ANALYSIS OF THE RELATIONSHIP OF STOCK MARKET WITH EXCHANGE RATE AND SPOT GOLD PRICE OF SRI LANKA ANALYSIS OF THE RELATIONSHIP OF STOCK MARKET WITH EXCHANGE RATE AND SPOT GOLD PRICE OF SRI LANKA W T N Wickramasinghe (128916 V) Degree of Master of Science Department of Mathematics University of Moratuwa

More information

The Evidence for Differences in Risk for Fixed vs Mobile Telecoms For the Office of Communications (Ofcom)

The Evidence for Differences in Risk for Fixed vs Mobile Telecoms For the Office of Communications (Ofcom) The Evidence for Differences in Risk for Fixed vs Mobile Telecoms For the Office of Communications (Ofcom) November 2017 Project Team Dr. Richard Hern Marija Spasovska Aldo Motta NERA Economic Consulting

More information

CHAPTER III METHODOLOGY

CHAPTER III METHODOLOGY CHAPTER III METHODOLOGY 3.1 Description In this chapter, the calculation steps, which will be done in the analysis section, will be explained. The theoretical foundations and literature reviews are already

More information