aboutsummaryrefslogtreecommitdiff
path: root/components/valuation.py
diff options
context:
space:
mode:
authorTyler <tyler@tylerhoang.xyz>2026-04-03 19:06:49 -0700
committerTyler <tyler@tylerhoang.xyz>2026-04-03 19:06:49 -0700
commit632ed9487fd6fe50d3b7a5a0c20bb1ae41ad2be2 (patch)
treefb183644f2b3333423c2bb66fe2d6ee8516f737c /components/valuation.py
parentba3fa0002205e6f15dbcd59b50d81715410547d3 (diff)
Always show available P/B model
Diffstat (limited to 'components/valuation.py')
-rw-r--r--components/valuation.py2
1 files changed, 1 insertions, 1 deletions
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: