FRegensburg wrote:Tom,
sorry to nag on. If I may ask, the estimates of the coefficients, now, using Sims's method, are similar in magnitude to what I get when I estimate the cvmodel without any Bayesian method, but now they're all insignificant, while all three of them are significant with the classical approach, why would that be?
I've attached the program-does it look sensible to you?
You forgot your CALENDAR instruction so it ends up with only 48 annualized values. You'll get better results with the original quarterly data.
In the following segment, you need to adapt for the factor that you have an A-B model rather than just an A model. The "diagonalizer" matrix in an A-B model is inv(B)*A rather than just A. This is the correct coding:
compute vdiag =%mqformdiag(%sigma,tr(inv(b)*a))
ewise lambdadraw(i)=(%nobs/2.0)*vdiag(i)/%rangamma(.5*(%nobs-ncoef)+delta+1)
*
* Draw coefficients conditioned on the factor generated by theta and
* lambda. Again, we don't need to do this during the burn-in.
*
compute fsigmad=inv(a)*b*%diag(%sqrt(lambdadraw))
FRegensburg wrote:
What's the reasoning behind the numbers in nudraw=6 and that 0.35 in the line 'compute f=decomp(%xx)*.35'?
You can experiment with those if the acceptance probability is too high or too low. 75% may be a bit high, but isn't unreasonable. A higher value to replace .35 means it tries larger changes, and a lower value of nudraw has a similar effect. The high acceptance probability on a random walk M-H usually means the increments are too small, so you might see about bumping that up a bit. (Target around 30-40% acceptances). I'm guessing it will make little difference in the results.
FRegensburg wrote:
How do I tease out the impact multipliers?
They're just the 0 step responses. You can use MCPROCESSIRF to get the hard numbers.
FRegensburg wrote:
How should I interpret the vertical scale as it is now in the IRFs? How shall I express it in % changes?
Assuming the input data are in logs, yes. They would be % changes.
FRegensburg wrote:
For some reason my university doesn't have rats- this software of yours is a goldmine for econometrics, and I've asked the department to buy it.
Many thanks
Thank you. That would certainly be appreciated by both us and (we hope) your department.