feat: implement auto-trading infrastructure

- Add auto-trading database collections and Firestore rules
- Update Gemini service prompt for SMC/Institutional focus
- Add MetaApi integration and Yahoo Finance symbol mapping
- Implement auto-trade state management in AutoTradingView
This commit is contained in:
desartstudio95
2026-05-29 11:22:12 -07:00
parent b4df5a2d17
commit 08bb52bf23
12 changed files with 369 additions and 119 deletions
+4
View File
@@ -0,0 +1,4 @@
import fs from 'fs';
const text = fs.readFileSync('error.log', 'utf8');
const errIdx = text.lastIndexOf('Error');
console.log(text.substring(Math.max(0, errIdx - 500), errIdx + 1500));