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

Size: px
Start display at page:

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

Transcription

1 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 listed on pages 57, 59, 61, and 62 of my online probability and statistics tutorial, www4.uwm.edu/people/haas/learnprobstat 2. (1) List how sales, marketing, and finance departments within a firm often apply judgemental overrides to the demand forecast and explain what their political motives are for doing so. 3. (1) In the real world, how reliable are simple exponential smoother-based forecasts? 4. (1) In Chase, Jr. s opinion, what is the best way to form a demand forecast? 5. (1) Say that on days 1-5, you observe stock A s price to be 14, 19, 20, 12, and 15, respectively. On these same days, you observe stock B s price to be 7, 9, 22, 14, and 17. Compute by hand the sample covariance and the sample correlation between these two time series. Now use proc corr to check your results. 6. (2) Using relationships on BD, p. 10 (including d = 2(1 ρ)), compare the approximate critical value found with lines 6 and 7 with a Durbin-Watson table (1 predictor). At what n does the approximation give a critical value more than 10% different than the correct one? 7. (1) Rerun the Treasury Bills example on p. 24 with proc autoreg. Select NLAG so that the Durbin-Watson test of the final residuals does not reject. 1

2 Assignment 2: Demand-driven forecasting, Regressionbased forecasting 1. (1) Create a sequential, step-by-step procedure for Harley-Davidson to follow to create a weekly demand forecast for their new Dyna Switchback motorcycle. For each step, indicate (a) the responsible department, (b) needed data, (c) needed software, and/or (d) reports to be produced. 2. (1) The following data set consists of product demand observed at 5 time points: Time Demand Let Demand at time t be denoted Y t. After regressing Y t onto ln t, forecast demand at t = 7. Give a 95% prediction interval for this forecast. Use the Durbin-Watson statistic to test for autocorrelation of the error term. 3. (NOT ASSIGNED but an instructive exercise) Verify the values on lines 4, 5, and 7 in BD, p. 30. The first line of this page is: and the forecast error variance 4. (2) Show how the equation that is the third line from the bottom of p. 40 was obtained. The second to last line of this page is: Thus, you can write Y t as 5. (1) Show how equation 2.7, p. 41 was obtained. 6. (2) Show how line 1, p. 43 was obtained. This line begins with: These can be solved with 7. (2) Why does the absolute value of M have to be greater than 1 in line 6, p. 44? The first line of this page begins with: Surprisingly, 8. (1) Refit the silver data with proc autoreg where NLAG is set to 4. Compare your output to the output on p. 47 Output (continued). What is different? Why? 2

3 Assignment 3: Forecasting methods overview, Autoregressionbased forecasting 1. (2) Using Chase Jr., pp , explain how a survey could be used to replace a judgmental override when creating a demand forecast for the nearly-new product of primer-plus-finishcoat house paint. 2. (2) Compute and plot the ACF for the noiseless data set { }. Why is the function a negatively-sloping line of time lag? 3. (3) Simulate a sample of 15 independent and normal deviates having a mean of 2 and a variance of 14. Compute and plot the ACF. Now simulate a sample of 5000 deviates with the same distribution and plot their ACF. Why do the two plots have different autocorrelation values at identical lags? Why are the confidence bands different between the two plots? Which, if any plot indicates autocorrelation? Why? 4. (3) Read Jagpal et al. (1982) and look at g:/haas T/busadm713/trnsloghints.pdf. I have written a SAS code (g:/haas T/busadm713/pcreg.sas) that does the following. (a) Reads-in the four columns of data on the Lydia Pinkham Company data that is available at g:/haas T/jagpal/pinkham.dat. Column 1 is the month, column 2 is the year, column 3 is advertising expenditures (in $100s), and column 4 is sales (also in $100s). (b) Creates all necessary variables and then uses principal components regression to fit the 2-period translog model to this data. (c) Creates new variables as necessary that are simply the values of other variables lagged by the number of time steps j. For example, if contains observations on advertising at times 1, 2, 3, and 4, then a new variable composed of this original variable lagged back 1 time step would be where. denotes a missing value (since there is no value earlier in time than the first observation). (d) Computes the marginal productivity (MP i (t)) for advertising at lag 0, 1, and 2 for each month (t). Also computes the total yield, S t c = 2 i=0 MP i (t+i) for each month. Finally, a plot S t c as a function of t is drawn. Questions: (a) What are the advantages of using translog functions to model the relationship between advertising and sales? 3

