I have a file with 5 years worth of daily data from 2015 to 2019 (31/12/2019) and I need to forecast daily values for 2021; I use statsmodels.tsa.holtwinters.ExponentialSmoothing and until now I was able to forecast it by also forecasting year 2019 and 2020. Is it possible to forecast 2021 without doing it for 2020?
Here's what I have in terms of code:
fit1 = ExponentialSmoothing(train[colval],seasonal_periods=730,trend=trend, seasonal=seasonal,).fit()
prediction_result = fit1.forecast(365)
With the above code, the forecast also starts just after the training data set, is it normal?
This is how I split my data: 2015-2018 train and 2019 for test