diff options
| author | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-06-09 19:19:44 -0700 |
|---|---|---|
| committer | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-06-09 19:19:44 -0700 |
| commit | d5e321089b6b82f5425c2b3fae142db5223ce599 (patch) | |
| tree | afdb1e7753938d00bb0a7adb2275525c76482dd9 /frontend/lib/overview.ts | |
| parent | 9e2a23855d29d9763044b8a0a9e5f326cfcad878 (diff) | |
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)
Diffstat (limited to 'frontend/lib/overview.ts')
| -rw-r--r-- | frontend/lib/overview.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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 } ]; |