4 (b) Why is it difficult to justify a negative marginal productivity? (c) Insert the two lines: proc print; run; into the code just after Step 7 s data step command set, and just after the proc transpose command set. Exactly what modifications have been made to data set a? (d) Run the code and produce the plot. Are the total yield values from the PC regression similar to those computed from the ridge regression parameter estimates? (e) What patterns of advertising budget for the current, next month, and two months in the future should management adopt, i.e., what patterns of advertising expenditure give the highest total yield (Sc)? t 4

5 Assignment 4: Forecast performance 1. (5) Perform a residual analysis of the regression model fitted in Assignment 3, problem 4. Create all residual plots. Compute the PRESS and MAPE statistics. Compute the Durbin-Watson and Modified Box-Pierce (Ljung-Box) tests for zero autocorrelation. Also, compute the Lagrange Multiplier test for homoscedasticity (equal variances across time) for the time predictor only. Use proc autoreg to perform these tests. 2. (3) Compute the last three one-step-ahead prediction errors of the regression-based predictor of Assignment 2, problem 2 and plot them by time. This means that you predict the value at time 3 using the data at times 1 and 2; then predict the value at time 4 using the data at times 1, 2, and 3; and then predict the value at time 5 using the data at times 1, 2, 3, and 4. You will need to run proc reg three times to compute these forecasts. Do not use proc arima. 3. (2) Repeat problem 2 but use the Naive (Simple) Forecast (each prediction equals the value at the current time). This forecasting method involves no calculation so compute these forecasts by hand. Which of these two forecast methods has a lower one-step-ahead prediction error? 5

6 Assignment 5: Smoothing methods, Introduction to ARIMA modeling 1. (1) Write the moving average smoother, 1 [1, 1, 1, 1] in backshift notation (B) (2) Consider the noiseless time series Compute a period 11 forecast using (a) single exponential smoothing, (b) double exponential smoothing, and (c) Holt s method of linear exponential smoothing. Which of these methods is more appropriate? Why? What value of α did you use in method (a)? How can you explain it in light of the relationship F t+1 = αx t + (1 α)f t = F t + α(x t F t ) where F t is a forecasted value at time t, and X t is an observed time series at time t? Explain how you selected values for the constants in methods (b) and (c). 3. (2) Apply the Holt-Winters smoother to the following demand data and forecast demand for the next three seasons. Find parameter values by minimizing the MAPE winter 8.5 spring 10.4 summer 7.5 fall winter 9.5 spring 12.2 summer 8.8 fall winter 10.4 spring 13.5 summer 9.7 fall winter 9.5 spring 11.7 summer 8.4 fall winter 10.9 spring 13.7 summer 10.1 fall

7 4. (1) Show that the AR(1) model can be written as Y t = ϕ 3 Y t 3 + ϕ 2 ϵ t 2 + ϕϵ t 1 + ϵ t. 5. (1) Show that the MA(1) model can be written as Y t = θy t 1 θ 2 Y t 2 θ 3 Y t 3 θ 4 ϵ t 4 +ϵ t. 6. (3) Rewrite BY t, and 3 B 2 Y t in terms of Y t j, j = 0, 1, 2,.... 7

