Archive

Tag Archives: UIP

In this post, a series of standard linear models will be fitted to a small selection of fundamental economic data I managed to scrape off the internet. The In-sample forecast performance of the Purchasing Power Parity model, Uncovered interest parity model, Dornbusch-Frankel model (with share prices) and the Bayesian averaging model shall be assessed using the standard RMSE measure of forecast accuracy. Requisite data was collected for two currency pairs : GBP/USD and CAD/USD. Instead of differentiating between different types of non-stationarity in the time series of the variables, I simply fitted the model with a variety of assumptions and plotted the results. In both cases, the more complicated Vector Error Correction specifications of the candidate models are found to be inferior to the simpler Vector Autoregression models. The Bayesian Model Averaging technique provided the lowest RMSE for CAD/USD and the second best measure for the GBP/USD pair, a result that speaks in favour of the difficulty encountered when linking exchange rate returns to economic fundamentals with any consistency.

Given model uncertainty in the number of underlying candidate models, the BMA technique helps us select different combinations of underlying models based on performance. By averaging over many different competing models, BMA incorporates model uncertainty into conclusions about parameters and prediction.For k potential variables, the BMA technique implies estimating 2^k variable combinations and thus 2^K models. The model weights for this averaging stem from posterior model probabilities that arise from Bayes’ theorem.

Click here for more information on BMA

The underlying model for the BMA method is specified as : log (FX) – log (FX-1) = Xβ+εt where X is a matrix of exchange rate determinants. For the CAD/USD currency pair, X  contains the following variables (some variables are defined relative to their US counterparts)  :

  • [1] Canadian 3- month TBill (CADTBILL)
  • [2] Canadian Industrial Production (CANINDP)
  • [3] Canadian Inflation (CANINFL)
  • [4] Canadian Money Supply (CANMSUPP)
  • [5] Canadian Share price index (CANSPIND)
  • [6] Candian Price Index (CANPI)
  • [7] Relative T-bills (REL.TBILL)
  • [8] Relative Ind. production (REL.Ind.Prod)
  • [9] Relative Money Supply (REL.M.SUPPLY)
  • [10] Relative Inflation (REL.Infl)
  • [11] Relative Share price (REL.Stock.P)
  • [12] Change in Canadian 3- month TBill (CADTBILL..diff)
  • [13] Change in Canadian Industrial Production (CANINDP.diff)
  • [14] Change in Canadian Inflation (CANINFL..diff)
  • [15] Change in Canadian Money Supply (CANMSUPP..diff)
  • [16] Change in Canadian Share price index (CANSPIND..diff)
  • [17] Change in Candian Price Index (CANPI..diff)
  • [18] Crude Oil (Oil)
  • [19] Change in Crude Oil (Chg.OIL)

Let’s first load the data and plot the demeaned logarithmic data for the 2 currency pairs and 3 countries.


setwd("C:/University of Warwick/R experiments/FxLin")

library(quantmod)
library(timeSeries)
library(RColorBrewer)
library(plotrix)
library(rpanel)
library(symbols)
library(reshape)
library(fUnitRoots)
library(vars)
library(BMS)

#Download and set up data#######################################################

us.orig<-(as.matrix(read.table('USDAT.csv',header=T,sep=',',row.names=1)))
uk.orig<-(as.matrix(read.table('UKDAT.csv',header=T,sep=',',row.names=1)))
ca.orig<-(as.matrix(read.table('CADDAT.csv',header=T,sep=',',row.names=1)))
oil.orig<-(as.matrix(read.table('OILDAT.csv',header=T,sep=',',row.names=1)))

txt<-c('3-month TBILL','Ind.Production','Inflation','Money Supply','Stock Index','Price Level')
rmse
################################################################################

#Visualise Data#################################################################

windows(width=14,height=12)
layout(matrix(c(1,1,2,2,3,1,1,2,2,4,5,6,7,8,9),nrow=5,ncol=3,byrow=F))
par(mai=c(0,0,0,0))

plot(ylim=c(min(ca.orig[,1]),max(ca.orig[,1])+0.065),ca.orig[,1],type='l',col='blue',lwd=1.5,xlab='',xaxt='n',ylab='')
grid(col='black')
rect(-15,max(ca.orig[,1])+0.05,length(ca.orig),max(ca.orig[,1])+1,density=NA,col='darkblue',lty=1,border='black')
text(adj=0,col="white",200,max(ca.orig[,1])+0.065,':: Candadian Dollar / US Dollar',font=2,cex=1)
legend(bty='n','bottomleft',legend=c('US Data','CAD Data','GBP Data','Global'),fill=c('green','darkblue','red','darkorange'),ncol=1,cex=1)

#par(mai=c(0.15,0,0,0))
plot(ylim=c(min(uk.orig[,1]),max(uk.orig[,1])+0.065),uk.orig[,1],type='l',col='red',lwd=1.5,xlab='',xaxt='n',ylab='')
grid(col='black')
rect(-15,max(uk.orig[,1])+0.05,length(uk.orig),max(uk.orig[,1])+1,density=NA,col='darkred',lty=1,border='black')
text(adj=0,col="white",200,max(uk.orig[,1])+0.065,':: Sterling Pounds / US Dollar',font=2,cex=1)

par(mai=c(0,0,0.15,0))
for(i in 2:7){
  plot(main=txt[i-1],cex.main=0.85,ca.orig[,i],col='blue',type='l',xlab='',xaxt='n',ylab='',yaxt='n',lwd=1.5,ylim=c(min(ca.orig[,i]),max(ca.orig[,i])+0.1))
  lines(uk.orig[,i],col='red',lwd=1.5)
  lines(us.orig[,i-1],col='green',lwd=1.5)
}

par(mai=c(0,0,0.15,0))
plot(main='Crude oil index',cex.main=0.85,oil.orig[,1],col='dark orange',type='l',xlab='',xaxt='n',ylab='',yaxt='n',lwd=1.5)

kk

For the high quality image click here

After ascertaining nonstationarity for all the variables, the aforementioned models were fitted to the data. A selection of the code which deals with the BMA and a plot of the in-sample fitted values follows. The code is far from elegant but I am not fussed as long as it works.

i


#Bayesian Model Averaging####################################################

cad.bma.dat<-data.frame(CADUSD=cad.diff[1:313,1],cbind(ca.orig[1:313,2:7],cad.fundamentals[1:313,],cad.diff[1:313,2:7],Oil=oil.orig[1:313,],Chg.OIL=diff(oil.orig,1)[1:313]))
cad.bma.res = bms(cad.bma.dat, mprior = "uniform", g = "HQ",nmodel=2000,burn = 50000)
image(cad.bma.res,col=cm.colors(3),cex.main=0.75,cex.axis=0.75)
plotModelsize(cad.bma.res)
pdensa = pred.density(cad.bma.res, newdata = cad.bma.dat[1:313,2:20])
plot(cad.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='')
lines(pdensa$fit,col='green')

uk.bma.dat<-data.frame(UKUSD=uk.diff[1:313,1],cbind(uk.orig[1:313,2:7],uk.fundamentals[1:313,],uk.diff[1:313,2:7],Oil=oil.orig[1:313,],Chg.OIL=diff(oil.diff,1)[1:313,]))
uk.bma.res = bms(uk.bma.dat, mprior = "uniform", g = "HQ",nmodel=2000,burn = 50000)
image(uk.bma.res,col=cm.colors(3),cex.main=0.75,cex.axis=0.75)
plotModelsize(uk.bma.res)
pdensb = pred.density(uk.bma.res, newdata = uk.bma.dat[1:313,2:20])
plot(uk.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='')
lines(pdensb$fit,col='green')

#############################################################################

#In sample Model Predictions#################################################

windows(width=14,height=12)
layout(matrix(c(1,2,3,4,5,6,7,8,8),nrow=3,ncol=3,byrow=F))
par(mai=c(0.05,0,0.15,0.05))
plot(main='Uncovered Interest Parity VAR',cex.main=0.85,cad.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='')
lines(fitted(cad.uip.var.b)[,1],col='green')
lines(fitted(cad.uip.var.c)[,1],col='blue')
lines(fitted(cad.uip.var.t)[,1],col='red')
legend(bty='n','bottom',legend=c('Both','Constant','Trend'),fill=c('green','blue','red'),ncol=3,cex=1)

plot(main='Purchasing Power Parity VAR',cex.main=0.85,cad.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='')
lines(fitted(cad.ppp.var.b)[,1],col='green')
lines(fitted(cad.ppp.var.c)[,1],col='blue')
lines(fitted(cad.ppp.var.t)[,1],col='red')
legend(bty='n','bottom',legend=c('Both','Constant','Trend'),fill=c('green','blue','red'),ncol=3,cex=1)

