Information Share, or, measuring the importance of different markets

Size: px
Start display at page:

Download "Information Share, or, measuring the importance of different markets"

Transcription

1 Information Share, or, measuring the importance of different markets The Information Share concerns ways of measuing which market place is most important in price discovery. It is attributed to?. It is an example of the usage of cointegration. A security is traded in two separate markets. The evolution of prices follows p 1,t = p 1,t 1 + w t p 2,t = p 1,t 2 + ε t p 1,t and p 2,t can be both transaction prices or quotes. w t and ε t are zero mean iid disturbances.

2 Key Assumption: Random Walk. Since p 1,t is an asset price, justified in assuming it is a random walk. All else follows from this. The price in the second market follows the price in the first market with a delay. It is thefore also integrated (of order 1). But the difference is not. To see this, take the difference between the two prices: p 1,t p 2,t = p 1,t 1 + w t p 1,t 2 + ε t = (p 1,t 2 + w t 1 ) + w t p 1,t 2 + ε t = w t 1 + w t ε t Since these variables are mean zero noise, the difference between the two prices is stationary. The price difference in the two markets is therefore cointegrated. (A linear combination of integrated variables that is stationary.)

3 Two representations of the model Vector moving average representation p 1,t = w t p 2,t = δp 1,t 2 + ε t ε t 1 = w t 2 + ε t ε t 1 Common trends representation ( t ) p 1,t = p 1,0 + w s s=1 ( t ) p 2,t = p 2,0 + w s + (w t w t 1 + ε t ) s=1 Price series sum of initial value, common random-walk term, and stationary term. Interpretation: random walk component of security price the implicit efficient price.

4 Information Share Information share: attribution of the source of variation in the random-walk component to the innovations in the various markets. To estimate, use estimable representation of the model: Error correction model p 1,t = w t p 2,t = (p 1,t 1 p 2,t 1 ) p 1,t 1 + ε t Promlem: Not an unique representation. General representation (vector form): ( t ) p t = p 0 + ψ e s ı + Ψ (L)e t s=1 e t is a vector of disturbances with covariance matrix Ω.

5 Information Share, ctd Suppose p t represents prices in n different markets. The information share S j : measure the contribution of market j to the total variance of the random walk component. Unfortunately, when the covariance matrix Ω is not diagonal there is not a unique solution to this calculation. Instead,? shows that one can find upper and lower bounds on the information share. Therefore: Report upper and lower bounds on the information share.

6 Information share in R There is an R routine that implements estimation of information shares. pdshare, in the ifrogs library. It is not part of the CRAN library, the following is necessary to install it: install.packages("ifrogs", repos="

7 R documentation pdshare package:ifrogs R Documentation Computes information share & component share weights Description: This function implements the two most commonly used techniques to measure price discovery in multiple markets. These are information share (Hasbrouck (1995)) and the component share approach (Booth et al. (1999), Chu et al. (1999), Harris et al. (2002)) which utilises the Gonzalo and Granger (1995) permanent-transitory decomposition. Usage: pdshare(x, override.lags = NULL, lag.max = 10) Arguments: x: Is a numeric matrix / data frame which has two columns with log prices of two markets. override.lags: Is an integer that specifies user-defined lags to be used for VECM estimation. Uses NULL as default. See Details. lag.max: Is an integer that specifies the maximum lag order to be used for selecting the number of lags in VARselect. Is used when override.lags is NULL. Uses 10 as default.

8 R documentation Details: The function estimates the information share (IS) and component share weights for a two market case. This is done by first estimating the VECM model for two cointegrated price series using the functionality in package urca. The subsequent VAR and VMA representation are obtained using package vars. The number of lags to be used for VECM estimation can be pre-specified by the user in the argument override.lags. The default is NULL. If the argument is kept as NULL, then the number of lags are decided based on the AIC criterion using the function VARselect from package vars. The maximum number of lags to be used in VARselect can be specified using the argument lag.max. To achieve the lower and upper bound of IS using triangularization of covariance matrix, the function first computes IS for the supplied ordering. The resulting IS estimate maximises the share of Market 1 and minimises the share of Market 2. The results are saved in is.original.ordering. Subsequently, the ordering is reversed. The corresponding IS estimate maximises the share of Market 2 and minimises it for Market 1.

9 R documentation Value: A list of the following five elements: is.original.ordering: Information shares of Market 1 & 2 under the supplied ordering is.reversed.ordering: Information shares of Market 2 & 1 under the reversed ordering component.share: Component share weights of Market 1 & 2 var.covar.matrix: Variance covariance matrix of the residuals lags.used: Number of lags used in VECM estimation

10 Example of IS calculation - NHY The stock NHY (Norsk Hydro) is traded on several exchanges. Question: how much of the price discovery happens in the main market (OSE). Compare to e.g. trading at Chi-X. The basis for inference is contemporaneous observations of prices at two market places. Our example: five-second observations of the last transaction price.

11 The first few elements of the data we use: NHY.OL is the code for NHY traded in Oslo, and NHYo.CHI NHY traded at Chi-X. time;nhy.ol-price;nhy.ol-no trans;nhyo.chi-price;nhyo.chi-no_trans 2012-Dec-03 08:00:40;27.3;10;27.3; Dec-03 08:00:45;27.3;0;27.3; Dec-03 08:00:50;27.24;3;27.3; Dec-03 08:00:55;27.27;1;27.3; Dec-03 08:01:00;27.27;0;27.3; Dec-03 08:01:05;27.24;1;27.3; Dec-03 08:01:10;27.24;4;27.3; Dec-03 08:01:15;27.24;0;27.26; Dec-03 08:01:20;27.24;0;27.26; Dec-03 08:01:25;27.25;1;27.26; Dec-03 08:01:30;27.25;0;27.26; Dec-03 08:01:35;27.24;4;27.26; Dec-03 08:01:40;27.24;0;27.26; Dec-03 08:01:45;27.24;0;27.26; Dec-03 08:01:50;27.24;0;27.26; Dec-03 08:01:55;27.24;0;27.26; Dec-03 08:02:00;27.24;0;27.26; Dec-03 08:02:05;27.24;0;27.26; Dec-03 08:02:10;27.24;0;27.26; Dec-03 08:02:15;27.24;3;27.26;1...

12 Calculate IR for the two exchanges trading of NHY on this day. Load library and Prepare the data: > infile <- "/home/bernt/data/2017/reuters_trade_data/2017_01_sampled_prices/fiv > library(ifrogs) > data <- read.table(file=infile,sep=";",header=true) > head(data) time NHY.OL.price NHY.OL.no.trans NHYo.CHI.price Dec-03 08:00: Dec-03 08:00: Dec-03 08:00: Dec-03 08:00: Dec-03 08:01: Dec-03 08:01: NHYo.CHI.no_trans

13 Find Log Prices > data <- na.omit(data) > NHY.OL <- data$nhy.ol.price > NHYo.CHI <- data$nhyo.chi.price > > logprices <- as.matrix(cbind(log(nhy.ol),log(nhyo.chi))) > colnames(logprices) <- c("lnnhy.ol","lnnhyo.chi") > head(logprices) lnnhy.ol lnnhyo.chi [1,] [2,] [3,] [4,] [5,] [6,]

14 Estimating IS without specifying lag structure: > is <- pdshare(logprices) > print(is) $is.original.ordering IS lnnhy.ol lnnhyo.chi $is.reversed.ordering IS lnnhyo.chi lnnhy.ol $component.share CS lnnhy.ol lnnhyo.chi $var.covar.matrix lnnhy.ol lnnhyo.chi lnnhy.ol e e-08 lnnhyo.chi e e-08

15 Want: information share for OSE. $is.original.ordering IS lnnhy.ol lnnhyo.chi $is.reversed.ordering IS lnnhyo.chi lnnhy.ol The IS for trading NHY at the OSE is in the interval [0.71, 0.94]. $component.share CS lnnhy.ol lnnhyo.chi Supported by the CS for the OSE of 0.74.

16 Also show estimation imposing a lag structure with 12 lags: > is <- pdshare(logprices,override.lags=12) > print(is) $is.original.ordering IS lnnhy.ol lnnhyo.chi $is.reversed.ordering IS lnnhyo.chi lnnhy.ol $component.share CS lnnhy.ol lnnhyo.chi $var.covar.matrix lnnhy.ol lnnhyo.chi lnnhy.ol e e-08 lnnhyo.chi e e-08

Information Share. Bernt Arne Ødegaard 29 May 2018

Information Share. Bernt Arne Ødegaard 29 May 2018 Information Share Bernt Arne Ødegaard 29 May 2018 Contents 1 Information Share, or, measuring the importance of different markets 1 1.1 Setup................................................... 1 1.2 Information

More information

Lecture 4. Market Microstructure

Lecture 4. Market Microstructure Lecture 4 Market Microstructure Market Microstructure Hasbrouck: Market microstructure is the study of trading mechanisms used for financial securities. New transactions databases facilitated the study

More information

Information Share in Options Markets: The Role of Volume, Volatility, and Earnings Announcements

Information Share in Options Markets: The Role of Volume, Volatility, and Earnings Announcements Utah State University DigitalCommons@USU All Graduate Plan B and other Reports Graduate Studies 5-2013 Information Share in Options Markets: The Role of Volume, Volatility, and Earnings Announcements Lenaye

More information

The source of real and nominal exchange rate fluctuations in Thailand: Real shock or nominal shock

The source of real and nominal exchange rate fluctuations in Thailand: Real shock or nominal shock MPRA Munich Personal RePEc Archive The source of real and nominal exchange rate fluctuations in Thailand: Real shock or nominal shock Binh Le Thanh International University of Japan 15. August 2015 Online

More information

INFORMATION AND NOISE IN FINANCIAL MARKETS: EVIDENCE FROM THE E-MINI INDEX FUTURES. Abstract. I. Introduction

INFORMATION AND NOISE IN FINANCIAL MARKETS: EVIDENCE FROM THE E-MINI INDEX FUTURES. Abstract. I. Introduction The Journal of Financial Research Vol. XXXI, No. 3 Pages 247 270 Fall 2008 INFORMATION AND NOISE IN FINANCIAL MARKETS: EVIDENCE FROM THE E-MINI INDEX FUTURES Alexander Kurov West Virginia University Abstract

More information

Time-Varying Price Discovery and Autoregressive Loading Factors: Evidence from S&P 500 Cash and E-Mini Futures Markets

Time-Varying Price Discovery and Autoregressive Loading Factors: Evidence from S&P 500 Cash and E-Mini Futures Markets MPRA Munich Personal RePEc Archive Time-Varying Price Discovery and Autoregressive Loading Factors: Evidence from S&P 500 Cash and E-Mini Futures Markets Yang Hou and Steven Li School of Accounting, Finance

More information

Price discovery and instantaneous effects among cross listed stocks

Price discovery and instantaneous effects among cross listed stocks Price discovery and instantaneous effects among cross listed stocks Cristina Mabel Scherrer Queen Mary University of London This version: November 20, 2012 Job Market Paper Abstract This paper investigates

More information

Cointegration and Price Discovery between Equity and Mortgage REITs

Cointegration and Price Discovery between Equity and Mortgage REITs JOURNAL OF REAL ESTATE RESEARCH Cointegration and Price Discovery between Equity and Mortgage REITs Ling T. He* Abstract. This study analyzes the relationship between equity and mortgage real estate investment

More information

Predictability in finance

Predictability in finance Predictability in finance Two techniques to discuss predicability Variance ratios in the time dimension (Lo-MacKinlay)x Construction of implementable trading strategies Predictability, Autocorrelation

More information

Price Discovery, Cross-listings and Exchange Rates: Evidence from Australia and New Zealand

Price Discovery, Cross-listings and Exchange Rates: Evidence from Australia and New Zealand Price Discovery, Cross-listings and Exchange Rates: Evidence from Australia and New Zealand Bart Frijns* Nijmegen School of Management Radboud University Nijmegen P.O. Box 9108, 6500 HK Nijmegen, The Netherlands

More information

Price discovery in agricultural commodity markets in the presence of futures speculation

Price discovery in agricultural commodity markets in the presence of futures speculation Price discovery in agricultural commodity markets in the presence of futures speculation Thomas Dimpfl University of Tübingen Michael Flad University of Applied Sciences Esslingen Robert C. Jung University

More information

Related Securities, Allocation of Attention and Price Discovery: Evidence from NYSE-Listed Non-U.S. Stocks

Related Securities, Allocation of Attention and Price Discovery: Evidence from NYSE-Listed Non-U.S. Stocks Related Securities, Allocation of Attention and Price Discovery: Evidence from NYSE-Listed Non-U.S. Stocks Piotr Korczak Kate Phylaktis Discussion Paper No. 09/612 October 2009 Department of Economics

More information

Volume 35, Issue 1. Thai-Ha Le RMIT University (Vietnam Campus)

Volume 35, Issue 1. Thai-Ha Le RMIT University (Vietnam Campus) Volume 35, Issue 1 Exchange rate determination in Vietnam Thai-Ha Le RMIT University (Vietnam Campus) Abstract This study investigates the determinants of the exchange rate in Vietnam and suggests policy

More information

Price Discovery in Agricultural Futures Markets: Should We Look Beyond the Best Bid- Ask Spread? Mehdi Arzandeh and Julieta Frank*

Price Discovery in Agricultural Futures Markets: Should We Look Beyond the Best Bid- Ask Spread? Mehdi Arzandeh and Julieta Frank* Price Discovery in Agricultural Futures Markets: Should We Look Beyond the Best Bid- Ask Spread? Mehdi Arzandeh and Julieta Frank* Paper presented at the CAES annual meeting, Graduate Students Competition

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

Basket Securities, Price Formation, and Informational Efficiency

Basket Securities, Price Formation, and Informational Efficiency Basket Securities, Price Formation, and Informational Efficiency Lei Yu First Draft: April 24, 2003 This Version: March 25, 2005 ABSTRACT This paper investigates the role of basket securities in the efficient

More information

Demand For Life Insurance Products In The Upper East Region Of Ghana

Demand For Life Insurance Products In The Upper East Region Of Ghana Demand For Products In The Upper East Region Of Ghana Abonongo John Department of Mathematics, Kwame Nkrumah University of Science and Technology, Kumasi, Ghana Luguterah Albert Department of Statistics,

More information

IN THE REGULAR AND ALEXANDER KUROV*

IN THE REGULAR AND ALEXANDER KUROV* TICK SIZE REDUCTION, EXECUTION COSTS, AND INFORMATIONAL EFFICIENCY IN THE REGULAR AND E-MINI NASDAQ-100 INDEX FUTURES MARKETS ALEXANDER KUROV* On April 2, 2006, the Chicago Mercantile Exchange reduced

More information

Monetary Policy Shock Analysis Using Structural Vector Autoregression

Monetary Policy Shock Analysis Using Structural Vector Autoregression Monetary Policy Shock Analysis Using Structural Vector Autoregression (Digital Signal Processing Project Report) Rushil Agarwal (72018) Ishaan Arora (72350) Abstract A wide variety of theoretical and empirical

More information

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

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

More information

Discussion of No-Arbitrage Near-Cointegrated VAR(p) Term Structure Models, Term Premia and GDP Growth by C. Jardet, A. Monfort and F.

Discussion of No-Arbitrage Near-Cointegrated VAR(p) Term Structure Models, Term Premia and GDP Growth by C. Jardet, A. Monfort and F. Discussion of No-Arbitrage Near-Cointegrated VAR(p) Term Structure Models, Term Premia and GDP Growth by C. Jardet, A. Monfort and F. Pegoraro R. Mark Reesor Department of Applied Mathematics The University

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

Volume 38, Issue 1. The dynamic effects of aggregate supply and demand shocks in the Mexican economy

Volume 38, Issue 1. The dynamic effects of aggregate supply and demand shocks in the Mexican economy Volume 38, Issue 1 The dynamic effects of aggregate supply and demand shocks in the Mexican economy Ivan Mendieta-Muñoz Department of Economics, University of Utah Abstract This paper studies if the supply

More information

Volatility Leadership Among Index Options

Volatility Leadership Among Index Options Volatility Leadership Among Index Options Stephen Figlewski, Anja Frommherz October 2017 Abstract Equity options are an attractive trading vehicle because of their high leverage and because they also enable

More information

Working Paper Series FSWP Price Dynamics in a Vertical Sector: The Case of Butter. Jean-Paul Chavas. and. Aashish Mehta *

Working Paper Series FSWP Price Dynamics in a Vertical Sector: The Case of Butter. Jean-Paul Chavas. and. Aashish Mehta * Working Paper Series FSWP22-4 Price Dynamics in a Vertical Sector: The Case of Butter by Jean-Paul Chavas and Aashish Mehta * Abstract: We develop a reduced-form model of price transmission in a vertical

More information

THE EFFECTS OF FISCAL POLICY ON EMERGING ECONOMIES. A TVP-VAR APPROACH

THE EFFECTS OF FISCAL POLICY ON EMERGING ECONOMIES. A TVP-VAR APPROACH South-Eastern Europe Journal of Economics 1 (2015) 75-84 THE EFFECTS OF FISCAL POLICY ON EMERGING ECONOMIES. A TVP-VAR APPROACH IOANA BOICIUC * Bucharest University of Economics, Romania Abstract This

More information

Volatility Spillovers and Causality of Carbon Emissions, Oil and Coal Spot and Futures for the EU and USA

Volatility Spillovers and Causality of Carbon Emissions, Oil and Coal Spot and Futures for the EU and USA 22nd International Congress on Modelling and Simulation, Hobart, Tasmania, Australia, 3 to 8 December 2017 mssanz.org.au/modsim2017 Volatility Spillovers and Causality of Carbon Emissions, Oil and Coal

More information

PRICE DYNAMICS IN A VERTICAL SECTOR: THE CASE OF BUTTER

PRICE DYNAMICS IN A VERTICAL SECTOR: THE CASE OF BUTTER PRICE DYNAMICS IN A VERTICAL SECTOR: THE CASE OF BUTTER JEAN-PAUL CHAVAS AND AASHISH MEHTA We develop a reduced-form model of price transmission in a vertical sector, allowing for refined asymmetric, contemporaneous

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

Tax or Spend, What Causes What? Reconsidering Taiwan s Experience

Tax or Spend, What Causes What? Reconsidering Taiwan s Experience International Journal of Business and Economics, 2003, Vol. 2, No. 2, 109-119 Tax or Spend, What Causes What? Reconsidering Taiwan s Experience Scott M. Fuess, Jr. Department of Economics, University of

More information

Do Bid-Ask Spreads Or Bid and Ask Depths Convey New Information First?

Do Bid-Ask Spreads Or Bid and Ask Depths Convey New Information First? Do Bid-Ask Spreads Or Bid and Ask Depths Convey New Information First? Sugato Chakravarty Purdue University West Lafayette, IN 4790 E-mail: sugato@purdue.edu Frederick H. deb. Harris Babcock Graduate School

More information

Global and National Macroeconometric Modelling: A Long-run Structural Approach Overview on Macroeconometric Modelling Yongcheol Shin Leeds University

Global and National Macroeconometric Modelling: A Long-run Structural Approach Overview on Macroeconometric Modelling Yongcheol Shin Leeds University Global and National Macroeconometric Modelling: A Long-run Structural Approach Overview on Macroeconometric Modelling Yongcheol Shin Leeds University Business School Seminars at University of Cape Town

More information

MONEY, PRICES AND THE EXCHANGE RATE: EVIDENCE FROM FOUR OECD COUNTRIES

MONEY, PRICES AND THE EXCHANGE RATE: EVIDENCE FROM FOUR OECD COUNTRIES money 15/10/98 MONEY, PRICES AND THE EXCHANGE RATE: EVIDENCE FROM FOUR OECD COUNTRIES Mehdi S. Monadjemi School of Economics University of New South Wales Sydney 2052 Australia m.monadjemi@unsw.edu.au

More information

How do stock prices respond to fundamental shocks?

How do stock prices respond to fundamental shocks? Finance Research Letters 1 (2004) 90 99 www.elsevier.com/locate/frl How do stock prices respond to fundamental? Mathias Binswanger University of Applied Sciences of Northwestern Switzerland, Riggenbachstr

More information

Government Tax Revenue, Expenditure, and Debt in Sri Lanka : A Vector Autoregressive Model Analysis

Government Tax Revenue, Expenditure, and Debt in Sri Lanka : A Vector Autoregressive Model Analysis Government Tax Revenue, Expenditure, and Debt in Sri Lanka : A Vector Autoregressive Model Analysis Introduction Uthajakumar S.S 1 and Selvamalai. T 2 1 Department of Economics, University of Jaffna. 2

More information

Performance of Statistical Arbitrage in Future Markets

Performance of Statistical Arbitrage in Future Markets Utah State University DigitalCommons@USU All Graduate Plan B and other Reports Graduate Studies 12-2017 Performance of Statistical Arbitrage in Future Markets Shijie Sheng Follow this and additional works

More information

Market MicroStructure Models. Research Papers

Market MicroStructure Models. Research Papers Market MicroStructure Models Jonathan Kinlay Summary This note summarizes some of the key research in the field of market microstructure and considers some of the models proposed by the researchers. Many

More information

Stock Price Co-Movement and the Foundations of Pairs. Trading

Stock Price Co-Movement and the Foundations of Pairs. Trading Stock Price Co-Movement and the Foundations of Pairs Trading Adam Farago and Erik Hjalmarsson Both authors are at the Department of Economics and the Centre for Finance, University of Gothenburg. Contact

More information

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

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

More information

Market Integration, Price Discovery, and Volatility in Agricultural Commodity Futures P.Ramasundaram* and Sendhil R**

Market Integration, Price Discovery, and Volatility in Agricultural Commodity Futures P.Ramasundaram* and Sendhil R** Market Integration, Price Discovery, and Volatility in Agricultural Commodity Futures P.Ramasundaram* and Sendhil R** *National Coordinator (M&E), National Agricultural Innovation Project (NAIP), Krishi

More information

Price discovery on traded inflation expectations: Does the financial crisis matter? by Alexander Schulz and Jelena Stapf

Price discovery on traded inflation expectations: Does the financial crisis matter? by Alexander Schulz and Jelena Stapf Price discovery on traded inflation expectations: Does the financial crisis matter? by Alexander Schulz and Jelena Stapf Abstract: We analyze contributions of different markets to price discovery on traded

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

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

Discussion Paper No. DP 07/05

Discussion Paper No. DP 07/05 SCHOOL OF ACCOUNTING, FINANCE AND MANAGEMENT Essex Finance Centre A Stochastic Variance Factor Model for Large Datasets and an Application to S&P data A. Cipollini University of Essex G. Kapetanios Queen

More information

PRIVATE AND GOVERNMENT INVESTMENT: A STUDY OF THREE OECD COUNTRIES. MEHDI S. MONADJEMI AND HYEONSEUNG HUH* University of New South Wales

PRIVATE AND GOVERNMENT INVESTMENT: A STUDY OF THREE OECD COUNTRIES. MEHDI S. MONADJEMI AND HYEONSEUNG HUH* University of New South Wales INTERNATIONAL ECONOMIC JOURNAL 93 Volume 12, Number 2, Summer 1998 PRIVATE AND GOVERNMENT INVESTMENT: A STUDY OF THREE OECD COUNTRIES MEHDI S. MONADJEMI AND HYEONSEUNG HUH* University of New South Wales

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

Dynamic Correlation Analysis of Futures Price Fluctuation of Crude Oil and Basis Difference in China Based on VAR Model

Dynamic Correlation Analysis of Futures Price Fluctuation of Crude Oil and Basis Difference in China Based on VAR Model Volume 04 - Issue 11 November 2018 PP. 41-50 Dynamic Correlation Analysis of Futures Price Fluctuation of Crude Oil and Basis Difference in China Based on VAR Model Hongguo Sun 1, Wenhui Li 1 1 Department

More information

Building blocks for a mortality index in an international context

Building blocks for a mortality index in an international context 1 Building blocks for a mortality index in an international context Tiziana Torri Max Planck Institute for Demographic Research Munich, 7 th September 2009 2 Outline Longevity risk: Identification Assessment

More information

Lecture Note of Bus 41202, Spring 2010: Analysis of Multiple Series with Applications. x 1t x 2t. holdings (OIH) and energy select section SPDR (XLE).

Lecture Note of Bus 41202, Spring 2010: Analysis of Multiple Series with Applications. x 1t x 2t. holdings (OIH) and energy select section SPDR (XLE). Lecture Note of Bus 41202, Spring 2010: Analysis of Multiple Series with Applications Focus on two series (i.e., bivariate case) Time series: Data: x 1, x 2,, x T. X t = Some examples: (a) U.S. quarterly

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

Washington University Fall Economics 487

Washington University Fall Economics 487 Washington University Fall 2009 Department of Economics James Morley Economics 487 Project Proposal due Tuesday 11/10 Final Project due Wednesday 12/9 (by 5:00pm) (20% penalty per day if the project is

More information

Information Technology, Productivity, Value Added, and Inflation: An Empirical Study on the U.S. Economy,

Information Technology, Productivity, Value Added, and Inflation: An Empirical Study on the U.S. Economy, Information Technology, Productivity, Value Added, and Inflation: An Empirical Study on the U.S. Economy, 1959-2008 Ashraf Galal Eid King Fahd University of Petroleum and Minerals This paper is a macro

More information

Time Observations Time Period, t

Time Observations Time Period, t Operations Research Models and Methods Paul A. Jensen and Jonathan F. Bard Time Series and Forecasting.S1 Time Series Models An example of a time series for 25 periods is plotted in Fig. 1 from the numerical

More information

1. DATA SOURCES AND DEFINITIONS 1

1. DATA SOURCES AND DEFINITIONS 1 APPENDIX CONTENTS 1. Data Sources and Definitions 2. Tests for Mean Reversion 3. Tests for Granger Causality 4. Generating Confidence Intervals for Future Stock Prices 5. Confidence Intervals for Siegel

More information

Thi-Thanh Phan, Int. Eco. Res, 2016, v7i6, 39 48

Thi-Thanh Phan, Int. Eco. Res, 2016, v7i6, 39 48 INVESTMENT AND ECONOMIC GROWTH IN CHINA AND THE UNITED STATES: AN APPLICATION OF THE ARDL MODEL Thi-Thanh Phan [1], Ph.D Program in Business College of Business, Chung Yuan Christian University Email:

More information

Show that the column rank and the row rank of A are both equal to 3.

Show that the column rank and the row rank of A are both equal to 3. hapter Vectors and matrices.. Exercises. Let A 2 5 4 3 2 4 2 2 3 5 4 2 4 3 Show that the column rank and the row rank of A are both equal to 3. 2. Let x and y be column vectors of size n, andleti be the

More information

Financial Time Series Lecture 10: Analysis of Multiple Financial Time Series with Applications

Financial Time Series Lecture 10: Analysis of Multiple Financial Time Series with Applications Financial Time Series Lecture 10: Analysis of Multiple Financial Time Series with Applications Reference: Chapters 8 and 10 of the textbook. We shall focus on two series (i.e., the bivariate case) Time

More information

RISK SPILLOVER EFFECTS IN THE CZECH FINANCIAL MARKET

RISK SPILLOVER EFFECTS IN THE CZECH FINANCIAL MARKET RISK SPILLOVER EFFECTS IN THE CZECH FINANCIAL MARKET Vít Pošta Abstract The paper focuses on the assessment of the evolution of risk in three segments of the Czech financial market: capital market, money/debt

More information

The Effects of Japanese Monetary Policy Shocks on Exchange Rates: A Structural Vector Error Correction Model Approach

The Effects of Japanese Monetary Policy Shocks on Exchange Rates: A Structural Vector Error Correction Model Approach MONETARY AND ECONOMIC STUDIES/FEBRUARY 2003 The Effects of Japanese Monetary Policy Shocks on Exchange Rates: A Structural Vector Error Correction Model Approach Kyungho Jang and Masao Ogaki This paper

More information

Intro to GLM Day 2: GLM and Maximum Likelihood

Intro to GLM Day 2: GLM and Maximum Likelihood Intro to GLM Day 2: GLM and Maximum Likelihood Federico Vegetti Central European University ECPR Summer School in Methods and Techniques 1 / 32 Generalized Linear Modeling 3 steps of GLM 1. Specify the

More information

The Time-Varying Effects of Monetary Aggregates on Inflation and Unemployment

The Time-Varying Effects of Monetary Aggregates on Inflation and Unemployment 経営情報学論集第 23 号 2017.3 The Time-Varying Effects of Monetary Aggregates on Inflation and Unemployment An Application of the Bayesian Vector Autoregression with Time-Varying Parameters and Stochastic Volatility

More information

Weighted mortality experience analysis

Weighted mortality experience analysis Mortality and longevity Tim Gordon, Aon Hewitt Weighted mortality experience analysis 2010 The Actuarial Profession www.actuaries.org.uk Should weighted statistics be used in modern mortality analysis?

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

Conditional Heteroscedasticity and Testing of the Granger Causality: Case of Slovakia. Michaela Chocholatá

Conditional Heteroscedasticity and Testing of the Granger Causality: Case of Slovakia. Michaela Chocholatá Conditional Heteroscedasticity and Testing of the Granger Causality: Case of Slovakia Michaela Chocholatá The main aim of presentation: to analyze the relationships between the SKK/USD exchange rate and

More information

Package PortRisk. R topics documented: November 1, Type Package Title Portfolio Risk Analysis Version Date

Package PortRisk. R topics documented: November 1, Type Package Title Portfolio Risk Analysis Version Date Type Package Title Portfolio Risk Analysis Version 1.1.0 Date 2015-10-31 Package PortRisk November 1, 2015 Risk Attribution of a portfolio with Volatility Risk Analysis. License GPL-2 GPL-3 Depends R (>=

More information

Risk Management and Time Series

Risk Management and Time Series IEOR E4602: Quantitative Risk Management Spring 2016 c 2016 by Martin Haugh Risk Management and Time Series Time series models are often employed in risk management applications. They can be used to estimate

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

Country Spreads and Emerging Countries: Who Drives Whom? Martin Uribe and Vivian Yue (JIE, 2006)

Country Spreads and Emerging Countries: Who Drives Whom? Martin Uribe and Vivian Yue (JIE, 2006) Country Spreads and Emerging Countries: Who Drives Whom? Martin Uribe and Vivian Yue (JIE, 26) Country Interest Rates and Output in Seven Emerging Countries Argentina Brazil.5.5...5.5.5. 94 95 96 97 98

More information

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

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

More information

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

The Predictability of Non-Overlapping Forecasts: Evidence from a New Market

The Predictability of Non-Overlapping Forecasts: Evidence from a New Market 1 The Predictability of Non-Overlapping Forecasts: Evidence from a New Market Manolis G. Kavussanos* Athens University of Economics and Business, Greece Ilias D. Visvikis ALBA Graduate Business School,

More information

LOW FREQUENCY MOVEMENTS IN STOCK PRICES: A STATE SPACE DECOMPOSITION REVISED MAY 2001, FORTHCOMING REVIEW OF ECONOMICS AND STATISTICS

LOW FREQUENCY MOVEMENTS IN STOCK PRICES: A STATE SPACE DECOMPOSITION REVISED MAY 2001, FORTHCOMING REVIEW OF ECONOMICS AND STATISTICS LOW FREQUENCY MOVEMENTS IN STOCK PRICES: A STATE SPACE DECOMPOSITION REVISED MAY 2001, FORTHCOMING REVIEW OF ECONOMICS AND STATISTICS Nathan S. Balke Mark E. Wohar Research Department Working Paper 0001

More information

Sectoral Analysis of the Demand for Real Money Balances in Pakistan

Sectoral Analysis of the Demand for Real Money Balances in Pakistan The Pakistan Development Review 40 : 4 Part II (Winter 2001) pp. 953 966 Sectoral Analysis of the Demand for Real Money Balances in Pakistan ABDUL QAYYUM * 1. INTRODUCTION The main objective of monetary

More information

processes between the Singapore Exchange and the China Financial Futures Exchange. Using one- and fiveminute

processes between the Singapore Exchange and the China Financial Futures Exchange. Using one- and fiveminute A Tale of Two Index Futures: The Intraday Price Discovery and Volatility Transmission Processes between the China Financial Futures Exchange and the Singapore Exchange Biao Guo, Qian Han, Maonan Liu and

More information

Maximum Likelihood Estimation

Maximum Likelihood Estimation Maximum Likelihood Estimation EPSY 905: Fundamentals of Multivariate Modeling Online Lecture #6 EPSY 905: Maximum Likelihood In This Lecture The basics of maximum likelihood estimation Ø The engine that

More information

Market Risk Analysis Volume II. Practical Financial Econometrics

Market Risk Analysis Volume II. Practical Financial Econometrics Market Risk Analysis Volume II Practical Financial Econometrics Carol Alexander John Wiley & Sons, Ltd List of Figures List of Tables List of Examples Foreword Preface to Volume II xiii xvii xx xxii xxvi

More information

Personal income, stock market, and investor psychology

Personal income, stock market, and investor psychology ABSTRACT Personal income, stock market, and investor psychology Chung Baek Troy University Minjung Song Thomas University This paper examines how disposable personal income is related to investor psychology

More information

How can saving deposit rate and Hang Seng Index affect housing prices : an empirical study in Hong Kong market

How can saving deposit rate and Hang Seng Index affect housing prices : an empirical study in Hong Kong market Lingnan Journal of Banking, Finance and Economics Volume 2 2010/2011 Academic Year Issue Article 3 January 2010 How can saving deposit rate and Hang Seng Index affect housing prices : an empirical study

More information

NHY examples. Bernt Arne Ødegaard. 23 November Estimating dividend growth in Norsk Hydro 8

NHY examples. Bernt Arne Ødegaard. 23 November Estimating dividend growth in Norsk Hydro 8 NHY examples Bernt Arne Ødegaard 23 November 2017 Abstract Finance examples using equity data for Norsk Hydro (NHY) Contents 1 Calculating Beta 4 2 Cost of Capital 7 3 Estimating dividend growth in Norsk

More information

Investigation of the Linkages among Agricultural, Oil, and Exchange Rate Markets

Investigation of the Linkages among Agricultural, Oil, and Exchange Rate Markets Investigation of the Linkages among Agricultural, Oil, and Exchange Rate Markets Julieta Frank University of Manitoba Philip Garcia University of Illinois at Urbana-Champaign CAES Risk Management and Commodity

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

What Does the VIX Actually Measure?

What Does the VIX Actually Measure? What Does the VIX Actually Measure? An Analysis of the Causation of SPX and VIX QWAFAFEW, November 2014 Dr. Merav Ozair mr649@nyu.edu Mackabie Capital; merav@mackabiecapital.com What does the VIX Actually

More information

Dr. Bernhard Pfaff. The 2nd International R/Rmetrics User and Developer Workshop 29 June 3 July 2007, Meielisalp, Lake Thune, Switzerland

Dr. Bernhard Pfaff. The 2nd International R/Rmetrics User and Developer Workshop 29 June 3 July 2007, Meielisalp, Lake Thune, Switzerland Dr. Bernhard bernhard_pfaff@fra.invesco.com Invesco Asset Management Deutschland GmbH, Frankfurt am Main The 2nd International R/Rmetrics User and Developer Workshop 29 June 3 July 2007, Meielisalp, Lake

More information

Web Appendix for: What does Monetary Policy do to Long-Term Interest Rates at the Zero Lower Bound?

Web Appendix for: What does Monetary Policy do to Long-Term Interest Rates at the Zero Lower Bound? Web Appendix for: What does Monetary Policy do to Long-Term Interest Rates at the Zero Lower Bound? Jonathan H. Wright May 9, 212 This not-for-publication web appendix gives additional results for the

More information

Information Share: A Bivariate Quantile Regression Approach

Information Share: A Bivariate Quantile Regression Approach Information Share: A Bivariate Quantile Regression Approach 1. Introduction Price discovery, the process by which new information is impounded into prices, is probably the most important function of financial

More information

ARCH Models and Financial Applications

ARCH Models and Financial Applications Christian Gourieroux ARCH Models and Financial Applications With 26 Figures Springer Contents 1 Introduction 1 1.1 The Development of ARCH Models 1 1.2 Book Content 4 2 Linear and Nonlinear Processes 5

More information

IS THERE ANY TIME-VARYING RELATIONSHIP BETWEEN FISCAL AND TRADE DEFICITS IN TURKEY?

IS THERE ANY TIME-VARYING RELATIONSHIP BETWEEN FISCAL AND TRADE DEFICITS IN TURKEY? IS THERE ANY TIME-VARYING RELATIONSHIP BETWEEN FISCAL AND TRADE DEFICITS IN TURKEY? DOI: 1.18267/j.pep.577 Baris Gok, 1 A. Nazif Catik* Abstract In this article we analyse the evolution of the relationship

More information

Generalized Dynamic Factor Models and Volatilities: Recovering the Market Volatility Shocks

Generalized Dynamic Factor Models and Volatilities: Recovering the Market Volatility Shocks Generalized Dynamic Factor Models and Volatilities: Recovering the Market Volatility Shocks Paper by: Matteo Barigozzi and Marc Hallin Discussion by: Ross Askanazi March 27, 2015 Paper by: Matteo Barigozzi

More information

UCD CENTRE FOR ECONOMIC RESEARCH WORKING PAPER SERIES

UCD CENTRE FOR ECONOMIC RESEARCH WORKING PAPER SERIES UCD CENTRE FOR ECONOMIC RESEARCH WORKING PAPER SERIES 2006 Measuring the NAIRU A Structural VAR Approach Vincent Hogan and Hongmei Zhao, University College Dublin WP06/17 November 2006 UCD SCHOOL OF ECONOMICS

More information

Risk Measuring of Chosen Stocks of the Prague Stock Exchange

Risk Measuring of Chosen Stocks of the Prague Stock Exchange Risk Measuring of Chosen Stocks of the Prague Stock Exchange Ing. Mgr. Radim Gottwald, Department of Finance, Faculty of Business and Economics, Mendelu University in Brno, radim.gottwald@mendelu.cz Abstract

More information

Information Revelation in Financial Markets: Impulse Response Functions for Cointegrated Spreads and Depths

Information Revelation in Financial Markets: Impulse Response Functions for Cointegrated Spreads and Depths Information Revelation in Financial Markets: Impulse Response Functions for Cointegrated Spreads and Depths Sugato Chakravarty Purdue University West Lafayette, IN 47906 E-mail: sugato@purdue.edu Frederick

More information

STUDY ON THE CONCEPT OF OPTIMAL HEDGE RATIO AND HEDGING EFFECTIVENESS: AN EXAMPLE FROM ICICI BANK FUTURES

STUDY ON THE CONCEPT OF OPTIMAL HEDGE RATIO AND HEDGING EFFECTIVENESS: AN EXAMPLE FROM ICICI BANK FUTURES Journal of Management (JOM) Volume 5, Issue 4, July Aug 2018, pp. 374 380, Article ID: JOM_05_04_039 Available online at http://www.iaeme.com/jom/issues.asp?jtype=jom&vtype=5&itype=4 Journal Impact Factor

More information

Market Segmentation and Information Asymmetry in Chinese Stock Markets: A VAR Analysis

Market Segmentation and Information Asymmetry in Chinese Stock Markets: A VAR Analysis The Financial Review 38 (2003) 591--609 Market Segmentation and Information Asymmetry in Chinese Stock Markets: A VAR Analysis Jian Yang Prairie View A&M University Abstract This study examines the market

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

FINANCIAL ECONOMETRICS AND EMPIRICAL FINANCE MODULE 2

FINANCIAL ECONOMETRICS AND EMPIRICAL FINANCE MODULE 2 MSc. Finance/CLEFIN 2017/2018 Edition FINANCIAL ECONOMETRICS AND EMPIRICAL FINANCE MODULE 2 Midterm Exam Solutions June 2018 Time Allowed: 1 hour and 15 minutes Please answer all the questions by writing

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

slides chapter 6 Interest Rate Shocks

slides chapter 6 Interest Rate Shocks slides chapter 6 Interest Rate Shocks Princeton University Press, 217 Motivation Interest-rate shocks are generally believed to be a major source of fluctuations for emerging countries. The next slide

More information

State Switching in US Equity Index Returns based on SETAR Model with Kalman Filter Tracking

State Switching in US Equity Index Returns based on SETAR Model with Kalman Filter Tracking State Switching in US Equity Index Returns based on SETAR Model with Kalman Filter Tracking Timothy Little, Xiao-Ping Zhang Dept. of Electrical and Computer Engineering Ryerson University 350 Victoria

More information

Threshold cointegration and nonlinear adjustment between stock prices and dividends

Threshold cointegration and nonlinear adjustment between stock prices and dividends Applied Economics Letters, 2010, 17, 405 410 Threshold cointegration and nonlinear adjustment between stock prices and dividends Vicente Esteve a, * and Marı a A. Prats b a Departmento de Economia Aplicada

More information