Description Usage Arguments Details Author(s) References See Also Examples
This is a useful function for calculating cumulative return over a period of time, say a calendar year. Can produce simple or geometric return.
1 | Return.cumulative(R, geometric = TRUE)
|
R |
an xts, vector, matrix, data frame, timeSeries or zoo object of asset returns |
geometric |
utilize geometric chaining (TRUE) or simple/arithmetic chaining (FALSE) to aggregate returns, default TRUE |
product of all the individual period returns
prod(1+R)-1
Peter Carl
Bacon, Carl. Practical Portfolio Performance Measurement and Attribution. Wiley. 2004. p. 6
1 2 3 4 | data(managers)
Return.cumulative(managers[,1,drop=FALSE])
Return.cumulative(managers[,1:8])
Return.cumulative(managers[,1:8],geometric=FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.