plot(main='Fundamentals VAR',cex.main=0.85,cad.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='')
lines(fitted(cad.fund.var.b)[,1],col='green')
lines(fitted(cad.fund.var.c)[,1],col='blue')
lines(fitted(cad.fund.var.t)[,1],col='red')
legend(bty='n','bottom',legend=c('Both','Constant','Trend'),fill=c('green','blue','red'),ncol=3,cex=1)

plot(main='Uncovered Interest Parity VECM',cex.main=0.85,cad.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='',yaxt='n')
lines(fitted(cad.uip.vecm.est.bc)[,1],col='green')
lines(fitted(cad.uip.vecm.est.cc)[,1],col='blue')
lines(fitted(cad.uip.vecm.est.tt)[,1],col='red')
lines(fitted(cad.uip.vecm.est.tc)[,1],col='dark orange')
legend(bty='n','bottom',legend=c('B/con','C/con','T/trend','T/con'),fill=c('green','blue','red','dark orange'),ncol=4,cex=1)

plot(main='Purchasing Power Parity VAR',cex.main=0.85,cad.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='',yaxt='n')
lines(fitted(cad.ppp.vecm.est.bc)[,1],col='green')
lines(fitted(cad.ppp.vecm.est.cc)[,1],col='blue')
lines(fitted(cad.ppp.vecm.est.tt)[,1],col='red')
lines(fitted(cad.ppp.vecm.est.tc)[,1],col='dark orange')
legend(bty='n','bottom',legend=c('B/con','C/con','T/trend','T/con'),fill=c('green','blue','red','dark orange'),ncol=4,cex=1)

plot(main='Fundamentals VECM',cex.main=0.85,cad.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='',yaxt='n')
lines(fitted(cad.fund.vecm.est.bc)[,1],col='green')
lines(fitted(cad.fund.vecm.est.cc)[,1],col='blue')
lines(fitted(cad.fund.vecm.est.tt)[,1],col='red')
lines(fitted(cad.fund.vecm.est.tc)[,1],col='dark orange')
legend(bty='n','bottom',legend=c('B/con','C/con','T/trend','T/con'),fill=c('green','blue','red','dark orange'),ncol=4,cex=1)

plot(main='Bayesian Model Averaging',cex.main=0.85,cad.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='',yaxt='n')
lines(pdensa$fit,col='purple')

c.u.v.b<-rmse(cad.diff[1:310,1],fitted(cad.uip.var.b)[,1])
c.u.v.c<-rmse(cad.diff[1:310,1],fitted(cad.uip.var.c)[,1])
c.u.v.t<-rmse(cad.diff[1:310,1],fitted(cad.uip.var.t)[,1])

c.u.ve.bc<-rmse(cad.diff[1:310,1],fitted(cad.uip.vecm.est.bc)[,1])
c.u.ve.cc<-rmse(cad.diff[1:310,1],fitted(cad.uip.vecm.est.cc)[,1])
c.u.ve.tt<-rmse(cad.diff[1:310,1],fitted(cad.uip.vecm.est.tt)[,1])
c.u.ve.tc<-rmse(cad.diff[1:310,1],fitted(cad.uip.vecm.est.tc)[,1])

c.p.v.b<-rmse(cad.diff[1:311,1],fitted(cad.ppp.var.b)[,1])
c.p.v.c<-rmse(cad.diff[1:311,1],fitted(cad.ppp.var.c)[,1])
c.p.v.t<-rmse(cad.diff[1:311,1],fitted(cad.ppp.var.t)[,1])

c.p.ve.bc<-rmse(cad.diff[1:311,1],fitted(cad.ppp.vecm.est.bc)[,1])
c.p.ve.cc<-rmse(cad.diff[1:311,1],fitted(cad.ppp.vecm.est.cc)[,1])
c.p.ve.tt<-rmse(cad.diff[1:311,1],fitted(cad.ppp.vecm.est.tt)[,1])
c.p.ve.tc<-rmse(cad.diff[1:311,1],fitted(cad.ppp.vecm.est.tc)[,1])

c.f.v.b<-rmse(cad.diff[1:312,1],fitted(cad.fund.var.b)[,1])
c.f.v.c<-rmse(cad.diff[1:313,1],fitted(cad.fund.var.c)[,1])
c.f.v.t<-rmse(cad.diff[1:313,1],fitted(cad.fund.var.t)[,1])

