Information Share. Bernt Arne Ødegaard 29 May 2018

Size: px
Start display at page:

Download "Information Share. Bernt Arne Ødegaard 29 May 2018"

Transcription

1 Information Share Bernt Arne Ødegaard 29 May 2018 Contents 1 Information Share, or, measuring the importance of different markets Setup Information share of a market Information share in R 2 3 Example of IS calculation - NHY Literature 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 Hasbrouck (1995). It is an example of the usage of cointegration. Let us use the notation of Hasbrouck (1995) Setup A security is traded in two separate markets. The evolution of prices is supposed to follow 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. Here p 1,t is a random walk (integrated). The price in the second market follows the price in the first market with a delay. It is thefore also integrated (of order 1). The difference between the two prices is 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 is stationary.) Two representations of the model: Vector moving average representation p 1,t = w t 1 For a textbook, see Hasbrouck (2008). 1

2 Common trends representation p 2,t = δp 1,t 2 + ε t ε t 1 = w t 2 + ε t ε t 1 ( 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. Information share: attribution of the source of variation in the random-walk component to the innovations in the various markets. 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 However, not an unique representation. General representation ( t ) p t = p 0 + ψ e s ı + Ψ (L)e t s=1 e t is a vector of disturbances with covariance matrix Ω. 1.2 Information share of a market Suppose p t represents prices in n different markets. The information share S j should 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, Hasbrouck (1995) shows that one can find upper and lower bounds on the information share. 2 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=" The short documentation of the routine estimating information share is shown in figure 1 2

3 Figure 1 Documentation R routine for Information Share 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. 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. 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 3

4 3 Example of IS calculation - NHY The stock NHY (Norsk Hydro) is traded on several exchanges. We are interested in how much of the price discovery happens in the main market (OSE). In the case of NHY, another market with significant trading is Chi-X. The basis for inference is contemporaneous observations of prices at two market places. The prices can be transanction prices, quotes, or midprices. In our example we collect five-second observations of the last transaction price (i.e. if there is no transactions, we keep the previous transaction prices. Table 1 shows the first few elements of the data we use. Note that the time used is the time recorded by Reuters, in London (UTC). By matching on London time, we have some confidence that traders in different places actually have seen the last transaction in the other market. Anyway, together with the last transaction price we also indicate the number of transactions within that five second interval. From that we observe that Oslo is the place with more transactions. Table 1 Observations of five second prices 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; Dec-03 08:02:20;27.24;0;27.26; The first few observations of the input file with five second prices of NHY on 3 dec traded in Oslo, and NHYo.CHI NHY traded at Chi-X. Here NHY.OL is the code for NHY Let us now calculate the 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/five_second_prices_nhy_2 > 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:

5 NHYo.CHI.no_trans > 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,]

6 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 $lags.used [1] 2 The numbers we want to look at is the information share for OSE. The Hasbrouck estimation is based on permuting the ordering of exchanges, and calculating a minimum and a maximum of the information share for a given exchange. The results above says that the IS for trading NHY at the OSE is in the interval [0.71, 0.94], which is supported with the CS for the OSE of

7 Let us also show the 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 $lags.used [1] 12 7

8 3.1 Literature The Information Share literature starts with Hasbrouck (1995), which introduces his calculation of a minimum and maximum information share. He argues that there is a degree of choice here that can not be bypassed, and therefore end up calculating a range instead of a single numer. A related measure, component share, is introduced by Harris, McInish, Shoesmith, and Wood (1995), Booth, So, and Tse (1999) and Chu, liang Gideon Hsieh, and Tse (1999), as an application of results in Gonzalo and Granger (1995). The CS is also called the common factor component. The relative merits of the two measures keep being discussed. A special issue of the Journal of Financial Markets in 2002 tried to conclude on the relative merits, Lehmann (2002); Baillie, Booth, Tse, and Zabotina (2002); Harris, McInish, and Wood (2002a); Hasbrouck (2002); Harris, McInish, and Wood (2002b) According to the summary by Lehmann, the different approaches correspond to different error correction models, and willingness to make restrictions on covariance structueres. But both approaches are argued to carry information. So it does not hurt to check both the Information Share and Component Share. The discussion does not end there. E.g. Yan and Zivot (2010) revisit the IS/CS discussion, and argues that IS is better. References Richard T. Baillie, G. Geoffrey Booth, Yiuman Tse, and Tatyana Zabotina. Price discovery and common factor models. Journal of Financial Markets, 5(3): , Price Discovery. G Geoffrey Booth, Raymond W So, and Yiuman Tse. Price discovery in the German equity index derivatives markets. Journal of Futures Markets, 19(6): , Quentin C Chu, Wen liang Gideon Hsieh, and Yiuman Tse. Price discovery on the S&P 500 index markets: An analysis of spot index, index futures, and SPDRs. International Review of Financial Analysis, 8(1):21 34, Jesus Gonzalo and Clive W J Granger. Estimation of common long-memory components in cointegrated systems. Journal of Business and Economic Statistics, 13(1):27 35, F Harris, TH McInish, and R Wood. Security price adjustments across exchanges: An investigation of common factor components for dow stocks. Journal of Financial Markets, 5(3): , 2002a. Frank H deb Harris, Thomas H McInish, G Shoesmith, and Robert A Wood. Cointegration, error correction and price discovery on informationally-linked security markets. Journal of Financial and Quantitative Analysis, 30: , Frederick H.deB. Harris, Thomas H. McInish, and Robert A. Wood. Common factor components versus information shares: a reply. Journal of Financial Markets, 5(3): , 2002b. Price Discovery. Joel Hasbrouck. One security, many markets: Determining the contributions to price discovery. Journal of Finance, 50(4): , Joel Hasbrouck. Stalking the "efficient price" in market microstructure specifictions: an overview. Journal of Financial Markets, 5: , Joel Hasbrouck. Empirical Market Microstructure. Oxford University Press, Bruce N Lehmann. Some desiderata for the measurement of price discovery across markets. Journal of Financial Markets, 5(3): , Bingcheng Yan and Eric Zivot. A structural analysis of price discovery measures. Journal of Financial Markets, 13(10): 1 19,

Information Share, or, measuring the importance of different markets

Information Share, or, measuring the importance of different markets 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

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

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

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

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

Market Competition in Crude Oil Futures. Elena Skouratova Department of Finance University of Texas at San Antonio

Market Competition in Crude Oil Futures. Elena Skouratova Department of Finance University of Texas at San Antonio Market Competition in Crude Oil Futures Elena Skouratova Department of Finance University of Texas at San Antonio Yiuman Tse* Department of Finance University of Texas at San Antonio Valeria Martinez Department

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

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

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

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

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

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

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

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

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

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

SYLLABUS. Market Microstructure Theory, Maureen O Hara, Blackwell Publishing 1995

SYLLABUS. Market Microstructure Theory, Maureen O Hara, Blackwell Publishing 1995 SYLLABUS IEOR E4733 Algorithmic Trading Term: Fall 2017 Department: Industrial Engineering and Operations Research (IEOR) Instructors: Iraj Kani (ik2133@columbia.edu) Ken Gleason (kg2695@columbia.edu)

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

ISABEL FIGUEROLA-FERRETTI CHRISTOPHER L. GILBERT*

ISABEL FIGUEROLA-FERRETTI CHRISTOPHER L. GILBERT* PRICE DISCOVERY IN THE ALUMINUM MARKET ISABEL FIGUEROLA-FERRETTI CHRISTOPHER L. GILBERT* An extended version of the S. Beveridge and C. R. Nelson (1981) decomposition and a latent variable approach are

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

Tell-Tale Tails: A data driven approach to estimate unique market information shares

Tell-Tale Tails: A data driven approach to estimate unique market information shares CFR-Working Paper NO. 10-06 Tell-Tale Tails: A data driven approach to estimate unique market information shares J. Grammig F. J. Peter Tell-Tale Tails A data driven approach to estimate unique market

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

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

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

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

Trading costs - Spread measures

Trading costs - Spread measures Trading costs - Spread measures Bernt Arne Ødegaard 20 September 2018 Introduction In this lecture we discuss various definitions of spreads, all of which are used to estimate the transaction costs of

More information

The (implicit) cost of equity trading at the Oslo Stock Exchange. What does the data tell us?

The (implicit) cost of equity trading at the Oslo Stock Exchange. What does the data tell us? The (implicit) cost of equity trading at the Oslo Stock Exchange. What does the data tell us? Bernt Arne Ødegaard Abstract We empirically investigate the costs of trading equity at the Oslo Stock Exchange

More information

Information shares in a two-tier FX market

Information shares in a two-tier FX market Information shares in a two-tier FX market Louis R. Piccotti and Ben Z. Schreiber a This Draft: September 20, 2016 a Piccotti is with the Department of Finance, School of Business, University at Albany,

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

Does the Bund dominate price discovery in Euro bond futures? Examining information shares

Does the Bund dominate price discovery in Euro bond futures? Examining information shares 1 Does the Bund dominate price discovery in Euro bond futures? Examining information shares Christoph Fricke and Lukas Menkhoff Abstract This paper examines the relative information shares of the Bund,

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

GLOBAL JOURNAL OF BUSINESS RESEARCH Volume 3 Number

GLOBAL JOURNAL OF BUSINESS RESEARCH Volume 3 Number INFORMATION SPILLOVERS IN THE SPOT AND ETF INDICES IN TAIWAN Chien-Cheng Wang, National Yunlin University of Science and Technology Yung-Shi Liau, Nanhua University Jack J.W. Yang, National Yunlin University

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

Topic 4: Introduction to Exchange Rates Part 1: Definitions and empirical regularities

Topic 4: Introduction to Exchange Rates Part 1: Definitions and empirical regularities Topic 4: Introduction to Exchange Rates Part 1: Definitions and empirical regularities - The models we studied earlier include only real variables and relative prices. We now extend these models to have

More information

The Impact of the US Stock Market Opens on Price Discovery of Government Bond Futures

The Impact of the US Stock Market Opens on Price Discovery of Government Bond Futures The Impact of the US Stock Market Opens on Price Discovery of Government Bond Futures Ivan Indriawan Auckland University of Technology Feng Jiao University of Lethbridge Yiuman Tse University of Missouri

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

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

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

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

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

The Quality of Price Discovery and the Transition to Electronic Trade: The Case of Cotton Futures

The Quality of Price Discovery and the Transition to Electronic Trade: The Case of Cotton Futures The Quality of Price Discovery and the Transition to Electronic Trade: The Case of Cotton Futures Joseph P. Janzen, Aaron D. Smith, and Colin A. Carter Selected Paper prepared for presentation at the Agricultural

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

Price Discovery Share-An Order Invariant Measure of Price Discovery with Application to Exchange-Traded Funds

Price Discovery Share-An Order Invariant Measure of Price Discovery with Application to Exchange-Traded Funds Price Discovery Share-An Order Invariant Measure of Price Discovery with Application to Exchange-Traded Funds Syed Galib Sultan Eric Zivot February 5, 2015 Abstract Price Discovery is the process by which

More information

RiskTorrent: Using Portfolio Optimisation for Media Streaming

RiskTorrent: Using Portfolio Optimisation for Media Streaming RiskTorrent: Using Portfolio Optimisation for Media Streaming Raul Landa, Miguel Rio Communications and Information Systems Research Group Department of Electronic and Electrical Engineering University

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

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

Measuring the Influence of Commodity Fund Trading on Soybean Price Discovery. by Gerald Plato and Linwood Hoffman

Measuring the Influence of Commodity Fund Trading on Soybean Price Discovery. by Gerald Plato and Linwood Hoffman Measuring the Influence of Commodity Fund Trading on Soybean Price Discovery by Gerald Plato and Linwood Hoffman Suggested citation format: Plato, G., and L. Hoffman. 2007. Measuring the Influence of Commodity

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

Measuring Price Discovery between Nearby and Deferred Contracts in Storable and Non-Storable Commodity Futures Markets.

Measuring Price Discovery between Nearby and Deferred Contracts in Storable and Non-Storable Commodity Futures Markets. Measuring Price Discovery between Nearby and Deferred Contracts in Storable and Non-Storable Commodity Futures Markets Working Paper Zhepeng Hu, Mindy Mallory, Teresa Serra, and Philip Garcia Department

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

The Market Microstructure of the European Climate Exchange

The Market Microstructure of the European Climate Exchange The Market Microstructure of the European Climate Exchange Bruce Mizrach Department of Economics Rutgers University and Yoichi Otsubo Luxembourg School of Finance University of Luxembourg Revised: September

More information

Date: March, The Market Microstructure of the European Climate Exchange

Date: March, The Market Microstructure of the European Climate Exchange LSF Research Working Paper Series N. 12-07 Date: March, 2011 Title: The Market Microstructure of the European Climate Exchange Author(s)*: Bruce Mizrach, Yoichi Otsubo Abstract: This paper analyzes the

More information

Information Flows Between Eurodollar Spot and Futures Markets *

Information Flows Between Eurodollar Spot and Futures Markets * Information Flows Between Eurodollar Spot and Futures Markets * Yin-Wong Cheung University of California-Santa Cruz, U.S.A. Hung-Gay Fung University of Missouri-St. Louis, U.S.A. The pattern of information

More information

An Investigation of Spot and Futures Market Spread in Indian Stock Market

An Investigation of Spot and Futures Market Spread in Indian Stock Market An Investigation of and Futures Market Spread in Indian Stock Market ISBN: 978-81-924713-8-9 Harish S N T. Mallikarjunappa Mangalore University (snharishuma@gmail.com) (tmmallik@yahoo.com) Executive Summary

More information

Intraday Price Formation in US Equity Index Markets

Intraday Price Formation in US Equity Index Markets Intraday Price Formation in US Equity Index Markets Joel Hasbrouck Department of Finance Stern School of Business New York University 44 West 4 th St. Suite 9-190 New York, NJ 10012-1126 212.998.0310 jhasbrou@stern.nyu.edu

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

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

This is an author produced version of New York or London : Where and when does the gold price originate?.

This is an author produced version of New York or London : Where and when does the gold price originate?. This is an author produced version of New York or London : Where and when does the gold price originate?. White Rose Research Online URL for this paper: http://eprints.whiterose.ac.uk/113760/ Article:

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

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

Relation Between Stock Return Synchronicity and Information in Trades, and A Comparison of Stock Price Informativeness Measures

Relation Between Stock Return Synchronicity and Information in Trades, and A Comparison of Stock Price Informativeness Measures Relation Between Stock Return Synchronicity and Information in Trades, and A Comparison of Stock Price Informativeness Measures Serhat Yildiz * University of Mississippi syildiz@bus.olemiss.edu Robert

More information

Equity Price Dynamics Before and After the Introduction of the Euro: A Note*

Equity Price Dynamics Before and After the Introduction of the Euro: A Note* Equity Price Dynamics Before and After the Introduction of the Euro: A Note* Yin-Wong Cheung University of California, U.S.A. Frank Westermann University of Munich, Germany Daily data from the German and

More information

O'Connor, Fergal A., Lucey, Brian M. and Larkin, Charles. It is advisable to refer to the publisher s version if you intend to cite from the work.

O'Connor, Fergal A., Lucey, Brian M. and Larkin, Charles. It is advisable to refer to the publisher s version if you intend to cite from the work. Article London or New York: where and when does the gold price originate? O'Connor, Fergal A., Lucey, Brian M. and Larkin, Charles Available at http://clok.uclan.ac.uk/6563/ O'Connor, Fergal A., Lucey,

More information

NON-STATIONARITY IN BID-ASK SPREADS: THE ROLE OF TICK SIZE REDUCTION

NON-STATIONARITY IN BID-ASK SPREADS: THE ROLE OF TICK SIZE REDUCTION NON-STATIONARITY IN BID-ASK SPREADS: THE ROLE OF TICK SIZE REDUCTION Walter Enders Economics, Finance, and Legal Studies University of Alabama Tuscaloosa, AL 35487 Frederick H. deb. Harris Babcock Graduate

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

Two Essays on Oil Futures Markets

Two Essays on Oil Futures Markets University of New Orleans ScholarWorks@UNO University of New Orleans Theses and Dissertations Dissertations and Theses 5-20-2011 Two Essays on Oil Futures Markets Iman Adeinat University of New Orleans

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

Journal of Economic & Financial Studies

Journal of Economic & Financial Studies Journal of Economic & Financial Studies, 04(01), 35-42 Vol. 04, No. 01: February (2016) Journal of Economic & Financial Studies Open access available at http://journalofeconomics.org Relation between ISE

More information

Time series: Variance modelling

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

More information

Modelling Round-the-Clock Price Discovery for. Cross-Listed Stocks using State Space Methods

Modelling Round-the-Clock Price Discovery for. Cross-Listed Stocks using State Space Methods Modelling Round-the-Clock Price Discovery for Cross-Listed Stocks using State Space Methods Albert J. Menkveld Siem-Jan Koopman André Lucas Vrije Universiteit Amsterdam 1 time line Amsterdam New York τ

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

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

AN EMPIRICAL EVIDENCE OF HEDGING PERFORMANCE IN INDIAN COMMODITY DERIVATIVES MARKET

AN EMPIRICAL EVIDENCE OF HEDGING PERFORMANCE IN INDIAN COMMODITY DERIVATIVES MARKET Indian Journal of Accounting, Vol XLVII (2), December 2015, ISSN-0972-1479 AN EMPIRICAL EVIDENCE OF HEDGING PERFORMANCE IN INDIAN COMMODITY DERIVATIVES MARKET P. Sri Ram Asst. Professor, Dept, of Commerce,

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

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 Equity Premium. Bernt Arne Ødegaard. 20 September 2018

The Equity Premium. Bernt Arne Ødegaard. 20 September 2018 The Equity Premium Bernt Arne Ødegaard 20 September 2018 1 Intro This lecture is concerned with the Equity Premium: How much more return an investor requires to hold a risky security (such as a stock)

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

Price discovery in high and low volatility periods: open outcry versus electronic trading

Price discovery in high and low volatility periods: open outcry versus electronic trading Journal of International Financial Markets, Institutions and Money 8 (1998) 243 260 Price discovery in high and low volatility periods: open outcry versus electronic trading Martin Martens * Department

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

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

ESTIMATING MONEY DEMAND FUNCTION OF BANGLADESH

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

More information

Optimal Hedge Ratio and Hedging Effectiveness of Stock Index Futures Evidence from India

Optimal Hedge Ratio and Hedging Effectiveness of Stock Index Futures Evidence from India Optimal Hedge Ratio and Hedging Effectiveness of Stock Index Futures Evidence from India Executive Summary In a free capital mobile world with increased volatility, the need for an optimal hedge ratio

More information

The Bilateral J-Curve: Sweden versus her 17 Major Trading Partners

The Bilateral J-Curve: Sweden versus her 17 Major Trading Partners Bahmani-Oskooee and Ratha, International Journal of Applied Economics, 4(1), March 2007, 1-13 1 The Bilateral J-Curve: Sweden versus her 17 Major Trading Partners Mohsen Bahmani-Oskooee and Artatrana Ratha

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

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

Nonlinear Dependence between Stock and Real Estate Markets in China

Nonlinear Dependence between Stock and Real Estate Markets in China MPRA Munich Personal RePEc Archive Nonlinear Dependence between Stock and Real Estate Markets in China Terence Tai Leung Chong and Haoyuan Ding and Sung Y Park The Chinese University of Hong Kong and Nanjing

More information

INTERNATIONAL LINKAGES OF THE INDIAN AGRICULTURE COMMODITY FUTURES MARKETS

INTERNATIONAL LINKAGES OF THE INDIAN AGRICULTURE COMMODITY FUTURES MARKETS I J A B E R, Vol. 14, No. 6, (2016): 3841-3857 INTERNATIONAL LINKAGES OF THE INDIAN AGRICULTURE COMMODITY FUTURES MARKETS B. Brahmaiah * and Srinivasan Palamalai ** Abstract: The present paper attempts

More information

IEOR E4602: Quantitative Risk Management

IEOR E4602: Quantitative Risk Management IEOR E4602: Quantitative Risk Management Basic Concepts and Techniques of Risk Management Martin Haugh Department of Industrial Engineering and Operations Research Columbia University Email: martin.b.haugh@gmail.com

More information

COINTEGRATION AND MARKET EFFICIENCY: AN APPLICATION TO THE CANADIAN TREASURY BILL MARKET. Soo-Bin Park* Carleton University, Ottawa, Canada K1S 5B6

COINTEGRATION AND MARKET EFFICIENCY: AN APPLICATION TO THE CANADIAN TREASURY BILL MARKET. Soo-Bin Park* Carleton University, Ottawa, Canada K1S 5B6 1 COINTEGRATION AND MARKET EFFICIENCY: AN APPLICATION TO THE CANADIAN TREASURY BILL MARKET Soo-Bin Park* Carleton University, Ottawa, Canada K1S 5B6 Abstract: In this study we examine if the spot and forward

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

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

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

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

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

MEASURING PORTFOLIO RISKS USING CONDITIONAL COPULA-AR-GARCH MODEL

MEASURING PORTFOLIO RISKS USING CONDITIONAL COPULA-AR-GARCH MODEL MEASURING PORTFOLIO RISKS USING CONDITIONAL COPULA-AR-GARCH MODEL Isariya Suttakulpiboon MSc in Risk Management and Insurance Georgia State University, 30303 Atlanta, Georgia Email: suttakul.i@gmail.com,

More information

A joint Initiative of Ludwig-Maximilians-Universität and Ifo Institute for Economic Research

A joint Initiative of Ludwig-Maximilians-Universität and Ifo Institute for Economic Research A joint Initiative of Ludwig-Maximilians-Universität and Ifo Institute for Economic Research Working Papers EQUITY PRICE DYNAMICS BEFORE AND AFTER THE INTRODUCTION OF THE EURO: A NOTE Yin-Wong Cheung Frank

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

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