Drawdown (economics)

The drawdown is the measure of the decline from a historical peak in some variable (typically the cumulative profit or total open equity of a financial trading strategy).

Somewhat more formally, if is a random process with X(0) = 0, the drawdown at time T, denoted , is defined as

The maximum drawdown (MDD) up to time is the maximum of the Drawdown over the history of the variable. More formally,

The following pseudocode computes the Drawdown ("DD") and Max Drawdown ("MDD") of the variable "NAV", the Net Asset Value of an investment. Drawdown and Max Drawdown are calculated as percentages:

MDD = 0
peak = -99999
for i = 1 to N step 1
  # peak will be the maximum value seen so far (0 to i), only get updated when higher NAV is seen
  if (NAV[i] > peak) 
    peak = NAV[i]
  endif
  DD[i] = 100.0 * (peak - NAV[i]) / peak
  # Same idea as peak variable, MDD keeps track of the maximum drawdown so far. Only get updated when higher DD is seen.
  if (DD[i] > MDD) 
    MDD = DD[i]
  endif
endfor

Finance Definitions

There are two main definitions of a drawdown:

1. How low it goes (the magnitude)

Putting it plainly, a drawdown is the “pain” period experienced by an investor between a peak (new highs) and subsequent valley (a low point before moving higher).
Next, the Maximum Drawdown, or more commonly referred to as Max DD. This is pretty much self explanatory, as the Max DD is the worst (the maximum) peak to valley loss since the investment’s inception.

In finance, the use of the maximum drawdown as an indicator of risk is particularly popular in the world of commodity trading advisors through the widespread use of three performance measures: the Calmar ratio, the Sterling ratio and the Burke ratio. These measures can be considered as a modification of the Sharpe ratio in the sense that the numerator is always the excess of mean returns over the risk-free rate while the standard deviation of returns in the denominator is replaced by some function of the drawdown.

2. How long it lasts (the duration)

The Drawdown Duration is the length of any peak to peak period, or the time between new equity highs.
The Max Drawdown Duration is the worst (the maximum/longest) amount of time an investment has seen between peaks (equity highs).

Many assume Max DD Duration is the length of time between new highs during which the Max DD (magnitude) occurred. But that isn’t always the case. The Max DD duration is the longest time between peaks, period. So it could be the time when the program also had its biggest peak to valley loss (and usually is, because the program needs a long time to recover from the largest loss), but it doesn’t have to be.

When X is Brownian motion with drift, the expected behavior of the MDD as a function of time is known. If X is represented as where is a standard Wiener process, then: when the MDD grows logarithmically with time; when the MDD grows as the square root of time; and when the MDD grows linearly with time (Magdon-Ismail et al. 2004).[1]

See also

Further reading

References

This article is issued from Wikipedia - version of the 2/1/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.