I found out that SMODIFY is not in RATs 8.2, and I wonder if there is a replacement or SRC example that does what I need.
In essence a triangular contemporaneous relationship must be estimated (the structure VAR part) to transform the reduced form back to the structural system-- but only for 1/2 of the equations. I guess I could work out the effect using matrices to construct the new coefficients but did not want to re-invent something already prepared and tested.
Code example with smodify is below (I modified a few things to simplify). Note the estimations is BVAR, complicating things slightly.
Code: Select all
system 1 to 4
variables y1 y2 y3 y4
lags 1 to 4
det constant
specify(tight=.20) .5
end(system)
estimate(noprint) begdat enddat
smodify(block=2) 4 v
# 1 11
# 2 12
# 3 13
# 4 14
forecast 2 8 begfor
# 13 fy3
# 14 fy4