Simulating stock price dynamics using Geometric Brownian Motion
Simulating stock prices plays a crucial role in the valuation of many derivatives, most notably options. Due to the randomness in the price movement, these simulations rely on stochastic differential equations (SDE). A stochastic process is said to follow the Geometric Brownian Motion (GBM) when it satisfies the following SDE:
dS t = μS t dt + σS t dW tHere, we have the following:
- St - Stock price
- μ - The drift coefficient, that is, the average return over a given period or the instantaneous expected return
- σ - The diffusion coefficient, that is, how much volatility is in the drift
- Wt - The Brownian Motion
- d - symbolizes the change in the variable over the considered time increment, while dt is the change in time
We will not investigate the properties of the Brownian Motion in too much depth, as it is outside the scope of this book. Suffice to say, Brownian increments are calculated as a product...