Hi, guys, could you please guide me through my issue?
I have a problem with svar_identification.
In the example of DH10.mod, SVAR identification scheme is described :
svar_identification;
exclusion lag 0;
equation 1, KCFSI;
end;
but if I change the code into:
svar_identification;
exclusion lag 0;
equation 1, KCFSI;
equation 2, RGDP, KCFSI;
equation 3, RGDP;
end;
It also works. But I can't understand the expression of equation, for example, what's the difference among "RGDP", "KCFSI", and "RGDP, KCFSI"?
Thanks a lot in advance.