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?