forked from JTWendelborn/MMB_userguide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDynareModelBase.bib
More file actions
1571 lines (1408 loc) · 48 KB
/
DynareModelBase.bib
File metadata and controls
1571 lines (1408 loc) · 48 KB
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% Encoding: UTF-8
@article{del2015inflation,
title={Inflation in the great recession and new keynesian models},
author={Del Negro, Marco and Giannoni, Marc P and Schorfheide, Frank},
journal={American Economic Journal: Macroeconomics},
volume={7},
number={1},
pages={168--96},
year={2015}
}
@article{ireland2015monetary,
title={Monetary policy, bond risk premia, and the economy},
author={Ireland, Peter N},
journal={Journal of Monetary Economics},
volume={76},
pages={124--140},
year={2015},
publisher={Elsevier}
}
@techreport{reis2009sticky,
title={A sticky-information general-equilibrium model for policy analysis},
author={Reis, Ricardo},
year={2009},
institution={National Bureau of Economic Research}
}
@article{ajello2016financial,
title={Financial intermediation, investment dynamics, and business cycle fluctuations},
author={Ajello, Andrea},
journal={American Economic Review},
volume={106},
number={8},
pages={2256--2303},
year={2016}
}
@article{leeper2013fiscal,
title={Fiscal foresight and information flows},
author={Leeper, Eric M and Walker, Todd B and Yang, Shu-Chun Susan},
journal={Econometrica},
volume={81},
number={3},
pages={1115--1145},
year={2013},
publisher={Wiley Online Library}
}
@article{paoli2017coordinating,
title={Coordinating monetary and macroprudential policies},
author={Paoli, Bianca de and Paustian, Matthias},
journal={Journal of Money, Credit and Banking},
volume={49},
number={2-3},
pages={319--349},
year={2017},
publisher={Wiley Online Library}
}
@article{carlstrom2010optimal,
title={Optimal monetary policy in a model with agency costs},
author={Carlstrom, Charles T and Fuerst, Timothy S and Paustian, Matthias},
journal={Journal of Money, credit and Banking},
volume={42},
number={s1},
pages={37--70},
year={2010},
publisher={Wiley Online Library}
}
@article{fernandez2010econometrics,
title={The econometrics of DSGE models},
author={Fern{\'a}ndez-Villaverde, Jes{\'u}s},
journal={SERIEs},
volume={1},
number={1-2},
pages={3--49},
year={2010},
publisher={Springer}
}
@article{fernandez2015estimating,
title={Estimating dynamic equilibrium models with stochastic volatility},
author={Fern{\'a}ndez-Villaverde, Jes{\'u}s and Guerr{\'o}n-Quintana, Pablo and Rubio-Ram{\'\i}rez, Juan F},
journal={Journal of Econometrics},
volume={185},
number={1},
pages={216--229},
year={2015},
publisher={Elsevier}
}
@article{stracca2013inside,
title={Inside money in general equilibrium: Does it matter for monetary policy?},
author={Stracca, Livio},
journal={Macroeconomic Dynamics},
volume={17},
number={3},
pages={563--590},
year={2013},
publisher={Cambridge University Press}
}
@article{rannenberg2016bank,
title={Bank leverage cycles and the external finance premium},
author={Rannenberg, Ansgar},
journal={Journal of Money, Credit and Banking},
volume={48},
number={8},
pages={1569--1612},
year={2016},
publisher={Wiley Online Library}
}
@article{monacelli2010unemployment,
title={Unemployment fiscal multipliers},
author={Monacelli, Tommaso and Perotti, Roberto and Trigari, Antonella},
journal={Journal of Monetary Economics},
volume={57},
number={5},
pages={531--553},
year={2010},
publisher={Elsevier}
}
@article{kirchner2016fiscal,
title={Fiscal deficits, financial fragility, and the effectiveness of government policies},
author={Kirchner, Markus and van Wijnbergen, Sweder},
journal={Journal of Monetary Economics},
volume={80},
pages={51--68},
year={2016},
publisher={Elsevier}
}
@article{goodfriend2007banking,
title={Banking and interest rates in monetary policy analysis: A quantitative exploration},
author={Goodfriend, Marvin and McCallum, Bennett T},
journal={Journal of Monetary Economics},
volume={54},
number={5},
pages={1480--1507},
year={2007},
publisher={Elsevier}
}
@article{carlstrom2017targeting,
title={Targeting long rates in a model with segmented markets},
author={Carlstrom, Charles T and Fuerst, Timothy S and Paustian, Matthias},
journal={American Economic Journal: Macroeconomics},
volume={9},
number={1},
pages={205--42},
year={2017}
}
@article{poutineau2015cross,
title={Cross-border banking flows spillovers in the Eurozone: Evidence from an estimated DSGE model},
author={Poutineau, Jean-Christophe and Vermandel, Gauthier},
journal={Journal of Economic Dynamics and Control},
volume={51},
pages={378--403},
year={2015},
publisher={Elsevier}
}
@article{gali2007understanding,
title={Understanding the effects of government spending on consumption},
author={Gal{\'\i}, Jordi and L{\'o}pez-Salido, J David and Vall{\'e}s, Javier},
journal={Journal of the European Economic Association},
volume={5},
number={1},
pages={227--270},
year={2007},
publisher={Wiley Online Library}
}
@article{pancrazi2016price,
title={The price of capital and the financial accelerator},
author={Pancrazi, Roberto and Seoane, Hern{\'a}n D and Vukotic, Marija},
journal={Economics Letters},
volume={149},
pages={86--89},
year={2016},
publisher={Elsevier}
}
@ARTICLE{GerdesmeierRoffia2004,
author = {Dieter Gerdesmeier and Barbara Roffia},
title = {Empirical Estimates of Reaction Functions for the Euro Area},
journal = {Swiss Journal of Economics and Statistics},
year = {2004},
volume = {140(1)},
pages = {37-66},
owner = {Maik},
timestamp = {2008.01.09}
}
@ARTICLE{LevinWielandWilliams2003,
author = {Andrew Levin and Volker Wieland and John C. Williams},
title = {The Performance of Forecast-Based Monetary Policy Rules under Model
Uncertainty},
journal = {The American Economic Review},
year = {2003},
volume = {93(3)},
pages = {622-645},
owner = {Maik},
timestamp = {2008.05.08}
}
@ARTICLE{ChristianoEichenbaumEvans2005,
author = {Lawrence J. Christiano and Martin Eichenbaum and Charles L. Evans},
title = {Nominal Rigidities and the Dynamic Effects of a Shock to Monetary
Policy},
journal = {Journal of Political Economy},
year = {2005},
volume = {113(1)},
pages = {1-45},
owner = {Maik},
timestamp = {2008.05.19}
}
@Article{WCMSW2012,
author={Wieland, Volker and Cwik, Tobias and Mueller, Gernot J. and Schmidt, Sebastian and Wolters, Maik},
title={A new comparative approach to macroeconomic modeling and policy analysis},
journal={Journal of Economic Behavior \& Organization},
year=2012,
volume={83},
number={3},
pages={523-541},
month={}
}
@ARTICLE{Taylor1993,
author = {John B. Taylor},
title = {Discretion versus Policy Rules in Practice},
journal = {Carnegie-Rochester Conference Series on Public Policy},
year = {1993},
volume = {39},
pages = {195-214},
owner = {Maik},
timestamp = {2008.01.09}
}
@ARTICLE{CarlstromFuerst1997,
author = {Carlstrom, Charles T. and Fuerst, Timothy S.},
title = {Agency Costs, Net Worth, and Business Fluctuations:
A Computable General Equilibrium Analysis},
journal = {American Economic Review},
year=1997,
volume={87},
number={5},
pages={893-910},
month={}}
@ARTICLE{OrphanidesWieland2013,
author = {Athanasios Orphanides and Volker Wieland},
title = {Complexity and Monetary Policy},
journal = {Journal of International Central Banking},
year = {2013},
volume = {9(1)},
pages = {167-204},
owner = {klodi},
timestamp = {2013.07.24}
}
@ARTICLE{ChristoffelKuester2008,
author = {Kai Christoffel and Keith Kuester},
title = {Resuscitating the Wage Channel in Models with Unemployment Fluctuations},
journal = {Journal of Monetary Economics},
year = {2008},
volume = {55},
pages = {865-887},
owner = {Tinka},
timestamp = {2011.08.08}
}
@ARTICLE{OrphanidesWieland2008,
author={Athanasios Orphanides and Volker Wieland},
title={Economic projections and rules of thumb for monetary policy},
journal={ Fed of St. Louis Review},
year=2008,
volume={},
pages={307-324},
timestamp = {2013.07.24}
}
@ARTICLE{AdolfsonLaseenLindeVillani2007,
author = {Malin Adolfson and Stefan Laseen and Jesper Linde and Mattias Villani},
title = {Bayesian Estimation of an Open Economy {DSGE} Model with Incomplete
pass-through},
journal = {Journal of International Economics},
year = {2007},
volume = {72},
pages = {481-511},
owner = {Seb},
timestamp = {2009.03.07}
}
@UNPUBLISHED{AltigChristianoEichenbaumLinde2005,
author = {David E. Altig and Lawrence J. Christiano and Martin Eichenbaum and
Jesper Linde},
title = {Firm-Specific Capital, Nominal Rigidities and the Business Cycle},
note = {CEPR Discussion Papers 4858},
year = {2005},
owner = {Maik},
timestamp = {2008.05.19}
}
@INCOLLECTION{BernankeGertlerGilchrist1999,
author = {Ben Bernanke and Mark Gertler and Simon Gilchrist},
title = {The Financial Accelerator in a Quantitative Business Cycles Framework},
booktitle = {Handbook of Macroeconomics Volume 1C},
publisher = {Amsterdam: Elsevier Science, North-Holland},
year = {1999},
editor = {John B. Taylor and Michael Woodford},
owner = {Seb},
timestamp = {2009.03.07}
}
@UNPUBLISHED{BraytonLaubach2008,
author = {Flint Brayton and Thomas Laubach},
title = {Documentation of Linearized {FRB/US}},
year = {2008},
owner = {Maik},
timestamp = {2008.05.26}
}
@ARTICLE{BuiterJewitt1981,
author = {Willem H. Buiter and Ian Jewitt},
title = {Staggered Wage Setting with Real Wage Relativities: Variations on
a Theme by {Taylor}},
journal = {The Manchester School},
year = {1981},
volume = {49},
pages = {211-228},
owner = {Maik},
timestamp = {2008.05.08}
}
@UNPUBLISHED{Carabenciovetal2008,
author = {Carabenciov,Ioan and Ermolaev,Igor and Freedman, Charles and Juillard, Michel and Kamenik, Ondra and Korshunov, Dmitry and Laxton, Douglas},
title = {A Small Quarterly Projection Model of the {US} Economy},
note = {IMF Working Paper 08/278},
year = {2008},
month = {Sep},
timestamp = {2010.11.23}
}
@UNPUBLISHED{Carabenciovetal20082,
author = {Carabenciov,Ioan and Ermolaev,Igor and Freedman,Charles and Juillard, Michel and Kamenik, Ondra and Korshunov,Dmitry and Laxton,Douglas, and Laxton,Jared},
title = {A Small Quarterly Multi-Country Projection Model},
note = {IMF Working Paper 08/279},
year = {2008},
month = {Dec},
timestamp = {2010.11.23}
}
@UNPUBLISHED{Levinetal2004,
author = {Levin, Andrew T. and Natalucci, Fabio M. and Zakrajsek, Egon},
title = {The Magnitude and Cyclical Behavior of Financial Market Frictions},
note = {Series Staff Working Paper 2004–70},
year = {2004},
month = { },
timestamp = { }
}
@ARTICLE{Carabenciovetal2013,
author = {Carabenciov, Ioan and Freedman, Charles and Garcia-Saltos, Roberto and Laxton, Douglas and Kamenik, Ondra and Manchev, Petar},
title = {GPM6 - The Global Projection Model with 6 Regions},
journal = {IMF Working Paper 13/87},
year = {2013},
month = {April},
timestamp = {2008.01.09}
}
@ARTICLE{ChariKehoeMcGrattan2009,
author = {V. V. Chari and P. Kehoe and E. McGrattan},
title = {New {Keynesian} Models: Not Yet Useful for Policy Analysis},
journal = {American Economic Journal: Macroeconomics},
year = {2009},
volume = {1(1)},
pages = {242-266},
owner = {Seb},
timestamp = {2009.03.06}
}
@ARTICLE{Coenenetal2012,
author = {Guenter Coenen and Christopher J. Erceg and Charles Freedman and
Davide Furceri and Michael Kumhof and Rene Lalonde and Douglas Laxton
and Jesper Linde and Annabelle Mourougane and Dirk Muir and Susanna
Mursula and Carlos de Resende and John Roberts and Werner Roeger
and Stephen Snudden and Mathias Trabandt and Jan in't Veld},
title = {Effects of Fiscal Stimulus in Structural Models},
journal = {American Economic Journal: Macroeconomics},
year = {2012},
volume = {4},
pages = {22-68},
owner = {vw},
timestamp = {2012.01.20}
}
@ARTICLE{ChariKehoeMcGrattan2000,
author = {V. V. Chari and P. Kehoe and E. McGrattan},
title = {Sticky price models of the business cycle: Can the contract multiplier
solve the persistence problem?},
journal = {Econometrica},
year = {2000},
volume = {68(5)},
pages = {1151-1180},
owner = {Maik},
timestamp = {2008.05.26}
}
@ARTICLE{ChristensenDib2008,
author = {Ian Christensen and Ali Dib},
title = {The financial accelerator in an estimated {New Keynesian} model},
journal = {Review of Economic Dynamics},
year = {2008},
volume = {11},
pages = {155-178},
owner = {Seb},
timestamp = {2010.11.23}
}
@ARTICLE{Justinianoetal2011,
author = {Justiniano, Alejandro and Primiceri, Giorgio E. and Tambalotti, Andrea},
title = {Investment shocks and the relative price of investment},
journal = {Review of Economic Dynamics},
year = {2011},
volume = {14},
pages = {102-121}
}
@ARTICLE{Christoffel2008,
author = {Kai Christoffel and Keith Kuester},
title = {Resuscitating the Wage Channel in Models with Unemployment Fluctuations},
journal = {Journal of Monetary Economics},
year = {2008},
volume = {55},
pages = {865-887},
owner = {Tinka},
timestamp = {2011.08.08}
}
@ARTICLE{ChristoffelKuesterLinzert2009,
author = {Kai Christoffel and Keith Kuester and Tobias Linzert},
title = {The Role of Labor Markets for Euro Area Monetary Policy},
journal = {European Economic Review},
year = {2009},
volume = {53},
pages = {908-936},
owner = {Tinka},
timestamp = {2011.08.08}
}
@article{CMR2014,
Author = {Christiano, Lawrence J. and Motto, Roberto and Rostagno, Massimo},
Title = {Risk Shocks},
Journal = {American Economic Review},
Volume = {104},
Number = {1},
Year = {2014},
Pages = {27-65},
}
@ARTICLE{ClaridaGaliGertler2002,
author = {Richard Clarida and Jordi Gali and Mark Gertler},
title = {A simple framework for international monetary policy analysis},
journal = {Journal of Monetary Economics},
year = {2002},
volume = {49},
pages = {879-904},
owner = {Maik},
timestamp = {2008.05.19}
}
@ARTICLE{ClaridaGaliGertler1999,
author = {Richard Clarida and Jordi Gali and Makr Gertler},
title = {The Science of Monetary Policy: A {New Keynesian} Perspective},
journal = {Journal of Economic Literature},
year = {1999},
volume = {37(4)},
pages = {1661-1707},
owner = {Maik},
timestamp = {2008.01.10}
}
@ARTICLE{CoenenMcAdamStraub2008,
author = {Guenter Coenen and Peter McAdam and Roland Straub},
title = {Tax reform and labour-market performance in the euro area: A simulation-based
analysis using the {New Area-Wide Model}},
journal = {Journal of Economic Dynamics \& Control},
year = {2008},
volume = {32(8)},
pages = {2543-2583},
owner = {Seb},
timestamp = {2009.03.16}
}
@ARTICLE{Carlstrometal2014,
author = {Carlstrom, Charles T. and Fuerst, Timothy S. and Ortiz, Alberto and Paustian, Matthias},
title = {Estimating contract indexation in a Financial Accelerator Model},
journal = {Journal of Economic Dynamics \& Control},
year = {2014},
volume = {46},
pages = {130-194}
}
@ARTICLE{CoenenStraub2005,
author = {Guenter Coenen and Roland Straub},
title = {Does Government Spending Crowd in private Consumption? Theory and
Empirical Evidence for the Euro Area},
journal = {International Finance},
year = {2005},
volume = {8(3)},
pages = {435-470},
owner = {Seb},
timestamp = {2009.03.06}
}
@ARTICLE{CoenenWieland2005,
author = {Gunter Coenen and Volker Wieland},
title = {A small estimated euro area model with rational expectations and
nominal rigidities},
journal = {European Economic Review},
year = {2005},
volume = {49},
pages = {1081-1104},
owner = {Maik},
timestamp = {2008.05.19}
}
@UNPUBLISHED{CoenenWieland2002,
author = {Guenter Coenen and Volker Wieland},
title = {Inflation Dynamics and International Linkages: A Model of the {United
States, the Euro Area and Japan}},
note = {ECB Working Paper Series 181},
year = {2002},
owner = {Maik},
timestamp = {2008.05.26}
}
@ARTICLE{CollardJuillard2001,
author = {Fabrice Collard and Michael Juillard},
title = {Accuracy of Stochastic Perturbation Methods: The Case of Asset Pricing
Models},
journal = {Journal of Economic Dynamics \& Control},
year = {2001},
volume = {25},
pages = {979-999},
owner = {Seb},
timestamp = {2009.03.04}
}
@BOOKLET{CongressionalBudgetOffice,
title = {Cost Estimate for Conference Agreement for {H.R.1}},
author = {{Congressional Budget Office}},
year = {February 13, 2009},
owner = {Seb},
timestamp = {2009.03.06}
}
@ARTICLE{DeGraeve2008,
author = {Ferre {De Graeve}},
year = {2008},
title = {The external finance premium and the macroeconomy: {US} post-{WWII} evidence},
journal = {Journal of Economic Dynamics and Control},
volume = {32},
pages = {3415-3440},
owner = {Seb},
timestamp = {2010.11.23}
}
@ARTICLE{DieppeKuesterMcAdam2005,
author = {Alistair Dieppe and Keith Kuester and Peter McAdam},
year = 2005,
title = {Optimal Monetary Policy Rules for the Euro Area: An Analysis Using
the Area Wide Model},
journal = {Journal of Common Market Studies},
volume = 43,
number = 3,
pages = {507-5372}
}
@ARTICLE{DixonKara2006,
author = {Huw Dixon and Engin Kara},
title = {How to Compare {Taylor} and {Calvo} Contracts: A Comment on {Michael Kiley}},
journal = {Journal of Money, Credit and Banking},
year = {2006},
volume = {38(4)},
pages = {1119-1126},
owner = {Maik},
timestamp = {2008.05.08}
}
@ARTICLE{EdgeKileyLaforte2007,
author = {Rochelle M. Edge and Michael T. Kiley and Jean-Philippe Laforte},
title = {Natural Rate Measures in an Estimated {DSGE} Model of the {U.S.} Economy},
journal = {Journal of Economic Dynamics \& Control},
year = {2008},
volume = {32},
pages = {2512-2535},
owner = {Klodi},
timestamp = {2011.02.21}
}
@ARTICLE{ErcegGuerrieriGust2008,
author = {Christopher J. Erceg and Luca Guerrieri and Christopher Gust},
title = {Trade adjustment and the composition of trade},
journal = {Journal of Economic Dynamics \& Control},
year = {2008},
volume = {32},
pages = {2622-2650},
owner = {Maik},
timestamp = {2008.05.26}
}
@ARTICLE{FuhrerMoore1997,
author = {Jeffrey C. Fuhrer},
title = {Inflation/Output Variance Trade-Offs and Optimal Monetary Policy},
journal = {Journal of Money, Credit and Banking},
year = {1997},
volume = {29(2)},
pages = {214-234},
owner = {Maik},
timestamp = {2008.05.08}
}
@ARTICLE{FuhrerMoore1995,
author = {Jeffrey C. Fuhrer and George Moore},
title = {Inflation Persistence},
journal = {The Quarterly Journal of Economics},
year = {1995},
volume = {110(1)},
pages = {127-159},
owner = {Maik},
timestamp = {2008.05.08}
}
@ARTICLE{FunkePaetzPytlarczyk2011,
author = {Michael Funke and Michael Paetz and Ernest Pytlarczyk},
title = {Stock Market Wealth Effects in an Estimated {DSGE} Model for {Hong Kong}},
journal = {Economic Modelling},
year = {2011},
volume = {28},
pages = {316-334},
owner = {Tinka},
timestamp = {2011.08.08}
}
@ARTICLE{GaliMonacelli2005,
author = {Jordi Gali and Tommaso Monacelli},
title = {Monetary Policy and Exchange Rate Volatility in a Small Open Economy},
journal = {Review of Economic Studies},
year = {2005},
volume = {72},
pages = {707-734},
owner = {Maik},
timestamp = {2008.05.19}
}
@ARTICLE{Gelain2010,
author = {Paolo Gelain},
title = {The External Finance Premium in the Euro Area: A Dynamic Stochastic General Equilibrium Analysis},
journal = {North American Journal of Economics and Finance},
year = {2010},
volume = {21},
pages = {49-71},
owner = {Tinka},
timestamp = {2011.08.08}
}
@Article{GertlerKaradi2011,
author={Gertler, Mark and Karadi, Peter},
title={A model of unconventional monetary policy},
journal={Journal of Monetary Economics},
year=2011,
volume={58},
number={1},
pages={17-34},
month={January},
keywords={},
}
@Article{GertlerKaradi2013,
author={Gertler, Mark and Karadi, Peter},
title={QE 1 vs. 2 vs. 3. . . : A Framework for Analyzing Large-Scale Asset Purchases as a Monetary Policy Tool},
journal={International Journal of Central Banking},
year=2013,
volume={9},
number={1},
pages={},
month={January},
keywords={},
}
@Article{EllisonTischbirek2014,
author={Ellison, Martin and Tischbirek, Andreas},
title={Unconventional government debt purchases as a supplement to conventional monetary policy},
journal={Journal of Economic Dynamics and Control},
year=2014,
volume={43},
pages={199 - 217},
month={April},
keywords={},
}
@ARTICLE{Geweke1999,
author = {John Geweke},
title = {Using Simulation Methods for Bayesian Econometric Models: Inference,
Development and Communication},
journal = {Econometric Review},
year = {1999},
volume = {18},
pages = {1-126},
owner = {Seb},
timestamp = {2009.03.07}
}
@UNPUBLISHED{Gouveaetal2008,
author = {Solange Gouvea and Andre Minella and Rafael Santos and Nelson Souza-Sobrinho},
title = {Samba: Stochastic Analytical Model with a Bayesian Approach},
note = {Manuscript},
year = {2008},
owner = {Seb},
timestamp = {2010.11.23}
}
@ARTICLE{Guerrieri2006,
author = {Luca Guerrieri},
title = {The Inflation Persistence of Staggered Contracts},
journal = {Journal of Money, Credit, and Banking},
year = {2006},
volume = {38(2)},
pages = {483-494},
owner = {Maik},
timestamp = {2008.05.08}
}
@ARTICLE{Iacoviello2005,
author = {Matteo Iacoviello},
title = {House Prices, Borrowing Constraints, and Monetary Policy in the Business Cycle},
journal = {The American Economic Review},
year = {2005},
volume = {95(3)},
pages = {739-764},
owner = {Seb},
timestamp = {2010.11.23}
}
@ARTICLE{Ireland2004,
author = {Peter Ireland},
title = {Money's Role in the Monetary Business Cycle},
journal = {Journal of Money, Credit and Banking},
year = {2004},
volume = {36(6)},
pages = {969-983},
owner = {Seb},
timestamp = {2010.11.23}
}
@ARTICLE{Ireland2011,
author = {Peter Ireland},
title = {A {New Keynesian} Perspective on the {Great Recession}},
journal = {Journal of Money, Credit and Banking},
year = {2011},
volume = {43(1)},
pages = {31-54},
owner = {Tinka},
timestamp = {2011.08.08}
}
@ARTICLE{LaxtonPesenti2003,
author = {Douglas Laxton and Paolo Pesenti},
title = {Monetary rule for small, open, emerging economies},
journal = {Journal of Monetary Economics},
year = {2003},
volume = {50},
pages = {1109-1146},
owner = {Maik},
timestamp = {2008.05.19}
}
@ARTICLE{LubikSchorfheide2007,
author = {Thomas A. Lubik and Frank Schorfheide},
title = {Do Central Banks Respond to Exchange Rate Movements? A Structural Investigation},
journal = {Journal of Monetary Economics},
year = {2007},
volume = {54},
pages = {1069-1087},
owner = {Tinka},
timestamp = {2011.08.08}
}
@ARTICLE{FaganHenryMestre2005,
author = {Gabriel Fagan and Jerome Henry and Ricardo Mestre},
title = {An area-wide model for the euro area},
journal = {Economic Modelling},
year = {2005},
volume = {22},
pages = {39-59},
owner = {Maik},
timestamp = {2008.05.19}
}
@ARTICLE{Lucas1976,
author = {Robert Lucas},
title = {Econometric Policy Evaluation: A Critique},
journal = {Carnegie-Rochester Conference Series on Public Policy},
year = {1976},
volume = {1},
pages = {19-46},
owner = {Seb},
timestamp = {2009.03.07}
}
@ARTICLE{MankiwReis2007,
author = {N. Gregory Mankiw and Ricardo Reis},
title = {Sticky Information in General Equilibrium},
journal = {Journal of the European Economic Association},
year = {2007},
volume = {5(2-3)},
pages = {603-613},
owner = {Seb},
timestamp = {2010.11.23}
}
@INCOLLECTION{McCallumNelson1999,
author = {Bennett McCallum and Edward Nelson},
title = {Performance of Operational Policy Rules in an Estimated Semi-Classical
Structural Model},
booktitle = {Monetary Policy Rules},
publisher = {Chicago: University of Chicago Press},
year = {1999},
editor = {John B. Taylor},
owner = {Seb},
timestamp = {2009.03.07}
}
@UNPUBLISHED{MedinaSoto2007,
author = {Juan Pablo Medina and Claudio Soto},
title = {The {C}hilean Business Cycles through the Lens of a Stochastic General Equilibrium Model},
note = {Central Bank of Chile Working Papers 457},
year = {2007},
owner = {Seb},
timestamp = {2010.11.23}
}
@UNPUBLISHED{MurchisonRennison2006,
author = {Stephen Murchison and Andrew Rennison},
title = {{ToTEM}: The {B}ank of {C}anada's New Quarterly Projection Model},
note = {Bank of Canada Technical Report No. 97},
year = {2006},
owner = {Seb},
timestamp = {2010.11.23}
}
@ARTICLE{Orphanides2003,
author = {Athanasios Orphanides},
title = {The Quest for Prosperity without Inflation},
journal = {Journal of Monetary Economics},
year = {2003},
volume = {50},
pages = {633-663},
owner = {Seb},
month = {July},
timestamp = {2009.03.07}
}
@ARTICLE{Orphanides20032,
author = {Athanasios Orphanides},
title = {Historical monetary policy analysis and the Taylor rule},
journal = {Journal of Monetary Economics},
year = {2003},
volume = {50},
pages = {983-1022},
month = {July},
timestamp = {2009.03.07}
}
@UNPUBLISHED{OrphanidesWieland1998,
author = {Athanasios Orphanides and Volker Wieland},
title = {Price stability and monetary policy effectiveness when nominal interest
rates are bounded at zero},
note = {Finance and Economics Discussion Series 98-35, Board of Governors
of the Federal Reserve System},
year = {1998},
owner = {Seb},
timestamp = {2009.03.07}
}
@ARTICLE{Rotemberg1982,
author = {Julio J. Rotemberg},
title = {Sticky Prices in the {United States}},
journal = {Journal of Political Economy},
year = {1982},
volume = {90 (4)},
pages = {1187-1211},
owner = {Maik},
timestamp = {2008.05.15}
}
@UNPUBLISHED{Trigari2006,
author = {Antonella Trigari},
title = {The Role of Search Frictions and Bargaining for Inflation Dynamics},
note = {IGIER Working Paper No. 304},
year = {2006},
owner = {Seb},
timestamp = {2009.03.07}
}
@ARTICLE{Kimball1995,
author = {Kimball, M.S.},
title = {The Quantitative Analytics of the Basic {Neomonetarist} Model},
journal = {Journal of Money, Credit and Banking},
year = {1995},
volume = {27(4)},
pages = {1241-1277},
owner = {Maik},
timestamp = {2008.05.26}
}
@ARTICLE{MortensenPissarides1994,
author = {Dale Mortensen and Christopher Pissarides},
title = {Job creation and job desctruction in the theory of unemployment},
journal = {Review of Economic Studies},
year = {1994},
volume = {61(3)},
pages = {397-415},
owner = {Seb},
timestamp = {2009.03.07}
}
@BOOK{Woodford2003,
title = {Interest and Prices: Foundations of a Theory of Monetary Policy},
publisher = {Princeton University Press},
year = {2003},
author = {Michael Woodford},
owner = {Maik},
timestamp = {2008.01.09}
}
@ARTICLE{Rabanal2007,
author = {Pau Rabanal},
title = {Does Inflation Increase after a Monetary Policy Tightening? Answers Based on a Estimated {DSGE} Model},
journal = {Journal of Economic Dynamics \& Control},
year = {2007},
volume = {31},
pages = {906-937},
owner = {Tinka},
timestamp = {2011.08.08}
}
@ARTICLE{Yun1996,
author = {Tack Yun},
title = {Nominal Price Rigidity, Money Supply Endogeneity, and Business Cycles},
journal = {Journal of Monetary Economics},
year = {1996},
volume = {37},
pages = {345-370},
owner = {Maik},
timestamp = {2008.05.15}
}
@ARTICLE{Rabanal2009,
author = {Pau Rabanal},
title = {Inflation Differentials between {Spain} and the {EMU}: A {DSGE} Perspective},
journal = {Journal of Money, Credit and Banking},
year = {2009},
volume = {41(6)},
pages = {1141-1166},
owner = {Tinka},
timestamp = {2011.08.08}
}
@ARTICLE{RattoRoegerVeld2009,