I want to test if two regression coefficients from two separate regressions are significantly different from each other. In particular I want to test from the model $$ \begin{aligned} x1_{(t)} &= \mu1 + a*x1_{(t-1)} + b*x2_{(t-1)} + e1 \\ x2_{(t)} &= \mu2 + c*x1_{(t-1)} + d*x2_{(t-1)} + e2 \end{aligned} $$ if $H0: b=c$ against $H1: b>c$. Can I do this with a simple t-test or do I require another test statistic?
Just wanted to give a brief update. In my reference paper, they claim that they can test H0:b=c against H1:b>c in the model stated above with a simple Z-test. Does this mean that my test statistic is simply (b-c)/se(b)?