From b2bc4d0dee45138cc1aa1b2260aec67ee53a9ec5 Mon Sep 17 00:00:00 2001 From: sb Date: Mon, 20 Mar 2023 11:43:50 -0400 Subject: [PATCH] expectaions.daily_ror should be below 1! --- sharkfin/expectations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharkfin/expectations.py b/sharkfin/expectations.py index c0b7f00..7e5d631 100644 --- a/sharkfin/expectations.py +++ b/sharkfin/expectations.py @@ -114,7 +114,7 @@ def __init__( dgr = self.market.dividend_growth_rate dsd = self.market.dividend_std - self.daily_ror = (pdr + 1) * dgr / pdr + self.daily_ror = (pdr + 1) * dgr / pdr - 1 self.daily_std = dsd * self.daily_ror #if 'daily_ror' in options: