• 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!

How to simulate a multivariate diffusion?

Joined
9/3/08
Messages
3
Points
11
I'd like to know how to simulate a d-dimensional or multivariate diffusion, such as a multivariate version of the Heston model. Can anyone recommend a useful reference for me?

Thanks a lot!:tiphat:
 
You must use Monte Carlo model if you want to simule multivariate heston
In a first time you can just make a Euler scheme for the diffusion and the only problem is to reduce the matrix covariance between S1,V1,S2,V2 you can use cholevski decomposition
In a second time for the diffusion you can use L.Andersen scheme but the Variance with multivariate process is quite difficult to find.
You can go here The Quantitative Finance Library to find documentation for monte-carlo method
 
Thanks. I think I will simulate a multivariate discrete stochastic volatility model, such as Harvey, Ruiz and Shepard 1992, RFS. It is much easier and I will save a lot of work.
 
Back
Top