Quote from WAWTU31:
generate a Brownian motion price path with a given volatility
Would you be so kind to provide an example of how to do this I am seriously interested.
Sheesh! The dude looks like he should down quite a few Drambuies before partying lie a Monkey at Tiger-TigerQuote from ozzy:
http://www.rotman.utoronto.ca/~hull/
His course material is on there if anyone is interested. It's not in detail. But it got me thinking a few months ago when I went over the material.
ozzz

Quote from gbos:
![]()
'************************************************************
' standard normal random variate *
'************************************************************
Function gauss()
Dim fac As Double, r As Double, v1 As Double, v2 As Double
10 v1 = 2 * Rnd - 1
v2 = 2 * Rnd - 1
r = v1 ^ 2 + v2 ^ 2
If (r >= 1) Then GoTo 10
fac = Sqr(-2 * Log(r) / r)
gauss = v2 * fac
End Function
Quote from optioncoach:
Other downsides of Monte Carlo is that is assumes constant volatility and has an upward drift. We all are very aware that volatility is never constant and the markets do not always go up.
Steve: Hull is good to have for show in the bookshelf lol....We used it in school and is a great read if your first language is formulas,