diff --git a/src/ComputingTasks.cc b/src/ComputingTasks.cc
index 7a3f51b06171d1312e9a47320c796932efd9e752..c67084a4eac3843a6077bd2f3a0a7bab342e85e9 100644
--- a/src/ComputingTasks.cc
+++ b/src/ComputingTasks.cc
@@ -2927,9 +2927,9 @@ PlotConditionalForecastStatement::writeOutput(ostream &output, const string &bas
 {
   symbol_list.writeOutput("var_list_", output);
   if (periods == -1)
-    output << "plot_icforecast(var_list_,[],options_);" << endl;
+    output << "plot_icforecast(var_list_,[],options_,oo_);" << endl;
   else
-    output << "plot_icforecast(var_list_, " << periods << ",options_);" << endl;
+    output << "plot_icforecast(var_list_, " << periods << ",options_,oo_);" << endl;
 }
 
 void