Module 1 · Chapter 3 · Lesson 2

Z-Score: Normalizing Price Distance from the Mean

5 min readMeasuring Deviation from the Mean
The Black Book of Day Trading Strategies
Free Book

The Black Book of Day Trading Strategies

1,000 complete strategies · 31 chapters · Full trade plans

Understanding Z-Score

The Z-score quantifies a data point's distance from the mean. It measures this distance in standard deviation units. Traders use the Z-score to normalize price data. This normalization allows comparison across different assets or time periods. A positive Z-score indicates a price above the mean. A negative Z-score indicates a price below the mean. A Z-score of zero means the price equals the mean.

Calculate the Z-score using this formula:

$Z = (X - \mu) / \sigma$

Here, $X$ represents the current data point (e.g., closing price). $\mu$ denotes the population mean. $\sigma$ signifies the population standard deviation. For trading, we often use a rolling window to estimate $\mu$ and $\sigma$. This creates a dynamic mean and standard deviation.

Calculating Z-Score for Mean Reversion

Consider a mean reversion strategy on a stock like Apple (AAPL). We need to define a lookback period. This period determines the mean and standard deviation. Let's use a 20-day simple moving average (SMA) as our mean. We also use the 20-day rolling standard deviation.

Imagine AAPL's closing prices from January 2, 2024, to January 23, 2024:

DateAAPL Close20-Day SMA20-Day Std Dev
2024-01-02$185.64$188.00$2.50
2024-01-03$184.25$187.90$2.45
2024-01-04$181.91$187.75$2.60
2024-01-05$181.18$187.60$2.65
2024-01-08$185.56$187.50$2.55
2024-01-09$185.10$187.40$2.50
2024-01-10$186.05$187.30$2.40
2024-01-11$185.92$187.20$2.35
2024-01-12$185.92$187.10$2.30
2024-01-16$183.63$187.00$2.25
2024-01-17$182.68$186.90$2.20
2024-01-18$182.68$186.80$2.15
2024-01-19$182.68$186.70$2.10
2024-01-22$182.68$186.60$2.05
2024-01-23$182.68$186.50$2.00

Let's calculate the Z-score for AAPL on January 2, 2024. Current Price ($X$): $185.64 20-Day SMA ($\mu$): $188.00 20-Day Std Dev ($\sigma$): $2.50

$Z = (185.64 - 188.00) / 2.50 = -2.36 / 2.50 = -0.944$

On January 2, 2024, AAPL's closing price was 0.944 standard deviations below its 20-day mean. This suggests a potential undervaluation relative to its recent average. A mean reversion trader might consider a long position here.

Now, let's calculate the Z-score for January 23, 2024. Current Price ($X$): $182.68 20-Day SMA ($\mu$): $186.50 20-Day Std Dev ($\sigma$): $2.00

$Z = (182.68 - 186.50) / 2.00 = -3.82 / 2.00 = -1.91$

On January 23, 2024, AAPL's closing price was 1.91 standard deviations below its 20-day mean. This represents a stronger deviation than on January 2. A mean reversion trader might view this as a more compelling long entry point.

Interpreting Z-Scores for Trading Signals

Z-scores provide a standardized measure of deviation. This allows traders to establish universal thresholds for entry and exit. Common thresholds for mean reversion strategies include +/- 1.5, +/- 2.0, or +/- 2.5 standard deviations. The choice depends on the asset's volatility and the trader's risk tolerance.

Consider a strategy for AAPL: Enter Long: Z-score falls below -1.5. Enter Short: Z-score rises above +1.5. Exit Long: Z-score returns to 0 (mean). Exit Short: Z-score returns to 0 (mean).

Let's apply these rules to our AAPL example:

DateAAPL Close20-Day SMA20-Day Std DevZ-ScoreSignal
2024-01-02$185.64$188.00$2.50-0.94
2024-01-03$184.25$187.90$2.45-1.49
2024-01-04$181.91$187.75$2.60-2.25Enter Long
2024-01-05$181.18$187.60$2.65-2.42Hold Long
2024-01-08$185.56$187.50$2.55-0.76Exit Long

On January 4, 2024, AAPL's Z-score dropped to -2.25. This crossed our -1.5 entry threshold. A trader would initiate a long position. The price continued to decline, and the Z-score reached -2.42 on January 5. On January 8, the Z-score rebounded to -0.76. This is above the 0 exit threshold. The trader would close the long position.

Z-scores are particularly useful for pairs trading. In pairs trading, two highly correlated assets diverge. A trader buys the underperforming asset and sells the outperforming asset. The Z-score of the spread (Price A - Price B) or ratio (Price A / Price B) becomes the primary signal.

Consider a pair: Coca-Cola (KO) and PepsiCo (PEP). We calculate the Z-score of their price ratio (KO/PEP). If the KO/PEP ratio's Z-score is -2.0, KO is significantly undervalued relative to PEP. A trader would buy KO and sell PEP. If the KO/PEP ratio's Z-score is +2.0, KO is significantly overvalued relative to PEP. A trader would sell KO and buy PEP. The trade closes when the Z-score approaches 0.

Limitations and Practical Considerations

Z-scores assume a normal distribution of data. Financial asset prices often exhibit fat tails and skewness. Extreme price movements occur more frequently than a normal distribution predicts. This means Z-scores exceeding +/- 2 or 3 might not be as rare as theory suggests. Traders must acknowledge this.

The choice of lookback period for the mean and standard deviation significantly impacts Z-score sensitivity. A shorter lookback period makes the Z-score more reactive to recent price changes. A longer period makes it smoother and less prone to whipsaws. Backtest different lookback periods to optimize strategy performance.

Z-score thresholds require careful calibration. Overly aggressive thresholds (e.g., +/- 1.0) generate too many false signals. Overly conservative thresholds (e.g., +/- 3.0) miss opportunities. The optimal threshold varies by asset, market conditions, and strategy goals.

Consider incorporating other indicators. Volume analysis can confirm Z-score signals. High volume on a Z-score deviation may indicate conviction. Price action patterns can also provide context. A Z-score signal combined with a candlestick reversal pattern offers stronger evidence.

Implement stop-loss orders. Mean reversion strategies are not infallible. Prices can continue to trend away from the mean. A Z-score-based stop-loss could be a fixed threshold (e.g., exit if Z-score reaches -3.0 after a long entry at -1.5). Alternatively, use a percentage-based stop-loss.

Develop a robust backtesting framework. Test the Z-score strategy across diverse market regimes. Evaluate its performance during trending and range-bound markets. This provides confidence in the strategy's robustness.