c.f.ve.bc<-rmse(cad.diff[1:311,1],fitted(cad.fund.vecm.est.bc)[,1])
c.f.ve.cc<-rmse(cad.diff[1:311,1],fitted(cad.fund.vecm.est.cc)[,1])
c.f.ve.tt<-rmse(cad.diff[1:311,1],fitted(cad.fund.vecm.est.tt)[,1])
c.f.ve.tc<-rmse(cad.diff[1:311,1],fitted(cad.fund.vecm.est.tc)[,1])

c.bma<-rmse(cad.diff[1:313,1],pdensa$fit)

plot(1:100, type="n", axes=T, xlab="", ylab="",bty='o',xaxt='n',yaxt='n')
rect(-10,-100,105,105,density=NA,col='darkblue',lty=1,border='black')
abline(h=98,col='white',lwd=1.5)
text(50,101,'In-sample accuracy RMSE CAD/USD',cex=0.95,col="cyan",font=2)
text(adj=0,col="white",2,95,paste('UIP (VAR) both : ',c.u.v.b))
text(adj=0,col="white",2,91,paste('UIP (VAR) const : ',c.u.v.c))
text(adj=0,col="white",2,87,paste('UIP (VAR) trend : ',c.u.v.t))
abline(h=83,col='white',lwd=1.5)
text(adj=0,col="white",2,79,paste('PPP (VAR) both : ',c.p.v.b))
text(adj=0,col="white",2,75,paste('PPP (VAR) const : ',c.p.v.c))
text(adj=0,col="white",2,71,paste('PPP (VAR) trend : ',c.p.v.t))
abline(h=67,col='white',lwd=1.5)
text(adj=0,col="white",2,63,paste('Fund (VAR) both : ',c.f.v.b))
text(adj=0,col="white",2,59,paste('Fund (VAR) const : ',c.f.v.c))
text(adj=0,col="white",2,55,paste('Fund (VAR) trend : ',c.f.v.t))
abline(h=51,col='white',lwd=1.5)
text(adj=0,col="white",2,47,paste('UIP (VECM) both : ',c.u.ve.bc))
text(adj=0,col="white",2,43,paste('UIP (VECM) const : ',c.u.ve.cc))
text(adj=0,col="white",2,39,paste('UIP (VECM) const : ',c.u.ve.tt))
abline(h=35,col='white',lwd=1.5)
text(adj=0,col="white",2,31,paste('PPP (VECM) both : ',c.p.ve.bc))
text(adj=0,col="white",2,27,paste('PPP (VECM) const : ',c.p.ve.cc))
text(adj=0,col="white",2,23,paste('PPP (VECM) const : ',c.p.ve.tt))
abline(h=19,col='white',lwd=1.5)
text(adj=0,col="white",2,15,paste('Fund (VECM) both : ',c.f.ve.bc))
text(adj=0,col="white",2,11,paste('Fund (VECM) const : ',c.f.ve.cc))
text(adj=0,col="white",2,7,paste('Fund (VECM) const : ',c.f.ve.tt))
abline(h=4,col='white',lwd=1.5)
text(adj=0,col="yellow",2,1,paste('BMA : ',c.bma))

#############################################################################

windows(width=14,height=12)
layout(matrix(c(1,2,3,4,5,6,7,8,8),nrow=3,ncol=3,byrow=F))
par(mai=c(0.05,0,0.15,0.05))
plot(main='Uncovered Interest Parity VAR',cex.main=0.85,uk.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='')
lines(fitted(uk.uip.var.b)[,1],col='green')
lines(fitted(uk.uip.var.c)[,1],col='blue')
lines(fitted(uk.uip.var.t)[,1],col='red')
legend(bty='n','bottom',legend=c('Both','Constant','Trend'),fill=c('green','blue','red'),ncol=3,cex=1)

plot(main='Purchasing Power Parity VAR',cex.main=0.85,uk.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='')
lines(fitted(uk.ppp.var.b)[,1],col='green')
lines(fitted(uk.ppp.var.c)[,1],col='blue')
lines(fitted(uk.ppp.var.t)[,1],col='red')
legend(bty='n','bottom',legend=c('Both','Constant','Trend'),fill=c('green','blue','red'),ncol=3,cex=1)

plot(main='Fundamentals VAR',cex.main=0.85,uk.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='')
lines(fitted(uk.fund.var.b)[,1],col='green')
lines(fitted(uk.fund.var.c)[,1],col='blue')
lines(fitted(uk.fund.var.t)[,1],col='red')
legend(bty='n','bottom',legend=c('Both','Constant','Trend'),fill=c('green','blue','red'),ncol=3,cex=1)

