Package PairTrading. February 15, 2013

Size: px
Start display at page:

Download "Package PairTrading. February 15, 2013"

Transcription

1 Package PairTrading February 15, 2013 Type Package Title classical pair trading based on cointegration in finance Version 1.1 Date Author Maintainer Shinichi This package gives classical trading strategy called Pair trading to you. you can easily specify pairs for trading and do back-test by this package. It s based on cointegration. Cointegration is a statistical feature of time series proposed by Engle and Granger. License BSD LazyLoad yes Depends R(>= ), xts, tseries Repository CRAN Date/Publication :04:29 NeedsCompilation no R topics documented: PairTrading-package EstimateParameters EstimateParametersHistorically IsStationary Return Simple stock.price Index 9 1

2 2 PairTrading-package PairTrading-package Classical pair trading methods based on cointegration analysis. This package gives classical trading strategy called "Pair trading". You can easily specify pairs for trading and do back-testing. Analysis are based on the idea of Cointegration that is a statistical feature of time series proposed by Engle and Granger. Package: PairTrading Type: Package Version: 1.1 Date: License: BSD LazyLoad: yes Maintainer: Shinichi Takayanagi<shinichi.takayanagi@gmail.com> References Engle, Robert F. and C.W.J. Granger, 1987, Co-integration and error correction: Representation, estimation, and testing, Econometrica 55, Granger, C.W.J., 1986, Developments in the study of cointegrated economic variables, Oxford Bulletin of Economics and Statistics 48, #Estimate parameters & plot spread reg <- EstimateParameters(price.pair, method = lm) str(reg) plot(reg$spread)

3 EstimateParameters 3 #check stationarity IsStationary(reg$spread, 0.1) #estimate parameters for back test params <- EstimateParametersHistorically(price.pair, period = 180) #create & plot trading signals signal <- Simple(params$spread, 0.05) barplot(signal,col="blue",space = 0, border = "blue",xaxt="n",yaxt="n",xlab="",ylab="") par(new=true) plot(params$spread) #performance return.pairtrading <- Return(price.pair, lag(signal), lag(params$hedge.ratio)) if(!all(is.na(return.pairtrading))){ plot(100 * cumprod(1 + return.pairtrading)) } EstimateParameters Estimate parameters at any point. Estimate parameters(spread, premium, cointegration coefficient) at any point by regression(default linear regression). EstimateParameters(price.pair, method = lm) price.pair method pair stock price (xts object) estimation method.(see also) Value "method" is any regression method which returns a result with "$coef" attribute. "$coef[1]" should be regression intercept(means premium) and "$coef[2]" should be regression coefficient(headge.ratio). return a list consisting of elements below. spread hedge.ratio premium xts object. "residual" in regression scalar value. "coefficient" in regression scalar value. "intercept" in regression

4 4 EstimateParametersHistorically #Estimate parameters & plot spread reg <- EstimateParameters(price.pair, method = lm) str(reg) plot(reg$spread) EstimateParametersHistorically Estimate parameters historicall for back test. Estimate parameters(spread, premium, cointegration coefficient) at any point by regression(default linear regression). EstimateParametersHistorically(price.pair, period, method = lm) price.pair period method pair stock price (xts object) width of rolling window(see details) estimation method.(see details) "method" is any regression method which returns a result with "$coef" attribute. "$coef[1]" should be regression intercept(means premium) and "$coef[2]" should be regression coefficient(headge.ratio).

5 IsStationary 5 Value return a list consisting of elements below. spread hedge.ratio premium xts object. "residual" in regression scalar value. "coefficient" in regression xts object. "intercept" in regression #Estimate parameters & plot spread reg <- EstimateParameters(price.pair, method = lm) str(reg) plot(reg$spread) IsStationary Check the stationarity of time series (especially spread) Check the stationarity of time series by Phillips-Perron Test for Unit Roots and Augmented Dickey- Fuller Test. IsStationary(spread, threshold) spread threshold checked time series object(xts) threshhold value of p-value Value the vector which have the result of each test passed or not.

6 6 Return #Estimate parameters & plot spread reg <- EstimateParameters(price.pair, method = lm) #check stationarity IsStationary(reg$spread, 0.1) Return Calculate return of back-test Calculate the performance of pair trading by specified trading signal and hedge ratio Return(price.pair, signal.lagged, hedge.ratio.lagged) price.pair pair stock price (xts object) signal.lagged lagged signal(see details) hedge.ratio.lagged hedge ratio created by EstimateParametersHistorically function(see details) You have to consider "lag" to signal, because you can not trade when you calculate your trade position at that time. hedge.ratio.lagged is too. We defined "return" as following that [Return of (Buy-Sell)portfolio = (Return of Price1) * (Investmentratio of Price1) + (Return of Price2) * (Investment ratio of Price2) In this equation, as you know, "Return" is calculated as "Change ratio of price between two period". We defined "Investment ratio" as following that. [(Investment ratio of Price1) = 1 / (1 + abs(hedge ratio))], [(Investment ratio of Price2) = hedge ratio / (1 + abs(hedge ratio))]

7 Simple 7 Value performance data(not price but return) as xts object & estimate parameters params <- EstimateParametersHistorically(price.pair, period = 180) #create trading signals signal <- Simple(params$spread, 0.05) #Performance of pair trading return.pairtrading <- Return(price.pair, lag(signal), lag(params$hedge.ratio)) if(!all(is.na(return.pairtrading))){ plot(100 * cumprod(1 + return.pairtrading)) } Simple Create trading Signal Create trading signal by the spread of stock pair. This function provide you the simplest method to create signal in the meaning that it just create signals according to whether spread is over a threshold or not. Simple(spread, spread.entry) spread spread.entry the spread of stock pair. an xts object Entry level of spread. single scalar.

8 8 stock.price This function generates trading singal by spread and it s threshold. #estimate parameters for back test params <- EstimateParametersHistorically(price.pair, period = 180) #create & plot trading signals signal <- Simple(params$spread, 0.05) stock.price sample stock price data This data set gives 3 stock prices data from to as xts object. stock.price Format xts object

9 Index Topic EstimateParametersHistorically EstimateParametersHistorically, 4 Topic EstimateParameters EstimateParameters, 3 Topic IsStationary IsStationary, 5 Topic Return Return, 6 Topic Simple Simple, 7 Topic datasets stock.price, 8 Topic package PairTrading-package, 2 Topic signal Simple, 7 EstimateParameters, 3 EstimateParametersHistorically, 4 IsStationary, 5 PairTrading (PairTrading-package), 2 PairTrading-package, 2 Return, 6 signal (Simple), 7 Simple, 7 stock.price, 8 9

Introduction to pair trading -Based on cointegration- Shinichi Takayanagi Kohta Ishikawa

Introduction to pair trading -Based on cointegration- Shinichi Takayanagi Kohta Ishikawa Inroducion o pair rading -Based on coinegraion- Shinichi Takayanagi Koha Ishikawa 1 Topics 1. Wha is pair rading? 2. Wha is coinegraion? 3. Idea of pair rading based on coinegraion 4. Simulaion by R language

More information

Department of Economics Working Paper

Department of Economics Working Paper Department of Economics Working Paper Rethinking Cointegration and the Expectation Hypothesis of the Term Structure Jing Li Miami University George Davis Miami University August 2014 Working Paper # -

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

CHAPTER III METHODOLOGY

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

More information

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

Exchange Rate Market Efficiency: Across and Within Countries

Exchange Rate Market Efficiency: Across and Within Countries Exchange Rate Market Efficiency: Across and Within Countries Tammy A. Rapp and Subhash C. Sharma This paper utilizes cointegration testing and common-feature testing to investigate market efficiency among

More information

Why the saving rate has been falling in Japan

Why the saving rate has been falling in Japan October 2007 Why the saving rate has been falling in Japan Yoshiaki Azuma and Takeo Nakao Doshisha University Faculty of Economics Imadegawa Karasuma Kamigyo Kyoto 602-8580 Japan Doshisha University Working

More information

Empirical Asset Pricing for Tactical Asset Allocation

Empirical Asset Pricing for Tactical Asset Allocation Introduction Process Model Conclusion Department of Finance The University of Connecticut School of Business stephen.r.rush@gmail.com May 10, 2012 Background Portfolio Managers Want to justify fees with

More information

Asymmetry of Interest Rate Pass-Through in Albania

Asymmetry of Interest Rate Pass-Through in Albania Asymmetry of Interest Rate Pass-Through in Albania Ilda Malile 1 European University of Tirana Doi:10.5901/ajis.2013.v2n9p539 Abstract This study tries to investigate the asymmetry of interest rate pass-through

More information

Asian Economic and Financial Review THE EFFECT OF OIL INCOME ON REAL EXCHANGE RATE IN IRANIAN ECONOMY. Adibeh Savari. Hassan Farazmand.

Asian Economic and Financial Review THE EFFECT OF OIL INCOME ON REAL EXCHANGE RATE IN IRANIAN ECONOMY. Adibeh Savari. Hassan Farazmand. Asian Economic and Financial Review journal homepage: http://www.aessweb.com/journals/5002 THE EFFECT OF OIL INCOME ON REAL EXCHANGE RATE IN IRANIAN ECONOMY Adibeh Savari Department of Economics, Science

More information

The Effects of Oil Shocks on Turkish Macroeconomic Aggregates

The Effects of Oil Shocks on Turkish Macroeconomic Aggregates International Journal of Energy Economics and Policy ISSN: 2146-4553 available at http: www.econjournals.com International Journal of Energy Economics and Policy, 2016, 6(3), 471-476. The Effects of Oil

More information

The Economic Consequences of Dollar Appreciation for US Manufacturing Investment: A Time-Series Analysis

The Economic Consequences of Dollar Appreciation for US Manufacturing Investment: A Time-Series Analysis The Economic Consequences of Dollar Appreciation for US Manufacturing Investment: A Time-Series Analysis Robert A. Blecker Unpublished Appendix to Paper Forthcoming in the International Review of Applied

