DEGREE OF MASTER OF SCIENCE IN FINANCIAL ECONOMICS FINANCIAL ECONOMETRICS HILARY TERM 2019 COMPUTATIONAL ASSIGNMENT 1 PRACTICAL WORK 3

Size: px
Start display at page:

Download "DEGREE OF MASTER OF SCIENCE IN FINANCIAL ECONOMICS FINANCIAL ECONOMETRICS HILARY TERM 2019 COMPUTATIONAL ASSIGNMENT 1 PRACTICAL WORK 3"

Transcription

1 DEGREE OF MASTER OF SCIENCE IN FINANCIAL ECONOMICS FINANCIAL ECONOMETRICS HILARY TERM 2019 COMPUTATIONAL ASSIGNMENT 1 PRACTICAL WORK 3 Thursday 31 January Assignment must be submitted before noon (12:00) Friday 15 February 2019 (5th Week) by uploading to SAMS. This is group work. Groups of 3 or 4 are permitted. Groups with less than 3 or more than 4 are not permitted without explicit permission. All solutions must be submitted by the due date and time. Do not write the names of members of your group on your submission. Candidates should answer all questions. Suggested Length: 7 pages; limit 10 pages. Material on pages 11+ will not be assessed. Limit does not include the cover sheet, academic honesty declaration or submitted code files. All material, including figures, equations, and explanatory text must fit within 10 pages.

2 Assessment This assignment is assessed in 3 parts: 50% - Report. This report should focus on the analysis of the results and not code or the numerical values of the problems. 25% - Autograder. 5 functions must be submitted to compute the required outputs using the inputs. The signature of each function is provided as part of the problem. You must exactly match the function name. 25% - Presentation. There is a 5-minute presentation. The presentation covers one of problems 1 or 2 (not both). However, you do not find out until the time of presentation which problem your group needs to present and so you must be prepared for both. 2 turn over

3 Problem 1 The ID of your group members determines which data series you should analyze. The formula to determine your data set ID is: n Data Set ID = I D i mod i =1 where n is the number of members of your group. Your Data Set ID should be in {1, 2,..., 6}. The data sets are: Data Set ID FRED Code Transformation 1 T10Y2Y End-of-month 2 INDPRO None 3 PAYEMS None 4 BAMLH0A0HYM2 Biweekly, Wednesday, ending price 5 PCE None 6 T10YIE Weekly, Wednesday, ending price 1. Report your Data Set ID and describe the data (quantitative, graphical, qualitative as your group finds useful). 2. Download data for your assigned data set from FRED. If the data set needs to be transformed, the transformation can be performed in FRED before downloading. 3. Ignoring seasonality, is the data stationary? If not, transform it to be stationary. 4. Using the transformed data (if any was needed), build ARMA models for each series using the first 50% of the data. Assess the accuracy of this model using the second half. 5. Compare your models at horizons 1, 3 and 12 against random walk forecasts. Code Problems Mincer-Zarnowitz Implement Mincer-Zarnowitz regression. [alpha, beta, alpha_tstat, beta_tstat, joint_stat] = mincer_zarnowitz(realization, forecast) alpha - scalar, ˆα from MZ regression beta - scalar, ˆβ from MZ regression alpha_tstat - scalar, the t-stat for the null H 0 : α = 0 in a MZ regression 3 turn over

4 beta_tstat - scalar, the t-stat for the null H 0 : β = 1 in a MZ regression joint_stat - scalar, Wald statistic testing the joint null of correct specification realization - R by 1 vector of realizations of variable being forecast forecast - R by 1 vector of 1-step ahead forecasts variable being forecast. The forecast in position i is the time i 1 forecast of the value in i so that the forecast errors are realization - forecast. Diebold-Mariano Implement a Diebold-Mariano test. [avg_diff, std_err, dm_stat, concl] = diebold_mariano(loss_a, loss_b, nw_bandwidth) avg_diff - Mean loss difference where δ t = L A t L B t std_err - Estimated standard error of the difference dm_stat - The Diebold-Mariano test statistic concl - Conclusion. Should be -1 if null is rejected in favor of model A, 0 if null is not rejected and 1 if null is rejected in favor of model B. loss_a - R by 1 vector of losses from model A loss_b - R by 1 vector of losses from model B nw_bandwidth - Bandwidth (number of lags) to use in the Newey-West estimator 4 turn over

