If you build a moving average from stock price values, then the price graph fluctuates around this moving average. How can one mathematically prove that a price's deviation from its moving average is a mean reversion process?
If $x_{t}$ - price at moment $t$,
Exponential Moving Average (EMA): $y_{t}=(1-\alpha )\cdot y_{t-1} + \alpha \cdot x_{t};\ \ where\ \alpha = Const, 0 < \alpha < 1$
or Simple Moving Average (SMA): $y_{t}=\frac{1}{k}\cdot \sum_{i=0}^{k-1}x_{t-i}$
Price deviation from its moving average: $s_{t}=y_{t}-x_{t}$
UPDATE:
While discussing with @Henry I realized the ambiguity of my question, because... I meant mean reversion as it is defined in finance:
"Asset's price will tend to converge to the average price over time"
So it is enough to prove that this process is autoregressive (AR(1) with autoregression coefficient $0 < \varphi < 1$), which is what I did in one of the drawings for an exponential moving average. But I haven’t succeeded yet with the proof for a simple moving average...



Proved for EMA:
$$ s_{t}=y_{t}-x_{t}=\\ (1-\alpha )\cdot y_{t-1} + \alpha \cdot x_{t}-x_{t}=\\ (1-\alpha )\cdot s_{t-1} + (1-\alpha )\cdot x_{t-1}-(1-\alpha )\cdot x_{t}=\\ (1-\alpha )\cdot s_{t-1} - (1-\alpha )\cdot (x_{t}-x_{t-1})=\\ (1-\alpha )\cdot s_{t-1} - (1-\alpha )\cdot \epsilon_{t}\\ \\ \\ \\This\ is\ a\ formula\ for\ auto-regression\ AR(1)\ model,\ and\\ since\ (1-\alpha )<1\\ and\ assuming\ \epsilon_{t}=x_{t}-x_{t-1}\ is\ white\ noise, \\ \Rightarrow s_{t}\ is\ \mathbf{mean\ reversion\ process} $$