I have a vector error-correction model with six endogenous variables: four are I(1) and two are I(0). Having used CATS to obtain cointegrating relations among the I(1) variables, I can "integrate" (sum) the two I(0) variables and then estimate the model in RATS. After I integrate, the code is as follows:
system(model=varmodel)
variables [6 endogenous variables]
lags 1 to 5
det constant
ect [error-correction terms]
end(system)
estimate(outsigma=s)
I can obtain impulse responses and variance decompositions as follows:
impulses(model=varmodel,steps=24)
errors(model=varmodel) * 24 s
However, the impulse responses and variance decompositions are given in levels rather than in differences. This is what I want for my four I(1) variables, but it poses a problem for my two integrated I(0) variables. Does anyone know of a way around this? Thanks very much for any advice.
