November 17th, 2012, 1:10 pm
Hello,I would like to price a basket opton using Monte carlo. I consider a multivariate model such as :ST_i=S0_i + r*St_i*dt + integral btw 0 and T of St*sigma_i*dWt_iI got the Cholesky matrix and I would like to simulate the path of each assets. How can I express it using the Cholesky matrix.I mean for two assets I did : S=S1*exp(((r-(sigma1*sigma1)/2.)*T)+sigma1*sqrt(T)*GaussianAlea()[0]);S0=S2*exp(((r-(sigma2*sigma2)/2.)*T)+sigma2*rho*sqrt(T)*GaussianAlea()[0]+ sigma2*sqrt(1-rho*rho)*sqrt(T)*GaussianAlea()[1]);but when we have several assets, I'm confused...Help please.