5 Problem 2 The ID of your group members determines which data series you should analyze. The formula to determine your data set ID is: n Data Set ID = I D i mod i =1 where n is the number of members of your group. Your Data Set ID should be in {1, 2,..., 6}. The data sets are: Data Set ID Portfolio 1 Portfolio 2 1 Excess Market (Mkt-RF) Momentum (MOM) 2 Size (SMB) Robust-Minus-Weak (RMW) 3 Value (HML) Conservative-Minus-Aggressive (CMA) All factors come from the 5-factor daily data set available on Ken French s site. The Momentum factor is stored in a separate file. This data set is longer than the other so only use data from July 1, Download daily data on your groups assigned portfolios from Ken French s website. 2. Construct the time series of monthly realized variance by squaring and summing the returns within each month. 3. Using this data and the transformation discussed in the notes and lectures, build an ARCH model for each series using the first half (50%) of the available data. 4. Assess the accuracy of your model using the second 50% of the data. 5. Build a HAR for the same data using the log of the monthly model. 1,2 6. Compare the HAR to the ARCH-type model selected in (3) at horizons of 1 month and 3-months based on cumulative volatility. 7. Suppose r t has an annualized volatility of x %. A portfolio that holds 20/x units of r t has an expected annualized volatility of 20%. Volatility-targeting can be implemented dynamically using the modelbased forecasts and rescaling returns monthly. Assess the ability of the models to volatility target a return with an annualized volatility of 20%. 8. Compare the performance in terms of Sharpe ratio of the dynamically targeted portfolio with one that uses only the historical average volatility to scale the portfolio. 1 When forecasting with the ln RV, if residuals are conditionally normal so that ln RV t +1 N ( µ t, σ 2),then using the properties of the log-normal, E t [RV t +1] = exp ( µ + 1 σ2). 2 2 Since this is monthly data, you should think about which lags are needed in the HAR 1, 5 and 22 are probably not the correct lags to use here. 5 turn over

6 Code Problems HAR Forecast HAR forecasts from a daily model that uses 1-, 5- and 22-day lagged terms. forecasts = recursive_har_forecast(data, in_sample) forecasts - T by 1 vector of 1-step ahead forecasts computed where the value in position t uses observations up-to-and-including time t. data - T by 1 vector of realized variances in_sample - scalar integer value indicating the in-sample period. The first forecast should be produced using observations 1, 2, 3,...,in_sample. Sharpe Ratio Compute the Sharpe ratio from a vector of returns. sr = sharpe_ratio(returns) sr - The Shape Ratio returns - T by 1 vector of returns MZ-GLS Implement the GLS version of a Mincer-Zarnowitz regression that can be used with variance forecasts. [alpha, beta, alpha_tstat, beta_tstat, joint_stat] = mincer_zarnowitz_gls(realization, forecast) alpha - scalar, ˆα from MZ regression 6 turn over

7 beta - scalar, ˆβ from MZ regression alpha_tstat - scalar, the t-stat for the null H 0 : α = 0 in a MZ regression beta_tstat - scalar, the t-stat for the null H 0 : β = 1 in a MZ regression joint_stat - scalar, Wald statistic testing the joint null of correct specification realization - R by 1 vector of realizations of variable being forecast forecast - R by 1 vector of 1-step ahead forecasts variable being forecast. The forecast in position i is the time i 1 forecast of the value in i so that the forecast errors are realization - forecast. 7 last page

The Capital Asset Pricing Model

