FCI_R08 {LongMemoryTS} | R Documentation |
Hausman-type test for fractional cointegration (Robinson (2008))
Description
FCI_R08
Semiparametric Hausmann-type test for fractional cointegration by Robinson (2008).
Returns test statistic, critical value, testing decision and type. Null hypothesis: no fractional cointegration.
Usage
FCI_R08(X, m, type = c("", "*", "**"), alpha = 0.05, a.vec = NULL)
Arguments
X |
data matrix. |
m |
bandwith parameter specifying the number of Fourier frequencies
used for the estimation, usually |
type |
determines the implementation of the test statistic: |
alpha |
desired significance level. Default is |
a.vec |
weighting scheme for averaging univariate memory estimates, default is simple arithmetic mean. |
Author(s)
Christian Leschinski, Michelle Voges
References
Robinson, P. (2008): Diagnostic testing for cointegration. Journal of Econometrics, Vol. 143, No. 1, pp. 206 - 225.
Examples
T<-1000
series<-FI.sim(T=T, q=2, rho=0.9, d=c(0.1,0.4), B=rbind(c(1,-1),c(0,1)))
FCI_R08(series, m=floor(T^0.75), type="*")
series<-FI.sim(T=T, q=2, rho=0.9, d=c(0.4,0.4))
FCI_R08(series, m=floor(T^0.75), type="*")