我需要计算 3 天的相关性。下面给出了一个示例矩阵。我的问题是 ID 可能不会每天都在宇宙中。例如,AAPL 可能始终在 Universe 中,但一家公司 - CCL 可能在我的 Universe 中仅存在 2 天。我将不胜感激矢量化解决方案。我可能不得不在accumarray
这里使用 structs/ 等,因为相关矩阵的大小可能会有所不同。
% col1 = tradingDates, col2 = companyID_asInts, col3 = VALUE_forCorrelation
rawdata = [ ...
734614 1 0.5;
734614 2 0.4;
734614 3 0.1;
734615 1 0.6;
734615 2 0.4;
734615 3 0.2;
734615 4 0.5;
734615 5 0.12;
734618 1 0.11;
734618 2 0.9;
734618 3 0.2;
734618 4 0.1;
734618 5 0.33;
734618 6 0.55;
734619 2 0.11;
734619 3 0.45;
734619 4 0.1;
734619 5 0.6;
734619 6 0.5;
734620 5 0.1;
734620 6 0.3] ;
“3天相关性”:
% 734614 & 734615 corr is ignored as this is a 3-day corr
% 734618_corr = corrcoef(IDs 1,2,3 values are used. ID 4,5,6 is ignored) -> 3X3 matrix
% 734619_corr = corrcoef(IDs 2,3,4,5 values are used. ID 1,6 is ignored) -> 3X4 matrix
% 734620_corr = corrcoef(IDs 5,6 values are used. ID 1,2,3,4 is ignored) -> 3X2 matrix
真实数据涵盖 1995 年至 2011 年的 Russel1000 宇宙,有超过 410 万行。所需的相关性超过 20 天。