The Capital Asset Pricing Model INTRO TO PORTFOLIO RISK MANAGEMENT IN PYTHON The Capital Asset Pricing Model Dakota Wixom Quantitative Analyst QuantCourse.com The Founding Father of Asset Pricing Models CAPM The Capital Asset Pricing

More information

Tests for Two Variances

Tests for Two Variances Chapter 655 Tests for Two Variances Introduction Occasionally, researchers are interested in comparing the variances (or standard deviations) of two groups rather than their means. This module calculates

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

University of California Berkeley

University of California Berkeley University of California Berkeley A Comment on The Cross-Section of Volatility and Expected Returns : The Statistical Significance of FVIX is Driven by a Single Outlier Robert M. Anderson Stephen W. Bianchi

More information

PASS Sample Size Software

PASS Sample Size Software Chapter 850 Introduction Cox proportional hazards regression models the relationship between the hazard function λ( t X ) time and k covariates using the following formula λ log λ ( t X ) ( t) 0 = β1 X1

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

Course information FN3142 Quantitative finance

Course information FN3142 Quantitative finance Course information 015 16 FN314 Quantitative finance This course is aimed at students interested in obtaining a thorough grounding in market finance and related empirical methods. Prerequisite If taken

More information

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

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

More information

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

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

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

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

Applied Macro Finance

