File: endogenous_prior_restrictions.m

package info (click to toggle)
dynare 4.5.7-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 49,408 kB
  • sloc: cpp: 84,998; ansic: 29,058; pascal: 13,843; sh: 4,833; objc: 4,236; yacc: 3,622; makefile: 2,278; lex: 1,541; python: 236; lisp: 69; xml: 8
file content (173 lines) | stat: -rw-r--r-- 6,989 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
function [info, info_irf, info_moment, data_irf, data_moment] = endogenous_prior_restrictions(T,R,Model,DynareOptions,DynareResults)
% Check for prior (sign) restrictions on irf's and theoretical moments
%
% INPUTS
%    T          [double]     n*n state space matrix
%    R          [double]     n*k matrix of shocks
%    Model      [structure]
%    DynareOptions [structure]
%    DynareResults [structure]

% OUTPUTS
%    info     [double]  check if prior restrictions are matched by the
%                       model and related info
%    info_irf [double] array of test checks for all individual irf restrictions
%    info_moment [double] array of test checks for all individual moment restrictions
%

% Copyright (C) 2013-2017 Dynare Team
%
% This file is part of Dynare.
%
% Dynare is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% Dynare is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with Dynare.  If not, see <http://www.gnu.org/licenses/>.

info=[0 0];
info_irf=[];
info_moment=[];
data_irf=[];
data_moment=[];

endo_prior_restrictions.irf= DynareOptions.endogenous_prior_restrictions.irf;
endo_prior_restrictions.moment= DynareOptions.endogenous_prior_restrictions.moment;

if ~isempty(endo_prior_restrictions.irf)
    data_irf=cell(size(endo_prior_restrictions.irf,1),1);
    if DynareOptions.order>1
        error('The algorithm for prior (sign) restrictions on irf''s is currently restricted to first-order decision rules')
        return
    end
    varlist=Model.endo_names(DynareResults.dr.order_var,:);
    if isempty(T)
        [T,R,SteadyState,infox,Model,DynareOptions,DynareResults] = dynare_resolve(Model,DynareOptions,DynareResults);
    else % check if T and R are given in the restricted form!!!
        if size(T,1)<size(varlist,1)
            varlist=varlist(DynareResults.dr.restrict_var_list,:);
        end
        % check if endo_prior_restrictions.irf{:,1} variables are in varlist
        varlistok=1;
        for j=1:size(endo_prior_restrictions.irf,1)
            if isempty(strmatch(endo_prior_restrictions.irf{j,1},varlist,'exact'))
                varlistok=0;
            end
        end
        if ~varlistok
            varlist=Model.endo_names(DynareResults.dr.order_var,:);
            [T,R,SteadyState,infox,Model,DynareOptions,DynareResults] = dynare_resolve(Model,DynareOptions,DynareResults);
        end
    end
    NT=1;
    for j=1:size(endo_prior_restrictions.irf,1)
        NT=max(NT,max(endo_prior_restrictions.irf{j,3}));
    end
    info_irf=ones(size(endo_prior_restrictions.irf,1),2);
    for t=1:NT
        if ~DynareOptions.relative_irf
            RR = T^(t-1)*R*diag(sqrt(diag(Model.Sigma_e)));
        else
            RR = T^(t-1)*R*100;
        end
        for j=1:size(endo_prior_restrictions.irf,1)
            if endo_prior_restrictions.irf{j,3}~=t
                continue
            end
            iendo=strmatch(endo_prior_restrictions.irf{j,1},varlist,'exact');
            iexo=strmatch(endo_prior_restrictions.irf{j,2},Model.exo_names,'exact');
            data_irf{j}=[data_irf{j}; [t RR(iendo,iexo)]];
            if (RR(iendo,iexo)>endo_prior_restrictions.irf{j,4}(1)) && (RR(iendo,iexo)<endo_prior_restrictions.irf{j,4}(2))
                info_irf(j,:)=info_irf(j,:).*[0, 0];
            else
                if RR(iendo,iexo)<endo_prior_restrictions.irf{j,4}(1)
                    delt = (RR(iendo,iexo)-endo_prior_restrictions.irf{j,4}(1))^2;
                else
                    delt = (RR(iendo,iexo)-endo_prior_restrictions.irf{j,4}(2))^2;
                end
                info_irf(j,:)=info_irf(j,:).*[49, delt];
            end
        end
    end
    if any(info_irf)
        info=[49,sum(info_irf(:,2))];
    end

end

if ~isempty(endo_prior_restrictions.moment)
    if DynareOptions.order>1
        error('The algorithm for prior (sign) restrictions on moments is currently restricted to first-order decision rules')
        return
    end
    data_moment=cell(size(endo_prior_restrictions.moment,1),1);
    var_list_=endo_prior_restrictions.moment{1,1};
    for  j=1:size(endo_prior_restrictions.moment,1)
        tmp=endo_prior_restrictions.moment{j,1};
        if ~ismember(tmp,cellstr(var_list_))
            var_list_ = char(var_list_, tmp);
        end
        tmp=endo_prior_restrictions.moment{j,2};
        if ~ismember(tmp,cellstr(var_list_))
            var_list_ = char(var_list_, tmp);
        end
    end
    NTmax=0;
    NTmin=0;
    for j=1:size(endo_prior_restrictions.moment,1)
        NTmax=max(NTmax,max(endo_prior_restrictions.moment{j,3}));
        NTmin=min(NTmin,min(endo_prior_restrictions.moment{j,3}));
    end
    info_moment=ones(size(endo_prior_restrictions.moment,1),2);
    nvar = size(var_list_,1);
    ivar=zeros(nvar,1);
    for i=1:nvar
        i_tmp = strmatch(var_list_(i,:),Model.endo_names,'exact');
        if isempty(i_tmp)
            error (['One of the variable specified does not exist'])
        else
            ivar(i) = i_tmp;
        end
    end
    DynareOptions.ar = max(abs(NTmin),NTmax);
    [gamma_y,stationary_vars] = th_autocovariances(DynareResults.dr, ivar, Model, DynareOptions,1);
    for t=NTmin:NTmax
        RR = gamma_y{abs(t)+1};
        if t==0
            RR = RR./(sqrt(diag(RR))*sqrt(diag(RR))')-eye(nvar)+diag(diag(gamma_y{t+1})); % becomes correlation
        end
        for j=1:size(endo_prior_restrictions.moment,1)
            if endo_prior_restrictions.moment{j,3}~=t
                continue
            end
            iendo1 = strmatch(endo_prior_restrictions.moment{j,1},var_list_,'exact');
            iendo2 = strmatch(endo_prior_restrictions.moment{j,2},var_list_,'exact');
            if t>0
                tmp0 = iendo1;
                iendo1=iendo2;
                iendo2=tmp0;
            end
            data_moment{j}=[data_moment{j}; [t RR(iendo1,iendo2)]];
            if (RR(iendo1,iendo2)>endo_prior_restrictions.moment{j,4}(1)) && (RR(iendo1,iendo2)<endo_prior_restrictions.moment{j,4}(2))
                info_moment(j,:)=info_moment(j,:).*[0, 0];
            else
                if RR(iendo1,iendo2)<endo_prior_restrictions.moment{j,4}(1)
                    delt = (RR(iendo1,iendo2)-endo_prior_restrictions.moment{j,4}(1))^2;
                else
                    delt = (RR(iendo1,iendo2)-endo_prior_restrictions.moment{j,4}(2))^2;
                end
                info_moment(j,:)=info_moment(j,:).*[49, delt];
            end
        end
    end
    if any(info_moment)
        info=[49, info(2) + sum(info_moment(:,2))];
    end
end