diff options
| author | Tyler <tyler@tylerhoang.xyz> | 2026-04-02 18:11:18 -0700 |
|---|---|---|
| committer | Tyler <tyler@tylerhoang.xyz> | 2026-04-02 18:11:18 -0700 |
| commit | 0c146fec412fb99153fbb32fa90f0211aa0c8b32 (patch) | |
| tree | e87425e7e1e7cace303488ab0be4a5b50db4ea77 /services | |
| parent | 7a267bc3c28bc7a77e84eaa400667a7b4c0d5adf (diff) | |
Improve valuation model clarity
Diffstat (limited to 'services')
| -rw-r--r-- | services/data_service.py | 2 |
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, |