plot(main='Uncovered Interest Parity VECM',cex.main=0.85,uk.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='',yaxt='n')
lines(fitted(uk.uip.vecm.est.bc)[,1],col='green')
lines(fitted(uk.uip.vecm.est.cc)[,1],col='blue')
lines(fitted(uk.uip.vecm.est.tt)[,1],col='red')
lines(fitted(uk.uip.vecm.est.tc)[,1],col='dark orange')
legend(bty='n','bottom',legend=c('B/con','C/con','T/trend','T/con'),fill=c('green','blue','red','dark orange'),ncol=4,cex=1)

plot(main='Purchasing Power Parity VAR',cex.main=0.85,uk.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='',yaxt='n')
lines(fitted(uk.ppp.vecm.est.bc)[,1],col='green')
lines(fitted(uk.ppp.vecm.est.cc)[,1],col='blue')
lines(fitted(uk.ppp.vecm.est.tt)[,1],col='red')
lines(fitted(uk.ppp.vecm.est.tc)[,1],col='dark orange')
legend(bty='n','bottom',legend=c('B/con','C/con','T/trend','T/con'),fill=c('green','blue','red','dark orange'),ncol=4,cex=1)

plot(main='Fundamentals VECM',cex.main=0.85,uk.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='',yaxt='n')
lines(fitted(uk.fund.vecm.est.bc)[,1],col='green')
lines(fitted(uk.fund.vecm.est.cc)[,1],col='blue')
lines(fitted(uk.fund.vecm.est.tt)[,1],col='red')
lines(fitted(uk.fund.vecm.est.tc)[,1],col='dark orange')
legend(bty='n','bottom',legend=c('B/con','C/con','T/trend','T/con'),fill=c('green','blue','red','dark orange'),ncol=4,cex=1)

plot(main='Bayesian Model Averaging',cex.main=0.85,uk.diff[1:313,1],type='l',col='black',lwd=1,xlab='',xaxt='n',ylab='',yaxt='n')
lines(pdensa$fit,col='purple')

c.u.v.b<-rmse(uk.diff[1:296,1],fitted(uk.uip.var.b)[,1])
c.u.v.c<-rmse(uk.diff[1:296,1],fitted(uk.uip.var.c)[,1])
c.u.v.t<-rmse(uk.diff[1:296,1],fitted(uk.uip.var.t)[,1])

c.u.ve.bc<-rmse(uk.diff[1:296,1],fitted(uk.uip.vecm.est.bc)[,1])
c.u.ve.cc<-rmse(uk.diff[1:296,1],fitted(uk.uip.vecm.est.cc)[,1])
c.u.ve.tt<-rmse(uk.diff[1:296,1],fitted(uk.uip.vecm.est.tt)[,1])
c.u.ve.tc<-rmse(uk.diff[1:296,1],fitted(uk.uip.vecm.est.tc)[,1])

c.p.v.b<-rmse(uk.diff[1:299,1],fitted(uk.ppp.var.b)[,1])
c.p.v.c<-rmse(uk.diff[1:299,1],fitted(uk.ppp.var.c)[,1])
c.p.v.t<-rmse(uk.diff[1:299,1],fitted(uk.ppp.var.t)[,1])

c.p.ve.bc<-rmse(uk.diff[1:299,1],fitted(uk.ppp.vecm.est.bc)[,1])
c.p.ve.cc<-rmse(uk.diff[1:299,1],fitted(uk.ppp.vecm.est.cc)[,1])
c.p.ve.tt<-rmse(uk.diff[1:299,1],fitted(uk.ppp.vecm.est.tt)[,1])
c.p.ve.tc<-rmse(uk.diff[1:299,1],fitted(uk.ppp.vecm.est.tc)[,1])

c.f.v.b<-rmse(uk.diff[1:311,1],fitted(uk.fund.var.b)[,1])
c.f.v.c<-rmse(uk.diff[1:311,1],fitted(uk.fund.var.c)[,1])
c.f.v.t<-rmse(uk.diff[1:311,1],fitted(uk.fund.var.t)[,1])