8 Assignment 6: Causal modeling with ARIMA models 1. (4) The data set g:/haas t/busadm713/occup.dat contains data on occupancy (number of rooms) of a hotel per week. The first column is number of rooms and the second column is week number. Do the following: (a) Regress occupancy onto week number and compute the raw residuals (y ŷ). (b) Compute the ACF and PACF of these residuals. If there is strong autocorrelation at lags greater than about 10 weeks, recompute the ACF and PACF on the lag-one differenced residuals. (c) Use either the raw residual or differenced residual plots to select values for p and q and fit an ARIMA model to these residuals. If the raw residuals are used, specify d = 0. If the differenced residuals are used, specify d = 1. (d) Predict room occupancy for the week that follows the last week in the data set by adding the regression model prediction for that week to the ARIMA model s predicted value of the regression residual for that week. (e) Create all relevant plots. 2. (2) Use the result (1 X) 1 = 1 + X + X 2 + X (BD:40) to derive the equation that is just before the line The pattern of weights... on BD: (2) Give the transfer function expression to use in the input statement of proc arima for the model (Y t µ Y ) δ 1 (Y t 1 µ Y ) δ 2 (Y t 2 µ Y ) = C((X t 2 µ X ) ϕ(x t 5 µ X )) + η t 4. (2) What are the rules for using cross-correlations to specify the transfer function? 8

9 Assignment 7: Nonconstant Variance in ARIMA Models 1. (6) Find a GARCH model for the IBM price data such that the time series residuals pass the Q and LM tests for ARCH disturbances. See g:/haas t/busadm713/ibmgarch.sas for the data. To do this: (a) Fit a model, say model price = t. (b) Let r be the time series residuals, sr be the standardized residuals, and v be the conditional variances. Use a data step to compute sr = r/ v after using an output statement to store the r and v variables in a SAS data set. (c) Fit a model to sr and request nonconstant error variance tests with archtest. Experiment with different GARCH models (see the TYPE option in proc autoreg s model statement) for the residuals of price until the nonconstant error variance tests on sr s residuals do not reject the hypothesis of constant variance. (d) Among the models that successfully model the nonconstant error variance, which one do you select? Why? 2. (4) Write down the mathematical form of every GARCH, EGARCH, IGARCH, and GARCH-M model for nonconstant error variance that is available in proc autoreg. In each case, identify what parameters need to be estimated. 9

10 Assignment 8: Multivariate ARIMA Models 1. (10) Use proc varmax to fit a trivariate model to sales, mort, and starts in the build.dat data set (see g:/haas t/busadm713/build.dat). Select a VARMAX model by minimizing the true one-step-ahead sales MAPE, i.e., for each forecast, only data older than the forecast time is used to fit the VARMAX model (see varmpe.sas on the g: drive). Now, fit a univariate ARIMA model to sales also by minimizing the true one-step-ahead MAPE. Is the multivariate model s one-step-ahead sales MAPE smaller than the univariate model s? 10

11 Assignment 9: Combining Forecasts, State Space Models 1. (5) Use the inter-bank loan data in BD to form a composite forecast with regressionderived weights from a naive forecast, a proc autoreg forecast, and a proc reg forecast. 2. (5) Construct a data set of three observations such that the unweighted composite forecast composed of a naive forecast and an SES forecast has a MAPE that is larger than the naive forecast but smaller than the SES forecast. What value of α in the SES forecast did you use to achieve this result? 11

12 Assignment 10: Sensing, Shaping, and Linking Demand to Supply 1. (1) In addition to price, identify one more management-controllable variable that can be used to predict consumer demand for the Harley-Davidson Dyna Switchback motorcycle. 2. (1) Other than demand, identify two management-controllable variables that could be used to predict the supply of these motorcycles. Also identify a plausible fixed value for the cost to build one such motorcycle. 3. (2) Simulate 24 months of observations on demand and supply under different settings of these five predictor variables. Use a plausible value for l d (consumer demand forward lag). Justify this value. When simulating, make the predictor variables affect demand and supply in appropriate directions and magnitudes. 4. (2) Fit the two-tiered MTCA model by first fitting the demand model and then computing l d -step-ahead forecasts at each month for use as input to the supply model. Now, fit the supply model. 5. (2) Perform a what-if analysis on the fitted demand model and prepare a short paragraph of advice to management based on this analysis. This is a shaping activity. 6. (2) By trying a few different strategies, find a price-volume combination that is projected to maximize profit over the next six months. 12

