I'm trying to come up with a test for parameter constancy that's general enough to use for both OLS models and ARIMAx models. In all cases, we have non-stochastic exogenous variables.
Here's the chow prediction interval statistic for OLS with $k$ parameters, equation (31) in Chow's paper from 1960, "Tests of Equality Between Sets of Coefficients in Two Linear Regressions": $$ \frac{||X_1\beta_1-X_1\beta_0||^2+||Y_2-X_2\beta_0||^2}{||Y_1-X_1\beta_1||^2} \cdot\frac{n-k}{m} \sim F_{(m,n-k)} $$ where $$ Y_0=\begin{bmatrix}Y_1\\Y_2\end{bmatrix}, X_0=\begin{bmatrix}X_1\\X_2\end{bmatrix}, \beta_j=(X_j'X_j)^{-1}X_j'Y_j $$ and $X_1$ is $n$ by $k$, and $X_2$ is $m$ by $k$
Here's the question: If I modify the this chow prediction interval test statistic by replacing all the $X\beta$ terms with the analogous one step ahead projections from an ARIMAx model, what conclusions can I still draw from the modified test statistic, if any? (Is this modified statistic still distributed $F_{(m,n-k)}$?)
i.e. $$ \frac{||f_1(X_1)-f_0(X_1)||^2+||Y_2-f_0(X_2)||^2}{||Y_1-f_1(X_1)||^2} \cdot\frac{n-k}{m} $$ where $f_j$ is the ARIMAx model with parameters estimated using $X_j$ and $Y_j$