Error SIGMA must be a symmetric positive semi-definite matrix

조회 수: 3 (최근 30일)
Shakib Ishfaq
Shakib Ishfaq 2019년 7월 17일
댓글: Shakib Ishfaq 2019년 7월 20일
So I'm calculating CVAR of a portfolio of conventional bonds and Sukuk. I'm trying to simulate asset scenarios, using the Normal/Gaussian and Emprical (T) method.
My dataset, contains assets with varying starting dates, and therefore my dataset contains a number of zeros. When I run the code, I am running into this error.
This is my current code:
clear;
close all;
rng(0);
T = readtable('pak.xlsx');
symbol = {'PAK2014BOND','PAK2015BOND','PAKSUKUK2014'};
nAsset = numel(symbol);
ret = tick2ret(T{:,symbol});
plotAssetHist(symbol,ret)
nScenario = 2000;
simulationMethod = 'Normal';
switch simulationMethod
case 'Normal'
AssetScenarios = mvnrnd(mean(ret),cov(ret),nScenario);
case 'Empirical'
AssetScenarios = simEmpirical(ret,nScenario);
end
When I have zeros in my data, I'm getting this error.
Can someone please shed some light, on how I can overcome this?
  댓글 수: 4
Walter Roberson
Walter Roberson 2019년 7월 17일
Is your ret matrix all zeros or only partly zero?
Shakib Ishfaq
Shakib Ishfaq 2019년 7월 20일
Partly zero. Start dates/years differ.

댓글을 달려면 로그인하십시오.

답변 (1개)

the cyclist
the cyclist 2019년 7월 18일
This issue will arise when you get pairwise asset correlations that are inconsistent. (The zeros are not necessarily the problem.)
For example, suppose you have the following data (possibly from different sources):
  • Asset 1 and Asset 2 have a correlation coefficient of 0.9
  • Asset 1 and Asset 3 have a correlation coefficient of 0.9
  • Asset 2 and Asset 3 have a correlation coefficient of -0.3
Now, these can't all be true, because they are mutually contradictory. (Such a strong positive correlation between 1&2 and 1&3 means that 2&3 must be positively correlated.) Maybe the measurements were taken over different periods of time, or using different methodologies.
If you try to use that correlation matrix, you'll get the "must be symmetric positive semi-definite matrix" error. You need to figure out how to fix your correlation matrix.
  댓글 수: 2
Shakib Ishfaq
Shakib Ishfaq 2019년 7월 18일
I thought this also, but then when I generate number in place of the zeros, my code works fine. Also, when I try different datasets.
the cyclist
the cyclist 2019년 7월 18일
OK. But often very small (close to -- or equal to -- 0) and very high (close to -- or equal to -- 1) are exactly the correlations that cause the problem I am talking about. They are matrix entries that cause inconsistencies with other entries.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Portfolio Optimization and Asset Allocation에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by