Coder Social home page Coder Social logo

marstesla / dsge-2015-apr Goto Github PK

View Code? Open in Web Editor NEW

This project forked from frbny-dsge/dsge-2015-apr

0.0 0.0 0.0 361 KB

Replication files for Liberty Street Economics blog post "The FRBNY DSGE Model Forecast--April 2015"

Home Page: http://libertystreeteconomics.newyorkfed.org/2015/05/the-frbny-dsge-model-forecast-april-2015.html

Objective-C 0.48% MATLAB 99.46% Forth 0.06%

dsge-2015-apr's Introduction

FRBNY DSGE Model (Version 990.2)

MATLAB code to estimate and forecast the model discussed in the Liberty Street Economics blog post "The FRBNY DSGE Model Forecast".

Running the Code

Running with Default Settings

All you need to do is run the file Main.m. This script will run the entire set of code, calling

  • set_paths.m: Set default directories for input and output; add code subfolders to MATLAB path.
  • spec_990.m: Set model specifications and important flags for estimation and forecasting.
  • gibb_est_ant.m: Find posterior mode and sample from posterior distribution.
  • forecast_parallel_est_ant.m: Forecast observables; can run in parallel.
  • forplot.m: Load forecasts into data structures to prepare for plotting.
  • plotPresentation.m: Plot forecasts.

Running with Modified Settings

If you would like to change defaults for estimation and forecasts, see spec_990.m. There, you can modify

  • Estimation Parameters
    • reoptimize: Whether to re-optimize and find the mode or use saved mode.
    • CH: Whether to re-compute the hession or use saved.
    • nsim: The number of posterior draws per block.
    • nblocks: The number of blocks.
    • nburn: Size of the burn-in.
    • jstep: From the blocks, the forecasting code will only use every jstep-th element.
  • Forecast Parameters
    • zerobound: Whether to incorporate anticipated policy shocks.
    • peachflag: Whether to condition time T+1 forecasts of observables on user-provided forecasts of observables (treating the information supplied by the user as data).
    • distr: Flag to specify whether to parallelize the forecast procedure.
    • nMaxWorkers: Number of workers to use in parallel forecast procedure.

Troubleshooting

Some common issues that may arise while running with default settings include:

  • Can't load modal parameters: Check that you're running Main in the base (DSGE-2015-Apr) directory. Our code uses relative paths throughout, including to specify the location of the mode file (save/mode_in), so it won't be found if you're in a subdirectory.

  • Negative diagonal element in Hessian: Make sure that you're reading in the provided mode file correctly. If you set reoptimize = 1 and re-ran csminwel before computing the Hessian, it's possible that you haven't found a true mode (perhaps because not enough iterations were used).

  • Finally, see the section "Final Notes on MATLAB Versions and Toolboxes" below.

Directory Structure

In the main folder, there exist the following directories to house code components:

  • data/: Input data
  • dsgesolv/: Solving the model; includes gensys.m code.
  • estimation/: Mode-finding and posterior sampling.
  • figures/: For output including parameter moment-tables and TeX tables.
  • forecast/: Forecasting programs.
  • graphs/: For graphs of forecasts.
  • initializaization/: Loading data, defining model structure, setting up important model flags.
  • kalman/: Kalman filtering and smoothing.
  • plotting: Loading forecast distributions and generating/saving plots.
  • save/: Input mode and output data generated by the code (output mode, posterior draws, forecasts).
  • toolbox/: Supporting programs.

Program Details

This section describes important programs in greater detail. If the user is interested only in running the default model and reproducing the forecast results, this section can be ignored.

This section focuses on what the code does and why, while the code itself (including comments) provides detailed information regarding how these basic procedures are implemented.

Estimation

Main Program: estimation/gibb_est_ant.m

Purpose: Finds modal parameter estimates and samples from posterior distribution.

