feat(auto-trading): integrate MetaApi for automated trading

- Add metaapi.cloud-sdk for broker integration
- Implement AutoTradingView component
- Extend Signal interface with secondary take-profit levels
- Update UI to include auto-trading navigation tab
This commit is contained in:
desartstudio95
2026-05-25 05:52:17 -07:00
parent 546f2670a0
commit b4df5a2d17
20 changed files with 3291 additions and 279 deletions
+5
View File
@@ -124,6 +124,11 @@ service cloud.firestore {
match /settings/{settingId} {
allow read: if true;
allow update, create, delete: if isDbAdmin();
}
// --- Telegram Active Signals (Usado pelo background worker) ---
match /telegram_active_signals/{document=**} {
allow read, write: if true;
}
}
}