More information

The Demand for Money in China: Evidence from Half a Century

The Demand for Money in China: Evidence from Half a Century International Journal of Business and Social Science Vol. 5, No. 1; September 214 The Demand for Money in China: Evidence from Half a Century Dr. Liaoliao Li Associate Professor Department of Business

More information

Analysis of the Relation between Treasury Stock and Common Shares Outstanding

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

More information

Financial Econometrics Notes. Kevin Sheppard University of Oxford

Financial Econometrics Notes. Kevin Sheppard University of Oxford Financial Econometrics Notes Kevin Sheppard University of Oxford Monday 15 th January, 2018 2 This version: 22:52, Monday 15 th January, 2018 2018 Kevin Sheppard ii Contents 1 Probability, Random Variables

More information

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

EXAMINING THE RELATIONSHIP BETWEEN SPOT AND FUTURE PRICE OF CRUDE OIL

EXAMINING THE RELATIONSHIP BETWEEN SPOT AND FUTURE PRICE OF CRUDE OIL KAAV INTERNATIONAL JOURNAL OF ECONOMICS,COMMERCE & BUSINESS MANAGEMENT EXAMINING THE RELATIONSHIP BETWEEN SPOT AND FUTURE PRICE OF CRUDE OIL Dr. K.NIRMALA Faculty department of commerce Bangalore university

More information

PUBLIC DEBT AND DEFICIT IN MEXICO: COMMENT* JohnH. Welch. Federal Reserve Bank of Dallas

PUBLIC DEBT AND DEFICIT IN MEXICO: COMMENT* JohnH. Welch. Federal Reserve Bank of Dallas PUBLIC DEBT AND DEFICIT IN MEXICO: A COMMENT* JohnH. Welch Federal Reserve Bank of Dallas Resumen: Este comentario muestra que el balance presupuestario intertemporal de México fue mantenido durante el

More information

An Empirical Analysis of the Relationship between Macroeconomic Variables and Stock Prices in Bangladesh

An Empirical Analysis of the Relationship between Macroeconomic Variables and Stock Prices in Bangladesh Bangladesh Development Studies Vol. XXXIV, December 2011, No. 4 An Empirical Analysis of the Relationship between Macroeconomic Variables and Stock Prices in Bangladesh NASRIN AFZAL * SYED SHAHADAT HOSSAIN

More information

An Econometric Analysis of Impact of Public Expenditure on Industrial Growth in Nigeria

An Econometric Analysis of Impact of Public Expenditure on Industrial Growth in Nigeria International Journal of Economics and Finance; Vol. 6, No. 10; 2014 ISSN 1916-971X E-ISSN 1916-9728 Published by Canadian Center of Science and Education An Econometric Analysis of Impact of Public Expenditure

More information

Surasak Choedpasuporn College of Management, Mahidol University. 20 February Abstract

Surasak Choedpasuporn College of Management, Mahidol University. 20 February Abstract Scholarship Project Paper 2014 Statistical Arbitrage in SET and TFEX : Pair Trading Strategy from Threshold Co-integration Model Surasak Choedpasuporn College of Management, Mahidol University 20 February

More information

ARE EXPORTS AND IMPORTS COINTEGRATED? EVIDENCE FROM NINE MENA COUNTRIES* HUSEIN, Jamal ** Abstract

ARE EXPORTS AND IMPORTS COINTEGRATED? EVIDENCE FROM NINE MENA COUNTRIES* HUSEIN, Jamal ** Abstract ARE EXPORTS AND IMPORTS COINTEGRATED? EVIDENCE FROM NINE MENA COUNTRIES* HUSEIN, Jamal ** Abstract The aim of this article is to examine the long-run convergence (cointegration) between exports and imports

More information

Jet Fuel-Heating Oil Futures Cross Hedging -Classroom Applications Using Bloomberg Terminal

Jet Fuel-Heating Oil Futures Cross Hedging -Classroom Applications Using Bloomberg Terminal Jet Fuel-Heating Oil Futures Cross Hedging -Classroom Applications Using Bloomberg Terminal Yuan Wen 1 * and Michael Ciaston 2 Abstract We illustrate how to collect data on jet fuel and heating oil futures

More information

Working Paper Yash P. Mehra* Federal Reserve Bank of Richmond P.O. Box Richmond, VA April 1989

Working Paper Yash P. Mehra* Federal Reserve Bank of Richmond P.O. Box Richmond, VA April 1989 Working Paper 89-1 Wage Growth and the Inflation Process: An Empirical Note Yash P. Mehra* Federal Reserve Bank of Richmond P.O. Box 27622 Richmond, VA 23261 804-697-8247 April 1989 *Research Officer and

More information

THE IMPACT OF IMPORT ON INFLATION IN NAMIBIA

THE IMPACT OF IMPORT ON INFLATION IN NAMIBIA European Journal of Business, Economics and Accountancy Vol. 5, No. 2, 207 ISSN 2056-608 THE IMPACT OF IMPORT ON INFLATION IN NAMIBIA Mika Munepapa Namibia University of Science and Technology NAMIBIA

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

A Time Series Model for the Romanian Stock Market

A Time Series Model for the Romanian Stock Market European Research Studies, Volume XI, Special Issue (3-4) 2007 A Time Series Model for the Romanian Stock Market By Eleftherios Thalassinos 1 Diana-Mihaela Pociov li teanu 2 Abstract: The purpose of this

More information

Is the real effective exchange rate biased against the PPP hypothesis?

Is the real effective exchange rate biased against the PPP hypothesis? MPRA Munich Personal RePEc Archive Is the real effective exchange rate biased against the PPP hypothesis? Daniel Ventosa-Santaulària and Frederick Wallace and Manuel Gómez-Zaldívar Centro de Investigación

More information

What the hell statistical arbitrage is?

What the hell statistical arbitrage is? What the hell statistical arbitrage is? Statistical arbitrage is the mispricing of any given security according to their expected value, base on the mathematical analysis of its historic valuations. Statistical

More information

Saving, investment and capital mobility in African countries

Saving, investment and capital mobility in African countries U.S. Department of the Treasury From the SelectedWorks of John Thornton 2007 Saving, investment and capital mobility in African countries John Thornton Olumuyiwa S Adedeji Available at: https://works.bepress.com/john_thornton/7/

More information

The Impact of Monetary Policy on Malaysian Deposit Rates: Comparative Analysis of Conventional and Islamic Finances

The Impact of Monetary Policy on Malaysian Deposit Rates: Comparative Analysis of Conventional and Islamic Finances Review of Integrative Business and Economics Research, Vol. 6, Issue 3 32 The Impact of Monetary Policy on Malaysian Deposit Rates: Comparative Analysis of Conventional and Islamic Finances Takayasu Ito

More information

CAN MONEY SUPPLY PREDICT STOCK PRICES?

CAN MONEY SUPPLY PREDICT STOCK PRICES? 54 JOURNAL FOR ECONOMIC EDUCATORS, 8(2), FALL 2008 CAN MONEY SUPPLY PREDICT STOCK PRICES? Sara Alatiqi and Shokoofeh Fazel 1 ABSTRACT A positive causal relation from money supply to stock prices is frequently

More information

A study on the long-run benefits of diversification in the stock markets of Greece, the UK and the US

A study on the long-run benefits of diversification in the stock markets of Greece, the UK and the US A study on the long-run benefits of diversification in the stock markets of Greece, the and the US Konstantinos Gillas * 1, Maria-Despina Pagalou, Eleni Tsafaraki Department of Economics, University of

More information

Analysis of monetary policy variables with stock returns using var frame work

Analysis of monetary policy variables with stock returns using var frame work 2017; 3(2): 135-139 ISSN Print: 2394-7500 ISSN Online: 2394-5869 Impact Factor: 5.2 IJAR 2017; 3(1): 135-139 www.allresearchjournal.com Received: 21-11-2016 Accepted: 22-12-2016 Dr. Sarvamangala Coordinator,

More information

International journal of Science Commerce and Humanities Volume No 2 No 1 January 2014

International journal of Science Commerce and Humanities Volume No 2 No 1 January 2014 Are Complementary Relationship between Public Physical Capital Formation and Private Physical Capital Formation truly Exist and stay unchanged in Malaysia? ANDERSON SENGLI Department of Economics, Faculty

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

AN EMPIRICAL ANALYSIS OF THE PUBLIC DEBT RELEVANCE TO THE ECONOMIC GROWTH OF THE USA

AN EMPIRICAL ANALYSIS OF THE PUBLIC DEBT RELEVANCE TO THE ECONOMIC GROWTH OF THE USA AN EMPIRICAL ANALYSIS OF THE PUBLIC DEBT RELEVANCE TO THE ECONOMIC GROWTH OF THE USA Petar Kurečić University North, Koprivnica, Trg Žarka Dolinara 1, Croatia petar.kurecic@unin.hr Marin Milković University

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

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

Efficiency of Commodity Markets: A Study of Indian Agricultural Commodities

Efficiency of Commodity Markets: A Study of Indian Agricultural Commodities Volume 7, Issue 2, August 2014 Efficiency of Commodity Markets: A Study of Indian Agricultural Commodities Dr. Irfan ul haq Lecturer (Academic Arrangement) Govt. Degree College Shopian J &K Dr K Chandrasekhara

More information

2.2 Why Statistical Arbitrage Trades Break Down

2.2 Why Statistical Arbitrage Trades Break Down 2.2 Why Statistical Arbitrage Trades Break Down The way a pairs trade is supposed to work is that a trade entry is signaled by a significant divergence in the spread between the prices of a correlated

More information

Are Greek budget deficits 'too large'? National University of Ireland, Galway

Are Greek budget deficits 'too large'? National University of Ireland, Galway Provided by the author(s) and NUI Galway in accordance with publisher policies. Please cite the published version when available. Title Are Greek budget deficits 'too large'? Author(s) Fountas, Stilianos

More information

