I am estimating the follwoing VECM where x is a spot price and y the corresponding futures price.
Code: Select all
@JOHMLE(LAGS=10,det=rc,cv=cvector)
# x y
equation(coeffs=cvector) eq
# x y constant
system(model=vecm)
variables x y
lags 1 to 10
ect eq
end(system)
estimate
I tried to use this test from the UG:
... and got this error message:linreg fm1
# constant fm1{1 to 8} gdph{1 to 8}
exclude(title="Granger Causality Test")
# gdph{1 to 8}
How can I adapt it to the VECM output, which is "split" into two sections, one for x and one for y being the dependent variable?## REG1. Cannot Execute Unless Preceded by a Completed Regression
Thank you very much!
Best,
Jeanne