Formula for calculating current drawdown of a portfolio.

colombodave

New Member
Joined
Oct 15, 2017
Messages
1
Hi All

I am looking to analyse equity drawdown of a portfolio. A drawdown is the loss from a peak to a trough of a portfolio, before a new peak is attained.

I would like a formula which returns me the current drawdown percentage since the latest peak, and so far I have managed the following:

=(MAX(C$2:C2)-MIN(INDIRECT(CONCATENATE(CONCATENATE("C",TEXT(MATCH(MAX(C$2:C2),C$2:C2,0)+1,"#")),":",CONCATENATE("C",CELL("row",C2))))))/MAX(C$2:C2)
where equity values are listed in column C starting from C2 going down chronologically.

In plain english:
Maximum value (latest peak) - Minimum value since latest peak / Maximum value

I feel like there could be a 'neater' way to write this formula, but don't know where to start. Any suggestions?

Appreciate any help. I include below an example data set (equity in left column, current drawdown in right column)

10
20
30
40
30.25
60
70
80
90
100
90.1
80.2
90.2
80.2
70.3
60.4
80.4
100.4
120
140
160
180
200
180.1
160.2
140.3
150.3

<tbody>
</tbody>
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Welcome to the Forum!

Another way: =1-MIN(IF(ROW(C$2:C2)>MATCH(MAX(C$2:C2),C$2:C2,)+ROW(C$2)-2,C$2:C2))/MAX(C$2:C2) array-entered
 
Upvote 0

Forum statistics

Threads
1,214,885
Messages
6,122,085
Members
449,064
Latest member
MattDRT

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top