diff options
Diffstat (limited to 'app.py')
| -rw-r--r-- | app.py | 18 |
1 files changed, 17 insertions, 1 deletions
@@ -59,6 +59,8 @@ from components.market_bar import render_market_bar from components.overview import render_overview from components.financials import render_financials from components.valuation import render_valuation +from components.insiders import render_insiders +from components.filings import render_filings from components.news import render_news from services.data_service import get_company_info, search_tickers @@ -138,10 +140,12 @@ st.divider() # ── Main Content ────────────────────────────────────────────────────────────── -tab_overview, tab_financials, tab_valuation, tab_news = st.tabs([ +tab_overview, tab_financials, tab_valuation, tab_insiders, tab_filings, tab_news = st.tabs([ "📈 Overview", "📊 Financials", "💰 Valuation", + "👤 Insiders", + "📁 Filings", "📰 News", ]) @@ -163,6 +167,18 @@ with tab_valuation: except Exception as e: st.error(f"Valuation failed to load: {e}") +with tab_insiders: + try: + render_insiders(ticker) + except Exception as e: + st.error(f"Insider data failed to load: {e}") + +with tab_filings: + try: + render_filings(ticker) + except Exception as e: + st.error(f"Filings failed to load: {e}") + with tab_news: try: render_news(ticker) |
