Does PROC X12 forecast data for use in seasonal adjustment if I use only the X11 statement without a REGRESSION or ARIMA statement? My code is like this:
proc x12 data=unadjusted date=yyq interval=4;
by sex agegrp industry;
var Emp;
x11 mode=add outforecast;
output out=Emp_add d11;
run;
My data goes through 2013 quarter 4. When I use X11 with the OUTFORECAST option, tables D10.A and D16.A include data through 2014. Does that mean data is being forecast one year ahead and then used for seasonal adjustment? Is data forecast one year ahead by default? Thanks for your help.