GMRFX CopyTrade Local and Lan

# GMRFX Copytrade Local & Lan

> **Copy-Trade Master/Slave — One EA, File-Based Sync, Zero Network Config.**
> Copy trades between MT5 terminals on the same PC, across your local network, or over the internet — using nothing but a shared folder.

---

**Version:** 1.00  
**Developer:** GMR FX ([gmrfx.app](https://gmrfx.app))  
**Category:** Trade Copiers / Utilities  

---

## What Is This?

**GMRFX Copytrade Local & Lan** is a single Expert Advisor that handles both **Master** (sender) and **Slave** (receiver) roles for copy trading. Pick your mode from a dropdown — done.

Unlike socket-based copiers that require IP addresses, port forwarding, and firewall rules, this EA uses a simple `.csv` file as its communication bridge. Your operating system handles the networking. You just point both EAs to the same folder.

### Where It Works

| Setup | Sync Method | Delay |
|---|---|---|
| **Same PC, multiple MT5 terminals** | Built-in (Common\Files\) | Instant |
| **2 PCs, same LAN** | Syncthing (free, P2P) or Windows SMB share | 0.5–2 sec |
| **2 PCs, different locations (internet)** | Syncthing, Dropbox, Google Drive, OneDrive | 2–5 sec |
| **PC to VPS** | Any cloud sync tool | 2–5 sec |

---

## Key Features

### One EA, Two Modes
No more juggling `Master_EA.ex5` and `Slave_EA.ex5`. A single file, a single parameter, instant mode switch. Version updates: one file.

### File-Based Communication
The Master writes position snapshots to `state.csv`. The Slave reads and reconciles. No sockets. No DLLs. No IP configuration. No port forwarding.

### Atomic Writes
Master writes to `.tmp` first, then renames to `.csv`. The Slave always reads a complete, uncorrupted file — even during concurrent access.

### Cross-PC Ready
`InpSyncFolder` can point to any folder — local, network share, or a cloud-synced directory. Use Syncthing (free, open-source, P2P), Dropbox, Google Drive, or OneDrive to bridge computers anywhere in the world.

### Smart Slave Logic
- **Anti-Reopen** — remembers positions you closed manually. Won't reopen them.
- **Age Gate** — only copies positions opened within N seconds. Filters stale signals.
- **Reverse Copy** — invert direction (Buy ↔ Sell). SL and TP swapped too.
- **Volume Control** — ratio mode (0.5x, 2x Master lot) or fixed lot.
- **Symbol Filter** — comma-separated list. Empty = all symbols.
- **Suffix Support** — handles broker symbol differences (EURUSD → EURUSD.r).
- **SL/TP Copy** — optionally copy Stop Loss and Take Profit from Master.
- **Spread Limit** — skip trades when spread exceeds your threshold.
- **Offline Detection** — detects Master shutdown. Optionally auto-close all Slave positions.
- **Bilingual Logs** — English or Bahasa Indonesia, selectable in parameters.

### Lightweight & Pure MQL5
No external DLLs. No custom indicators. No web requests. Runs entirely in `OnTimer()`. Minimal CPU and memory footprint.

---

## Why File-Based Sync?

| Approach | Problems |
|---|---|
| **Socket / TCP** | Complex IP config, port forwarding, firewall rules, often blocked by VPS providers |
| **DLL-based** | Security warnings on MT5, platform-dependent, fragile |
| **Web server / API** | Requires hosting, latency, subscription costs |
| **File-based (this EA)** | Zero network config. OS handles sync. Works on any setup. Free. |

**The folder is the protocol.** Your OS (or Syncthing/Dropbox) already knows how to move files between computers reliably. This EA just reads and writes CSV — and lets the OS do the heavy lifting.

---

## How It Works

```
PC MASTER                              PC SLAVE
┌──────────────────────┐              ┌──────────────────────┐
│ MT5 + Master EA      │              │ MT5 + Slave EA       │
│                      │    write     │                      │
│ OnTimer() every N ms │──────────────│ OnTimer() every N ms │
│   -> write state.csv │   Syncthing  │   -> read state.csv  │
│   -> atomic .tmp     │    /Cloud    │   -> reconcile trades│
│                      │──────────────│                      │
└──────────────────────┘              └──────────────────────┘
           │                                    │
           └──────── SyncFolder ────────────────┘
              (Common\Files\CopyTrade\)
```

1. **Master EA** writes current positions to `state.csv` (via `.tmp` atomic write) every `InpRefreshMs` milliseconds.
2. **Folder sync** (Syncthing, Dropbox, etc.) copies the file to the Slave PC.
3. **Slave EA** reads `state.csv`, matches positions by unique ID, opens/modifies/closes trades to mirror the Master.

---

## Parameters Overview

### Mode Selection
| Parameter | Options | Description |
|---|---|---|
| `InpMode` | Master / Slave | Select the EA role |

### Shared Settings
| Parameter | Default | Description |
|---|---|---|
| `InpSyncFolder` | `CopyTrade` | Folder path. Default = `Common\Files\CopyTrade\`. Point to Syncthing/Dropbox for cross-PC. |
| `InpChannel` | `default` | Channel name. Master and Slave must match. |
| `InpRefreshMs` | `100` | Refresh interval in milliseconds |

### Master Settings
| Parameter | Default | Description |
|---|---|---|
| `InpMaxCopyStaleSec` | `60` | Max snapshot age accepted by Slave. 0 = Slave uses own setting. |
| `InpMagicFilter` | `0` | Filter by magic number. 0 = copy all. |
| `InpIncludeManual` | `true` | Include manual trades (magic=0). |
| `InpMasterVerbose` | `false` | Extra logging for debugging. |

### Slave Settings
| Parameter | Default | Description |
|---|---|---|
| `InpUILanguage` | `English` | Log language: English or Bahasa Indonesia |
| `InpSlaveMagic` | `991001` | Magic number for Slave positions |
| `InpMaxStaleSec` | `60` | Fallback stale limit if Master doesn't send one |
| `InpVolumeMode` | `VOL_RATIO` | Volume mode: ratio or fixed lot |
| `InpRatio` | `1.0` | Volume multiplier (for ratio mode) |
| `InpFixedLot` | `0.01` | Fixed lot size (for fixed mode) |
| `InpReverse` | `false` | Reverse direction (Buy↔Sell) |
| `InpCopyClose` | `true` | Close Slave positions when Master closes |
| `InpCloseSlaveOnMasterShutdown` | `false` | Close all when Master goes offline |
| `InpCopySL` | `true` | Copy Stop Loss from Master |
| `InpCopyTP` | `true` | Copy Take Profit from Master |
| `InpUseSuffix` | `false` | Enable symbol suffix |
| `InpSuffix` | *(empty)* | Suffix string (e.g. `.r`, `m`) |
| `InpSlippagePts` | `20` | Maximum slippage in points |
| `InpMaxSpreadPts` | `0` | Max spread (0 = disabled) |
| `InpSymbolFilter` | *(empty)* | Filter symbols (comma-separated) |
| `InpNoReopenAfterManualClose` | `true` | Remember manually closed positions |
| `InpCopyOpenValidSec` | `20` | Max position age to copy (0 = off) |
| `InpSlaveVerbose` | `false` | Extra logging for debugging |

---

## Quick Start

### Same PC
1. Attach EA to Terminal A chart → Mode = **Master**`InpChannel = "default"` → OK
2. Attach EA to Terminal B chart → Mode = **Slave**`InpChannel = "default"` → OK
3. Done. Instant copy.

### Different PCs (via Syncthing)
1. Install [Syncthing](https://syncthing.net) on both PCs.
2. Share `Common\Files\CopyTrade\` folder between them.
3. Both EAs: `InpSyncFolder = "CopyTrade"` (default).
4. Done. ~1-2 sec delay on LAN.

---

## Requirements
- MetaTrader 5 (any build supporting `#include <Trade\Trade.mqh>`)
- Both Master and Slave must have the same symbols available
- For cross-PC: any folder sync tool (Syncthing recommended — free, P2P, no account needed)
- Algo Trading must be enabled on all terminals

---

## What You Get
- `GMRFX_Copytrade_Local&Lan.ex5` — the EA
- Comprehensive user manual (PDF)
- 30 parameters with sensible defaults
- Works out of the box with zero configuration for same-PC setups

---

© 2026 GMR FX — [gmrfx.app](https://gmrfx.app)  
*Free product. No restrictions, no subscriptions, no hidden calls.*


Prodotti consigliati
Trade Copier Professional — Soluzione di Copia Locale   Trade Copier Professional è un sistema affidabile di copia locale delle operazioni per MetaTrader 4/5. Consente ai trader di replicare istantaneamente posizioni su più conti nello stesso computer, con controlli di sicurezza integrati e un pannello professionale.   Panoramica   L’EA funziona sia in modalità Master che Slave da un unico file, con passaggio fluido tra le due. Le operazioni possono essere copiate tra terminali MT4 e MT5 senza
ID Trade_Bot BS - an effective tool for automated trading using RSI Trade_Bot BS is an efficient solution for automated trading based on RSI, allowing flexible parameter customization and risk management. Thanks to the ability to choose a trading mode, dynamic Stop-Loss and Take-Profit levels, and trading mode adjustment (buying, selling, or both), it is suitable for various trading strategies. Key Features: Uses the RSI indicator to determine market conditions. Automatically opens an
Universal Counter-Trend Grid EA — Smart Grid Trading, Redefined. For MT4 version :  https://www. mql5.com/en/market/product/143356 Tired of EAs that only work in one market condition? Universal Counter-Trend Grid EA is engineered to capitalize on the market's most rewarding moments — when price stretches too far and is ready to snap back to equilibrium. With intelligent grid technology and a multi-layer confirmation system , this EA captures opportunities that manual traders often miss.
SolarTrade Suite Financial Robot: LaunchPad Market Expert - progettato per aprire le negoziazioni! Questo è un robot di trading che utilizza speciali algoritmi innovativi e avanzati per calcolare i suoi valori, il tuo assistente nel mondo dei mercati finanziari. Utilizza il nostro set di indicatori della serie SolarTrade Suite per scegliere meglio il momento in cui lanciare questo robot. Dai un'occhiata agli altri nostri prodotti della serie SolarTrade Suite in fondo alla descrizione. Vuoi n
QuickCopy – Simple MT5 Local Trade Copier with Volume Factor QuickCopy is a lightweight and efficient MT5 local trade copier designed for traders who want to copy trades between accounts on the same computer quickly and reliably. With its simple setup and intuitive interface, QuickCopy makes managing multiple accounts easier than ever. Key Features: Local Account Copying: Instantly copies trades from your master account to one or more client accounts running on the same computer. Volume Factor A
Bober Real MT5
Arnold Bobrinskii
4.88 (16)
Bober Real MT5 is a fully automatic Forex trading Expert Advisor. This robot was made in 2014 year and did a lot of profitbale trades during this period. So far over 7000% growth on my personal account. There was many updates but 2019 update is the best one. The robot can run on any instrument, but the results are better with EURGBP, GBPUSD, on the M5 timeframe. Robot doesn't show good results in tester or live account if you run incorrect sets. Set files for Live accounts availible only for cu
PROMO: ONLY 10 LEFT AT $90! Next price:        $199 Price will be kept high to limit number of users for this strategy. This EA starts trading at the open of   London (UK) Session . It is based on analysis of advanced statistical distributions combined with short to medium term reversal patterns which have mean-reversion attributes. The EA includes several smart features and allows you to trade with a fixed or automatic lot size. The EA is not sensitive to spreads but can be backtested on both
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT5 version, click  here  for  Blue CARA MT4  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic   R esponsive   A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhaps the most popul
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.94 (34)
Copiatore professionale di trade per MetaTrader 5 Un copiatore di trade veloce, professionale e affidabile per MetaTrader . COPYLOT consente di copiare operazioni Forex tra terminali MT4 e MT5 con supporto per conti Hedge e Netting . La versione MT5 di COPYLOT supporta: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting Versione MT4 Descrizione completa + DEMO + PDF Come acquistare Come installare Come ot
Magic Grid MT5
Aliaksandr Charkes
4.14 (7)
Magic Grid MT5 is a non-indicator Expert Advisor using a grid strategy (on a hedging account). The strategy is based on automatic reopening of grid pending orders, after closing their market positions (by Take-Profit, Stop-Loss or manually). Pending orders are placed with a specified step from the initial prices, which can be entered manually or generated automatically (once at the beginning of the trade).   The robot can trade on any timeframe, on any currency pair, on several currency pairs,
Aurum Intraday EA
Rodrigo Leonardo Favreau Giuliodoro
Aurum Intraday EA – Advanced Gold Trading Algorithm The Aurum Intraday EA is a powerful automated trading system designed specifically for Gold (XAUUSD) traders who want to capture strong intraday movements while maintaining full control over risk and strategy configuration. Built with a robust algorithm and optimized for H1 and H4 timeframes (H4 recommended) , this Expert Advisor is capable of identifying high-probability opportunities in the gold market and executing trades with precision and
US500 Scalper
Sergey Batudayev
L'S&P 500 Scalper Advisor è uno strumento innovativo progettato per i trader che desiderano operare con successo sull'indice S&P 500. L'indice è uno degli indicatori più utilizzati e prestigiosi del mercato azionario americano, che comprende le 500 maggiori società degli Stati Uniti. Peculiarità: Soluzioni di trading automatizzate:       Il consulente si basa su algoritmi avanzati e analisi tecniche per adattare automaticamente la strategia alle mutevoli condizioni di mercato. Approccio versati
Baby Gold Pro V2
Gregory, Miche Denizot
Introduction Ce bot de trading automatisé développé pour MetaTrader 5 (MT5) est spécialisé sur le GOLD (XAUUSD) , l’un des actifs les plus dynamiques du marché. Il repose sur une stratégie de suivi de tendance permettant de capter les mouvements puissants et durables. Objectif du Bot Exploiter les tendances du GOLD Maximiser les profits sur mouvements directionnels Supprimer l’émotion du trading ️ Fonctionnement de la Stratégie Détection de tendance Le bot analyse : La direction du mar
Fire Byss
Sovannarak Chhoam
Fire Byss - Advanced Grid Trading System Fire Byss is a grid-based Expert Advisor developed for XAUUSD (Gold). It combines Bollinger Bands with EMA trend filtering to reduce risk during strong market trends. ======================================== KEY FEATURES - Three trading modes: Counter Trend, Breakout, Follow Trend - EMA trend filter to avoid trading against strong moves - Adaptive ATR-based grid spacing - Maximum consecutive losses limited to 5-6 trades - No unlimited martingale - gr
SmartRisk MA Pro
Oleg Polyanchuk
SmartRisk MA Pro Strategy Overview: SmartRisk MA Pro is an optimized, risk-oriented automated trading strategy (Expert Advisor) developed for the MetaTrader 5 platform. It is designed to identify trading opportunities based on price deviations from moving averages and incorporates a comprehensive capital management system. The Expert Advisor operates on a "new bar" logic, ensuring stability and predictability in trade signal execution. Operating Principles and Trading Logic: At its core, the st
Expert Smart Trend
Ruslan Pishun
3 (6)
The trading system operates on seven pairs and one timeframe. The Expert Advisor uses trading systems for trend-based entries with the help of the Envelopes and CCI indicators. Each indicator uses up to five periods for calculating the trends. The EA uses economic news to calculate the prolonged price movements. The EA has the built-in smart adaptive profit taking filter. The robot has been optimized for each currency and timeframe simultaneously. Attention! This EA is only for "hedging" account
Renko Logic
Ahmed Mohammed Bakr Bakr
MetaTrader 5 Renko Expert Advisor - User Guide Overview This Expert Advisor implements a complete Renko-based trading system with custom brick calculation, visual display, and automated trading logic. -The EA only for Rent unlimited Version coming soon. Features 1. Renko Engine Custom Renko Calculation : Built from scratch, no offline charts needed No Repainting : Uses only closed Renko bricks Configurable Brick Size : Set in points via input parameters Real-time Brick Formation : Automatically
CopyMaster mt5
Evgenii Aksenov
5 (3)
Questa utility ti consentirà di copiare qualsiasi operazione da un terminale con l'impostazione Master ad altri terminali con l'impostazione Slave Allo stesso tempo, puoi scegliere quali coppie copiare, impostare la dimensione dell'ordine copiato in base a diversi parametri. Impostare le perdite limite di prelievo o copiare solo operazioni redditizie È possibile copiare offerte da MT4 o MT5 a MT4 o MT5 altri broker Ora non sarà difficile copiare i segnali di qualsiasi consulente esperto che
Neopips Engine EA
Md Billal Hossain
NeoPips Engine EA: la rivoluzione definitiva del trading è arrivata! "Il vero potere del trading sta nel vedere ciò che gli altri non vedono. NeoPips Engine non segue il mercato, lo domina." Informazioni su NeoPips Engine EA: il tuo alleato di trading intelligente NeoPips Engine EA non è un robot di trading qualunque. È un consulente esperto multidimensionale, ottimizzato per l'intelligenza artificiale, creato per i trader che richiedono precisione, adattabilità e prestazioni a lungo t
Fox Wave Pro Copier - Professional Multi-Master Trade Copier Copy trades from multiple Master accounts simultaneously with advanced risk management Key Features Multi-Master Architecture Copy from unlimited master accounts simultaneously Automatic master account detection or manual configuration Real-time trade synchronization via file system Independent risk management for each master Advanced Risk Management Individual risk settings per master account Automatic lot size calculation based
Gold EA: Proven Power for 1-Minute Gold Trading Transform your trading with our Gold EA, meticulously crafted for 1-minute charts and delivering over 2000% growth in 5 years from just $100-$1000 . No Martingale, No AI Gimmicks : Pure, time-tested strategies with robust money management, stop loss, and take profit for reliable performance across multiple charts. Flexible Trading Modes : Choose Fixed Balance for safe profits, Mark IV for bold growth, or %Balance for high rewards—combine Mark IV an
HedgeSafe Trade Assistant is a risk-first MT5 trade panel for manual traders. It helps you prepare a trade before clicking Buy or Sell , validate the setup against broker and symbol constraints, and manage the position after entry. This product does not predict direction and does not promise profitability. Its job is to make manual trade execution more structured, safer, and easier to understand. What the panel helps you do Define Entry , Stop , and Target directly on the chart Calculate lot siz
TradePilotmt5
Hossein Khalil Alishir
TradePilot Expert Advisor (EA) for MetaTrader 5 TradePilot is a professional and user-friendly Expert Advisor (EA) for MetaTrader 5 (MT5) . It simplifies automated trading , risk management , and trade execution with a smart trading panel . Perfect for beginners and experienced traders looking for a reliable trade manager EA with automated lot size calculation and smart position management. Key Advantages User-Friendly Trading Panel: Customizable panel with buttons and hotkeys for fast ex
Viking Alpha DAX Ivar Edition
Valdeci Carlos Dos Passos Albuquerque
Viking Alpha DAX — Germany 40 Expert Advisor for MetaTrader 5 LAUNCH PROMO Only 10 copies at launch price. Price increases with each sale. Launch price: $297 Next price: $497 Final price: $997 Live Performance: FX Blue — Vikingtradingbots What Makes Viking Alpha DAX Different Most DAX robots fail for one simple reason: they treat the Germany 40 like a forex pair. It isn't. The DAX has a heartbeat — a specific rhythm tied to the Frankfurt Stock Exchange opening, the European session structure, an
Exclusive EA for FOREX HEDGE account The EA (FuzzyLogicTrendEA) is based on fuzzy logic strategies based on the analysis of a set of 5 indicators and filters. Each indicator and filter has a weight in the calculation and, when the fuzzy logic result reaches the value defined in the EA parameter, a negotiation is opened seeking a pre-defined gain. As additional functions it is possible to define maximum spread, stop loss and so on . Recommended Symbol: EURUSD, AUDUSD, GBPUSD, NZDUSD, USDCAD, AUD
Net Z
Sugianto
5 (1)
NET Z uses a very well-known trend reversal technique to determine position entry with slight modifications by using virtual trade techniques and virtual pending orders so that position entry is not too early or too late. Why NETZ? NET Z does not require complicated settings and is easy to use because user only need to upload a set file that is already available. Currently there are set files for 20 fx pairs. The best GRID EA with the ability to control risks. I will share my personal daily ro
Santa Scalping is a fully automated Expert Advisor with no use of martingale. Night scalping strategy. The SMA indicator filter are used for entries. This EA can be run from very small accounts. As small as 50 EUR. General Recommendations The minimum deposit is 50 USD,  default settings reccomend for eurusd m5 gmt +2 . Please use max spread 10 if you will not have orders change it to -1. Use a broker with good execution and with a spread of 2-5 points. A very fast VPS is required, preferably wi
Heikin Ashi AHA moment
Saiful Izham Bin Hassan
Heikin Ashi AHA Moment è un sistema di trading algoritmico professionale multi-valuta progettato per il trend following di livello istituzionale. Sfrutta la potenza di un algoritmo proprietario Heikin Ashi Smussato per filtrare completamente il rumore del mercato, permettendoti di individuare e seguire in sicurezza grandi trend. Progettato per una resilienza assoluta, questo EA dispone di un motore di esecuzione incredibilmente robusto che gestisce senza sforzo picchi di spread, requote e cond
NeuroGold SMC Adaptive
Dmitriq Evgenoeviz Ko
NeuroGold SMC Adaptive is a high-tech trading expert advisor for MetaTrader 5, specifically designed for gold ( XAUUSD ). The robot is based on a multi-layer neural network architecture that combines classic technical analysis, Smart Money (SMC) concepts, and adaptive volatility filtering algorithms. In 2026, the gold market is characterized by increased volatility and frequent false breakouts. This expert addresses this issue through ensemble analysis, where entry decisions are made only when
Majd Qatuni exp
Majd Ahmad Mahmoud Qatuni
MAJD QATUNI Trend Reversal EA v1.27 A fully automated Expert Advisor tested specifically on Gold (XAUUSD) , designed to capture potential market reversals after strong momentum periods. It uses a consecutive candlestick pattern , enhanced by multi-indicator filters and advanced risk management for precise entries and profit protection. Current price is for demo use only. Key Features: Momentum-Based Reversal Strategy: Detects N consecutive bullish/bearish candles, then waits for a correction
Gli utenti di questo prodotto hanno anche acquistato
Trade Assistant MT5
Evgeniy Kravchenko
4.43 (213)
It helps to calculate the risk per trade, the easy installation of a new order, order management with partial closing functions, trailing stop of 7 types and other useful functions. Additional materials and instructions Installation instructions - Application instructions - Trial version of the application for a demo account Line function -   shows on the chart the Opening line, Stop Loss, Take Profit. With this function it is easy to set a new order and see its additional characteristics bef
Forex Trade Manager MT5
InvestSoft
4.98 (664)
Benvenuto a Trade Manager EA, lo strumento definitivo per la gestione del rischio , progettato per rendere il trading più intuitivo, preciso ed efficiente. Non è solo uno strumento per l'esecuzione degli ordini, ma una soluzione completa per la pianificazione delle operazioni, la gestione delle posizioni e il controllo del rischio. Che tu sia un principiante, un trader avanzato o uno scalper che necessita di esecuzioni rapide, Trade Manager EA si adatta alle tue esigenze, offrendo flessibilità s
TradePanel MT5
Alfiya Fazylova
4.87 (159)
Trade Panel è un assistente commerciale multifunzionale. L'applicazione contiene più di 50 funzioni di trading per il trading manuale e permette di automatizzare la maggior parte delle attività commerciali. Prima dell'acquisto, è possibile testare la versione dimostrativa su un conto demo. Scaricare la versione di prova dell'applicazione per un account dimostrativo: https://www.mql5.com/it/blogs/post/762419 . Istruzioni complete qui . Commercio. Consente di effettuare operazioni di trading con u
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.96 (141)
Sperimenta una copia di trading eccezionalmente veloce con il   Local Trade Copier EA MT5 . Con la sua facile configurazione in 1 minuto, questo copiatore di trading ti consente di copiare i trades tra diversi terminali di MetaTrader sullo stesso computer Windows o su Windows VPS con velocità di copia ultra veloci inferiori a 0.5 secondi. Che tu sia un trader principiante o professionista,   Local Trade Copier EA MT5   offre una vasta gamma di opzioni per personalizzarlo alle tue esigenze speci
Versione Beta Telegram to MT5 Signal Trader è quasi pronto per il rilascio ufficiale in versione alpha. Alcune funzionalità sono ancora in fase di sviluppo e potresti riscontrare piccoli bug. Se riscontri problemi, ti preghiamo di segnalarli, il tuo feedback aiuta a migliorare il software per tutti. Telegram to MT5 Signal Trader è uno strumento potente che copia automaticamente segnali di trading da canali o gruppi Telegram al tuo account MetaTrader 5 . Supporta canali pubblici e privati e cons
Quant AI Agents
Ho Tuan Thang
5 (1)
Quant AI Agents are independent trading Expert Advisors. Instead of trading using a fixed strategy like other conventional EAs, Quant AI Agents   is a   multi-agent AI trading framework   that turns natural-language strategy prompts into live.  WANT THE SAME RESULTS AS MY LIVE SIGNAL?   Use the exact same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating un
Power Candles Strategy Scanner - Strumento di ricerca configurazioni multi-simbolo con ottimizzazione automatica Power Candles Strategy Scanner utilizza lo stesso motore di auto-ottimizzazione che alimenta l'indicatore Power Candles, applicandolo a tutti i simboli presenti nel tuo Market Watch, uno accanto all'altro. Un unico pannello ti indica quali simboli sono statisticamente negoziabili in questo momento, quale strategia è vincente su ciascuno di essi, la coppia ottimale di Stop Loss / Take
Premium Trade Manager - Il pannello di trading con un coach integrato Premium Trade Manager porta un coach di trading direttamente nel tuo grafico, con un motore di esecuzione completo al di sotto. Imposta il trade come fai sempre, poi lascia che Max, il tuo coach di trading IA, legga esattamente quel setup rispetto al tuo conto live e ti dia un verdetto chiaro prima che tu confermi: lo stop rispetta un approccio disciplinato, il rischio è ragionevole, c'è un evento ad alto impatto tra pochi min
Trade Dashboard MT5
Fatemeh Ameri
4.95 (129)
Trade Dashboard simplifies how you open, manage, and control your trades, with built-in lot size calculation. It allows you to execute trades, manage risk, and control positions directly on the chart, with tools such as partial close, breakeven, and trailing stop. Designed to reduce manual work and help you stay focused on your trading decisions. A demo version is available for testing. Detailed explanations of features are provided within the MQL5 platform. Installation instructions are include
FarmedHedge Pair Trading Dashboard
Tanapisit Tepawarapruek
5 (3)
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) MULTI-ASSET SUPPORT Trade any asset available on your broker - Forex: Major, Minor, Exotic pairs - Crypto: BTC, ETH, XRP, SOL, BNB - Stocks: Apple, Tesla, Amazon, Google, etc. - Commodities: Gold, Silver, Oil, Gas - Indices: US30, NAS100, SPX500, DAX40 - Any CFD your broker offers VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https:/
Seconds Chart MT5
Boris Sedov
4.61 (18)
Seconds Chart - uno strumento unico per creare grafici in secondi su MetaTrader 5 . Con Seconds Chart , puoi generare grafici con timeframe definiti in secondi, ottenendo una flessibilità e una precisione d'analisi ideali, non disponibili nei grafici standard in minuti o ore. Ad esempio, il timeframe S15 indica un grafico con candele di 15 secondi. Puoi utilizzare qualsiasi indicatore e Expert Advisor con supporto per simboli personalizzati. Lavorare con loro è comodo quanto operare sui grafici
Grid Manual MT5
Alfiya Fazylova
4.9 (21)
Grid Manual è un pannello di trading per lavorare con una griglia di ordini. L'utilità è universale, ha impostazioni flessibili e un'interfaccia intuitiva. Funziona con una griglia di ordini non solo nella direzione delle perdite, ma anche nella direzione dell'aumento dei profitti. Il trader non ha bisogno di creare e mantenere una griglia di ordini, lo farà l'utilità. È sufficiente aprire un ordine e il manuale di Grid creerà automaticamente una griglia di ordini per esso e lo accompagnerà fino
AI Agents Supervisor
Ho Tuan Thang
5 (1)
AI Agent Supervisor is NOT an Expert Advisor. AI Agent Supervisor   is a   multi-agent AI risk & portfolio supervisor   that watches every EA on your account and intervenes in real time.  WANT AN AI PORTFOLIO MANAGER WATCHING YOUR FLEET 24/7?   Run your fleet on the same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating unique data streams. The Supervisor r
Telegram to MT5 Multi-Channel Copier copia automaticamente i segnali di trading dai tuoi canali Telegram direttamente in MetaTrader 5. Niente bot, niente estensioni del browser, niente copia manuale. Ricevi un segnale su Telegram e l'EA apre l'operazione sul tuo terminale in pochi secondi. Il prodotto include due componenti: un'applicazione Windows che ascolta i tuoi canali Telegram, e questo Expert Advisor che esegue i segnali sul tuo terminale MT5. È disponibile anche la versione MT4. Guida di
================================================================================ POC BREAKOUT - V20.72. Full Professional Grade Toolkit ================================================================================ POC Breakout is a full MetaTrader 5 trading dashboard for discretionary traders who want breakout signals, Point of Control (POC) context, volume profiles, order flow, market structure, news, alerts, and advanced trade planning in one professional workspace. Attached directly to you
# If you have any other requirements or are interested in collaboration, please contact  dev.quantech.london@gmail.com . Flash Trade (FT) Most friendly manual trading tool. Easy operation to secure your funds. Features of FT Click the chart to trade fast FT supports market orders and pending orders Click twice to complete the order and set SL and TP Click trice to complete the pending order and set SL and TP Automatically set the stop-loss amount of each order to a fixed percentage of the bala
FUTURES ORDERFLOW FOOTPRINT CHART Professional OrderFlow EA for MetaTrader 5 Version 1.01| Professional tool for real traders | Institutional-Grade Visualization STRATEGY TESTER USERS - PLEASE SELECT EVERY REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROL
Timeless Charts
Samuel Manoel De Souza
5 (7)
Timeless Charts è un'utilità di trading completa progettata per trader professionisti. Combina tipi di grafici personalizzati come Grafici a Secondi e Renko con analisi avanzata del flusso ordini tramite Footprints , Clusters , Profili di Volume , studi VWAP e strumenti di analisi ancorata per una visione più approfondita del mercato. Il trading e la gestione delle posizioni vengono eseguiti direttamente dal grafico tramite un pannello integrato di gestione delle operazioni , mentre Market Repla
Trade Manager DaneTrades
Levi Dane Benjamin
4.28 (29)
Trade Manager per aiutarti a entrare e uscire rapidamente dalle operazioni calcolando automaticamente il tuo rischio. Incluse funzionalità che ti aiutano a prevenire l'eccessivo trading, il vendetta trading e il trading emotivo. Le operazioni possono essere gestite automaticamente e i parametri di performance del conto possono essere visualizzati in un grafico. Queste caratteristiche rendono questo pannello ideale per tutti i trader manuali e aiuta a migliorare la piattaforma MetaTrader 5. Suppo
Double X Trade
Gayathiri Gopalakrishnan
5 (2)
DOUBLE X TRADE  SIGNAL MULTIPLIER DOUBLE X TRADE is a MetaTrader 5 Expert Advisor designed to operate alongside existing Expert Advisors and provide additional trade-management functionality. The EA can monitor trading activity on the account and perform actions according to user-defined settings, risk parameters, and operating mode configuration. DOUBLE X TRADE is intended for traders who want an additional management layer while continuing to use their existing Expert Advisors. The product doe
Footprint Chart Pro — Professional OrderFlow EA for MetaTrader 5 Version 6.34 | Professional tool for real traders | Institutional-Grade Visualization DEMO USERS - PLEASE SELECT EVERY TICK / REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROLLED OVER PERIOD.
The product will copy all telegram signal to MT5 ( which you are member) , also it can work as remote copier.  Easy to set up, copy order instant, can work with almost signal formats, image signal,  s upport to translate other language to English Work with all type of channel or group, even channel have "Restrict Saving Content", work with  multi channel, multi MT5 Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. Support to backtest signal. How to s
HINN MagicEntry Extra
ALGOFLOW OÜ
4.73 (15)
HINN MAGIC ENTRY – the ultimate tool for entry and position management! Place orders by selecting a level directly on the chart! full description   ::  demo-version  :: 60-sec-video-description Key features: - Market, limit, and pending orders - Automatic lot size calculation - Automatic spread and commission accounting - Unlimited partitial take-profits  - Breakeven and trailing stop-loss and take-profit  functions - Invalidation leves - Intuitive, adaptive, and customizable interface - Works
MT5 to Telegram Signal Provider è un'utilità facile da usare e completamente personalizzabile che consente l'invio di segnali specificati a una chat, canale o gruppo Telegram, rendendo il tuo account un fornitore di segnali. A differenza della maggior parte dei prodotti concorrenti, non utilizza importazioni DLL. [ Dimostrativo ] [ Manuale ] [ Versione MT4 ] [ Versione Discord ] [ Canale Telegram ]  New: [ Telegram To MT5 ] Configurazione Una guida utente passo-passo è disponibile. Nessuna cono
EA Auditor
Stephen J Martret
5 (3)
EA Auditor is an independent analysis tool for traders evaluating Expert Advisors and trading signals on MetaTrader 5. It audits backtest reports, reviews posted developer signals, and cross-verifies the two against each other to help traders assess strategies before committing capital. The MQL5 market offers a wide range of Expert Advisors from many developers, with varying approaches, quality, and transparency. EA Auditor provides a consistent, data-driven framework for reviewing them, answer
Scarica la demo funzionante Copy Cat More (Gatto Copione) — Copiatore di Trade (Trade Copier) MT5 è un copiatore locale di trade e un framework completo di gestione del rischio e di esecuzione, progettato per le sfide di trading di oggi. Dalle challenge delle prop firm alla gestione di portafogli personali, si adatta a ogni situazione con una combinazione di esecuzione robusta, protezione del capitale, configurazione flessibile e gestione avanzata dei trade. Il copiatore funziona in entrambe l
Anchor Trade Manager
Kalinskie Gilliam
5 (3)
Anchor: The EA Manager Run your full EA portfolio without conflicts, without stacked risk, and without watching every chart yourself. Anchor coordinates up to 64 Expert Advisors on a single account. Attach Anchor to any chart. Type your EA names and magic numbers in one line. Click OK. Anchor begins coordinating immediately. Built for portfolios. Built for discipline. Built for prop firms. The Problem Running multiple EAs on the same account creates risk. Two gold EAs can open opposite positions
Signal Trading View to MT5 Pro
Mirel Daniel Gheonu
4 (1)
Signal TradingView to MT5 Pro Automator Esecuzione professionale istantanea tra TradingView e MetaTrader 5 Automatizza la tua strategia di trading con il ponte di comunicazione più robusto tra gli alert di TradingView e l'esecuzione reale in MT5. Progettato per i trader che richiedono velocità, flessibilità e una gestione del rischio impeccabile, questo Expert Advisor trasforma qualsiasi messaggio di avviso in un preciso ordine a mercato o limite. PUNTI DI FORZA E VANTAGGI Motore di Parsing Univ
The News Filter MT5
Leolouiski Gan
4.78 (23)
Questo prodotto filtra tutti gli esperti consulenti e i grafici manuali durante il periodo delle notizie, così non dovrai preoccuparti di improvvisi picchi di prezzo che potrebbero distruggere le tue impostazioni di trading manuali o le negoziazioni effettuate da altri esperti consulenti. Questo prodotto viene fornito anche con un sistema completo di gestione degli ordini che può gestire le tue posizioni aperte e gli ordini in sospeso prima della pubblicazione di qualsiasi notizia. Una volta che
Entry In The Zone with SMC Multi Timeframe is a real-time 2-in-1 market analysis tool that combines market structure analysis and a No Repaint BUY / SELL signal system into a single indicator, built on Smart Money Concepts (SMC) — a widely adopted framework used by professional traders to understand market structure. This indicator helps you see the market more clearly, make decisions based on structure rather than guesswork, and focus on high-probability zones where price is more likely to reac
Altri dall’autore
Snipper ZZ
Rudianto Spdi Mhi
Sniper ZZ — Precision Entry. Clean Signals. Sniper ZZ is a lightweight MetaTrader 5 indicator that automatically draws Fibonacci retracement levels 0.382 and 0.618 from confirmed ZigZag swings. No more manual Fibonacci drawing — every time a new swing is confirmed, Sniper ZZ instantly calculates and displays the exact 0.382 and 0.618 retracement levels with price labels. WHAT MAKES SNIPER ZZ DIFFERENT? Most Fibonacci indicators alert you on EVERY touch — flooding you with false signals. Snip
FREE
What is Gmrfx ZZ Multi Tool? ZigZag Multi Tool GMRFX is a professional all-in-one technical indicator for MetaTrader 5 that packs 23 analytical tools into a single lightweight file. Instead of cluttering your chart with 5–10 separate indicators that slow down MT5, you get everything in one place — ZigZag swing detection, Supply/Demand zones, Fibonacci retracement, pattern recognition, divergence detection, Telegram publishing, and live position P/L visualization. Every feature is individually to
Filtro:
Nessuna recensione
Rispondi alla recensione