maxDrawdown {PerformanceAnalytics} | R Documentation |
To find the maximum drawdown in a return series, we need to first calculate the cumulative returns and the maximum cumulative return to that point. Any time the cumulative returns dips below the maximum cumulative returns, it's a drawdown. Drawdowns are measured as a percentage of that maximum cumulative return, in effect, measured from peak equity.
maxDrawdown(R)
R |
an xts, vector, matrix, data frame, timeSeries or zoo object of asset returns |
maximum drawdown
Peter Carl
Bacon, C. Practical Portfolio Performance Measurement and Attribution. Wiley. 2004. p. 88
findDrawdowns
sortDrawdowns
table.Drawdowns
table.DownsideRisk
chart.Drawdown
data(edhec) maxDrawdown(edhec[,"Funds of Funds"]) data(managers) maxDrawdown(managers)