Page 1 of 1

BVAR à la Sims

PostPosted: Thu Jul 28, 2016 4:32 pm
by MelleMa
Dear all,

do I understand correcly that it is not possible to retrieve posterior distributions of BVAR parameters? Just moments of forecasts and rmse?
Thank you very much in advance!

Re: BVAR à la Sims

PostPosted: Mon Aug 01, 2016 6:44 am
by jpfeifer
Currently that is not possible. But within bvar_density.m you can change
Code: Select all
    [ny, nx, posterior, prior] = bvar_toolbox(nlags);

to
Code: Select all
    [ny, nx, posterior, prior] = bvar_toolbox(nlags);
    oo_.bvar.posterior{nlags}=posterior;
    oo_.bvar.prior{nlags}=prior;

to store the prior and posterior in oo_.

Re: BVAR à la Sims

PostPosted: Mon Aug 01, 2016 1:50 pm
by MelleMa
Thank you very much for your reply!

Re: BVAR à la Sims

PostPosted: Sun Aug 21, 2016 3:03 pm
by jpfeifer
Starting with tomorrow, the unstable version will save this information