Not super sure of the notation you are using. To be a bit pedantic I think what you are referring is the AutoRegressive model. MA model has a very specific meaning: the recent value you see is a linear combination of random noises.
More formally, suppose you observe
Y_1, Y_2, ..., Y_8
and build an AR(7):
Y_8 \sim Y_1 + ... + Y_7
up untill now everything is fine. A fully fledged AR model (or indeed more general ARIMA models) will come with distributional assumptions that allows you generate prediciton intervals as well. The width of prediciton intervals inform you how ‘hard’ the forecast is.
Then to predict Y_9 you just plug in \hat{Y}_8, but the key fact here is that the distribution uncertainty propagates, which is roughly the reason you see hurricane paths have larger and larger intervals as forecast date gets further (not saying they actually use an AR model, but you get the idea)