The Impact of FDI on Economic Growth under Foreign Trade Regimes: A Case Study of Pakistan

The Impact of FDI on Economic Growth under Foreign Trade Regimes: A Case Study of Pakistan The Pakistan Development Review 43 : 4 Part II (Winter 2004) pp. 707 718 The Impact of FDI on Economic Growth under Foreign Trade Regimes: A Case Study of Pakistan ZESHAN ATIQUE, MOHSIN HASNAIN AHMAD,

More information

Package SimCorMultRes

Package SimCorMultRes Package SimCorMultRes February 15, 2013 Type Package Title Simulates Correlated Multinomial Responses Version 1.0 Date 2012-11-12 Author Anestis Touloumis Maintainer Anestis Touloumis

More information

Foreign Capital inflows and Domestic Saving in Pakistan: Cointegration techniques and Error Correction Modeling

Foreign Capital inflows and Domestic Saving in Pakistan: Cointegration techniques and Error Correction Modeling Foreign Capital inflows and Domestic Saving in Pakistan: Cointegration techniques and Error Correction Modeling MOHSIN HASNAIN AHMAD Applied Economics Research Centre University of Karachi & DR.QAZI MASOOD

More information

Weak Policy in an Open Economy: The US with a Floating Exchange Rate, Henry Thompson

Weak Policy in an Open Economy: The US with a Floating Exchange Rate, Henry Thompson Weak Policy in an Open Economy: The US with a Floating Exchange Rate, 1974-2009 Henry Thompson Auburn University Economic Analysis and Policy (2012) This paper examines the effectiveness of US macroeconomic

More information

Fiscal sustainability: a note for Cabo Verde

Fiscal sustainability: a note for Cabo Verde MPRA Munich Personal RePEc Archive Fiscal sustainability: a note for Cabo Verde Cassandro Mendes School of Business and Governance (ENG) University of Cabo Verde July 2015 Online at http://mpra.ub.uni-muenchen.de/65552/

More information

Godwin Nwaobi Quantiative Economic Research Bureau. Abstract

Godwin Nwaobi Quantiative Economic Research Bureau. Abstract Money and output interaction in Nigeria: an econometric investigation using multivariate cointegration technique Godwin Nwaobi Quantiative Economic Research Bureau Abstract This paper derives and estimates

More information

British Journal of Economics, Finance and Management Sciences 29 July 2017, Vol. 14 (1)

British Journal of Economics, Finance and Management Sciences 29 July 2017, Vol. 14 (1) British Journal of Economics, Finance and Management Sciences 9 Futures Market Efficiency: Evidence from Iran Ali Khabiri PhD in Financial Management Faculty of Management University of Tehran E-mail:

More information

Application of Structural Breakpoint Test to the Correlation Analysis between Crude Oil Price and U.S. Weekly Leading Index

Application of Structural Breakpoint Test to the Correlation Analysis between Crude Oil Price and U.S. Weekly Leading Index Open Journal of Business and Management, 2016, 4, 322-328 Published Online April 2016 in SciRes. http://www.scirp.org/journal/ojbm http://dx.doi.org/10.4236/ojbm.2016.42034 Application of Structural Breakpoint

More information

Inflation and inflation uncertainty in Argentina,

Inflation and inflation uncertainty in Argentina, U.S. Department of the Treasury From the SelectedWorks of John Thornton March, 2008 Inflation and inflation uncertainty in Argentina, 1810 2005 John Thornton Available at: https://works.bepress.com/john_thornton/10/

More information

Modeling Exchange Rate Volatility using APARCH Models

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

More information

Testing the Stability of Demand for Money in Tonga

Testing the Stability of Demand for Money in Tonga MPRA Munich Personal RePEc Archive Testing the Stability of Demand for Money in Tonga Saten Kumar and Billy Manoka University of the South Pacific, University of Papua New Guinea 12. June 2008 Online at

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

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

Cointegration Tests and the Long-Run Purchasing Power Parity: Examination of Six Currencies in Asia

Cointegration Tests and the Long-Run Purchasing Power Parity: Examination of Six Currencies in Asia Volume 23, Number 1, June 1998 Cointegration Tests and the Long-Run Purchasing Power Parity: Examination of Six Currencies in Asia Ananda Weliwita ** 2 The validity of the long-run purchasing power parity

More information

FOREIGN INVESTMENT INFLOWS AND INDUSTRIAL SECTOR GROWTH IN INDIA- AN EMPIRICAL STUDY

FOREIGN INVESTMENT INFLOWS AND INDUSTRIAL SECTOR GROWTH IN INDIA- AN EMPIRICAL STUDY FOREIGN INVESTMENT INFLOWS AND INDUSTRIAL SECTOR GROWTH IN INDIA- AN EMPIRICAL STUDY Mousumi Bhattacharya 1 ABSTRACT: The paper aims to study the causal relationship between foreign investment inflows

More information

REIT ETFs performance during the financial crisis

REIT ETFs performance during the financial crisis ABSTRACT REIT ETFs performance during the financial crisis Stoyu I. Ivanov San José State University In this study the disintegration hypothesis is tested. It is examined whether the Vanguard Real Estate

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

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

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

Dividend, investment and the direction of causality

Dividend, investment and the direction of causality Working Paper 2/2011 Dividend, investment and the direction of causality P S Sanju P S Nirmala M Ramachandran DEPARTMENT OF ECONOMICS PONDICHERRY UNIVERSITY March 2011 system28 [Type the company name]

More information

The Efficiency of Commodity Futures Market in Thailand. Santi Termprasertsakul, Srinakharinwirot University, Bangkok, Thailand

The Efficiency of Commodity Futures Market in Thailand. Santi Termprasertsakul, Srinakharinwirot University, Bangkok, Thailand The Efficiency of Commodity Futures Market in Thailand Santi Termprasertsakul, Srinakharinwirot University, Bangkok, Thailand The European Business & Management Conference 2016 Official Conference Proceedings

More information

Macroeconomic Shocks and Housing Market in Turkey: SVAR Approach 1

Macroeconomic Shocks and Housing Market in Turkey: SVAR Approach 1 IOSR Journal of Economics and Finance (IOSR-JEF) e-issn: 2321-5933, p-issn: 2321-5925.Volume 8, Issue 5 Ver. II (Sep.- Oct.2017), PP 80-84 www.iosrjournals.org Macroeconomic Shocks and Housing Market in

More information

Relationship between Inflation and Stock Returns Evidence from BRICS markets using Panel Co integration Test

Relationship between Inflation and Stock Returns Evidence from BRICS markets using Panel Co integration Test Relationship between Inflation and Stock Returns Evidence from BRICS markets using Panel Co integration Test Vanita Tripathi (Corresponding author) Department of Commerce, Delhi School of Economics, University

More information

AN ANALISYS OF ECONOMIC GROWTH AND INFLATION IN SOUTH AFRICA. Mr Kotikoti Tleane 1. University of Limpopo.

AN ANALISYS OF ECONOMIC GROWTH AND INFLATION IN SOUTH AFRICA. Mr Kotikoti Tleane 1. University of Limpopo. AN ANALISYS OF ECONOMIC GROWTH AND INFLATION IN SOUTH AFRICA Mr Kotikoti Tleane 1 University of Limpopo Koti.tleane@gmail.com Prof Richard Ilorah 2 Mr Stephen Zhanje 3 University of Limpopo richard.ilorah@ul.ac.za

More information

A Revised Tobin Effect from Inflation: Relative Input Price and Capital Ratio Realignments, USA and UK,

