Skip to content

Commit

Permalink
expectaions.daily_ror should be below 1!
Browse files Browse the repository at this point in the history
  • Loading branch information
sbenthall committed Mar 20, 2023
1 parent 55d25d2 commit b2bc4d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sharkfin/expectations.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit b2bc4d0

Please sign in to comment.