Thanks again Prof. Pfeifer
I was tracing back for the source of the problem.
So I simplified into an RBC (both linear and level) and I got the same ST.Errors.
Then I added block to get a NK and I realized that the difference comes in the way I specify th Taylor Rule (TR).
So I am posting both my TRs (level & linear model)
Level TR (following SW2007):
log(Rn/STEADY_STATE(Rn)) = rhoR * log(Rn(-1)/STEADY_STATE(Rn))
+ (1-rhoR) * thetP * log(PIE(+1)/STEADY_STATE(PIE))
+ (1-rhoR) * thetY * log(Y/STEADY_STATE(Y))
+ log(epsR) ;
MP shock:
log(epsR)-log(STEADY_STATE(epsR)) = rhoM*(log(epsR(-1))-log(STEADY_STATE(epsR))) + epsM;
so in my linear model I wrote the TR as :
rn = rhoR* rn(-1) + (1-rhoR)* ( thetP*pie(1)+thetY*y+thetDP*(pie-pie(-1)) ) +epsR ;
MP shock:
epsR = rhoM * epsR(-1) + epsM;
So I could boil down the problem in the way I have translated the TR (and MP shock) from level into linear model.
I tried different ways of specifying it but I could not get the same St.Errors
Any chance you could spot some problems at a blink of an eye pls ?
Thanks a lot for your time.