13 Assignment 11: Maximizing Profit Consider the problem of how to maximize an automotive repair shop s profit described in worksheet (10) Find optimal values on the controllable variables via stochastic programming. Consider only one time period into the future. Express demand forecasts as three valueprobability pairs as discussed in optlec.pdf. Note that because specials are integervalued, this is a mixed integer linear programming (MILP) problem. See hw11hint.sas. 13

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

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

THE UNIVERSITY OF CHICAGO Graduate School of Business Business 41202, Spring Quarter 2003, Mr. Ruey S. Tsay 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.

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

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

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

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

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

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

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

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

Forecasting Stock Index Futures Price Volatility: Linear vs. Nonlinear Models

Forecasting Stock Index Futures Price Volatility: Linear vs. Nonlinear Models The Financial Review 37 (2002) 93--104 Forecasting Stock Index Futures Price Volatility: Linear vs. Nonlinear Models Mohammad Najand Old Dominion University Abstract The study examines the relative ability

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Forecasting Chapter 14

Forecasting Chapter 14 Forecasting Chapter 14 14-01 Forecasting Forecast: A prediction of future events used for planning purposes. It is a critical inputs to business plans, annual plans, and budgets Finance, human resources,

More information

Introductory Econometrics for Finance

Introductory Econometrics for Finance Introductory Econometrics for Finance SECOND EDITION Chris Brooks The ICMA Centre, University of Reading CAMBRIDGE UNIVERSITY PRESS List of figures List of tables List of boxes List of screenshots Preface

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

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

Modelling volatility - ARCH and GARCH models

Modelling volatility - ARCH and GARCH models Modelling volatility - ARCH and GARCH models Beáta Stehlíková Time series analysis Modelling volatility- ARCH and GARCH models p.1/33 Stock prices Weekly stock prices (library quantmod) Continuous returns:

More information

Derivation Of The Capital Asset Pricing Model Part I - A Single Source Of Uncertainty

Derivation Of The Capital Asset Pricing Model Part I - A Single Source Of Uncertainty Derivation Of The Capital Asset Pricing Model Part I - A Single Source Of Uncertainty Gary Schurman MB, CFA August, 2012 The Capital Asset Pricing Model CAPM is used to estimate the required rate of return

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

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

List of tables List of boxes List of screenshots Preface to the third edition Acknowledgements

List of tables List of boxes List of screenshots Preface to the third edition Acknowledgements Table of List of figures List of tables List of boxes List of screenshots Preface to the third edition Acknowledgements page xii xv xvii xix xxi xxv 1 Introduction 1 1.1 What is econometrics? 2 1.2 Is

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

Double Exponential Smoothing

