Skip to content

Commit

Permalink
Merge pull request #98 from alberthaoh/bugfix/get_cash_conversion_eff…
Browse files Browse the repository at this point in the history
…icency

fix get_cash_conversion_efficiency, ratio is using operating cash flo…
  • Loading branch information
JerBouma authored Jan 8, 2024
2 parents 7d81d0e + ebd5534 commit 588f50a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion financetoolkit/ratios/ratios_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -1356,7 +1356,7 @@ def get_cash_conversion_efficiency(
if trailing:
cash_conversion_efficiency = (
efficiency_model.get_cash_conversion_efficiency(
self._income_statement.loc[:, "Operating Cash Flow", :]
self._cash_flow_statement.loc[:, "Operating Cash Flow", :]
.T.rolling(trailing)
.sum()
.T,
Expand Down

0 comments on commit 588f50a

Please sign in to comment.