A Revised Tobin Effect from Inflation: Relative Input Price and Capital Ratio Realignments, USA and UK, Economica (2003) 70, 439 450 A Revised Tobin Effect from Inflation: Relative Input Price and Capital Ratio Realignments, USA and UK, 1959 1999 By MAX GILLMAN{ and ANTON NAKOV{ { Central European University

More information

A Study on the Performance of Symmetric and Asymmetric GARCH Models in Estimating Stock Returns Volatility

A Study on the Performance of Symmetric and Asymmetric GARCH Models in Estimating Stock Returns Volatility Vol., No. 4, 014, 18-19 A Study on the Performance of Symmetric and Asymmetric GARCH Models in Estimating Stock Returns Volatility Mohd Aminul Islam 1 Abstract In this paper we aim to test the usefulness

More information

Unbiasedness, efficiency and cointegration in the Brazilian live cattle futures market

Unbiasedness, efficiency and cointegration in the Brazilian live cattle futures market 66 Unbiasedness, efficiency and cointegration in the Brazilian live cattle futures market Recebimento dos originais: 22/10/2013 Aceitação para publicação: 18/10/2015 Marcelo da Silva Bego Doutorando em

More information

REAL EXCHANGE RATES AND REAL INTEREST DIFFERENTIALS: THE CASE OF A TRANSITIONAL ECONOMY - CAMBODIA

REAL EXCHANGE RATES AND REAL INTEREST DIFFERENTIALS: THE CASE OF A TRANSITIONAL ECONOMY - CAMBODIA business vol 12 no2 Update 2Feb_Layout 1 5/4/12 2:26 PM Page 101 International Journal of Business and Society, Vol. 12 No. 2, 2011, 101-108 REAL EXCHANGE RATES AND REAL INTEREST DIFFERENTIALS: THE CASE

More information

Testing Forward Rate Unbiasedness in India an Econometric Analysis of Indo-US Forex Market

Testing Forward Rate Unbiasedness in India an Econometric Analysis of Indo-US Forex Market International Research Journal of Finance and Economics ISSN 1450-2887 Issue 12 (2007) EuroJournals Publishing, Inc. 2007 http://www.eurojournals.com/finance.htm Testing Forward Rate Unbiasedness in India

More information

Cointegration, structural breaks and the demand for money in Bangladesh

Cointegration, structural breaks and the demand for money in Bangladesh MPRA Munich Personal RePEc Archive Cointegration, structural breaks and the demand for money in Bangladesh B. Bhaskara Rao and Saten Kumar University of the South Pacific 16. January 2007 Online at http://mpra.ub.uni-muenchen.de/1546/

More information

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

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

More information

Are Devaluations Contractionary in LDCs?

Are Devaluations Contractionary in LDCs? Volume 23, Number 1, June 1998 Are Devaluations Contractionary in LDCs? Mohsen Bahmani-Oskooee ** 2 Devaluation is said to stimulate the aggregate demand by increasing its net export component. On the

More information

Journal of Financial and Strategic Decisions Volume 12 Number 2 Fall 1999

Journal of Financial and Strategic Decisions Volume 12 Number 2 Fall 1999 Journal of Financial and Strategic Decisions Volume 12 Number 2 Fall 1999 INTERNATIONAL EVIDENCE ON THE CO-MOVEMENTS BETWEEN BOND YIELDS AND STOCK RETURNS: 1984-1994 A.T. Aburachis * and Richard J. Kish

More information

DOES GOVERNMENT SPENDING GROWTH EXCEED ECONOMIC GROWTH IN SAUDI ARABIA?

DOES GOVERNMENT SPENDING GROWTH EXCEED ECONOMIC GROWTH IN SAUDI ARABIA? International Journal of Economics, Commerce and Management United Kingdom Vol. IV, Issue 2, February 2016 http://ijecm.co.uk/ ISSN 2348 0386 DOES GOVERNMENT SPENDING GROWTH EXCEED ECONOMIC GROWTH IN SAUDI

More information

THE INFLATION - INFLATION UNCERTAINTY NEXUS IN ROMANIA

THE INFLATION - INFLATION UNCERTAINTY NEXUS IN ROMANIA THE INFLATION - INFLATION UNCERTAINTY NEXUS IN ROMANIA Daniela ZAPODEANU University of Oradea, Faculty of Economic Science Oradea, Romania Mihail Ioan COCIUBA University of Oradea, Faculty of Economic

More information

MONEY AND ECONOMIC ACTIVITY: SOME INTERNATIONAL EVIDENCE. Abstract

MONEY AND ECONOMIC ACTIVITY: SOME INTERNATIONAL EVIDENCE. Abstract MONEY AND ECONOMIC ACTIVITY: SOME INTERNATIONAL EVIDENCE Mehdi S. Monadjemi * School of Economics University of New South Wales Sydney 252 Australia email: m.monadjemi@unsw.edu.au Hyeon-seung Huh Melbourne

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

Testing the Degree of Openness of the Greek Capital Account: A Cointegration Analysis

Testing the Degree of Openness of the Greek Capital Account: A Cointegration Analysis European Research Studies Volume V, Issue (3-4), 2002, pp. 59-69 Testing the Degree of Openness of the Greek Capital Account: A Cointegration Analysis John M. Paleologos * University of Piraeus Spyros

More information

An Examination of the Stability of Narrow Money Demand Function in Nigeria

An Examination of the Stability of Narrow Money Demand Function in Nigeria Vol. 3, No. 4, 2014, 252-260 An Examination of the Stability of Narrow Money Demand Function in Nigeria Imimole Benedict 1 Abstract This paper has investigated the narrow money demand function and its

More information

The Balassa-Samuelson Effect and The MEVA G10 FX Model

The Balassa-Samuelson Effect and The MEVA G10 FX Model The Balassa-Samuelson Effect and The MEVA G10 FX Model Abstract: In this study, we introduce Danske s Medium Term FX Evaluation model (MEVA G10 FX), a framework that falls within the class of the Behavioural

More information

The relationship amongst public debt and economic growth in developing country case of Tunisia

The relationship amongst public debt and economic growth in developing country case of Tunisia The relationship amongst public debt and economic growth in developing country case of Tunisia FERHI Sabrine Department of economic, FSEGT Faculty of Economics and Management Tunis Campus EL MANAR 1 sabrineferhi@yahoo.fr

More information

Institute of Economic Research Working Papers. No. 63/2017. Short-Run Elasticity of Substitution Error Correction Model

Institute of Economic Research Working Papers. No. 63/2017. Short-Run Elasticity of Substitution Error Correction Model Institute of Economic Research Working Papers No. 63/2017 Short-Run Elasticity of Substitution Error Correction Model Martin Lukáčik, Karol Szomolányi and Adriana Lukáčiková Article prepared and submitted

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

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

competition for a country s exports at the global scene. Thus, in this situation, a successful real devaluation 2 can improve and enhance export earni

competition for a country s exports at the global scene. Thus, in this situation, a successful real devaluation 2 can improve and enhance export earni Estimating Export Equations for Developing Countries Sanjesh Kumar * The paper uses annual time series data to estimate the price and income elasticities of export demand for three developing countries

More information

Model : ASI = C + MONSUP + MONSUP(-1) + INTRATE + INFLRATE. Variable Coefficient Std. Error t-statistic Prob.

Model : ASI = C + MONSUP + MONSUP(-1) + INTRATE + INFLRATE. Variable Coefficient Std. Error t-statistic Prob. REFERANCE Abdalla, I. S. A. and V. Murinde (1997), Exchange Rate and Stock Price Interactions in Emerging Financial Markets: Evidence on India, Korea, Pakistan, and Philippines, Applied Financial Economics

More information

Integration of Financial Markets in India: An Empirical Analysis 1

Integration of Financial Markets in India: An Empirical Analysis 1 Integration of Financial Markets in India: An Empirical Analysis 1 Pradyot Ranjan Jena * K. N. Murty + And V. Narasimhan # Abstract During the last decade, significant progress was achieved in terms of

More information

Impact of FDI on Economic Development: A Causality Analysis for Singapore,

Impact of FDI on Economic Development: A Causality Analysis for Singapore, International Journal of Economic Sciences and Applied Research 4 (1): 7-17 Impact of FDI on Economic Development: A Causality Analysis for Singapore, 1976 2002 Mete Feridun 1 and Yaya Sissoko 2 Abstract

More information

An Empirical Study on the Determinants of Dollarization in Cambodia *

An Empirical Study on the Determinants of Dollarization in Cambodia * An Empirical Study on the Determinants of Dollarization in Cambodia * Socheat CHIM Graduate School of Economics, Osaka University 1-7 Machikaneyama, Toyonaka, Osaka, 560-0043, Japan E-mail: chimsocheat3@yahoo.com

More information

Investigating Causal Relationship between Indian and American Stock Markets , Tamilnadu, India

Investigating Causal Relationship between Indian and American Stock Markets , Tamilnadu, India Investigating Causal Relationship between Indian and American Stock Markets M.V.Subha 1, S.Thirupparkadal Nambi 2 1 Associate Professor MBA, Department of Management Studies, Anna University, Regional

More information

Contribution of transport to economic growth and productivity in New Zealand

Contribution of transport to economic growth and productivity in New Zealand Australasian Transport Research Forum 2011 Proceedings 28 30 September 2011, Adelaide, Australia Publication website: http://www.patrec.org/atrf.aspx Contribution of transport to economic growth and productivity

More information

SUSTAINABILITY PLANNING POLICY COLLECTING THE REVENUES OF THE TAX ADMINISTRATION

SUSTAINABILITY PLANNING POLICY COLLECTING THE REVENUES OF THE TAX ADMINISTRATION 2007 2008 2009 2010 Year IX, No.12/2010 127 SUSTAINABILITY PLANNING POLICY COLLECTING THE REVENUES OF THE TAX ADMINISTRATION Prof. Marius HERBEI, PhD Gheorghe MOCAN, PhD West University, Timişoara I. Introduction

More information

GRANGER CAUSALITY RELATION BETWEEN INTEREST RATES AND STOCK MARKETS: EVIDENCE FROM EMERGING MARKETS

GRANGER CAUSALITY RELATION BETWEEN INTEREST RATES AND STOCK MARKETS: EVIDENCE FROM EMERGING MARKETS GRANGER CAUSALITY RELATION BETWEEN INTEREST RATES AND STOCK MARKETS: EVIDENCE FROM EMERGING MARKETS Assoc. Prof. Dilek Leblebici Teker Assoc. Prof. Elcin (Corresponding Author) Isık University Istanbul

More information

The efficiency of emerging stock markets: empirical evidence from the South Asian region

The efficiency of emerging stock markets: empirical evidence from the South Asian region University of Wollongong Research Online Faculty of Commerce - Papers (Archive) Faculty of Business 2007 The efficiency of emerging stock markets: empirical evidence from the South Asian region Arusha

More information

The Feldstein Horioka Puzzle and structural breaks: evidence from the largest countries of Asia. Natalya Ketenci 1. (Yeditepe University, Istanbul)

The Feldstein Horioka Puzzle and structural breaks: evidence from the largest countries of Asia. Natalya Ketenci 1. (Yeditepe University, Istanbul) The Feldstein Horioka Puzzle and structural breaks: evidence from the largest countries of Asia. Abstract Natalya Ketenci 1 (Yeditepe University, Istanbul) The purpose of this paper is to investigate the

More information

Example of a model for non-stationary variables: Lead-Lag Relationships btw Spot and Futures prices

Example of a model for non-stationary variables: Lead-Lag Relationships btw Spot and Futures prices Example of a model for non-stationary variables: Lead-Lag Relationships btw Spot and Futures prices Background We expect changes in the spot price of a financial asset and its corresponding futures price

More information

σ e, which will be large when prediction errors are Linear regression model

σ e, which will be large when prediction errors are Linear regression model Linear regression model we assume that two quantitative variables, x and y, are linearly related; that is, the population of (x, y) pairs are related by an ideal population regression line y = α + βx +

More information

Fiscal Performance and External Public Debt Sustainability: A Case Study of Pakistan

Fiscal Performance and External Public Debt Sustainability: A Case Study of Pakistan Fiscal Performance and External Public Debt Sustainability: A Case Study of Pakistan Atia Hussain 1 Alvina Sabah Idrees 2* 1.Graduate student, Department of Economics, GC University Lahore, Pakistan 2.Lecturer,

More information