Description Usage Arguments Value Author(s) See Also Examples
Given a portfolio allocation X
and a model, identify the estimated return and risk associated with X
.
1 | portReturn(model, X)
|
model |
An object of class |
X |
The portfolio allocation. |
portReturn
returns a list of the following items:
R |
The estimated return. |
V |
The estimated risk squared. |
X |
The allocation, which is the second argument. |
ticker |
The tickers from the model. |
model |
An object of class |
David Diez
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #===> basics <===#
data(stock94)
sm <- stockModel(stock94, model='SIM', index=25)
op <- optimalPort(sm)
prOp <- portReturn(sm, op$X)
prUn <- portReturn(sm, rep(1, 24)/24)
print(prOp)
summary(prOp)
summary(prUn)
#===> plotting a "portReturn" object <===#
par(mfrow=c(2,2))
plot(prOp) # provides a heat map of the allocation
plot(prUn) # a boring heat map of allocation
plot(prOp, col=2:5) # many random colors
plot(prUn, col=1) # all black
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.