From 1c01834d4603385de0887aee49a4660c4a9c0738 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?D=C3=B3ra=20Kocsis?= <dora@dynare.org>
Date: Thu, 12 Mar 2020 14:19:40 +0100
Subject: [PATCH] add missing stoch_simul option:
 filtered_theoretical_moments_grid

---
 src/+gui_auxiliary/dynare_command_options_stoch_simul.m | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/+gui_auxiliary/dynare_command_options_stoch_simul.m b/src/+gui_auxiliary/dynare_command_options_stoch_simul.m
index 5f096f1..d7954cb 100644
--- a/src/+gui_auxiliary/dynare_command_options_stoch_simul.m
+++ b/src/+gui_auxiliary/dynare_command_options_stoch_simul.m
@@ -14,7 +14,7 @@ function dynare_command_options_stoch_simul()
 % SPECIAL REQUIREMENTS
 %   none
 
-% Copyright (C) 2003-2018 Dynare Team
+% Copyright (C) 2003-2020 Dynare Team
 %
 % This file is part of Dynare.
 %
@@ -236,6 +236,12 @@ dynare_gui_.stoch_simul.filter{num,2} = '[6,32]';
 dynare_gui_.stoch_simul.filter{num,3} = '[INTEGER1:INTEGER2]';  %'[HIGHEST_PERIODICITY LOWEST_PERIODICITY]';
 dynare_gui_.stoch_simul.filter{num,4} = 'Uses a bandpass filter before computing moments. The passband is set to a periodicity of HIGHEST_PERIODICITY to LOWEST_PERIODICITY, e.g. 6 to 32 quarters if the model frequency is quarterly. Default: [6,32].';
 
+num = num+1;
+dynare_gui_.stoch_simul.filter{num,1} = 'filtered_theoretical_moments_grid';
+dynare_gui_.stoch_simul.filter{num,2} = '512';
+dynare_gui_.stoch_simul.filter{num,3} = 'INTEGER';
+dynare_gui_.stoch_simul.filter{num,4} = 'When computing filtered theoretical moments (with either option hp_filter or option bandpass_filter), this option governs the number of points in the grid for the discrete Inverse Fast Fourier Transform. It may be necessary to increase it for highly autocorrelated processes.';
+
 %% Group 6: Output
 
 num = 1;
-- 
GitLab