From d5e321089b6b82f5425c2b3fae142db5223ce599 Mon Sep 17 00:00:00 2001 From: Tyler Hoang Date: Tue, 9 Jun 2026 19:19:44 -0700 Subject: Add Insiders tab with diverging bar chart and transaction table - Backend: get_insider_transactions() in data_service (yfinance, 1hr TTL) - Backend: InsidersResponse schema + GET /api/tickers/{symbol}/insiders - Frontend: InsidersPage with 4-KPI strip, SVG diverging bar chart (), psm-insider transaction rows, pill filter toggles, shimmer skeleton, empty/error states - Enable Insiders nav item (remove disabled flag) --- frontend/lib/overview.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontend/lib/overview.ts') diff --git a/frontend/lib/overview.ts b/frontend/lib/overview.ts index bb63e83..04f9c64 100644 --- a/frontend/lib/overview.ts +++ b/frontend/lib/overview.ts @@ -20,7 +20,7 @@ export const OVERVIEW_NAV_ITEMS: NavItem[] = [ { key: "financials", label: "Financials", icon: "ledger" }, { key: "valuation", label: "Valuation", icon: "dollar" }, { key: "options", label: "Options", icon: "window" }, - { key: "insiders", label: "Insiders", icon: "pulse", disabled: true }, +{ key: "insiders", label: "Insiders", icon: "pulse" }, { key: "filings", label: "Filings", icon: "folder", disabled: true }, { key: "news", label: "News", icon: "terminal", disabled: true } ]; -- cgit v1.3-2-g0d8e