diff --git a/preprocessor/DynareBison.yy b/preprocessor/DynareBison.yy
index be46daae93f690020ceb5fbd16adeb8a0a80fe94..d2c6ae5165a77cfa8a9b9be6d69489aa5923ca44 100644
--- a/preprocessor/DynareBison.yy
+++ b/preprocessor/DynareBison.yy
@@ -3047,16 +3047,16 @@ o_psd_fig_name : FIG_NAME EQUAL filename { driver.option_str("plot_shock_decomp.
 o_psd_type : TYPE EQUAL QOQ
              { driver.option_str("plot_shock_decomp.type", "qoq"); }
            | TYPE EQUAL YOY
-             { driver.option_str("plot_shock_decomp.type", "qoq"); }
+             { driver.option_str("plot_shock_decomp.type", "yoy"); }
            | TYPE EQUAL AOA
-             { driver.option_str("plot_shock_decomp.type", "qoq"); }
+             { driver.option_str("plot_shock_decomp.type", "aoa"); }
            ;
 o_icd_type : TYPE EQUAL QOQ
              { driver.option_str("initial_condition_decomp.type", "qoq"); }
            | TYPE EQUAL YOY
-             { driver.option_str("initial_condition_decomp.type", "qoq"); }
+             { driver.option_str("initial_condition_decomp.type", "yoy"); }
            | TYPE EQUAL AOA
-             { driver.option_str("initial_condition_decomp.type", "qoq"); }
+             { driver.option_str("initial_condition_decomp.type", "aoa"); }
            ;
 o_icd_plot_init_date : PLOT_INIT_DATE EQUAL date_expr { driver.option_date("initial_condition_decomp.plot_init_date", $3); } ;
 o_icd_plot_end_date : PLOT_END_DATE EQUAL date_expr { driver.option_date("initial_condition_decomp.plot_end_date", $3); } ;