Applied Macro Finance Master in Money and Finance Goethe University Frankfurt Week 2: Factor models and the cross-section of stock returns Fall 2012/2013 Please note the disclaimer on the last page Announcements Next week (30

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

Amath 546/Econ 589 Univariate GARCH Models: Advanced Topics

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

More information

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

Tests for One Variance

Tests for One Variance Chapter 65 Introduction Occasionally, researchers are interested in the estimation of the variance (or standard deviation) rather than the mean. This module calculates the sample size and performs power

More information

The Econometrics of Financial Returns

The Econometrics of Financial Returns The Econometrics of Financial Returns Carlo Favero December 2017 Favero () The Econometrics of Financial Returns December 2017 1 / 55 The Econometrics of Financial Returns Predicting the distribution of

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

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

The debate on NBIM and performance measurement, or the factor wars of 2015

The debate on NBIM and performance measurement, or the factor wars of 2015 The debate on NBIM and performance measurement, or the factor wars of 2015 May 2016 Bernt Arne Ødegaard University of Stavanger (UiS) How to think about NBIM Principal: People of Norway Drawing by Arild

More information

Tests for Two ROC Curves

Tests for Two ROC Curves Chapter 65 Tests for Two ROC Curves Introduction Receiver operating characteristic (ROC) curves are used to summarize the accuracy of diagnostic tests. The technique is used when a criterion variable is

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

September 12, 2006, version 1. 1 Data

September 12, 2006, version 1. 1 Data September 12, 2006, version 1 1 Data The dependent variable is always the equity premium, i.e., the total rate of return on the stock market minus the prevailing short-term interest rate. Stock Prices:

More information

Sharpe Ratio over investment Horizon

Sharpe Ratio over investment Horizon Sharpe Ratio over investment Horizon Ziemowit Bednarek, Pratish Patel and Cyrus Ramezani December 8, 2014 ABSTRACT Both building blocks of the Sharpe ratio the expected return and the expected volatility

More information

Prospective book-to-market ratio and expected stock returns

Prospective book-to-market ratio and expected stock returns Prospective book-to-market ratio and expected stock returns Kewei Hou Yan Xu Yuzhao Zhang Feb 2016 We propose a novel stock return predictor, the prospective book-to-market, as the present value of expected

More information

Non-Inferiority Tests for the Ratio of Two Means

Non-Inferiority Tests for the Ratio of Two Means Chapter 455 Non-Inferiority Tests for the Ratio of Two Means Introduction This procedure calculates power and sample size for non-inferiority t-tests from a parallel-groups design in which the logarithm

More information

Volatility Appendix. B.1 Firm-Specific Uncertainty and Aggregate Volatility

Volatility Appendix. B.1 Firm-Specific Uncertainty and Aggregate Volatility B Volatility Appendix The aggregate volatility risk explanation of the turnover effect relies on three empirical facts. First, the explanation assumes that firm-specific uncertainty comoves with aggregate

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

Bessembinder / Zhang (2013): Firm characteristics and long-run stock returns after corporate events. Discussion by Henrik Moser April 24, 2015

Bessembinder / Zhang (2013): Firm characteristics and long-run stock returns after corporate events. Discussion by Henrik Moser April 24, 2015 Bessembinder / Zhang (2013): Firm characteristics and long-run stock returns after corporate events Discussion by Henrik Moser April 24, 2015 Motivation of the paper 3 Authors review the connection of

More information

Addendum. Multifactor models and their consistency with the ICAPM

Addendum. Multifactor models and their consistency with the ICAPM Addendum Multifactor models and their consistency with the ICAPM Paulo Maio 1 Pedro Santa-Clara This version: February 01 1 Hanken School of Economics. E-mail: paulofmaio@gmail.com. Nova School of Business

More information

Tuomo Lampinen Silicon Cloud Technologies LLC

Tuomo Lampinen Silicon Cloud Technologies LLC Tuomo Lampinen Silicon Cloud Technologies LLC www.portfoliovisualizer.com Background and Motivation Portfolio Visualizer Tools for Investors Overview of tools and related theoretical background Investment

More information

Random Walks vs Random Variables. The Random Walk Model. Simple rate of return to an asset is: Simple rate of return

Random Walks vs Random Variables. The Random Walk Model. Simple rate of return to an asset is: Simple rate of return The Random Walk Model Assume the logarithm of 'with dividend' price, ln P(t), changes by random amounts through time: ln P(t) = ln P(t-1) + µ + ε(it) (1) where: P(t) is the sum of the price plus dividend

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

Final Exam Suggested Solutions

Final Exam Suggested Solutions University of Washington Fall 003 Department of Economics Eric Zivot Economics 483 Final Exam Suggested Solutions This is a closed book and closed note exam. However, you are allowed one page of handwritten

More information

Regret-based Selection

Regret-based Selection Regret-based Selection David Puelz (UT Austin) Carlos M. Carvalho (UT Austin) P. Richard Hahn (Chicago Booth) May 27, 2017 Two problems 1. Asset pricing: What are the fundamental dimensions (risk factors)

More information

Financial Times Series. Lecture 8

Financial Times Series. Lecture 8 Financial Times Series Lecture 8 Nobel Prize Robert Engle got the Nobel Prize in Economics in 2003 for the ARCH model which he introduced in 1982 It turns out that in many applications there will be many

More information

Lecture 5. Predictability. Traditional Views of Market Efficiency ( )

Lecture 5. Predictability. Traditional Views of Market Efficiency ( ) Lecture 5 Predictability Traditional Views of Market Efficiency (1960-1970) CAPM is a good measure of risk Returns are close to unpredictable (a) Stock, bond and foreign exchange changes are not predictable

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

Tests for the Difference Between Two Linear Regression Intercepts

Tests for the Difference Between Two Linear Regression Intercepts Chapter 853 Tests for the Difference Between Two Linear Regression Intercepts Introduction Linear regression is a commonly used procedure in statistical analysis. One of the main objectives in linear regression

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

Stock Returns and Equity Premium Evidence Using Dividend Price Ratios and Dividend Yields in Malaysia

Stock Returns and Equity Premium Evidence Using Dividend Price Ratios and Dividend Yields in Malaysia 18 th World IMACS/ MOSIM Congress, Cairns, Australia 13-17 July 2009 http//mssanz.org.au/modsim09 Stock Returns and Equity remium Evidence Using ividend rice Ratios and ividend Yields in Malaysia Abstract.E.

More information

Internet Appendix to Leverage Constraints and Asset Prices: Insights from Mutual Fund Risk Taking

Internet Appendix to Leverage Constraints and Asset Prices: Insights from Mutual Fund Risk Taking Internet Appendix to Leverage Constraints and Asset Prices: Insights from Mutual Fund Risk Taking In this Internet Appendix, we provide further discussion and additional empirical results to evaluate robustness

More information

STA 4504/5503 Sample questions for exam True-False questions.

STA 4504/5503 Sample questions for exam True-False questions. STA 4504/5503 Sample questions for exam 2 1. True-False questions. (a) For General Social Survey data on Y = political ideology (categories liberal, moderate, conservative), X 1 = gender (1 = female, 0

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

Common Risk Factors in the Cross-Section of Corporate Bond Returns

Common Risk Factors in the Cross-Section of Corporate Bond Returns Common Risk Factors in the Cross-Section of Corporate Bond Returns Online Appendix Section A.1 discusses the results from orthogonalized risk characteristics. Section A.2 reports the results for the downside

More information

Non-Inferiority Tests for the Ratio of Two Means in a 2x2 Cross-Over Design

Non-Inferiority Tests for the Ratio of Two Means in a 2x2 Cross-Over Design Chapter 515 Non-Inferiority Tests for the Ratio of Two Means in a x Cross-Over Design Introduction This procedure calculates power and sample size of statistical tests for non-inferiority tests from a

More information

FIN822 project 3 (Due on December 15. Accept printout submission or submission )

FIN822 project 3 (Due on December 15. Accept printout submission or  submission ) FIN822 project 3 (Due on December 15. Accept printout submission or email submission donglinli2006@yahoo.com. ) Part I The Fama-French Multifactor Model and Mutual Fund Returns Dawn Browne, an investment

More information

New financial analysis tools at CARMA

New financial analysis tools at CARMA New financial analysis tools at CARMA Amir Salehipour CARMA, The University of Newcastle Joint work with Jonathan M. Borwein, David H. Bailey and Marcos López de Prado November 13, 2015 Table of Contents

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

Time-variation of CAPM betas across market volatility regimes for Book-to-market and Momentum portfolios

Time-variation of CAPM betas across market volatility regimes for Book-to-market and Momentum portfolios Time-variation of CAPM betas across market volatility regimes for Book-to-market and Momentum portfolios Azamat Abdymomunov James Morley Department of Economics Washington University in St. Louis October

More information

Quantitative Methods

Quantitative Methods THE ASSOCIATION OF BUSINESS EXECUTIVES DIPLOMA PART 2 QM Quantitative Methods afternoon 26 May 2004 1 Time allowed: 3 hours. 2 Answer any FOUR questions. 3 All questions carry 25 marks. Marks for subdivisions

More information

GARCH Models for Inflation Volatility in Oman

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

More information

A Note on Predicting Returns with Financial Ratios

A Note on Predicting Returns with Financial Ratios A Note on Predicting Returns with Financial Ratios Amit Goyal Goizueta Business School Emory University Ivo Welch Yale School of Management Yale Economics Department NBER December 16, 2003 Abstract This

More information

Risk and Return of Short Duration Equity Investments

Risk and Return of Short Duration Equity Investments Risk and Return of Short Duration Equity Investments Georg Cejnek and Otto Randl, WU Vienna, Frontiers of Finance 2014 Conference Warwick, April 25, 2014 Outline Motivation Research Questions Preview of

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

Normal Distribution. Notes. Normal Distribution. Standard Normal. Sums of Normal Random Variables. Normal. approximation of Binomial.

Normal Distribution. Notes. Normal Distribution. Standard Normal. Sums of Normal Random Variables. Normal. approximation of Binomial. Lecture 21,22, 23 Text: A Course in Probability by Weiss 8.5 STAT 225 Introduction to Probability Models March 31, 2014 Standard Sums of Whitney Huang Purdue University 21,22, 23.1 Agenda 1 2 Standard

More information

An Econometrician Looks at CAPM and Fama-French Models

An Econometrician Looks at CAPM and Fama-French Models An Econometrician Looks at CAPM and Fama-French Models Paul T. Hunt, Jr. Director of Regulatory Finance and Economics Southern California Edison Company* Society of Utility and Regulatory Financial Analysts

More information

Forecasting volatility with macroeconomic and financial variables using Kernel Ridge Regressions

Forecasting volatility with macroeconomic and financial variables using Kernel Ridge Regressions ERASMUS SCHOOL OF ECONOMICS Forecasting volatility with macroeconomic and financial variables using Kernel Ridge Regressions Felix C.A. Mourer 360518 Supervisor: Prof. dr. D.J. van Dijk Bachelor thesis

More information

Demand Effects and Speculation in Oil Markets: Theory and Evidence

Demand Effects and Speculation in Oil Markets: Theory and Evidence Demand Effects and Speculation in Oil Markets: Theory and Evidence Eyal Dvir (BC) and Ken Rogoff (Harvard) IMF - OxCarre Conference, March 2013 Introduction Is there a long-run stable relationship between

More information

Exploiting Factor Autocorrelation to Improve Risk Adjusted Returns

Exploiting Factor Autocorrelation to Improve Risk Adjusted Returns Exploiting Factor Autocorrelation to Improve Risk Adjusted Returns Kevin Oversby 22 February 2014 ABSTRACT The Fama-French three factor model is ubiquitous in modern finance. Returns are modeled as a linear

More information

Firm specific uncertainty around earnings announcements and the cross section of stock returns

Firm specific uncertainty around earnings announcements and the cross section of stock returns Firm specific uncertainty around earnings announcements and the cross section of stock returns Sergey Gelman International College of Economics and Finance & Laboratory of Financial Economics Higher School

More information

Supplementary Appendix to Financial Intermediaries and the Cross Section of Asset Returns

Supplementary Appendix to Financial Intermediaries and the Cross Section of Asset Returns Supplementary Appendix to Financial Intermediaries and the Cross Section of Asset Returns Tobias Adrian tobias.adrian@ny.frb.org Erkko Etula etula@post.harvard.edu Tyler Muir t-muir@kellogg.northwestern.edu

More information

Asset Pricing and Excess Returns over the Market Return

Asset Pricing and Excess Returns over the Market Return Supplemental material for Asset Pricing and Excess Returns over the Market Return Seung C. Ahn Arizona State University Alex R. Horenstein University of Miami This documents contains an additional figure

More information

Optimal Debt-to-Equity Ratios and Stock Returns

Optimal Debt-to-Equity Ratios and Stock Returns Utah State University DigitalCommons@USU All Graduate Plan B and other Reports Graduate Studies 5-2014 Optimal Debt-to-Equity Ratios and Stock Returns Courtney D. Winn Utah State University Follow this

More information

An analysis of momentum and contrarian strategies using an optimal orthogonal portfolio approach

An analysis of momentum and contrarian strategies using an optimal orthogonal portfolio approach An analysis of momentum and contrarian strategies using an optimal orthogonal portfolio approach Hossein Asgharian and Björn Hansson Department of Economics, Lund University Box 7082 S-22007 Lund, Sweden

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

Arbitrage Pricing Theory and Multifactor Models of Risk and Return

Arbitrage Pricing Theory and Multifactor Models of Risk and Return Arbitrage Pricing Theory and Multifactor Models of Risk and Return Recap : CAPM Is a form of single factor model (one market risk premium) Based on a set of assumptions. Many of which are unrealistic One

More information

Does the Fama and French Five- Factor Model Work Well in Japan?*

Does the Fama and French Five- Factor Model Work Well in Japan?* International Review of Finance, 2017 18:1, 2018: pp. 137 146 DOI:10.1111/irfi.12126 Does the Fama and French Five- Factor Model Work Well in Japan?* KEIICHI KUBOTA AND HITOSHI TAKEHARA Graduate School

More information

Devin Barras Case Scenario

Devin Barras Case Scenario Devin Barras Case Scenario Devin Barras is valuing a company named Fumbler. Fumbler has been growing at a faster growth rate than the other companies in the similar industry. The company has not paid any

More information

Stochastic Models. Statistics. Walt Pohl. February 28, Department of Business Administration

Stochastic Models. Statistics. Walt Pohl. February 28, Department of Business Administration Stochastic Models Statistics Walt Pohl Universität Zürich Department of Business Administration February 28, 2013 The Value of Statistics Business people tend to underestimate the value of statistics.

More information

FE570 Financial Markets and Trading. Stevens Institute of Technology

FE570 Financial Markets and Trading. Stevens Institute of Technology FE570 Financial Markets and Trading Lecture 6. Volatility Models and (Ref. Joel Hasbrouck - Empirical Market Microstructure ) Steve Yang Stevens Institute of Technology 10/02/2012 Outline 1 Volatility

More information

The Free Cash Flow and Corporate Returns

The Free Cash Flow and Corporate Returns Utah State University DigitalCommons@USU All Graduate Plan B and other Reports Graduate Studies 12-2018 The Free Cash Flow and Corporate Returns Sen Na Utah State University Follow this and additional

More information

Covariance Matrix Estimation using an Errors-in-Variables Factor Model with Applications to Portfolio Selection and a Deregulated Electricity Market

Covariance Matrix Estimation using an Errors-in-Variables Factor Model with Applications to Portfolio Selection and a Deregulated Electricity Market Covariance Matrix Estimation using an Errors-in-Variables Factor Model with Applications to Portfolio Selection and a Deregulated Electricity Market Warren R. Scott, Warren B. Powell Sherrerd Hall, Charlton

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

A Lottery Demand-Based Explanation of the Beta Anomaly. Online Appendix

A Lottery Demand-Based Explanation of the Beta Anomaly. Online Appendix A Lottery Demand-Based Explanation of the Beta Anomaly Online Appendix Section I provides details of the calculation of the variables used in the paper. Section II examines the robustness of the beta anomaly.

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

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors

We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists. International authors and editors We are IntechOpen, the world s leading publisher of Open Access books Built by scientists, for scientists 3,900 116,000 120M Open access books available International authors and editors Downloads Our

More information

Risk-Based Investing & Asset Management Final Examination

Risk-Based Investing & Asset Management Final Examination Risk-Based Investing & Asset Management Final Examination Thierry Roncalli February 6 th 2015 Contents 1 Risk-based portfolios 2 2 Regularizing portfolio optimization 3 3 Smart beta 5 4 Factor investing

More information

What was in the last lecture?

What was in the last lecture? What was in the last lecture? Normal distribution A continuous rv with bell-shaped density curve The pdf is given by f(x) = 1 2πσ e (x µ)2 2σ 2, < x < If X N(µ, σ 2 ), E(X) = µ and V (X) = σ 2 Standard

More information

CFA Level II - LOS Changes

CFA Level II - LOS Changes CFA Level II - LOS Changes 2017-2018 Ethics Ethics Ethics Ethics Ethics Ethics Ethics Ethics Ethics Topic LOS Level II - 2017 (464 LOS) LOS Level II - 2018 (465 LOS) Compared 1.1.a 1.1.b 1.2.a 1.2.b 1.3.a

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

GDP, Share Prices, and Share Returns: Australian and New Zealand Evidence

GDP, Share Prices, and Share Returns: Australian and New Zealand Evidence Journal of Money, Investment and Banking ISSN 1450-288X Issue 5 (2008) EuroJournals Publishing, Inc. 2008 http://www.eurojournals.com/finance.htm GDP, Share Prices, and Share Returns: Australian and New

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

Example 1 of econometric analysis: the Market Model

Example 1 of econometric analysis: the Market Model Example 1 of econometric analysis: the Market Model IGIDR, Bombay 14 November, 2008 The Market Model Investors want an equation predicting the return from investing in alternative securities. Return is

More information

Equivalence Tests for the Ratio of Two Means in a Higher- Order Cross-Over Design

Equivalence Tests for the Ratio of Two Means in a Higher- Order Cross-Over Design Chapter 545 Equivalence Tests for the Ratio of Two Means in a Higher- Order Cross-Over Design Introduction This procedure calculates power and sample size of statistical tests of equivalence of two means

More information

Essays on Open-Ended Equity Mutual Funds in Thailand Presented at SEC Policy Dialogue 2018: Regulation by Market Forces

Essays on Open-Ended Equity Mutual Funds in Thailand Presented at SEC Policy Dialogue 2018: Regulation by Market Forces Essays on Open-Ended Equity Mutual Funds in Thailand Presented at SEC Policy Dialogue 2018: Regulation by Market Forces Roongkiat Ranatabanchuen, Ph.D. & Asst. Prof. Kanis Saengchote, Ph.D. Department

More information

Index Models and APT

Index Models and APT Index Models and APT (Text reference: Chapter 8) Index models Parameter estimation Multifactor models Arbitrage Single factor APT Multifactor APT Index models predate CAPM, originally proposed as a simplification

More information

Economic Review. Wenting Jiao * and Jean-Jacques Lilti

Economic Review. Wenting Jiao * and Jean-Jacques Lilti Jiao and Lilti China Finance and Economic Review (2017) 5:7 DOI 10.1186/s40589-017-0051-5 China Finance and Economic Review RESEARCH Open Access Whether profitability and investment factors have additional

More information

Principles of Finance

Principles of Finance Principles of Finance Grzegorz Trojanowski Lecture 7: Arbitrage Pricing Theory Principles of Finance - Lecture 7 1 Lecture 7 material Required reading: Elton et al., Chapter 16 Supplementary reading: Luenberger,

More information

Two hours. To be supplied by the Examinations Office: Mathematical Formula Tables and Statistical Tables THE UNIVERSITY OF MANCHESTER

Two hours. To be supplied by the Examinations Office: Mathematical Formula Tables and Statistical Tables THE UNIVERSITY OF MANCHESTER Two hours MATH20802 To be supplied by the Examinations Office: Mathematical Formula Tables and Statistical Tables THE UNIVERSITY OF MANCHESTER STATISTICAL METHODS Answer any FOUR of the SIX questions.

More information

Final exam solutions

Final exam solutions EE365 Stochastic Control / MS&E251 Stochastic Decision Models Profs. S. Lall, S. Boyd June 5 6 or June 6 7, 2013 Final exam solutions This is a 24 hour take-home final. Please turn it in to one of the

More information

Hedging Factor Risk Preliminary Version

Hedging Factor Risk Preliminary Version Hedging Factor Risk Preliminary Version Bernard Herskovic, Alan Moreira, and Tyler Muir March 15, 2018 Abstract Standard risk factors can be hedged with minimal reduction in average return. This is true

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

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

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

User Guide of GARCH-MIDAS and DCC-MIDAS MATLAB Programs

User Guide of GARCH-MIDAS and DCC-MIDAS MATLAB Programs User Guide of GARCH-MIDAS and DCC-MIDAS MATLAB Programs 1. Introduction The GARCH-MIDAS model decomposes the conditional variance into the short-run and long-run components. The former is a mean-reverting

More information

Fundamental Factor Models and Macroeconomic Risks - An Orthogonal Decomposition

Fundamental Factor Models and Macroeconomic Risks - An Orthogonal Decomposition Fundamental Factor Models and Macroeconomic Risks - An Orthogonal Decomposition Wolfgang Bessler a, Thomas Conlon b, a Center for Finance and Banking, Justus-Liebig University Giessen, Germany. b Smurfit

More information

Forecasting Volatility with Empirical Similarity and Google Trends

Forecasting Volatility with Empirical Similarity and Google Trends Forecasting Volatility with Empirical Similarity and Google Trends Moritz Heiden with Alain Hamid University of Augsburg ISF 2014 1 / 17 Volatility and investor attention Idea: Investors react on news

More information