0

基本上我正在研究投资组合回报问题。股票收益是这样的:

AMZN <- c(0.1, 0.3, 0.4, 0.2)
BBY <- c(0.2, 0.4, 0.5, 0.3)
TGT <- c(-0.1, -0.3, -0.2,-0.5)
df1 <- data.frame(AMZN, BBY, TGT)
date <- c("2000-01-01","2000-02-01", "2000-03-01", "2000-04-01")
date <-  as.Date(date, "%Y-%m-%d") 
df1 <- cbind(date, df1)
xts <- xts(df1[,-1], order.by=df1[,1])

我想用它Return.portfolio(xts, weight)来计算投资组合回报。所以重量就像

w1 <- c(0.2, 0.3, 0.1, 0.4)
w2 <- c(0.5, 0.1, 0.1, 0.3)
w3 <- c(0.1, 0.1, 0.4, 0.4)
Weights <- data.frame(w1, w2, w3)

由于分配了几组权重,我需要获得多个投资组合回报。我试过的代码是

for (i in colnames(Weights)){
     Return.portfolio(xts, (Weights[[i]]))
 }

尽管 R 没有报告任何错误,但我得到的唯一值是 i 是“w3”。

4

1 回答 1

0

我认为您可能需要先初始化一个NULL对象。也许是这样的

Return<-NULL
for (i in 1:ncol(Weights)){
 Return<- cbind(Return, Return.portfolio(xts, (Weights[[i]])))
}
于 2020-07-24T20:05:36.693 回答