Main Steps

  • Initialization: Read in transform raw data from data/. Load files from initialization/ related to model specification, parameter priors, parameter restrictions.
  • Find Mode: The main program will call the csminwel.m optimization routine to find modal parameter estimates. Can optionally start estimation from a starting parameter vector by specifying data/mode_in.
  • Sample from Posterior: Posterior sampling begins from the computed mode, first computing the Hessian matrix to scale the proposal distribution in the Metropolis Hastings algorithm. Settings for the number of sampling blocks and the size of those blocks can be specified in spec_990.m.

Remark: In addition to saving each draw of the parameter vector, the estimation program also saves the resulting posterior value and transition equation matrices implied by each draw of the parameter vector. This is to save time in the forecasting step since that code can avoid recomputing those matrices. In addition, to save space, all files in save/ are binary files.

Forecasting

Main Program: forecast/forecast_parallel_est_ant.m

Purpose: Compute forecast distribution for the observables, sampling from the full posterior distribution of parameters and sampling exogenous shocks.

Main Steps

  • Load Draws: Load in posterior distribution blocks that are output from the estimation stage.
  • Filter and Smooth: Pass matrices defining the state transition equation into forecastFcn_est_ant.m, which will filter and smooth the states over the history.
  • Forecast: Compute forecasts using getForecast.m, which takes matrices corresponding to a posterior draw and uses them to iterate on the time T state vector to obtain forecasts, adding in draws of exogenous shocks as well.

Remark: The code can be run in parallel or sequentially. Running in parallel requires the MATLAB parallel toolbox.

Plotting

Main Programs: plotting/forplot.m, plotting/plotPresentation.m

Purpose: Generate plots of observables.

Main Steps

  • Load Plots: The program forplot.m will load output from the forecast program into the workspace, computing entries in the data structures Means and Bands.
  • Plot: The program plotPresentation.m will plot the forecasts and shock decompositions, saving the graphs in the graphs/ folder.

Remark: Each time forplot.m is called, it will attempt to recompute the forecast means and bands, which takes some time. However, these are saved in save/ after the very first call to forplot.m. To use these saved Means and Bands structures and avoid recomputing, set useSavedMB=1 before running forplot.m.

Final Notes on MATLAB Versions and Toolboxes

In certain functions implemented in this program are Toolbox functions provided by Mathworks. If you are receiving errors in running these programs due to undefined functions, it is likely because you do not yet have access to these Toolboxes. For example, to run the forecasts in parallel (the default setting), you will need the parallel toolbox. Also, dlyap.m, a function to solve discrete-time Lyapunov equations, comes from the Control System Toolbox.

These programs are meant to be run in Matlab09a. While we have not attempted to run these programs using a more recent version of Matlab, it is possible that some of the Matlab-defined functions are not identical and thus may yield nonidentical results.

Disclaimer

Copyright Federal Reserve Bank of New York. You may reproduce, use, modify, make derivative works of, and distribute and this code in whole or in part so long as you keep this notice in the documentation associated with any distributed works. Neither the name of the Federal Reserve Bank of New York (FRBNY) nor the names of any of the authors may be used to endorse or promote works derived from this code without prior written permission. Portions of the code attributed to third parties are subject to applicable third party licenses and rights. By your use of this code you accept this license and any applicable third party license.

THIS CODE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT ANY WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, EXCEPT TO THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. FRBNY IS NOT, UNDER ANY CIRCUMSTANCES, LIABLE TO YOU FOR DAMAGES OF ANY KIND ARISING OUT OF OR IN CONNECTION WITH USE OF OR INABILITY TO USE THE CODE, INCLUDING, BUT NOT LIMITED TO DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, PUNITIVE, SPECIAL OR EXEMPLARY DAMAGES, WHETHER BASED ON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT OR OTHER LEGAL OR EQUITABLE THEORY, EVEN IF FRBNY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR LOSS AND REGARDLESS OF WHETHER SUCH DAMAGES OR LOSS IS FORESEEABLE.

dsge-2015-apr's People

Contributors

pearlzli avatar emoszkowski avatar micahjsmith avatar ikarib avatar rsarfati avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.