diff --git a/apps/web/src/pages/DownloadsPage.tsx b/apps/web/src/pages/DownloadsPage.tsx index 99f23c4..ad069b2 100644 --- a/apps/web/src/pages/DownloadsPage.tsx +++ b/apps/web/src/pages/DownloadsPage.tsx @@ -50,7 +50,7 @@ const setupSteps: SetupStep[] = [
Enable WebRequest in your MT5 terminal:
+ The TradeJournal Sync EA is independent of copy trading — attach it to any MT5 account (run it standalone; no master or follower needed). It captures every trade on that account — in real time, plus a one-time history catch-up — and streams them to your dashboard Journal. +
++ Install it exactly like the other EAs (TradeJournal_Sync.mq5 plus the same Include files from Step 3), then compile and drag it onto one chart per account. A single instance captures the whole account — you do not need it on every symbol. +
+ +Set the following input parameters when attaching the EA:
+| Parameter | +Description | +Example / Default | +
|---|---|---|
| API_Key | +API key from the Accounts page (required) | +er_abc123... | +
| API_Secret | +API secret (required) | +(shown once at creation) | +
| API_Endpoint | +Journal sync server | +https://edgerelay-journal-sync.ghwmelite.workers.dev | +
| AccountID | +The account to journal (required) | +(from dashboard) | +
| SyncIntervalSeconds | +History catch-up scan interval (seconds) | +60 | +
| HeartbeatIntervalMs | +Connection heartbeat interval (ms) | +30000 | +
+ API_Key, API_Secret, and AccountID are required — the EA refuses to start without them. Make sure the edgerelay-journal-sync URL from Step 2 is whitelisted under WebRequest. +
+Master / Follower EAs
+TradeJournal Sync EA
+{isJournal - ? 'Install on any MT5 account. Syncs every trade to your journal with zero drops — real-time capture + history catch-up.' + ? 'Install on any MT5 account. Syncs every trade to your journal with zero drops — real-time capture + history catch-up.' : isMaster ? 'Install on your master MT5 account. Captures and sends trade signals to the edge network.' : 'Install on each follower account. Receives signals and executes trades automatically.'} @@ -569,7 +653,7 @@ export function DownloadsPage() {
- Everything you need in one ZIP — 3 Expert Advisors, 11 Include libraries, and the Setup Script. + Everything you need in one ZIP — 3 Expert Advisors, 11 Include libraries, and the Setup Script. Extract directly into your MT5 Data Folder.