Serving the Quantitative Finance Community

 
User avatar
fman
Topic Author
Posts: 0
Joined: March 21st, 2007, 7:55 am

Covariance Matrix?

April 6th, 2007, 10:06 am

An option on n assets, m observation times, the volatility of the ith asset is sigma, the correlation between the ith and jth asset is corr[i, j], where i, j = 0, 1, ... , n - 1what is the covariance matrix?My method is: assum the matrix is C( s * s) based index 0, where s = n * mif |i - j| % n == 0, then C[i, j] = sigma * sigmaelsethen C[i, j] = sigma[i % n] * sigma[j % n] * corr[i % n, j % n]Is that correct?
 
User avatar
saliq
Posts: 0
Joined: April 10th, 2005, 1:55 am

Covariance Matrix?

April 6th, 2007, 7:31 pm

it always works as simple asC[i,j] = sigma * sigma[j] * corr[i,j]since {corr(i,i) = 1}
 
User avatar
fman
Topic Author
Posts: 0
Joined: March 21st, 2007, 7:55 am

Covariance Matrix?

April 6th, 2007, 11:32 pm

If I want to price an option (multi-assets), and assume the volatility sigma of all assets is the same, the correlation corr among all assets is the same, then the covariance matrix can not be applied Cholesky Decomposition, because it is not positive
 
User avatar
tigerbill
Posts: 1
Joined: April 22nd, 2004, 7:14 pm

Covariance Matrix?

April 16th, 2007, 7:00 am

QuoteOriginally posted by: fmanIf I want to price an option (multi-assets), and assume the volatility sigma of all assets is the same, the correlation corr among all assets is the same, then the covariance matrix can not be applied Cholesky Decomposition, because it is not positiveyes, you can not do Cholesky, so? plus, what is the meaning of such an assumption? sigma and correlation being equal for all assets.if you want simply a method to overcome non-positive covariance matrix problem, search"The most general methodology to create a valid correlation matrix for risk management and option pricing purposes".