I have a data frame consisting of returns time series which has the following columns
date x1 x3 x8 x11
x.R
is my data frame consisting of returns
I would like to use the method findDrawdowns in the Performance Analytics tools and apply it to each time series. I would like to store the result in a list so that I can access all the output from findDrawdowns
sapply(x.R, sortDrawdowns(findDrawdowns))
The above command produces the below. Not sure how I can access the values.. any help is greatly apppreciated!
x1 x3 x8 x11
return Numeric,47 Numeric,47 Numeric,47 Numeric,49
from Numeric,47 Numeric,47 Numeric,47 Numeric,49
trough Numeric,47 Numeric,47 Numeric,47 Numeric,49
to Numeric,47 Numeric,47 Numeric,47 Numeric,49
length Numeric,47 Numeric,47 Numeric,47 Numeric,49
peaktotrough Numeric,47 Numeric,47 Numeric,47 Numeric,49
recovery Numeric,47 Numeric,47 Numeric,47 Numeric,49
You need a nested
sapply
becausesortDrawdowns
returns ALL your drawdowns which can't be displayed in 2 dimensions (i.e. each cell in the table you have above contains all the drawdowns. Here is a solution with made up data: