Quadratic probing: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>Aragorn2
m →‎Alternating sign: Formatting fix
Line 1: Line 1:
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).
Name: Caleb Scarborough<br>My age: 30 years old<br>Country: Germany<br>Town: Harschbach <br>Postal code: 56307<br>Address: Knesebeckstrasse 16<br><br>My page [http://Www.Imodium.es/node/63475 How to get free fifa 15 coins]
 
Somewhat more formally, if <math>X = (X(t), t \ge 0)</math> is a random process with ''X''(0) = 0, the drawdown at time ''T'', denoted <math>D(T)</math>,
is defined as
 
<math> D(T)=\max \left\{ 0, \max_{t \in (0,T)} X(t)- X(T) \right\} </math>
 
The '''maximum drawdown''' (MDD) up to time <math>T</math>
is the maximum of the Drawdown over the history of the variable. More formally,
 
<math> \text{MDD}(T)=\max_{\tau\in (0,T)}\left[\max_{t \in (0,\tau)} X(t)- X(\tau) \right]</math>
 
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
  if (NAV[i] > peak) # peak will be the maximum value seen so far (0 to i)
    peak = NAV[i]
  endif
  DD[i] = 100.0 * (peak - NAV[i]) / peak
  if (DD[i] > MDD) # Same idea as peak variable, MDD keeps track of the maximum drawdown so far.
    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).<ref>http://managed-futures-blog.attaincapital.com/2013/10/08/the-2-important-drawdown-measurements-how-deep-how-long/</ref>
: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.<ref>http://managed-futures-blog.attaincapital.com/2013/10/08/the-2-important-drawdown-measurements-how-deep-how-long/</ref>
 
In finance, the use of the maximum drawdown as an indicator of risk is particularly popular in the world of [[commodity trading advisor]]s 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.<ref>http://managed-futures-blog.attaincapital.com/2013/10/08/the-2-important-drawdown-measurements-how-deep-how-long/</ref>
 
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
<math>X(t)=\mu t+ \sigma W(t),</math>
where <math>W(t)</math> is a standard [[Wiener process]], then: when <math>\mu > 0</math> the MDD grows logarithmically with time; when <math>\mu = 0</math> the MDD grows as the square root of time; and when
<math>\mu < 0</math> the MDD grows linearly with time (Magdon-Ismail et al. 2004).<ref>http://alumnus.caltech.edu/~amir/drawdown-jrnl.pdf</ref>
 
==Further reading==
*Burghardt, G., Duncan, R. and L. Liu, "Understanding Drawdowns", working paper, Carr Futures (September 4), 2003 (http://www.intelligenthedgefundinvesting.com/pubs/rb-bdl.pdf)
*Eckholdt, H., "Risk Management: Using SAS to Model Portfolio Drawdown, Recovery and Value at Risk" (February), 2004. (http://www.intelligenthedgefundinvesting.com/pubs/rb-he.pdf)
*Grossman, S. J. and Z. Zhou, "Optimal Investment Strategies for Controlling Drawdowns", Mathematical Finance 3, pp.&nbsp;241–276, 1993.
*Hamelink, F. and M. Hoesli, "The Maximum Drawdown as a Risk Measure: The Role of Real Estate in the Optimal Portfolio Revisited", working paper (June 24), 2003. (http://www.intelligenthedgefundinvesting.com/pubs/rb-fhmh.pdf)
*Hayes, B. T., "Maximum Drawdowns of Hedge Funds with Serial Correlation", Journal of Alternative Investments (vol 8, no 4) (Spring), pp.&nbsp;26–38, 2006.
*Kim, Daehwan, "Relevance of Maximum Drawdown in the Investment Fund Selection Problem when Utility is Nonadditive", working paper (July), 2010. (http://www.intelligenthedgefundinvesting.com/pubs/dk_rmd.pdf)
*Steiner, Andreas, "Ambiguity in Calculating and Interpreting Maximum Drawdown," working paper (December), 2010. (http://www.intelligenthedgefundinvesting.com/pubs/as_acm.pdf)
*Wilkins, K., C. Morales and L. Roman, "Maximum Drawdown Distributions with Volatility Persistence", working paper, 2005. (http://www.intelligenthedgefundinvesting.com/pubs/rb-kwcmlr.pdf)
*Magdon-Ismail, M. and A. Atiya, "Maximum Drawdown", Risk Magazine (October), 2004. (http://alumnus.caltech.edu/~amir/mdd-risk.pdf)
*Magdon-Ismail, M., A. Atiya, A. Pratap, and Y. Abu-Mostafa, "On the Maximum Drawdown of the Brownian Motion", Journal of Applied Probability (vol 41, no 1), 2004. (http://alumnus.caltech.edu/~amir/drawdown-jrnl.pdf)
 
==References==
{{Reflist}}
 
[[Category:Business terms]]

Revision as of 16:37, 13 February 2014

Name: Caleb Scarborough
My age: 30 years old
Country: Germany
Town: Harschbach
Postal code: 56307
Address: Knesebeckstrasse 16

My page How to get free fifa 15 coins