Portfolio Buddy 2 - Migration Tracker
Migration Status: 40 Features
✅ Completed (36/40 - 90%)
Core features migrated and working:
CSV upload and parsing with PapaParse
Supabase storage integration
Basic metrics calculation (Sharpe, Max DD, CAGR, Win Rate, etc.)
Sortino Ratio (completed commits 258ba3a, 9f25040)
Risk-free rate input (completed commit 258ba3a)
Asset correlation matrix (Spearman & Pearson)
Portfolio comparison charts (Chart.js)
Equity curve visualization
Responsive UI with Tailwind CSS
shadcn/ui color system integration
Date range filtering (completed commit 258ba3a)
Contract multipliers for futures (useContractMultipliers hook)
Advanced multi-column sorting (useSorting hook)
Error handling and validation
File upload progress tracking
Multiple file management
Database Integration (Nov 16, 2025) - PRODUCTION READY ✓
- Python script uploads trades automatically ✓
- New database schema (portfolios, strategies, trades) ✓
- Frontend database fetch ✓ (commits c4fa57c through ee7cec8)
- Dual CSV/Database support ✓
- Format auto-detection (1-row vs 2-row) ✓
- User tested and verified ✓
- Merged to main and deployed ✓
- See:
dev-docs/database-architecture.md for schema reference
🚧 In Progress (3/40)
- Advanced filtering - Partial implementation
- Date filtering complete ✓
- Symbol filtering needed
- Strategy filtering needed
- Export functionality - CSV export only
- Excel export pending
- PDF reports pending
- Historical comparison - Backend ready, UI pending
- Need UI for comparing multiple time periods
❌ Not Started (2/40)
- Multi-period analysis - Complex, low priority
- Compare performance across different time windows
- Requires significant UI work
- Risk scenario modeling - Requires new backend logic
- Monte Carlo simulations
- Stress testing
Recent Completed Features
Database Fetch Implementation (Nov 16, 2025) ✅ COMPLETED
Status: Production ready - Tested and deployed
Commits: c4fa57c, a5ce0ec, 676de06, eba4c8d, ee7cec8, ae9202d
Merged to main: d56497a (PR #1)
Implementation Journey (6 commits):
Initial Implementation (c4fa57c)
- Added
calculateMetricsFromDatabase() and buildFilenameFromMetadata() to dataUtils.ts
- Rewrote
fetchFromSupabase() in App.tsx
- Changed from old
csv_files table to new strategies + trades schema
- Added TypeScript interfaces: DatabaseTrade, StrategyMetadata
Fix Query Syntax (a5ce0ec)
- Fixed Supabase order clause syntax error
- Changed
order('trades.trade_date') to order('trade_date') with foreignTable parameter
- Error: "failed to parse order (trades.trade_date.asc)"
Fix Trade Count Limit (676de06)
- Discovered Supabase embedded resource limit (~60 rows)
- Separated queries: fetch strategies first, then fetch trades separately
- Added explicit
.limit(10000) to get all trades
- Fixed: 59 trades → 119 trades ✅
Fix TypeScript Build Errors (eba4c8d)
- Added StrategyFromDB interface with optional
trades? property
- Added DatabaseTrade interface to App.tsx
- Fixed: "Property 'trades' does not exist" errors
Fix Metrics Calculation (ee7cec8) ⭐ CRITICAL FIX
- Auto-detect format: 2-row (Entry/Exit) vs 1-row (database)
- Modified
calculateMetrics() to check for "Entry/Exit" column
- If present → loop by 2 (old CSV format)
- If absent → loop by 1 (new database format)
- Fixed: Metrics now calculated correctly for all 119 trades ✅
Update Documentation (ae9202d)
- Updated migration-tracker skill with implementation details
- Documented all changes and line numbers
Final Results:
- ✅ 119 trades loaded from database (not 59)
- ✅ All metrics calculated correctly (win rate, profit factor, etc.)
- ✅ CSV upload backward compatibility preserved
- ✅ Dual-mode support: both CSV and database work simultaneously
- ✅ Format auto-detection works seamlessly
- ✅ User tested and verified working
- ✅ Deployed to production
Files Modified:
src/utils/dataUtils.ts: +235 lines (functions, interfaces, auto-detection)
src/App.tsx: +145 lines (database fetch, TypeScript types)
.claude/skills/migration-tracker/SKILL.md: Documentation updates
How It Works:
- User clicks "Load Data" button
- App fetches strategies from Supabase
- For each strategy, fetches ALL trades separately (no 60-row limit)
- Builds filename from metadata (e.g., SI_Long_Test_TestStrategy1.csv)
- Transforms to cleanedData format with 3 columns (no Entry/Exit column)
calculateMetrics() auto-detects format and processes correctly
- Pre-populates contract multipliers from database
- Auto-selects strategies and displays metrics/charts
Backward Compatibility:
- ✅ CSV upload with 4 columns (includes Entry/Exit) → 2-row processing
- ✅ Database with 3 columns (no Entry/Exit) → 1-row processing
- ✅ Both formats work simultaneously
- ✅ All existing components, hooks, charts unchanged
Database Integration Planning (Nov 16, 2025)
Status: Planning complete, ready for implementation
What Changed:
- Designed database integration plan (now implemented and deployed)
- Analyzed new Supabase database schema (portfolios, strategies, trades tables)
- Designed dual-mode support (CSV upload + database fetch)
- Planned data transformation strategy (single-row trades vs entry/exit pairs)
New Database Schema:
portfolios: Portfolio definitions with is_master flag
strategies: Strategy metadata (market, direction, contract_multiplier, etc.)
trades: Individual trade records (trade_date, trade_time, profit)
portfolio_strategies: Links portfolios to strategies
Implementation Plan:
- Add
calculateMetricsFromDatabase() function in dataUtils.ts (~80 lines)
- Update
fetchFromSupabase() query in App.tsx (~60 lines changed)
- Transform database data to match cleanedData format
- Pre-populate contract multipliers from database
- Test with 119 existing trades
Current State:
- Python script on Windows VPS uploads trades automatically ✓
- Database contains 1 strategy with 119 trades ✓
- Frontend still queries old
csv_files table (needs update)
Next Steps:
- Implement Phase 1: New calculation function
- Implement Phase 2: Update Supabase query
- Test dual CSV/Database support
- Deploy to production
Strategy Delete Feature (Nov 19, 2025) ✅
Commit: c372ab7a92d267eda3e540b298872484ef09e38d
Files: App.tsx (+47), MetricsTable.tsx (+18), PortfolioSection.tsx (+8)
What it does:
- Delete database strategies permanently (red trash icon with confirmation)
- Remove CSV strategies from view (gray trash icon, immediate)
- strategyIdMap tracks DB vs CSV (App.tsx line 67)
- handleDeleteStrategy with Supabase deletion (App.tsx lines 423-458)
- Trash2 icon in Actions column (MetricsTable.tsx lines 1, 239-246)
Git Forensic Recovery (Dec 2, 2025) ✅
Problem: Delete feature was "lost" (local repo behind origin/main)
Solution:
git fetch origin
git merge origin/main # Fast-forward to c372ab7
Key lesson: Always check git log origin/main when work seems missing
Sortino Ratio (Oct 2025)
Commits: 258ba3a, 9f25040
What Changed:
- Added risk-free rate input field in PortfolioSection (line 131:
useState<number>(0))
- Implemented inline Sortino calculation in PortfolioSection (lines 133-158)
- Fixed downside deviation calculation (now properly annualized using sqrt(365))
- Corrected variance calculation (divides by total returns, not just negative returns)
- Displays in portfolio stats section (line 535)
Files Modified:
PortfolioSection.tsx: Added riskFreeRate state, downside deviation calculation, and display
Implementation Details:
- NOT in dataUtils.ts - Sortino is calculated inline in PortfolioSection using
useMemo
- NOT in MetricsTable - Only displayed in portfolio stats area
- Kept in component due to portfolio-level context requirements:
- Needs user input (risk-free rate)
- Operates on portfolio daily returns (not trade-level metrics)
- Different calculation scope than win rate, profit factor, etc.
Date Range Filtering (Oct 2025)
Commit: 258ba3a
What Changed:
- usePortfolio hook now accepts date range params
- Filters trades by start/end date
- Recalculates metrics for filtered period only
- UI controls in PortfolioSection
Files Modified:
usePortfolio.ts: Added date filtering logic
PortfolioSection.tsx: Added date picker controls
Enhanced Error Handling (Sept 2025)
Commit: 9fb7fdb
What Changed:
- Better Supabase error messages
- Client validation before upload
- Error list component shows all errors
- Toast notifications for user feedback
Files Modified:
UploadSection.tsx: Enhanced error handling
ErrorList.tsx: New component for error display
usePortfolio.ts: Better error propagation
Current Tech Debt
High Priority
PortfolioSection.tsx is 591 lines (3x the 200-line limit)
- Needs refactoring into:
EquityChartSection.tsx
PortfolioStats.tsx
ContractControls.tsx
- Estimated effort: 4-6 hours
Remove unused Recharts dependency (11.5KB waste)
- Currently using Chart.js
- Recharts never imported anywhere
- Run:
npm uninstall recharts
Fix 15 TypeScript any violations
- usePortfolio.ts: 11 instances
- useMetrics.ts: 4 instances
- dataUtils.ts: 1 instance
- Need proper interfaces for Trade and Metric types
Medium Priority
App.tsx is 351 lines (175% of limit)
- Extract sections into components
- Estimated effort: 2-3 hours
MetricsTable.tsx is 242 lines (121% of limit)
- Improved from 350 lines
- Still over limit, could extract more
No error boundaries implemented
- Should wrap risky components
- Prevents full app crashes
Low Priority
No testing setup
- Should test critical calculations
- Vitest recommended for Vite projects
No CI/CD pipeline
- Manual Cloudflare deployments
- Could automate with GitHub Actions
Known Issues
Issue 1: Supabase 500 Errors
Status: Partially fixed (commit 9fb7fdb)
Root cause: Row limit exceeded on free tier
Current workaround:
- Enhanced error handling shows user-friendly messages
- Batch uploads in smaller chunks recommended
Long-term fix: Implement data aggregation before storage
Issue 2: Large Component Files
Status: Documented but not fixed
Problem: Components grew during migration
Affected:
- PortfolioSection.tsx: 591 lines (was 280, now worse!)
- App.tsx: 351 lines
- MetricsTable.tsx: 242 lines (improved from 350)
Fix needed: Systematic refactoring into smaller components
Issue 3: No Select All Button
Status: Feature doesn't exist
Note: Previous skill version documented a "Select All bug" but this feature was either removed or never implemented. MetricsTable has individual selection but no "Select All" functionality.
Issue 4: Lost/Missing Code
Status: Recoverable via git forensics
Problem: Can't find recently added features or code seems to have disappeared
Solution:
- Check remote:
git log origin/main --oneline -10
- Search commits:
git log --all --grep="keyword"
- Fast-forward if behind:
git merge origin/main
- Use reflog to see recent HEAD positions:
git reflog
Example: On Dec 2, 2025, the delete feature was recovered by fast-forwarding from f4e752a to c372ab7
Migration Priorities (ICE Scored)
| Feature |
Impact |
Confidence |
Ease |
ICE Score |
Status |
| Refactor PortfolioSection |
6 |
8 |
4 |
19.2 |
❌ |
| Remove Recharts |
3 |
10 |
10 |
30 |
❌ |
Fix TypeScript any |
5 |
9 |
6 |
27 |
❌ |
| Export to Excel |
8 |
8 |
7 |
44.8 |
🚧 |
| Advanced filters |
7 |
6 |
5 |
21 |
🚧 |
| Historical comparison UI |
6 |
7 |
4 |
16.8 |
🚧 |
| Error boundaries |
7 |
9 |
8 |
50.4 |
❌ |
| Testing setup |
6 |
8 |
5 |
24 |
❌ |
| Risk scenarios |
5 |
4 |
2 |
4 |
❌ |
Top Priorities by ICE Score:
- Error boundaries (50.4) - High impact, easy to implement
- Export to Excel (44.8) - User-requested feature
- Remove Recharts (30) - Quick win, technical cleanup
- Fix TypeScript violations (27) - Code quality
- Testing setup (24) - Long-term maintainability
What Changed from Old App
Tech Stack Evolution
| Component |
Old App |
New App |
Reason |
| React |
16.x |
19.x |
Latest features, better performance |
| Language |
JavaScript |
TypeScript |
Type safety, better DX |
| Build Tool |
Create React App |
Vite |
10x faster builds, modern |
| Styling |
Material-UI v4 |
Tailwind + shadcn |
More flexible, lighter |
| Charts |
Recharts |
Chart.js |
Better performance, more features |
| State |
Redux |
Plain React hooks |
Simpler, less boilerplate |
| Backend |
Custom Node.js |
Supabase |
Faster development, PostgreSQL |
State Management Migration
- Old: Redux with actions, reducers, middleware (complex)
- New: Plain React hooks (useState, useMemo, useCallback)
- Result: 70% less boilerplate, easier to understand
Note: Skills previously claimed migration to TanStack Query + Zustand, but actual implementation uses plain React hooks only.
Why No Global State Library?
Portfolio Buddy 2 is simple enough to use React's built-in state:
- Small component tree (14 components)
- State rarely shared across distant components
- Custom hooks encapsulate shared logic effectively
- No complex async state management needed
Migration Lessons Learned
What Went Well
- Vite adoption - Build times dropped from 30s to 2s
- TypeScript migration - Caught many bugs early
- Chart.js over Recharts - Better performance with large datasets
- Simplified state - No Redux complexity
- Supabase integration - Fast backend setup
What Could Be Better
- Component size discipline - Let components grow too large
- TypeScript strictness - Too many
any escapes
- Testing from start - No tests written yet (tech debt)
- Code reviews - Need refactoring before more features
- Documentation - Should have updated skills continuously
Migration Velocity
- Weeks 1-4: Core features (upload, parsing, basic metrics)
- Weeks 5-8: Charts, correlation, UI polish
- Weeks 9-12: Advanced features (Sortino, date filtering, sorting)
- Current: Maintenance, refactoring, optimization
Next Steps
Immediate (This Sprint)
- Remove Recharts dependency
- Add error boundaries to risky components
- Fix highest-impact TypeScript
any violations
Short Term (Next 2 Sprints)
- Refactor PortfolioSection into smaller components
- Implement Excel export
- Complete symbol/strategy filtering
Long Term (Next Quarter)
- Set up Vitest testing framework
- Add CI/CD with GitHub Actions
- Multi-period analysis UI
- Risk scenario modeling
Feature Parity Checklist
Comparing to old Portfolio Buddy v1:
| Feature |
Old App |
New App |
Notes |
| CSV Upload |
✅ |
✅ |
Improved error handling |
| Sharpe Ratio |
✅ |
✅ |
Same calculation |
| Sortino Ratio |
✅ |
✅ |
Fixed calculation (9f25040) |
| Max Drawdown |
✅ |
✅ |
Same calculation |
| CAGR |
✅ |
✅ |
Same calculation |
| Correlation Matrix |
✅ |
✅ |
Added Pearson + Spearman |
| Equity Curves |
✅ |
✅ |
Better charts with zoom/pan |
| Contract Multipliers |
❌ |
✅ |
New feature |
| Date Filtering |
❌ |
✅ |
New feature |
| Multi-column Sort |
✅ |
✅ |
Improved with useSorting |
| Export to CSV |
✅ |
✅ |
Same functionality |
| Export to Excel |
✅ |
❌ |
Regression - needs reimplementation |
| Export to PDF |
✅ |
❌ |
Regression - low priority |
| Symbol Filtering |
✅ |
❌ |
Regression - in progress |
| Historical Compare |
✅ |
❌ |
Regression - backend ready |
Parity Status: 85% (11/13 core features complete)
1---2name: migration-tracker3description: Context for ongoing migration from old Portfolio Buddy app. Use when: fixing bugs, adding migrated features, checking feature parity, or understanding why certain code exists. Contains list of 40 features being migrated and known issues.4---5
6# Portfolio Buddy 2 - Migration Tracker
7
8## Migration Status: 40 Features
9
10### ✅ Completed (36/40 - 90%)
11Core features migrated and working:
12- CSV upload and parsing with PapaParse
13- Supabase storage integration
14- Basic metrics calculation (Sharpe, Max DD, CAGR, Win Rate, etc.)
15- **Sortino Ratio** (completed commits 258ba3a, 9f25040)
16- **Risk-free rate input** (completed commit 258ba3a)
17- Asset correlation matrix (Spearman & Pearson)
18- Portfolio comparison charts (Chart.js)
19- Equity curve visualization
20- Responsive UI with Tailwind CSS
21- shadcn/ui color system integration
22- **Date range filtering** (completed commit 258ba3a)
23- **Contract multipliers for futures** (useContractMultipliers hook)
24- **Advanced multi-column sorting** (useSorting hook)
25- Error handling and validation
26- File upload progress tracking
27- Multiple file management
28
29- **Database Integration** (Nov 16, 2025) - PRODUCTION READY ✓
30 - Python script uploads trades automatically ✓
31 - New database schema (portfolios, strategies, trades) ✓
32 - Frontend database fetch ✓ (commits c4fa57c through ee7cec8)
33 - Dual CSV/Database support ✓
34 - Format auto-detection (1-row vs 2-row) ✓
35 - User tested and verified ✓
36 - Merged to main and deployed ✓
37 - **See:** `dev-docs/database-architecture.md` for schema reference
38
39### 🚧 In Progress (3/40)
401. **Advanced filtering** - Partial implementation
41 - Date filtering complete ✓
42 - Symbol filtering needed
43 - Strategy filtering needed
442. **Export functionality** - CSV export only
45 - Excel export pending
46 - PDF reports pending
473. **Historical comparison** - Backend ready, UI pending
48 - Need UI for comparing multiple time periods
49
50### ❌ Not Started (2/40)
511. **Multi-period analysis** - Complex, low priority
52 - Compare performance across different time windows
53 - Requires significant UI work
542. **Risk scenario modeling** - Requires new backend logic
55 - Monte Carlo simulations
56 - Stress testing
57
58## Recent Completed Features
59
60### Database Fetch Implementation (Nov 16, 2025) ✅ COMPLETED
61**Status**: Production ready - Tested and deployed
62**Commits**: c4fa57c, a5ce0ec, 676de06, eba4c8d, ee7cec8, ae9202d
63**Merged to main**: d56497a (PR #1)
64
65**Implementation Journey** (6 commits):
66
671. **Initial Implementation** (c4fa57c)
68 - Added `calculateMetricsFromDatabase()` and `buildFilenameFromMetadata()` to dataUtils.ts
69 - Rewrote `fetchFromSupabase()` in App.tsx
70 - Changed from old `csv_files` table to new `strategies` + `trades` schema
71 - Added TypeScript interfaces: DatabaseTrade, StrategyMetadata
72
732. **Fix Query Syntax** (a5ce0ec)
74 - Fixed Supabase order clause syntax error
75 - Changed `order('trades.trade_date')` to `order('trade_date')` with foreignTable parameter
76 - Error: "failed to parse order (trades.trade_date.asc)"
77
783. **Fix Trade Count Limit** (676de06)
79 - Discovered Supabase embedded resource limit (~60 rows)
80 - Separated queries: fetch strategies first, then fetch trades separately
81 - Added explicit `.limit(10000)` to get all trades
82 - Fixed: 59 trades → 119 trades ✅
83
844. **Fix TypeScript Build Errors** (eba4c8d)
85 - Added StrategyFromDB interface with optional `trades?` property
86 - Added DatabaseTrade interface to App.tsx
87 - Fixed: "Property 'trades' does not exist" errors
88
895. **Fix Metrics Calculation** (ee7cec8) ⭐ **CRITICAL FIX**
90 - Auto-detect format: 2-row (Entry/Exit) vs 1-row (database)
91 - Modified `calculateMetrics()` to check for "Entry/Exit" column
92 - If present → loop by 2 (old CSV format)
93 - If absent → loop by 1 (new database format)
94 - Fixed: Metrics now calculated correctly for all 119 trades ✅
95
966. **Update Documentation** (ae9202d)
97 - Updated migration-tracker skill with implementation details
98 - Documented all changes and line numbers
99
100**Final Results**:
101- ✅ 119 trades loaded from database (not 59)
102- ✅ All metrics calculated correctly (win rate, profit factor, etc.)
103- ✅ CSV upload backward compatibility preserved
104- ✅ Dual-mode support: both CSV and database work simultaneously
105- ✅ Format auto-detection works seamlessly
106- ✅ User tested and verified working
107- ✅ Deployed to production
108
109**Files Modified**:
110- `src/utils/dataUtils.ts`: +235 lines (functions, interfaces, auto-detection)
111- `src/App.tsx`: +145 lines (database fetch, TypeScript types)
112- `.claude/skills/migration-tracker/SKILL.md`: Documentation updates
113
114**How It Works**:
1151. User clicks "Load Data" button
1162. App fetches strategies from Supabase
1173. For each strategy, fetches ALL trades separately (no 60-row limit)
1184. Builds filename from metadata (e.g., SI_Long_Test_TestStrategy1.csv)
1195. Transforms to cleanedData format with 3 columns (no Entry/Exit column)
1206. `calculateMetrics()` auto-detects format and processes correctly
1217. Pre-populates contract multipliers from database
1228. Auto-selects strategies and displays metrics/charts
123
124**Backward Compatibility**:
125- ✅ CSV upload with 4 columns (includes Entry/Exit) → 2-row processing
126- ✅ Database with 3 columns (no Entry/Exit) → 1-row processing
127- ✅ Both formats work simultaneously
128- ✅ All existing components, hooks, charts unchanged
129
130### Database Integration Planning (Nov 16, 2025)
131**Status**: Planning complete, ready for implementation
132**What Changed**:
133- Designed database integration plan (now implemented and deployed)
134- Analyzed new Supabase database schema (portfolios, strategies, trades tables)
135- Designed dual-mode support (CSV upload + database fetch)
136- Planned data transformation strategy (single-row trades vs entry/exit pairs)
137
138**New Database Schema**:
139- `portfolios`: Portfolio definitions with is_master flag
140- `strategies`: Strategy metadata (market, direction, contract_multiplier, etc.)
141- `trades`: Individual trade records (trade_date, trade_time, profit)
142- `portfolio_strategies`: Links portfolios to strategies
143
144**Implementation Plan**:
1451. Add `calculateMetricsFromDatabase()` function in dataUtils.ts (~80 lines)
1462. Update `fetchFromSupabase()` query in App.tsx (~60 lines changed)
1473. Transform database data to match cleanedData format
1484. Pre-populate contract multipliers from database
1495. Test with 119 existing trades
150
151**Current State**:
152- Python script on Windows VPS uploads trades automatically ✓
153- Database contains 1 strategy with 119 trades ✓
154- Frontend still queries old `csv_files` table (needs update)
155
156**Next Steps**:
157- Implement Phase 1: New calculation function
158- Implement Phase 2: Update Supabase query
159- Test dual CSV/Database support
160- Deploy to production
161
162### Strategy Delete Feature (Nov 19, 2025) ✅
163**Commit:** c372ab7a92d267eda3e540b298872484ef09e38d
164**Files:** App.tsx (+47), MetricsTable.tsx (+18), PortfolioSection.tsx (+8)
165
166**What it does:**
167- Delete database strategies permanently (red trash icon with confirmation)
168- Remove CSV strategies from view (gray trash icon, immediate)
169- strategyIdMap tracks DB vs CSV (App.tsx line 67)
170- handleDeleteStrategy with Supabase deletion (App.tsx lines 423-458)
171- Trash2 icon in Actions column (MetricsTable.tsx lines 1, 239-246)
172
173### Git Forensic Recovery (Dec 2, 2025) ✅
174**Problem:** Delete feature was "lost" (local repo behind origin/main)
175
176**Solution:**
177```bash
178git fetch origin
179git merge origin/main # Fast-forward to c372ab7
180```
181
182**Key lesson:** Always check `git log origin/main` when work seems missing
183
184### Sortino Ratio (Oct 2025)
185**Commits**: 258ba3a, 9f25040
186**What Changed**:
187- Added risk-free rate input field in PortfolioSection (line 131: `useState<number>(0)`)
188- Implemented inline Sortino calculation in PortfolioSection (lines 133-158)
189- Fixed downside deviation calculation (now properly annualized using sqrt(365))
190- Corrected variance calculation (divides by total returns, not just negative returns)
191- Displays in portfolio stats section (line 535)
192
193**Files Modified**:
194- `PortfolioSection.tsx`: Added riskFreeRate state, downside deviation calculation, and display
195
196**Implementation Details**:
197- **NOT in dataUtils.ts** - Sortino is calculated inline in PortfolioSection using `useMemo`
198- **NOT in MetricsTable** - Only displayed in portfolio stats area
199- Kept in component due to portfolio-level context requirements:
200 - Needs user input (risk-free rate)
201 - Operates on portfolio daily returns (not trade-level metrics)
202 - Different calculation scope than win rate, profit factor, etc.
203
204### Date Range Filtering (Oct 2025)
205**Commit**: 258ba3a
206**What Changed**:
207- usePortfolio hook now accepts date range params
208- Filters trades by start/end date
209- Recalculates metrics for filtered period only
210- UI controls in PortfolioSection
211
212**Files Modified**:
213- `usePortfolio.ts`: Added date filtering logic
214- `PortfolioSection.tsx`: Added date picker controls
215
216### Enhanced Error Handling (Sept 2025)
217**Commit**: 9fb7fdb
218**What Changed**:
219- Better Supabase error messages
220- Client validation before upload
221- Error list component shows all errors
222- Toast notifications for user feedback
223
224**Files Modified**:
225- `UploadSection.tsx`: Enhanced error handling
226- `ErrorList.tsx`: New component for error display
227- `usePortfolio.ts`: Better error propagation
228
229## Current Tech Debt
230
231### High Priority
2321. **PortfolioSection.tsx is 591 lines** (3x the 200-line limit)
233 - Needs refactoring into:
234 - `EquityChartSection.tsx`
235 - `PortfolioStats.tsx`
236 - `ContractControls.tsx`
237 - Estimated effort: 4-6 hours
238
2392. **Remove unused Recharts dependency** (11.5KB waste)
240 - Currently using Chart.js
241 - Recharts never imported anywhere
242 - Run: `npm uninstall recharts`
243
2443. **Fix 15 TypeScript `any` violations**
245 - usePortfolio.ts: 11 instances
246 - useMetrics.ts: 4 instances
247 - dataUtils.ts: 1 instance
248 - Need proper interfaces for Trade and Metric types
249
250### Medium Priority
2514. **App.tsx is 351 lines** (175% of limit)
252 - Extract sections into components
253 - Estimated effort: 2-3 hours
254
2555. **MetricsTable.tsx is 242 lines** (121% of limit)
256 - Improved from 350 lines
257 - Still over limit, could extract more
258
2596. **No error boundaries implemented**
260 - Should wrap risky components
261 - Prevents full app crashes
262
263### Low Priority
2647. **No testing setup**
265 - Should test critical calculations
266 - Vitest recommended for Vite projects
267
2688. **No CI/CD pipeline**
269 - Manual Cloudflare deployments
270 - Could automate with GitHub Actions
271
272## Known Issues
273
274### Issue 1: Supabase 500 Errors
275**Status**: Partially fixed (commit 9fb7fdb)
276**Root cause**: Row limit exceeded on free tier
277**Current workaround**:
278- Enhanced error handling shows user-friendly messages
279- Batch uploads in smaller chunks recommended
280**Long-term fix**: Implement data aggregation before storage
281
282### Issue 2: Large Component Files
283**Status**: Documented but not fixed
284**Problem**: Components grew during migration
285**Affected**:
286- PortfolioSection.tsx: 591 lines (was 280, now worse!)
287- App.tsx: 351 lines
288- MetricsTable.tsx: 242 lines (improved from 350)
289**Fix needed**: Systematic refactoring into smaller components
290
291### Issue 3: No Select All Button
292**Status**: Feature doesn't exist
293**Note**: Previous skill version documented a "Select All bug" but this feature was either removed or never implemented. MetricsTable has individual selection but no "Select All" functionality.
294
295### Issue 4: Lost/Missing Code
296**Status**: Recoverable via git forensics
297**Problem**: Can't find recently added features or code seems to have disappeared
298**Solution**:
2991. Check remote: `git log origin/main --oneline -10`
3002. Search commits: `git log --all --grep="keyword"`
3013. Fast-forward if behind: `git merge origin/main`
3024. Use reflog to see recent HEAD positions: `git reflog`
303**Example**: On Dec 2, 2025, the delete feature was recovered by fast-forwarding from f4e752a to c372ab7
304
305## Migration Priorities (ICE Scored)
306
307| Feature | Impact | Confidence | Ease | ICE Score | Status |
308|---------|--------|------------|------|-----------|--------|
309| Refactor PortfolioSection | 6 | 8 | 4 | 19.2 | ❌ |
310| Remove Recharts | 3 | 10 | 10 | 30 | ❌ |
311| Fix TypeScript `any` | 5 | 9 | 6 | 27 | ❌ |
312| Export to Excel | 8 | 8 | 7 | 44.8 | 🚧 |
313| Advanced filters | 7 | 6 | 5 | 21 | 🚧 |
314| Historical comparison UI | 6 | 7 | 4 | 16.8 | 🚧 |
315| Error boundaries | 7 | 9 | 8 | 50.4 | ❌ |
316| Testing setup | 6 | 8 | 5 | 24 | ❌ |
317| Risk scenarios | 5 | 4 | 2 | 4 | ❌ |
318
319**Top Priorities by ICE Score**:
3201. Error boundaries (50.4) - High impact, easy to implement
3212. Export to Excel (44.8) - User-requested feature
3223. Remove Recharts (30) - Quick win, technical cleanup
3234. Fix TypeScript violations (27) - Code quality
3245. Testing setup (24) - Long-term maintainability
325
326## What Changed from Old App
327
328### Tech Stack Evolution
329| Component | Old App | New App | Reason |
330|-----------|---------|---------|--------|
331| React | 16.x | 19.x | Latest features, better performance |
332| Language | JavaScript | TypeScript | Type safety, better DX |
333| Build Tool | Create React App | Vite | 10x faster builds, modern |
334| Styling | Material-UI v4 | Tailwind + shadcn | More flexible, lighter |
335| Charts | Recharts | Chart.js | Better performance, more features |
336| State | Redux | Plain React hooks | Simpler, less boilerplate |
337| Backend | Custom Node.js | Supabase | Faster development, PostgreSQL |
338
339### State Management Migration
340- **Old**: Redux with actions, reducers, middleware (complex)
341- **New**: Plain React hooks (useState, useMemo, useCallback)
342- **Result**: 70% less boilerplate, easier to understand
343
344**Note**: Skills previously claimed migration to TanStack Query + Zustand, but actual implementation uses plain React hooks only.
345
346### Why No Global State Library?
347Portfolio Buddy 2 is simple enough to use React's built-in state:
348- Small component tree (14 components)
349- State rarely shared across distant components
350- Custom hooks encapsulate shared logic effectively
351- No complex async state management needed
352
353## Migration Lessons Learned
354
355### What Went Well
3561. **Vite adoption** - Build times dropped from 30s to 2s
3572. **TypeScript migration** - Caught many bugs early
3583. **Chart.js over Recharts** - Better performance with large datasets
3594. **Simplified state** - No Redux complexity
3605. **Supabase integration** - Fast backend setup
361
362### What Could Be Better
3631. **Component size discipline** - Let components grow too large
3642. **TypeScript strictness** - Too many `any` escapes
3653. **Testing from start** - No tests written yet (tech debt)
3664. **Code reviews** - Need refactoring before more features
3675. **Documentation** - Should have updated skills continuously
368
369### Migration Velocity
370- **Weeks 1-4**: Core features (upload, parsing, basic metrics)
371- **Weeks 5-8**: Charts, correlation, UI polish
372- **Weeks 9-12**: Advanced features (Sortino, date filtering, sorting)
373- **Current**: Maintenance, refactoring, optimization
374
375## Next Steps
376
377### Immediate (This Sprint)
3781. Remove Recharts dependency
3792. Add error boundaries to risky components
3803. Fix highest-impact TypeScript `any` violations
381
382### Short Term (Next 2 Sprints)
3831. Refactor PortfolioSection into smaller components
3842. Implement Excel export
3853. Complete symbol/strategy filtering
386
387### Long Term (Next Quarter)
3881. Set up Vitest testing framework
3892. Add CI/CD with GitHub Actions
3903. Multi-period analysis UI
3914. Risk scenario modeling
392
393## Feature Parity Checklist
394
395Comparing to old Portfolio Buddy v1:
396
397| Feature | Old App | New App | Notes |
398|---------|---------|---------|-------|
399| CSV Upload | ✅ | ✅ | Improved error handling |
400| Sharpe Ratio | ✅ | ✅ | Same calculation |
401| Sortino Ratio | ✅ | ✅ | **Fixed** calculation (9f25040) |
402| Max Drawdown | ✅ | ✅ | Same calculation |
403| CAGR | ✅ | ✅ | Same calculation |
404| Correlation Matrix | ✅ | ✅ | Added Pearson + Spearman |
405| Equity Curves | ✅ | ✅ | Better charts with zoom/pan |
406| Contract Multipliers | ❌ | ✅ | **New feature** |
407| Date Filtering | ❌ | ✅ | **New feature** |
408| Multi-column Sort | ✅ | ✅ | **Improved** with useSorting |
409| Export to CSV | ✅ | ✅ | Same functionality |
410| Export to Excel | ✅ | ❌ | **Regression** - needs reimplementation |
411| Export to PDF | ✅ | ❌ | **Regression** - low priority |
412| Symbol Filtering | ✅ | ❌ | **Regression** - in progress |
413| Historical Compare | ✅ | ❌ | **Regression** - backend ready |
414
415**Parity Status**: 85% (11/13 core features complete)