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.*


Recommended products
Trade Copier Professional — Local Copy Solution Trade Copier Professional is a reliable local trade copying system for MetaTrader 4/5. It allows traders to replicate positions instantly across multiple accounts on the same computer, with built‑in safety controls and a professional dashboard. Overview The EA operates in both Master and Slave modes from a single file, with seamless switching. Trades can be copied between MT4 and MT5 terminals without internet dependency, using local file‑based
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 v2.5 MT5 — Multi-Currency Automated Execution System For MT4 Version:  https://www.mql5.com/en/market/product/143356 Universal Counter-Trend Grid EA is an automated trading utility developed for the MetaTrader 5 platform designed to capitalize on mean-reversion price behavior during extended market conditions. The system integrates an adaptive grid calculation engine with a multi-layered signal confirmation matrix to execute positions at calculated price extreme
SolarTrade Suite Financial Robot: LaunchPad Market Expert - designed to open trades! This is a trading robot that uses special innovative and advanced algorithms to calculate its values, Your Assistant in the World of Financial Markets. Use our set of indicators from the SolarTrade Suite series to better choose the moment to launch this robot. Check out our other products from the SolarTrade Suite series at the bottom of the description. Do you want to confidently navigate the world of inves
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
CopyIQ
Stephen Sanjeeve Sahayam
CopyIQ mirrors your trades between MetaTrader 5 terminals running on the same Windows PC - one source account feeding as many receiver accounts as you need. Everything happens locally on the one machine: no VPS, no DLLs, and no internet link between terminals to lag or break. A trade on your source account reaches every receiver in milliseconds. CopyIQ was built by studying where other local copiers let traders down - copies that arrive late, lot sizes that ignore the receiving account, symbols
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)
Professional Trade Copier for MetaTrader 5 Fast, professional, and reliable trade copier for MetaTrader . COPYLOT allows you to copy Forex trades between MT4 and MT5 terminals with support for Hedge and Netting accounts. COPYLOT MT5 version supports: - MT5 Hedge to MT5 Hedge - MT5 Hedge to MT5 Netting - MT5 Netting to MT5 Hedge - MT5 Netting to MT5 Netting - MT4 to MT5 Hedge - MT4 to MT5 Netting MT4 version Full Description +DEMO +PDF How To Buy How To Install How to get Log Files H
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
Heikin Ashi AHA moment
Saiful Izham Bin Hassan
Heikin Ashi AHA Moment   is a professional, multi-currency algorithmic trading system engineered for institutional-level trend following. It harnesses the power of a proprietary Smoothed Heikin Ashi algorithm to completely filter out market noise, allowing you to catch and ride massive trends safely. Designed for absolute resilience, this EA features an incredibly robust execution engine that effortlessly handles spread spikes, requotes, and high-volatility broker conditions. It is built to surv
King Trade Copier
Mohammed Maher Al-sayed Mohammed Ahmed Saleh
KingCopier – Lightning-Fast Local Trade Copier for MetaTrader (Master + Slave) KingCopier is a professional local trade copier that mirrors every trading action from one Master account to unlimited Slave accounts on the same PC or VPS — with an internal copy latency of just a few milliseconds. It was built by a real trader for daily real-money use, with one goal: whatever happens on the Master must happen on the Slave, instantly and without exceptions. Watch the demo video to see the real cop
US500 Scalper
Sergey Batudayev
The S&P 500 Scalper Advisor is an innovative tool designed for traders who want to successfully trade the S&P 500 Index. The index is one of the most widely used and prestigious indicators of the American stock market, comprising the 500 largest companies in the United States. Peculiarities: Automated trading solutions:   The advisor is based on advanced algorithms and technical analysis to automatically adapt the strategy to changing market conditions. Versatile approach:   The advisor combine
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)
This utility will allow you to copy any trades from one terminal with the Master setting to other terminals with the Slave setting At the same time, you can choose which pairs to copy, set the size of the copied order by several parameters. Set the limit losses by DrawDown or copy only profitable trades You can copy deals from MT4 or MT5 to MT4 or MT5 other brokers Now it will not be difficult to copy the signals of any Expert Advisor working in MT4 to the MT5 terminal or back Use Copy Master to
Neopips Engine EA
Md Billal Hossain
NeoPips Engine EA – The Ultimate Trading Revolution Has Arrived! “The real power of trading lies in seeing what others miss. NeoPips Engine doesn’t follow the market — it masters it.” About NeoPips Engine EA: Your Intelligent Trading Ally NeoPips Engine EA is not your average trading robot. It’s a multi-dimensional, AI-optimized expert advisor crafted for traders who demand precision, adaptability, and long-term performance. Unlike outdated bots with rigid rules, NeoPips Engine is a livin
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, AU
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
Buyers of this product also purchase
Trade Assistant MT5
Evgeniy Kravchenko
4.43 (214)
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 (667)
Trade Manager MT5 is an advanced position size calculator and trade management tool for MetaTrader 5, designed to help traders plan trades faster, control risk more precisely, and manage open positions directly from the chart. It combines order placement, risk based lot calculation, Stop Loss and Take Profit management, Break Even, Trailing Stop, Partial Close, Equity Protection, and external trade management in one panel. Whether you trade forex, indices, metals, commodities, crypto, or future
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.96 (142)
Experience exceptionally fast trade copying with the   Local Trade Copier EA MT5 . With its easy 1-minute setup, this trade copier allows you to copy trades between multiple MetaTrader terminals on the same Windows computer or Windows VPS with lightning-fast copying speeds of under 0.5 seconds. Whether you're a beginner or a professional trader, the   Local Trade Copier EA MT5   offers a wide range of options to customize it to your specific needs. It's the ultimate solution for anyone looking t
Beta Release The Telegram to MT5 Signal Trader is nearly at the official alpha release. Some features are still under development and you may encounter minor bugs. If you experience issues, please report them, your feedback helps improve the software for everyone. Telegram to MT5 Signal Trader is a powerful tool that automatically copies trading signals from Telegram channels or groups directly to your MetaTrader 5 account. It supports both public and private Telegram channels, and you can conn
TradePanel MT5
Alfiya Fazylova
4.88 (160)
Trade Panel is a multi-functional trading assistant. The app contains over 50 trading functions for manual trading and allows you to automate most trading tasks. Before making a purchase, you can test the demo version on a demo account. Download the trial version of the application for a demonstration account: https://www.mql5.com/en/blogs/post/750865 . Full instructions here . Trade. Allows you to perform trading operations in one click: Open pending orders and positions with automatic risk cal
Power Candles Strategy Scanner - Self-Optimizing Multi-Symbol Setup Finder Power Candles Strategy Scanner runs the same self-optimizing engine that powers the Power Candles indicator - on every symbol in your Market Watch, side by side. One panel tells you which symbols are statistically tradable right now, which strategy wins on each, the optimal Stop Loss / Take Profit pair, and pings you the moment a fresh signal fires. This tool is part of the Stein Investments ecosystem - 18+ tools plus Max
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:/
Anchor Trade Manager
Kalinskie Gilliam
5 (4)
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, including daily loss protection built for prop firm rules. 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 prop firms. Built for discipline. The Problem Running multiple EAs on the same acc
Telegram to MT5 Multi-Channel Copier automatically copies trading signals from your Telegram channels directly into MetaTrader 5. No bots, no browser extensions, no manual copying. You receive a signal on Telegram and the EA opens the trade on your terminal in a few seconds. The product includes two components: a Windows application that listens to your Telegram channels, and this Expert Advisor that executes the signals on your MT5 terminal. An MT4 version is also available. Setup guide and app
HINN Lazy Trader
ALGOFLOW OÜ
5 (1)
LIMITED SUMMER SALE -40% ! ONLY $470 insead of $790!  Maximum real discount! The core idea: using the user interface, you configure the parameters the chart must meet before entering a position (or positions), choose which entry models to use, and set the rules for when trading and planning should end. Lazy Trader  handles the rest: it  takes over all the routine chart watching and execution! full description  :: 3 key videos [1] ->  [2]   ->  [3] What can it do? - Understands Larry Williams
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
EA Auditor
Stephen J Martret
5 (4)
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
Trade Dashboard MT5
Fatemeh Ameri
4.95 (131)
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
Trade Manager DaneTrades
Levi Dane Benjamin
4.28 (29)
DaneTrades Trade Manager is a professional trade panel for MetaTrader 5, designed for fast, accurate execution with built‑in risk control. Place market or pending orders directly from the chart while the panel automatically calculates position size from your chosen risk, helping you stay consistent and avoid emotional decision‑making. The Trade Manager is built for manual traders who want structure: clear risk/reward planning, automation for repeatable management, and safeguards that help reduc
EasyInsight AIO MT5
Alain Verleyen
4.92 (12)
EASY Insight AIO – All-In-One Power for AI-Driven Trading Want to skip the setup and start scanning the entire market – Forex, Gold, Crypto, Indices, and even Stocks – in seconds? EASY Insight AIO is the complete plug-and-play solution for AI-powered trade analysis. It includes all core Stein Investments indicators built-in and automatically exports clean, structured CSV files – perfect for backtesting, AI prompts, and live market decision-making. No need to install or configure indicators manu
Premium Trade Manager - The Trade Panel With a Coach Built In Premium Trade Manager puts a trading coach inside your chart, with a full execution engine underneath it. Set the trade up the way you always do, then let Max, your AI trading coach, read that exact setup against your live account and give you a straight verdict before you commit: is the stop disciplined, is the risk sane, is a high-impact release minutes away, are you near a prop-firm limit. Below sits the engine that runs everything
================================================================================ 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
Timeless Charts
Samuel Manoel De Souza
5 (7)
Timeless Charts is an all-in-one trading utility for professional traders. It combines custom chart types such as Seconds Charts and Renko with advanced order flow analysis using Footprints , Clusters , Volume Profiles , VWAP studies, and anchored analysis tools for deeper market insight. Trading and position management are handled directly from the chart through an integrated trade management panel , while Market Replay and Virtual Accounts provide environments for practicing trading skills and
Trading View ToMT5
Mirel Daniel Gheonu
The Ultimate TradingView to MT5 Bridge Automation Stop manual trading and latency issues. TradingView to MT5 Copier PRO is the fastest and most reliable bridge to execute your TradingView alerts directly on MetaTrader 5. This EA executes your trades instantly using High-Speed WebSocket technology . Installation instructions and Trial version  Key Features  Trade Copier  Ultra-Fast Execution: Uses WebSocket connectivity (faster than standard WebRequest) to minimize slippage.  Universal Broker
Seconds Chart MT5
Boris Sedov
4.61 (18)
Seconds Chart is a unique tool for creating second-based charts in MetaTrader 5 . With Seconds Chart , you can construct charts with timeframes set in seconds, providing unparalleled flexibility and precision in analysis that is unavailable with standard minute or hourly charts. For example, the S15 timeframe indicates a chart with candles lasting 15 seconds. You can use any indicators and Expert Advisors that support custom symbols. Working with them is just as convenient as on standard charts.
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
Signal TradingView to MT5 Pro  Instant professional execution between TradingView and MetaTrader 5 Automate your trading strategy with the most robust communication bridge between TradingView alerts and real execution in MT5. Designed for traders who demand speed, flexibility, and impeccable risk management, this Expert Advisor transforms any alert message into a precise market or limit order.   Install and TEST the TRIAL version HERE STRENGTHS AND ADVANTAGES Universal Parsing Engine (Propriet
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.
DrawDown Limiter
Haidar Lionel Haj Ali
5 (20)
Drawdown Limiter EA You are in the right place if you were searching for Drawdown control, Drawdown limiter, Balance protection, Equity Protection or Daily Drawdown Limit related to Prop Firm, FTMO, or Funded account trading, or if you want to protect your trading account. Have you suffered from controlling your drawdown when trading funded accounts? This EA is meant for you. Prop firms usually set a rule called “Trader Daily Drawdown”, and if it is not respected, you are disqualified.  I am an
EA Pause Manager
David Enrique Barrera Moncayo
4.33 (6)
EA Pause Manager — Your Smart Risk Guard & Scheduler (MT5) What It Does Stops conflicting trades before they happen , based on active market positions and, optionally, pending orders. Pauses or resumes your EAs automatically based on: A simple leader rule : the first EA to trade becomes the leader and blocks the rest. A time schedule you define — now configurable per EA. For example, you can run one EA during the day session and another EA overnight. Optionally cleans up after simultaneous openi
The News Filter MT5
Leolouiski Gan
4.78 (23)
This product filters   all expert advisors and manual charts   during news time.  It is able to remove any of your EA during news and automatically reattach them after news ends. This product also comes with a complete  order management system   that can handle your open positions and pending orders before the release of any news. Once you purchase   The News Filter , you will no longer need to rely on built-in news filters for future expert advisors, as this product can filter them all from her
YuClusters
Yury Kulikov
4.93 (43)
Attention: You can view the program operation in the free version  YuClusters DEMO .  YuClusters is a professional market analysis system. The trader has unique opportunities to analyze the flow of orders, trade volumes, price movements using various charts, profiles, indicators, and graphical objects. YuClusters operates on data based on Time&Sales or ticks information, depending on what is available in the quotes of a financial instrument. YuClusters allows you to build graphs by combining da
Crypto Charting
Rajesh Kumar Nait
5 (5)
Overview Crypto Charting for MT5 provides real-time OHLC data for various cryptocurrencies via WebSocket integration. It is designed for traders who require consistent and automated chart updates from multiple exchanges directly within the MetaTrader 5 platform. The product supports all standard MT5 timeframes and offers historical data synchronization features. Features Real-Time Charts via WebSocket Provides continuous, low-latency market data without relying on traditional API connections. A
Chart Copilot
George Angelo Boutselis
Chart Copilot is a trading assistant designed to help traders place trades faster, manage open positions and set alerts of any type directly from the chart. All of these features are accessible through the graphical panel as well as through a conversational chatbot. Additional Material and Instructions: trial version  - setup instructions Chatbot Chart Copilot comes with a dedicated server running a large language model – this means that there is no need to create your own API key and you will i
Ultimate Extractor
Clifton Creath
5 (8)
Ultimate Extractor - Professional Trading Analytics for MT5 *****this is the local HTML version of Ultimate Extractor. !!!!!it is not compatible with Cloud!!!! For the online version please reach out to me directly****** Ultimate EA manager also now available when you use cloud pro and above for free!! Ultimate Extractor transforms your MetaTrader 5 trading history into actionable insights with comprehensive analytics, interactive charts, and real-time performance tracking. What It Does Automa
More from author
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
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
Filter:
No reviews
Reply to review