Page 1 of 1

Calculate Max DD in dollars

Posted: Tue Jul 08, 2008 8:14 pm
by LeviF
What would be a good method to calculate the Max DD in dollars to use at the end of a test as a statistic?

Posted: Tue Jul 08, 2008 8:59 pm
by sluggo
Probably a "for" loop.

Estimating it from Max%DD, or from totalLossDollars, or other shortcuts, could easily produce tremendously bad approximations. Maybe you could do slightly better by combining Max%DD with %ProfitFactor and $ProfitFactor but that'd still be an approximation and would still have a pathological worst case that gives a rididulously wrong answer.

Posted: Wed Jul 09, 2008 8:03 am
by Tim Arnold
Loop over the equity curve and keep track of the high, and the following low, and compute the dollars.

Posted: Wed Jul 09, 2008 8:06 am
by LeviF
got it, thanks.