From 632ed9487fd6fe50d3b7a5a0c20bb1ae41ad2be2 Mon Sep 17 00:00:00 2001 From: Tyler Date: Fri, 3 Apr 2026 19:06:49 -0700 Subject: Always show available P/B model --- components/valuation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/valuation.py b/components/valuation.py index 4e2d003..031c424 100644 --- a/components/valuation.py +++ b/components/valuation.py @@ -1058,7 +1058,7 @@ def _render_models(ticker: str): sections.append(_render_ev_ebitda_model) if ctx["ev_revenue_available"] and not ctx["is_financial"]: sections.append(_render_ev_revenue_model) - if ctx["pb_available"] and _render_price_to_book_model not in sections and not ctx["dcf_available"]: + if ctx["pb_available"] and _render_price_to_book_model not in sections: sections.append(_render_price_to_book_model) if not sections: -- cgit v1.3-2-g0d8e