• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Geometric Brownian Motion Drift

Joined
12/19/08
Messages
72
Points
28
What's the drift of the ratio of two geometric Brownian motion? Thanks.

($(\frac{S_{T_{2}}}{S_{T_{1}}})$)
 
Hi,
Ito Formula :
If mu1 = Drift(S1), s1=Vol(S1)
mu2 = Drift(S2), s2=Vol(S2)
rho*dt=d(W1(t),W2(t))
Drift(S1/S2) = mu1 - mu2 + s2*s2 - rho*s1*s2
J
 
What's the drift of the ratio of two geometric Brownian motion? Thanks.

($(\frac{S_{T_{2}}}{S_{T_{1}}})$)

Assuming

($S_t = S_0e^{\sigma W_t + \mu t} $)

and

($T_2>T_1$)

then

($\frac{S_{T_2}}{S_{T_1}} = e^{\sigma \large(W_{T_2} - W_{T_1}\right) + \mu \large({T_2} - {T_1}\right) }$)

and it follows from Ito that the drift is

($ \large(\mu - \frac{1}{2}\sigma^2\right)\large({T_2} - {T_1}\right) $)
 
Assuming

($S_t = S_0e^{\sigma W_t + \mu t} $)

and

($T_2>T_1$)

then

($\frac{S_{T_2}}{S_{T_1}} = e^{\sigma \large(W_{T_2} - W_{T_1}\right) + \mu \large({T_2} - {T_1}\right) }$)

and it follows from Ito that the drift is

($ \large(\mu - \frac{1}{2}\sigma^2\right)\large({T_2} - {T_1}\right) $)

What's the ($dt$) then? It can not be the drift term in the SDE right? ($T_1$) and ($T_2$) are not random.
 
Back
Top