CONTENTS

Solution: Variance and Drift of a Biased Random Walk

Part 1 — Single-tick moments

Each XiX_i takes value +1+1 with probability p=0.51p = 0.51 and 1-1 with probability q=0.49q = 0.49:

E[Xi]=(+1)(0.51)+(1)(0.49)=0.02\mathbb{E}[X_i] = (+1)(0.51) + (-1)(0.49) = 0.02

For the variance:

E[Xi2]=(+1)2(0.51)+(1)2(0.49)=1\mathbb{E}[X_i^2] = (+1)^2(0.51) + (-1)^2(0.49) = 1 Var(Xi)=E[Xi2](E[Xi])2=1(0.02)2=0.9996\operatorname{Var}(X_i) = \mathbb{E}[X_i^2] - (\mathbb{E}[X_i])^2 = 1 - (0.02)^2 = 0.9996

Part 2 — nn-step moments

Since Sn=i=1nXiS_n = \sum_{i=1}^{n} X_i with XiX_i i.i.d., linearity of expectation gives:

E[Sn]=nE[Xi]=0.02n\mathbb{E}[S_n] = n\mathbb{E}[X_i] = 0.02\,n

Independence of the XiX_i makes the variance additive:

Var(Sn)=nVar(Xi)=0.9996n\operatorname{Var}(S_n) = n\operatorname{Var}(X_i) = 0.9996\,n

Part 3 — One day of ticks (n=10,000n = 10{,}000)

E[S10,000]=0.02×10,000=$200\mathbb{E}[S_{10{,}000}] = 0.02 \times 10{,}000 = \$200 Var(S10,000)=0.9996×10,000=9996,SD(S10,000)=9996$99.98\operatorname{Var}(S_{10{,}000}) = 0.9996 \times 10{,}000 = 9996, \qquad \operatorname{SD}(S_{10{,}000}) = \sqrt{9996} \approx \$99.98

The expected gain is $200, but the standard deviation is $100. One standard deviation below the expected path is still $100 profit; one standard deviation above is $300. The distribution of daily P&L is wide relative to its mean.

Part 4 — Signal-to-noise ratio

E[Sn]Var(Sn)=0.02n0.9996n0.02n1=0.02n\frac{\mathbb{E}[S_n]}{\sqrt{\operatorname{Var}(S_n)}} = \frac{0.02\,n}{\sqrt{0.9996\,n}} \approx \frac{0.02\sqrt{n}}{1} = 0.02\sqrt{n}

Setting this equal to 1:

0.02n=1    n=10.0004=25000.02\sqrt{n} = 1 \implies n = \frac{1}{0.0004} = 2500

So after 2500 ticks (roughly a quarter-day), the expected move is one standard deviation above zero. More usefully, the signal-to-noise ratio grows only as n\sqrt{n} — to get a ratio of 2 (a meaningful statistical signal) requires n=10,000n = 10{,}000, and a ratio of 3 requires n=22,500n = 22{,}500.

Takeaways

  • Drift scales as nn, noise scales as n\sqrt{n}. Their ratio — the Sharpe-like signal-to-noise — grows only as n\sqrt{n}. This is why statistical significance for small drifts requires huge samples.
  • E[Xi2]=1\mathbb{E}[X_i^2] = 1 whenever Xi{±1}X_i \in \{\pm 1\}, regardless of pp. The variance reduces to 1μ2=4pq1 - \mu^2 = 4pq, which is maximised at p=1/2p = 1/2 and degenerate at the extremes.
  • Practical consequence. When fitting a random-walk model to intraday data, tiny drift estimates come with large standard errors. A "statistically significant" daily drift of 2 bps needs thousands of days to detect reliably — a classic reason why expected-return estimation is harder than volatility estimation.
Solution — Variance and Drift of a Biased Random Walk | q4quant.studio