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)

[TABLE="width: 164"]
<tbody>[TR]
[TD="align: right"]1[/TD]
[TD="align: right"]0[/TD]
[/TR]
[TR]
[TD="align: right"]2[/TD]
[TD="align: right"]0[/TD]
[/TR]
[TR]
[TD="align: right"]3[/TD]
[TD="align: right"]0[/TD]
[/TR]
[TR]
[TD="align: right"]4[/TD]
[TD="align: right"]0[/TD]
[/TR]
[TR]
[TD="align: right"]3[/TD]
[TD="align: right"]0.25[/TD]
[/TR]
[TR]
[TD="align: right"]6[/TD]
[TD="align: right"]0[/TD]
[/TR]
[TR]
[TD="align: right"]7[/TD]
[TD="align: right"]0[/TD]
[/TR]
[TR]
[TD="align: right"]8[/TD]
[TD="align: right"]0[/TD]
[/TR]
[TR]
[TD="align: right"]9[/TD]
[TD="align: right"]0[/TD]
[/TR]
[TR]
[TD="align: right"]10[/TD]
[TD="align: right"]0[/TD]
[/TR]
[TR]
[TD="align: right"]9[/TD]
[TD="align: right"]0.1[/TD]
[/TR]
[TR]
[TD="align: right"]8[/TD]
[TD="align: right"]0.2[/TD]
[/TR]
[TR]
[TD="align: right"]9[/TD]
[TD="align: right"]0.2[/TD]
[/TR]
[TR]
[TD="align: right"]8[/TD]
[TD="align: right"]0.2[/TD]
[/TR]
[TR]
[TD="align: right"]7[/TD]
[TD="align: right"]0.3[/TD]
[/TR]
[TR]
[TD="align: right"]6[/TD]
[TD="align: right"]0.4[/TD]
[/TR]
[TR]
[TD="align: right"]8[/TD]
[TD="align: right"]0.4[/TD]
[/TR]
[TR]
[TD="align: right"]10[/TD]
[TD="align: right"]0.4[/TD]
[/TR]
[TR]
[TD="align: right"]12[/TD]
[TD="align: right"]0[/TD]
[/TR]
[TR]
[TD="align: right"]14[/TD]
[TD="align: right"]0[/TD]
[/TR]
[TR]
[TD="align: right"]16[/TD]
[TD="align: right"]0[/TD]
[/TR]
[TR]
[TD="align: right"]18[/TD]
[TD="align: right"]0[/TD]
[/TR]
[TR]
[TD="align: right"]20[/TD]
[TD="align: right"]0[/TD]
[/TR]
[TR]
[TD="align: right"]18[/TD]
[TD="align: right"]0.1[/TD]
[/TR]
[TR]
[TD="align: right"]16[/TD]
[TD="align: right"]0.2[/TD]
[/TR]
[TR]
[TD="align: right"]14[/TD]
[TD="align: right"]0.3[/TD]
[/TR]
[TR]
[TD="align: right"]15[/TD]
[TD="align: right"]0.3[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
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,223,893
Messages
6,175,240
Members
452,621
Latest member
Laura_PinksBTHFT

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