From 784bb7d46a5fbc2906be15166c9c6eddeafee127 Mon Sep 17 00:00:00 2001 From: Saravana Achu Mac Date: Mon, 4 May 2026 17:14:10 -0700 Subject: [PATCH] docs(B5): mark quick stats fallback complete --- docs/AUDIT_REDESIGN.md | 2 +- docs/COMPLETION_CHECKLIST.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/AUDIT_REDESIGN.md b/docs/AUDIT_REDESIGN.md index 23ed33e..85e5dfe 100644 --- a/docs/AUDIT_REDESIGN.md +++ b/docs/AUDIT_REDESIGN.md @@ -30,7 +30,7 @@ Status: โฌœ open ยท ๐ŸŸฆ in PR ยท โœ… fixed (commit hash on the right). | B2 | `TickerHeader` "โ˜… Watchlist" and ๐Ÿ”” buttons have no `onClick` โ€” purely cosmetic. | ๐ŸŸ  | โœ… | ed8175e | | B3 | `TickerHeader` company name is the symbol (placeholder). Should pull from `fetchResearchProfile`. | ๐ŸŸ  | โœ… | ed8175e | | B4 | `TickerHeader` "as of" timestamp uses `new Date()` (always = now). Should use the latest bar timestamp. | ๐ŸŸก | โœ… | 311d79c | -| B5 | `QuickStats` reads RSI/EMA only from `botState.symbols[symbol].indicators`. The bot only computes these for symbols it actively tracks โ†’ user-searched tickers always show `โ€”`. Need an indicator service or compute from bars client-side. | ๐ŸŸ  | โฌœ | | +| B5 | `QuickStats` reads RSI/EMA only from `botState.symbols[symbol].indicators`. The bot only computes these for symbols it actively tracks โ†’ user-searched tickers always show `โ€”`. Need an indicator service or compute from bars client-side. | ๐ŸŸ  | โœ… | 27b3d1a | | B6 | `CodeStrategyEditor` "Save" button writes to `localStorage` only, then shows "Saved!". Misleading โ€” no persistence. | ๐ŸŸ  | โœ… | da79682 | | B7 | `CodeStrategyEditor` defines `editorRef` but never uses it. | ๐ŸŸข | โฌœ | | | B8 | `VisualRuleBuilder` exposes `onBacktest` prop but `ResearchView` doesn't pass one โ€” backtest button never appears. | ๐ŸŸก | โฌœ | | diff --git a/docs/COMPLETION_CHECKLIST.md b/docs/COMPLETION_CHECKLIST.md index 4416f7b..ffeb7c8 100644 --- a/docs/COMPLETION_CHECKLIST.md +++ b/docs/COMPLETION_CHECKLIST.md @@ -301,7 +301,7 @@ Expected platform result: Acceptance: header timestamp is derived from market data, not wall-clock render time. Fallback is explicit when no bars exist. -- [ ] `B5` Compute QuickStats for searched symbols. +- [x] `B5` Compute QuickStats for searched symbols. Implementation: `27b3d1a`. Acceptance: RSI/EMA values populate for tickers not tracked by the bot, using chart bars or a shared indicator helper. Avoid duplicate indicator math drift between `StockChart` and `QuickStats`.