feat: Add Phase 4 advanced metrics and components

- Add advanced metrics dashboard with trade analytics
- Add new trading components (EntryTypeAnalysis, MultiDayPositionTracker, NewsEventTracker, etc.)
- Add strategy mode selector and trend confirmation
- Add risk automation panel and slippage correlation analysis
- Add daily trading plan enhancements with modal components
- Add custom hooks (useApi, useLocalStorage, useAdvancedTradeMetrics)
- Add broker service integration and trading API
- Add test setup and vitest configuration
- Include parquet data files for live market data
- Add comprehensive documentation in docs/ folder
This commit is contained in:
Krikorios
2025-11-27 10:23:58 +02:00
parent b5e2b02cb8
commit 48e60d015f
2019 changed files with 39793 additions and 257 deletions
+11
View File
@@ -0,0 +1,11 @@
{
"name": "gold-trading-simulator",
"private": true,
"description": "Top-level scripts for the Gold Trading Simulator monorepo",
"scripts": {
"dev": "npm run dev --prefix frontend",
"build": "npm run build --prefix frontend",
"test": "npm run test --prefix frontend",
"lint": "npm run lint --prefix frontend"
}
}