summaryrefslogtreecommitdiff
path: root/frontend
AgeCommit message (Collapse)Author
6 daysfix: add missing start script to frontend package.jsonTyler Hoang
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
6 daysenvTyler Hoang
2026-05-21fix: rewrite polar smile with correct closed-lens geometryTyler Hoang
- Piecewise angleFor: puts go CCW (ATM→bottom), calls go CW (ATM→bottom) so both wings meet at the same bottom point and the path closes with Z - Dynamic ivToR computed from actual IV range across all expiries (inner floor 60px, outer wall 240px) instead of hardcoded percentages - IV rings: 5 evenly-spaced steps between real ivLo/ivHi - Curve fill: rgba(194,170,122,0.12) matching design reference - Non-selected curves: index-based styles (solid fg-1, then dashed fg-2/3/4) - Eye price at font-size 30, label lowercase 'call · fair' - Dashed marker-line spoke from center to selected-K dot - Clicking a curve switches the selected expiry via onPickT - Strike ticks use round multiples of a price-adaptive step - Fix IvHeatmap xlabs duplicate key error (key by index, not rounded K) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-20feat: implement options tab with Black-Scholes pricer and vol surfaceTyler Hoang
Adds a fully interactive options tab: Terminal view (3-column Bloomberg- style with pricer, chain, smile/term-structure/greek curves) and Surface view (polar smile dial + IV heatmap). Uses synthetic vol surface until a live yfinance chain endpoint is wired up. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-19Fix production API base for ticker searchTyler Hoang
2026-05-19fix: use ▲▼ glyphs in VolumeCard per design system whitelistTyler Hoang
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-19fix: resolve quality review issues in PriceVsValueCardTyler Hoang
- Add 150ms ease transitions to pvv-fill and pvv-tick (design system) - Move fill color to modifier CSS classes, drop inline background/opacity - Guard iv === 0 to prevent Infinity in premium/discount label - Remove ambiguous direction arrows from IV figure - Add "projection" suffix to year count in assumption summary Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-19feat: add PriceVsValueCard to overview left column (DCF compass)Tyler Hoang
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-19feat: fetch valuation on overview tab, add DCF block to ValuationOverviewCardTyler Hoang
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-19feat: add ValuationOverviewCard to overview right column (multiples)Tyler Hoang
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-19feat: replace StatsCard with QualityCard (margins, returns, leverage)Tyler Hoang
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-19fix: correct VolumeCard bar transition to 150ms per design systemTyler Hoang
2026-05-19feat: add VolumeCard to overview left column (today vs 30d avg)Tyler Hoang
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-19chore: remove unused unavailableFields helperTyler Hoang
2026-05-19feat: remove Coverage card from overview tab, move Profile to top of right ↵Tyler Hoang
column Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-19chore: ignore next-env.d.tsTyler Hoang
2026-05-19feat: add real-time DCF sliders to ValuationCardTyler Hoang
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-19fix: replace undefined --fs-10/11 vars with --fs-12 in DCF slider CSSTyler Hoang
2026-05-19feat: add DCF slider CSS to prism-shellTyler Hoang
2026-05-19feat: add client-side computeDcf utilityTyler Hoang
2026-05-19feat: add projection_years to DcfResult frontend typeTyler Hoang
2026-05-18feat: wire Ratios subtab into FinancialsPage, move tab strip up from ↵Tyler Hoang
FinancialsCard
2026-05-18feat: add RatiosPage data-fetch wrapperTyler Hoang
2026-05-18feat: add RatiosCard component with hero KPIs, sparklines, and detail rowsTyler Hoang
2026-05-18feat: add RatioPoint, RatiosResponse types and api.ratios()Tyler Hoang
2026-05-18feat: wire valuation tab routing and enable nav itemTyler Hoang
2026-05-18feat: add ValuationPage data-fetch wrapperTyler Hoang
2026-05-18feat: add ValuationCard component and psm-val-* CSSTyler Hoang
2026-05-18feat: add ValuationResponse types and api.valuation() methodTyler Hoang
2026-05-18Merge worktree-financials-tab: add financials tab (income/balance/cashflow)Tyler Hoang
2026-05-18feat: wire financials tab routing in Sidebar and page.tsxTyler Hoang
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-18feat: add FinancialsPage data-fetching wrapperTyler Hoang
2026-05-18feat: add FinancialsCard component with statement tabs and period toggleTyler Hoang
Renders income/balance/cash_flow statements with annual/quarterly toggle, section headers, indent levels, total rows, margin rows, and negative-value coloring via --negative. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-18feat: add api.financials() and enable financials nav itemTyler Hoang
2026-05-18feat: add FinancialRow/Statement/Response frontend typesTyler Hoang
2026-05-17Filter null rows from ShortInterestCard, hide card when all nullTyler Hoang
Mirrors the adaptive Reference card approach: only visible items are rendered, with a note when some are suppressed. Card returns null when nothing is available. Also updates next-env.d.ts path and ignores .superpowers/. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-17Align Overview UI with kit mockup: adaptive Reference card, TickerHeader ↵Tyler Hoang
hierarchy, chart width - StatsCard filters null ratio rows; shows '· Statement data incomplete' note instead of wall of Unavailable - TickerHeader restructured to match kit: symbol (64px display) dominant beside company name (24px italic), sector label above, chips below - Fix broken --fs-56 token in company name clamp → --fs-64 - Chart fills full panel width via .psm-chart-frame .chart { width: 100% } Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-17Refine overview ratios and shellTyler Hoang
2026-05-17Fix design system violations and logic bugs from code reviewTyler Hoang
- Remove backdrop-filter blur (glass effect) from TopBar; use opaque ink-1 background - Remove decorative glow box-shadows from market status dot - Fix button border-radius: var(--r-2) → var(--r-1) (4px → 2px) per design rules - Replace invented hover color rgba(194,170,122,0.04) with var(--ink-3) token - Add missing .psm-signal.neu CSS rule so neutral signals have visual treatment - Use HTML disabled attribute on nav buttons instead of aria-disabled alone - Replace duplicate EPS KPI tile with Prev Close to remove redundancy with P/E sublabel - Rename sortIndices → limitIndices (function only truncates, never sorts) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-17'UI Shell and General Architecture'Tyler Hoang
2026-05-17Add stack start and stop scriptsTyler Hoang