You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe there is a mistake in the code when the return series is monthly.
I had to amend the periods argument to 365 to get a cagr figure that made sense. I can't help further, i'm not a python developer but was looking to help on this.
def cagr(returns, rf=0.0, compounded=True, periods=365):
"""
Calculates the communicative annualized growth return
(CAGR%) of access returns
Could you kindly implement a fix? Total return is fine instead.
The text was updated successfully, but these errors were encountered:
Hey the reason they differ is because the utils_cagr function is incorrectly counting calendar days instead of trading days when identifying the annualization period.
years = (returns.index[-1] - returns.index[0]).days / periods
this method will unfortunately count calendar days, when in reality it would be more accurate to count the length of the returns object.
hopefully they fix this, I had to do this locally as I was getting incorrect CAGR's.
I believe there is a mistake in the code when the return series is monthly.
I had to amend the periods argument to 365 to get a cagr figure that made sense. I can't help further, i'm not a python developer but was looking to help on this.
Could you kindly implement a fix? Total return is fine instead.
The text was updated successfully, but these errors were encountered: