trading-platform/package.json
rckrdmrd c1b5081208 feat(ml): Complete FASE 11 - BTCUSD update and comprehensive documentation alignment
ML Engine Updates:
- Updated BTCUSD with Polygon API data (2024-2025): 215,699 new records
- Re-trained all ML models: Attention (R²: 0.223), Base, Metamodel (87.3% confidence)
- Backtest results: +176.71R profit with aggressive_filter strategy

Documentation Consolidation:
- Created docs/99-analisis/_MAP.md index with 13 new analysis documents
- Consolidated inventories: removed duplicates from orchestration/inventarios/
- Updated ML_INVENTORY.yml with BTCUSD metrics and training results
- Added execution reports: FASE11-BTCUSD, correction issues, alignment validation

Architecture & Integration:
- Updated all module documentation with NEXUS v3.4 frontmatter
- Fixed _MAP.md indexes across all folders
- Updated orchestration plans and traces

Files: 229 changed, 5064 insertions(+), 1872 deletions(-)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-07 09:31:29 -06:00

26 lines
791 B
JSON

{
"name": "@trading/monorepo",
"version": "1.0.0",
"description": "Trading Platform - Trading Platform Monorepo",
"private": true,
"scripts": {
"prepare": "husky install",
"frontend:dev": "cd apps/frontend && npm run dev",
"frontend:build": "cd apps/frontend && npm run build",
"frontend:test": "cd apps/frontend && npm run test",
"frontend:lint": "cd apps/frontend && npm run lint",
"backend:dev": "cd apps/backend && python -m uvicorn app.main:app --reload",
"lint": "npm run frontend:lint"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}