Search found 22 matches
- Sat May 26, 2018 1:33 pm
- Forum: Examples and Sample Code
- Topic: Fry-Pagan JEL 2011
- Replies: 11
- Views: 17850
Re: Fry-Pagan JEL 2011
Is it possible to calculate the error variance for each accepted draw, and then use that info to construct an error variance graph from 1 to 50 steps ahead?
- Sat May 26, 2018 12:58 pm
- Forum: Examples and Sample Code
- Topic: Fry-Pagan JEL 2011
- Replies: 11
- Views: 17850
Re: Fry-Pagan JEL 2011
I guess what I'm saying is, instead of presenting the numbers, is there a better graphical presentation?
- Sat May 26, 2018 12:57 pm
- Forum: Examples and Sample Code
- Topic: Fry-Pagan JEL 2011
- Replies: 11
- Views: 17850
Re: Fry-Pagan JEL 2011
Can I not graph the FEVD for the 1, 2, 3, ....step ahead? So for GDP, can I simple create a graph of the numbers that coincide with the FEVD.
- Sat May 26, 2018 12:43 pm
- Forum: Examples and Sample Code
- Topic: Fry-Pagan JEL 2011
- Replies: 11
- Views: 17850
Re: Fry-Pagan JEL 2011
Thanks. How might I graph the FEVDs? I've tried the following, but no success. do i=1,nvar compute minlower=maxupper=0.0 smpl 1 accept do k=1,nstep set work = fevd(t)(k,i) compute frac=%fractiles(work,||.16,.50,.84||) compute lower(k)=frac(1) compute upper(k)=frac(3) compute resp(k)=frac(2) end do k
- Tue May 22, 2018 7:30 pm
- Forum: Examples and Sample Code
- Topic: Fry-Pagan JEL 2011
- Replies: 11
- Views: 17850
Re: Fry-Pagan JEL 2011
Tom,
How might I alter this code to produce forecast error variance decomposition?
I tried altering it with aspects of the Uhlig (2005) code, but had no success.
Thanks,
How might I alter this code to produce forecast error variance decomposition?
I tried altering it with aspects of the Uhlig (2005) code, but had no success.
Thanks,
- Mon Nov 27, 2017 12:56 pm
- Forum: VARs (Vector Autoregression Models)
- Topic: Sign Restriction with 30 observations?
- Replies: 8
- Views: 13380
Re: Sign Restriction with 30 observations?
Yes, I did convert them to logs.
- Sun Nov 26, 2017 3:30 pm
- Forum: VARs (Vector Autoregression Models)
- Topic: Sign Restriction with 30 observations?
- Replies: 8
- Views: 13380
Re: Sign Restriction with 30 observations?
With the quarterly data I used data on GDP and the GDP deflator from FRED, but with the monthly data I found a monthly GDP measure and I computed the GDP delfator as (Nominal/Real)*100. For the monthly data I had values like 5 and 6, but for the quarterly data the measures were 100, 102, etc. So I s...
- Sat Nov 25, 2017 2:28 pm
- Forum: VARs (Vector Autoregression Models)
- Topic: Sign Restriction with 30 observations?
- Replies: 8
- Views: 13380
Re: Sign Restriction with 30 observations?
Thanks. The scaling of the GDP deflator varied substantially.
- Fri Nov 24, 2017 5:41 pm
- Forum: VARs (Vector Autoregression Models)
- Topic: Sign Restriction with 30 observations?
- Replies: 8
- Views: 13380
Re: Sign Restriction with 30 observations?
Tom, To get more observations I switched from quarterly to monthly data. However, running the sign-restricted VAR with monthly data leads to very large percent changes; instead of a .04 change, now I see changes of 20 or 30. Any idea what could be driving this? Is it just of function of rescaling my...
- Thu Sep 21, 2017 3:59 pm
- Forum: VARs (Vector Autoregression Models)
- Topic: Sign Restriction with 30 observations?
- Replies: 8
- Views: 13380
Sign Restriction with 30 observations?
Is VAR analysis with 30 data points possible. Specifically, sign-restriction analysis with 7 variables, 6 of which are restricted?
- Mon Apr 17, 2017 11:43 am
- Forum: Examples and Sample Code
- Topic: Uhlig JME 2005 Sign-Restricted IRF's for VAR
- Replies: 32
- Views: 58506
Re: Uhlig JME 2005 Sign-Restricted IRF's for VAR
Sort of, but is it not possible to make sure that the federal fund rate change is consistent across both methods?
- Sun Apr 16, 2017 5:28 pm
- Forum: Examples and Sample Code
- Topic: Uhlig JME 2005 Sign-Restricted IRF's for VAR
- Replies: 32
- Views: 58506
Re: Uhlig JME 2005 Sign-Restricted IRF's for VAR
In regards to code you posted for Uhlig 2005, is the behavior of the federal funds rate in the impulse vector consistent with a 50 basis point federal funds rate shock under recursive estimation? In other words, if I want to compare the results generated by this code to results from the recursive ap...
- Sat Feb 04, 2017 1:42 pm
- Forum: Examples and Sample Code
- Topic: Uhlig JME 2005 Sign-Restricted IRF's for VAR
- Replies: 32
- Views: 58506
Re: Uhlig JME 2005 Sign-Restricted IRF's for VAR
Not multiple shocks, less restrictions. Being agnostic about output and the price level.
- Fri Feb 03, 2017 3:47 pm
- Forum: Examples and Sample Code
- Topic: Uhlig JME 2005 Sign-Restricted IRF's for VAR
- Replies: 32
- Views: 58506
Re: Uhlig JME 2005 Sign-Restricted IRF's for VAR
One follow up, which is not necessarily related to code. What would be the implication of Uhlig remaining agnostic about the price level (GDP deflator) as well?
- Fri Feb 03, 2017 3:45 pm
- Forum: VARs (Vector Autoregression Models)
- Topic: Multiple IRF's on single graph
- Replies: 7
- Views: 11759
Re: Multiple IRF's on single graph
Thanks, I figured it out. You can do something like this and avoid having to save/copy and then read in the irfs. set GDP_spec1 1 nstep = ik=%xt(impulses,t)*a,ik(1) set GDP_spec2 1 nstep = ik=%xt(impulses,t)*a,ik(1) set GDP_spec3 1 nstep = ik=%xt(impulses,t)*a,ik(1) set GDP_spec4 1 nstep = ik=%xt(im...