CONTENTS

Exercise: Variance and Drift of a Biased Random Walk

Problem

A trader models intraday tick moves of a futures contract as an asymmetric random walk. Each tick the price moves up by $1 with probability p=0.51p = 0.51 or down by $1 with probability q=0.49q = 0.49. Let SnS_n be the net price change after nn ticks, with S0=0S_0 = 0.

  1. Compute E[Xi]\mathbb{E}[X_i] and Var(Xi)\operatorname{Var}(X_i) for a single tick.
  2. Give closed-form expressions for E[Sn]\mathbb{E}[S_n] and Var(Sn)\operatorname{Var}(S_n).
  3. Evaluate both at n=10,000n = 10{,}000 (roughly one trading day of tick data).
  4. Compute the signal-to-noise ratio E[Sn]/Var(Sn)\mathbb{E}[S_n] / \sqrt{\operatorname{Var}(S_n)} at n=10,000n = 10{,}000. How many ticks would the trader need to observe before the expected move is one standard deviation above zero?

Hint

Use linearity of expectation and independence-of-increments for variance. For part 4, set E[Sn]=Var(Sn)\mathbb{E}[S_n] = \sqrt{\operatorname{Var}(S_n)} and solve for nn.

Jump to the solution when you're ready.