aboutsummaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
authorTyler <tyler@tylerhoang.xyz>2026-04-02 18:11:18 -0700
committerTyler <tyler@tylerhoang.xyz>2026-04-02 18:11:18 -0700
commit0c146fec412fb99153fbb32fa90f0211aa0c8b32 (patch)
treee87425e7e1e7cace303488ab0be4a5b50db4ea77 /services
parent7a267bc3c28bc7a77e84eaa400667a7b4c0d5adf (diff)
Improve valuation model clarity
Diffstat (limited to 'services')
-rw-r--r--services/data_service.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/data_service.py b/services/data_service.py
index e3f46cc..67f2e7b 100644
--- a/services/data_service.py
+++ b/services/data_service.py
@@ -602,7 +602,7 @@ def get_balance_sheet_bridge_items(ticker: str) -> dict:
Uses the same raw balance-sheet rows shown in the Financials tab so DCF
equity-value bridging reconciles with the visible statements.
"""
- df = get_balance_sheet(ticker, quarterly=False)
+ df = get_balance_sheet(ticker, quarterly=True)
if df is None or df.empty:
return {
"total_debt": 0.0,