solve.QP 中的错误

Error in solve.QP

所以基本上我有两个矩阵,其中包含股票的超额 returns (R) 和预期超额 return (ER)。

R<-matrix(runif(47*78),ncol = 78) 
ER<-matrix(runif(47*78),ncol = 78) 

然后我将这些组合起来,删除 R 的第一行并添加 ER 的第一行以形成新矩阵 R1。

然后我为 R2 执行此操作,即删除和 R 的前两行并将其与 ER 的前两行绑定。

我这样做直到我有 n-1 个从 R1 到 R47 的新矩阵。

然后我使用 cov() 找到每个 Return 矩阵的 Var-Cov 矩阵,即 Var-Cov1 到 Var-Cov47。

n<-47
switch_matrices <- function(mat1, mat2, nrows){
  rbind(mat1[(1+nrows):nrow(mat1),],mat2[1:nrows,]) 
}

l<-lapply(1:n-1, function(nrows) switch_matrices(R,ER, nrows))
list2env(setNames(l,paste0("R",seq_along(l))), envir = parent.frame())

b<-lapply(l, cov)
list2env(setNames(b,paste0("VarCov",seq_along(b))), envir = parent.frame())

我现在正尝试使用 quadprog 查找资产配置。例如:

D_mat <- 2*VarCov1
d_vec <- rep(0,78)
A_mat <- cbind(rep(1,78),diag(78))
b_vec <- c(1,d_vec)

library(quadprog)
output <- solve.QP(Dmat = D_mat, dvec = d_vec,Amat = A_mat, bvec = b_vec,meq =1)
# The asset allocation
(round(output$solution, 4))

出于某种原因,当 运行 solve.QP 发现任何 Var-Cov 矩阵时,我收到此错误:

Error in solve.QP(Dmat = D_mat, dvec = d_vec, Amat = A_mat, bvec = b_vec,  : 
  matrix D in quadratic function is not positive definite!

我想知道我做错了什么,甚至不知道为什么这不起作用。

输入矩阵不是positive definite,这是优化算法的必要条件。

为什么你的矩阵不是正定的将与你的特定数据(真实数据,而不是随机生成的示例)有关,并且将是一个统计问题和主题特定问题。

但是,从编程的角度来看,有一个解决方法。我们可以使用 Matrix 包中的 nearPD 来找到最近的正定矩阵作为可行的替代方案:

# Data generated by code in the question using set.seed(123)
library(quadprog)
library(Matrix)
pd_D_mat <- nearPD(D_mat)

output <- solve.QP(Dmat = as.matrix(pd_D_mat$mat), 
                   dvec = d_vec,
                   Amat = A_mat, 
                   bvec = b_vec,
                   meq  = 1)

# The asset allocation
(round(output$solution, 4))

 [1] 0.0052 0.0000 0.0173 0.0739 0.0000 0.0248 0.0082 0.0180 0.0000 0.0217 0.0177 0.0000 0.0000 0.0053 0.0000 0.0173 0.0216 0.0000
[19] 0.0000 0.0049 0.0042 0.0546 0.0049 0.0088 0.0250 0.0272 0.0325 0.0298 0.0000 0.0160 0.0000 0.0064 0.0276 0.0145 0.0178 0.0000
[37] 0.0258 0.0000 0.0413 0.0000 0.0071 0.0000 0.0268 0.0095 0.0326 0.0112 0.0381 0.0172 0.0000 0.0179 0.0000 0.0292 0.0125 0.0000
[55] 0.0000 0.0000 0.0232 0.0058 0.0000 0.0000 0.0000 0.0143 0.0274 0.0160 0.0000 0.0287 0.0000 0.0000 0.0203 0.0226 0.0311 0.0345
[73] 0.0012 0.0004 0.0000 0.0000 0.0000 0.0000