How does one forecast 2 steps ahead in an ARMA model? If my training data is $y_1, ..., y_T$, and I have an ARMA(1, 1) model, then I have
$$\hat{y}_{T+1} = \alpha*y_T + \beta*(\hat{y}_T-y_T)$$
but what about $\hat{y}_{T+2}$? How would I know what to multiply $\beta$ by, because I don't know the error at time step $T+1$?