c.f.ve.bc<-rmse(uk.diff[1:311,1],fitted(uk.fund.vecm.est.bc)[,1])
c.f.ve.cc<-rmse(uk.diff[1:311,1],fitted(uk.fund.vecm.est.cc)[,1])
c.f.ve.tt<-rmse(uk.diff[1:311,1],fitted(uk.fund.vecm.est.tt)[,1])
c.f.ve.tc<-rmse(uk.diff[1:311,1],fitted(uk.fund.vecm.est.tc)[,1])

c.bma<-rmse(uk.diff[1:313,1],pdensb$fit)

plot(1:100, type="n", axes=T, xlab="", ylab="",bty='o',xaxt='n',yaxt='n')
rect(-10,-100,105,105,density=NA,col='darkblue',lty=1,border='black')
abline(h=98,col='white',lwd=1.5)
text(50,101,'In-sample accuracy RMSE for GBP/USD',cex=0.95,col="cyan",font=2)
text(adj=0,col="white",2,95,paste('UIP (VAR) both : ',c.u.v.b))
text(adj=0,col="white",2,91,paste('UIP (VAR) const : ',c.u.v.c))
text(adj=0,col="white",2,87,paste('UIP (VAR) trend : ',c.u.v.t))
abline(h=83,col='white',lwd=1.5)
text(adj=0,col="white",2,79,paste('PPP (VAR) both : ',c.p.v.b))
text(adj=0,col="white",2,75,paste('PPP (VAR) const : ',c.p.v.c))
text(adj=0,col="white",2,71,paste('PPP (VAR) trend : ',c.p.v.t))
abline(h=67,col='white',lwd=1.5)
text(adj=0,col="white",2,63,paste('Fund (VAR) both : ',c.f.v.b))
text(adj=0,col="white",2,59,paste('Fund (VAR) const : ',c.f.v.c))
text(adj=0,col="white",2,55,paste('Fund (VAR) trend : ',c.f.v.t))
abline(h=51,col='white',lwd=1.5)
text(adj=0,col="white",2,47,paste('UIP (VECM) both : ',c.u.ve.bc))
text(adj=0,col="white",2,43,paste('UIP (VECM) const : ',c.u.ve.cc))
text(adj=0,col="white",2,39,paste('UIP (VECM) const : ',c.u.ve.tt))
abline(h=35,col='white',lwd=1.5)
text(adj=0,col="white",2,31,paste('PPP (VECM) both : ',c.p.ve.bc))
text(adj=0,col="white",2,27,paste('PPP (VECM) const : ',c.p.ve.cc))
text(adj=0,col="white",2,23,paste('PPP (VECM) const : ',c.p.ve.tt))
abline(h=19,col='white',lwd=1.5)
text(adj=0,col="white",2,15,paste('Fund (VECM) both : ',c.f.ve.bc))
text(adj=0,col="white",2,11,paste('Fund (VECM) const : ',c.f.ve.cc))
text(adj=0,col="white",2,7,paste('Fund (VECM) const : ',c.f.ve.tt))
abline(h=4,col='white',lwd=1.5)
text(adj=0,col="yellow",2,1,paste('BMA : ',c.bma))
#############################################################################

l
From the following  plot associated with the BMA technique, we can see that the best model that explains CAD/USD returns contains 5 variables : [1] Change in Canadian share price index, [2] Change in money supply, [3] Canadian Industrial Production, [4] Canadian share price index, [5] Canadian Inflation. The white rectangles represent omitted variables, the blue rectangles suggest a negative relation between the dependent and the particular explanatory variables while the pink shades suggest a positive relation. There is also some consistency across the best 1766 models in terms of the relation between exchange rates and fundamental variables. The change in the Canadian share price index appears to have a negative impact on exchange rate returns, implying perhaps an appreciation of the CAD relative to the USD when the change in Canadian shares is positive. This relation appears to hold true for all the best models.

A different picture emerges for the GBP/USD currency pair, where the best model contains only one variable: [1] Change in share price index. The GBP T-Bill differential appears to be quite important in explaining GBP/USD returns across the best 2000 models, bearing a negative relation against exchange rate returns. The greater the T-bill differential, the more attractive are CAD deposits, the greater the demand for CAD dollars relative to USD, the greater the chances of CAD appreciation and hence a decline in CAD/USD returns.

The following set of plots show fitted model values and actual data along with the RMSEs associated with each specification. The Bayesian Model Averaging technique appears to outperform other models for both currency pairs. Unfortunately, the more complicated VECM specifications of the models are inferior to their VAR counterparts. There is no particular consistency in terms of performance. The only consolation lies in the BMA’s out performance across currency pairs and models.