Double Exponential Smoothing Production Planning I Prepared by Faramarz Khosravi IENG/MANE 33 lecture notes Reference: PRODUCTION, Planning, Control, and Integration by SIPPER & BULFIN Chapter - Part 3: TIME SERIES METHODS (Trend

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

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

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

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

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

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

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

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

High-Frequency Data Analysis and Market Microstructure [Tsay (2005), chapter 5]

High-Frequency Data Analysis and Market Microstructure [Tsay (2005), chapter 5] 1 High-Frequency Data Analysis and Market Microstructure [Tsay (2005), chapter 5] High-frequency data have some unique characteristics that do not appear in lower frequencies. At this class we have: Nonsynchronous

More information

SOCIETY OF ACTUARIES Advanced Topics in General Insurance. Exam GIADV. Date: Thursday, May 1, 2014 Time: 2:00 p.m. 4:15 p.m.

SOCIETY OF ACTUARIES Advanced Topics in General Insurance. Exam GIADV. Date: Thursday, May 1, 2014 Time: 2:00 p.m. 4:15 p.m. SOCIETY OF ACTUARIES Exam GIADV Date: Thursday, May 1, 014 Time: :00 p.m. 4:15 p.m. INSTRUCTIONS TO CANDIDATES General Instructions 1. This examination has a total of 40 points. This exam consists of 8

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

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

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

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

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

Annex 1: Heterogeneous autonomous factors forecast

Annex 1: Heterogeneous autonomous factors forecast Annex : Heterogeneous autonomous factors forecast This annex illustrates that the liquidity effect is, ceteris paribus, smaller than predicted by the aggregate liquidity model, if we relax the assumption

More information

1.1 Interest rates Time value of money

1.1 Interest rates Time value of money Lecture 1 Pre- Derivatives Basics Stocks and bonds are referred to as underlying basic assets in financial markets. Nowadays, more and more derivatives are constructed and traded whose payoffs depend on

More information

Financial Econometrics Review Session Notes 4

Financial Econometrics Review Session Notes 4 Financial Econometrics Review Session Notes 4 February 1, 2011 Contents 1 Historical Volatility 2 2 Exponential Smoothing 3 3 ARCH and GARCH models 5 1 In this review session, we will use the daily S&P

More information

Internet Appendix for: Cyclical Dispersion in Expected Defaults

Internet Appendix for: Cyclical Dispersion in Expected Defaults Internet Appendix for: Cyclical Dispersion in Expected Defaults March, 2018 Contents 1 1 Robustness Tests The results presented in the main text are robust to the definition of debt repayments, and the

More information

7. For the table that follows, answer the following questions: x y 1-1/4 2-1/2 3-3/4 4

7. For the table that follows, answer the following questions: x y 1-1/4 2-1/2 3-3/4 4 7. For the table that follows, answer the following questions: x y 1-1/4 2-1/2 3-3/4 4 - Would the correlation between x and y in the table above be positive or negative? The correlation is negative. -

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

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

Case Study: Predicting U.S. Saving Behavior after the 2008 Financial Crisis (proposed solution)

Case Study: Predicting U.S. Saving Behavior after the 2008 Financial Crisis (proposed solution) 2 Case Study: Predicting U.S. Saving Behavior after the 2008 Financial Crisis (proposed solution) 1. Data on U.S. consumption, income, and saving for 1947:1 2014:3 can be found in MF_Data.wk1, pagefile

More information

John Hull, Risk Management and Financial Institutions, 4th Edition

John Hull, Risk Management and Financial Institutions, 4th Edition P1.T2. Quantitative Analysis John Hull, Risk Management and Financial Institutions, 4th Edition Bionic Turtle FRM Video Tutorials By David Harper, CFA FRM 1 Chapter 10: Volatility (Learning objectives)

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

Assicurazioni Generali: An Option Pricing Case with NAGARCH

Assicurazioni Generali: An Option Pricing Case with NAGARCH Assicurazioni Generali: An Option Pricing Case with NAGARCH Assicurazioni Generali: Business Snapshot Find our latest analyses and trade ideas on bsic.it Assicurazioni Generali SpA is an Italy-based insurance

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

Time series analysis on return of spot gold price

Time series analysis on return of spot gold price Time series analysis on return of spot gold price Team member: Tian Xie (#1371992) Zizhen Li(#1368493) Contents Exploratory Analysis... 2 Data description... 2 Data preparation... 2 Basics Stats... 2 Unit

More information

Chapter 6 Probability

Chapter 6 Probability Chapter 6 Probability Learning Objectives 1. Simulate simple experiments and compute empirical probabilities. 2. Compute both theoretical and empirical probabilities. 3. Apply the rules of probability

More information

Running head: IMPROVING REVENUE VOLATILITY ESTIMATES 1. Improving Revenue Volatility Estimates Using Time-Series Decomposition Methods

Running head: IMPROVING REVENUE VOLATILITY ESTIMATES 1. Improving Revenue Volatility Estimates Using Time-Series Decomposition Methods Running head: IMPROVING REVENUE VOLATILITY ESTIMATES 1 Improving Revenue Volatility Estimates Using Time-Series Decomposition Methods Kenneth A. Kriz Wichita State University Author Note The author wishes

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

The Analysis of ICBC Stock Based on ARMA-GARCH Model

The Analysis of ICBC Stock Based on ARMA-GARCH Model Volume 04 - Issue 08 August 2018 PP. 11-16 The Analysis of ICBC Stock Based on ARMA-GARCH Model Si-qin LIU 1 Hong-guo SUN 1* 1 (Department of Mathematics and Finance Hunan University of Humanities Science

More information

Volume 30, Issue 1. Samih A Azar Haigazian University

Volume 30, Issue 1. Samih A Azar Haigazian University Volume 30, Issue Random risk aversion and the cost of eliminating the foreign exchange risk of the Euro Samih A Azar Haigazian University Abstract This paper answers the following questions. If the Euro

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

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

Chapter 5 Univariate time-series analysis. () Chapter 5 Univariate time-series analysis 1 / 29

Chapter 5 Univariate time-series analysis. () Chapter 5 Univariate time-series analysis 1 / 29 Chapter 5 Univariate time-series analysis () Chapter 5 Univariate time-series analysis 1 / 29 Time-Series Time-series is a sequence fx 1, x 2,..., x T g or fx t g, t = 1,..., T, where t is an index denoting

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

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

Financial Times Series. Lecture 6

Financial Times Series. Lecture 6 Financial Times Series Lecture 6 Extensions of the GARCH There are numerous extensions of the GARCH Among the more well known are EGARCH (Nelson 1991) and GJR (Glosten et al 1993) Both models allow for

More information

STA2601. Tutorial letter 105/2/2018. Applied Statistics II. Semester 2. Department of Statistics STA2601/105/2/2018 TRIAL EXAMINATION PAPER

STA2601. Tutorial letter 105/2/2018. Applied Statistics II. Semester 2. Department of Statistics STA2601/105/2/2018 TRIAL EXAMINATION PAPER STA2601/105/2/2018 Tutorial letter 105/2/2018 Applied Statistics II STA2601 Semester 2 Department of Statistics TRIAL EXAMINATION PAPER Define tomorrow. university of south africa Dear Student Congratulations

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

Stochastic Volatility (SV) Models

Stochastic Volatility (SV) Models 1 Motivations Stochastic Volatility (SV) Models Jun Yu Some stylised facts about financial asset return distributions: 1. Distribution is leptokurtic 2. Volatility clustering 3. Volatility responds to

More information

Lecture 8: Markov and Regime

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

More information

ARIMA-GARCH and unobserved component models with. GARCH disturbances: Are their prediction intervals. different?

ARIMA-GARCH and unobserved component models with. GARCH disturbances: Are their prediction intervals. different? ARIMA-GARCH and unobserved component models with GARCH disturbances: Are their prediction intervals different? Santiago Pellegrini, Esther Ruiz and Antoni Espasa July 2008 Abstract We analyze the effects

More information

Indian Institute of Management Calcutta. Working Paper Series. WPS No. 797 March Implied Volatility and Predictability of GARCH Models

Indian Institute of Management Calcutta. Working Paper Series. WPS No. 797 March Implied Volatility and Predictability of GARCH Models Indian Institute of Management Calcutta Working Paper Series WPS No. 797 March 2017 Implied Volatility and Predictability of GARCH Models Vivek Rajvanshi Assistant Professor, Indian Institute of Management

More information

MODELING EXCHANGE RATE VOLATILITY OF UZBEK SUM BY USING ARCH FAMILY MODELS

MODELING EXCHANGE RATE VOLATILITY OF UZBEK SUM BY USING ARCH FAMILY MODELS International Journal of Economics, Commerce and Management United Kingdom Vol. VI, Issue 11, November 2018 http://ijecm.co.uk/ ISSN 2348 0386 MODELING EXCHANGE RATE VOLATILITY OF UZBEK SUM BY USING ARCH

More information

1 Roy model: Chiswick (1978) and Borjas (1987)

1 Roy model: Chiswick (1978) and Borjas (1987) 14.662, Spring 2015: Problem Set 3 Due Wednesday 22 April (before class) Heidi L. Williams TA: Peter Hull 1 Roy model: Chiswick (1978) and Borjas (1987) Chiswick (1978) is interested in estimating regressions

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

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

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

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

Bivariate Birnbaum-Saunders Distribution

Bivariate Birnbaum-Saunders Distribution Department of Mathematics & Statistics Indian Institute of Technology Kanpur January 2nd. 2013 Outline 1 Collaborators 2 3 Birnbaum-Saunders Distribution: Introduction & Properties 4 5 Outline 1 Collaborators

More information

1 Dynamic programming

1 Dynamic programming 1 Dynamic programming A country has just discovered a natural resource which yields an income per period R measured in terms of traded goods. The cost of exploitation is negligible. The government wants

More information

A Study on Industrial Accident Rate Forecasting and Program Development of Estimated Zero Accident Time in Korea

A Study on Industrial Accident Rate Forecasting and Program Development of Estimated Zero Accident Time in Korea 56 Original T-G KIM Article et al. A Study on Industrial Accident Rate Forecasting and Program Development of Estimated Zero Accident Time in Korea Tae-gu KIM 1 *, Young-sig KANG 2 and Hyung-won LEE 3

More information

Subject CS2A Risk Modelling and Survival Analysis Core Principles

Subject CS2A Risk Modelling and Survival Analysis Core Principles ` Subject CS2A Risk Modelling and Survival Analysis Core Principles Syllabus for the 2019 exams 1 June 2018 Copyright in this Core Reading is the property of the Institute and Faculty of Actuaries who

More information

Forecasting: an introduction. There are a variety of ad hoc methods as well as a variety of statistically derived methods.

Forecasting: an introduction. There are a variety of ad hoc methods as well as a variety of statistically derived methods. Forecasting: an introduction Given data X 0,..., X T 1. Goal: guess, or forecast, X T or X T+r. There are a variety of ad hoc methods as well as a variety of statistically derived methods. Illustration

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

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

On modelling of electricity spot price

On modelling of electricity spot price , Rüdiger Kiesel and Fred Espen Benth Institute of Energy Trading and Financial Services University of Duisburg-Essen Centre of Mathematics for Applications, University of Oslo 25. August 2010 Introduction

More information

Agricultural and Applied Economics 637 Applied Econometrics II

Agricultural and Applied Economics 637 Applied Econometrics II Agricultural and Applied Economics 637 Applied Econometrics II Assignment I Using Search Algorithms to Determine Optimal Parameter Values in Nonlinear Regression Models (Due: February 3, 2015) (Note: Make

More information

Modelling Returns: the CER and the CAPM

Modelling Returns: the CER and the CAPM Modelling Returns: the CER and the CAPM Carlo Favero Favero () Modelling Returns: the CER and the CAPM 1 / 20 Econometric Modelling of Financial Returns Financial data are mostly observational data: they

More information

DYNAMIC CORRELATIONS AND FORECASTING OF TERM STRUCTURE SLOPES IN EUROCURRENCY MARKETS

DYNAMIC CORRELATIONS AND FORECASTING OF TERM STRUCTURE SLOPES IN EUROCURRENCY MARKETS DYNAMIC CORRELATIONS AND FORECASTING OF TERM STRUCTURE SLOPES IN EUROCURRENCY MARKETS Emilio Domínguez 1 Alfonso Novales 2 April 1999 ABSTRACT Using monthly data on Euro-rates for 1979-1998, we examine

More information