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


推荐产品
Trade Copier Professional — 本地复制解决方案   Trade Copier Professional 是一款可靠的本地交易复制系统,适用于 MetaTrader 4/5。它允许交易者在同一台电脑上的多个账户之间即时复制仓位,内置安全控制,并配备专业级仪表盘。   概览   该 EA 可在单一文件中同时运行 Master 和 Slave 模式,并可无缝切换。交易可在 MT4 与 MT5 终端之间复制,无需依赖互联网,采用本地文件通信以实现最高速度与稳定性。实时仪表盘显示连接状态、复制统计以及每日表现。   手数与风险管理   提供四种手数模式:固定手数、倍数、风险百分比和余额百分比。止损与止盈可按比例调整或缩放,必要时可反向复制信号。安全功能包括每日亏损与交易限制、最小/最大手数控制、断线保护以及错误跟踪与自动关闭。   过滤与可靠性   交易可按品种或 magic number 进行过滤,配置灵活。系统通过错误检测、重试逻辑、安全关闭和全面日志确保可靠性。优化后的执行速度几乎即时,且资源占用极低。   使用方法   将 EA 附加到图表,设置
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 金融机器人:LaunchPad 市场专家 - 专为开启交易而设计! 这是一个使用特殊创新和先进算法来计算其价值的交易机器人,是您在金融市场世界中的助手。 使用我们来自 SolarTrade Suite 系列的指标集来更好地选择启动此机器人的时机。 在描述底部查看我们来自 SolarTrade Suite 系列的其他产品。 您想自信地驾驭投资和金融市场的世界吗? SolarTrade Suite 金融机器人:LaunchPad 市场专家是一款创新软件,旨在帮助您做出明智的投资决策并增加您的利润。 SolarTrade Suite 金融机器人的优势:LaunchPad 市场专家: - 准确计算:我们的机器人使用先进的算法和分析方法来准确预测市场走势。 计算购买和出售资产的最佳时机。 - 用户友好界面:直观的界面将使您能够轻松掌握程序并在安装后立即开始享受其好处。 - 专家支持:我们的专业团队随时准备为您解答任何问题,并为您提供有关使用该程序的建议。 立即试用 SolarTrade Suite 金融机器人:LaunchPad Market
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 是一个全自动的外汇交易智能交易系统(EA)。该机器人创建于 2014 年 ,在此期间完成了大量盈利交易,在我的个人账户上实现了超过 7000% 的收益增长 。经过多次更新, 2019 年版本 是最稳定、最优秀的。机器人可用于任何交易品种,但在 EURGBP、GBPUSD(M5 周期) 上表现最佳。使用错误的参数会导致较差结果。 真实账户的 set 文件仅提供给购买者。 ️ 主要优势 无马丁格尔、无对冲、无加仓,始终使用 SL/TP 。 高速测试与优化。 可选 Dynamic Take-Profit ,自动适应价格通道高低点。 内置 新闻日历过滤器 ,自动避开重大事件。 自动检测 GMT 偏移 。 针对实盘交易长期优化,结果稳定。 设置后可自动运行,无需干预。 参数说明 Core / Trading type_order — 订单执行类型 (默认 ORDER_FILLING_FOK)。 ReverseTrade — 反转交易方向。 ToolEnter — 入场工具 (RSI 或 None)。 RSI304 / NoRSIbars — RSI 周期与
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)
适用于 MetaTrader 5 的专业交易复制器 快速、专业、稳定可靠的 交易复制器 ,适用于 MetaTrader 。 COPYLOT 可在 MT4 和 MT5 终端之间复制 Forex 交易,并支持 Hedge 和 Netting 账户。 COPYLOT 的 MT5 版本支持: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting MT4 版本 完整说明 + DEMO + PDF 如何购买 如何安装 如何获取日志文件 如何测试和优化 Expforex 的所有产品 您也可以将交易复制到 MT4 终端(MT4 → MT4,MT5 → MT4): COPYLOT CLIENT for MT4 COPYLOT 是一款专业的交易和持仓复制器,可同时与 2、3 甚至 10 个终端协同工作。 支持从 模拟账户和投资者账户 复制,也支持同时在多个终端上运行。 您可以使
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 是一款专业的多货币算法交易系统,专为机构级别的趋势跟踪而设计。它利用专有的平滑 Heikin Ashi 算法,完全过滤市场噪音,让您安全地捕捉并持有大幅趋势。 该 EA 具有极高的鲁棒性,其执行引擎非常强大,能够轻松应对点差飙升、重复报价以及高波动的经纪商环境。它专为在最恶劣的实盘市场环境中生存和发展而打造。 优势与特点 无噪音趋势跟踪:使用自定义的平滑 Heikin Ashi(SMMA)计算,消除假突破信号,识别真实的市场方向。 多货币架构:从单个图表同时交易多种资产(例如 EURUSD、GBPUSD、XAUUSD)。 多时间框架(MTF)对齐:自动根据较高时间框架(例如 H4)过滤入场信号,确保您始终顺应宏观趋势。 动态金字塔加仓与缩放:安全地加仓盈利头寸。后续入场使用 ATR 乘数进行数学间隔,并且可以配置为仅当前一笔交易已锁定在盈亏平衡点时触发。 机构级权益篮子跟踪:一次性管理您的整个投资组合。设置激活阈值和跟踪回撤幅度,锁定所有货币对的全账户利润。 防故障执行引擎:配备异步回退安全机制,无论经纪商是否掉线、报价过
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
标准普尔 500 剥头皮交易顾问是一款创新工具,专为希望成功交易标准普尔 500 指数的交易者而设计。该指数是美国股市最广泛使用、最负盛名的指标之一,涵盖了美国最大的 500 家公司。 特点: 自动交易解决方案:     该顾问基于先进的算法和技术分析,可以根据不断变化的市场条件自动调整策略。 多种方法:     该顾问结合了多种策略,包括了解指数趋势、振荡价格分析以及最大化利润和最小化风险的算法。 灵活性和可定制性:     交易者可以自定义 EA 设置以适合他们的交易目标、风险水平和交易策略偏好。 风险管理:     顾问不断监控市场并采取措施管理风险;您可以设置在达到某些损失水平时自动终止交易。 透明度和报告:     交易者可以访问详细的报告和分析来评估顾问的表现并做出明智的投资决策。 机器人策略: 机器人设置已准备好进行交易   标准普尔 500 指数,同时考虑到该指数的价格行为。 该策略包括不使用马丁格尔的平均法。 该顾问拥有 解决一系列亏损交易的智能算法 ,可让您减少存款负担并快速克服亏损。 优点: 通过领先的标准普尔 500 指数进入全球金融市场。 基于先进技术和算法的
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 - 高级网格交易系统 Fire Byss 是一款专为 XAUUSD(黄金)开发的基于网格的智能交易系统。它结合了布林带和 EMA 趋势过滤,以减少在强势市场趋势中的风险。 ======================================== 主要特点 - 三种交易模式:逆势、突破、顺势 - EMA 趋势过滤,避免逆强势趋势交易 - 自适应 ATR 网格间距 - 最大连续亏损限制在 5-6 笔交易 - 无无限马丁格尔 - 网格级别有限 ======================================== 测试结果(28个月 - 2024年1月至2026年4月) 黄金表现 - XAUUSD M15: - 净利润:10,000 美元盈利 20,044 美元 - 盈利因子:1.54 - 最大回撤:14.4% - 胜率:86% - M15 上零爆仓 ======================================== 黄金推荐设置(XAUUSD) 安全优先(推荐大多数用户): - 时间周期:M15 - 手数:每 1,0
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)
此实用程序将允许您将任何交易从一个具有主设置的终端复制到具有从设置的其他终端 与此同时,您可以选择要复制的对,通过几个参数设置复制顺序的大小。 通过回撤或只复制有利可图的交易来设定限额损失 您可以将mt4或MT5的交易复制到MT4或MT5其他经纪商 现在,将在MT4中工作的任何Ea交易的信号复制到MT5终端或返回将不难 使用复制主复制任何交易从其他信号,EAs,手动交易.  使用设置,您可以更改批量大小,交易方向,只复制利润交易和setdbvalue来保存您的存款  复制大师可以在一个帐户上统一不同订阅信号的几种策略 要复制MT4的交易,你需要复制主MT4版本: https://www.mql5.com/en/market/product/62132 有关复制主设置的更多信息: https://www.mql5.com/en/blogs/post/749356
Neopips Engine EA
Md Billal Hossain
NeoPips Engine EA – 终极交易革命已然到来! “交易的真正力量在于洞察他人所忽略的。NeoPips Engine 不随波逐流,而是掌控市场。” 关于 NeoPips Engine EA:您的智能交易盟友 NeoPips Engine EA 并非普通的交易机器人。它是一款多维度、AI 优化的专家顾问,专为追求精准度、适应性和长期表现的交易者打造。 与那些规则僵化的过时机器人不同,NeoPips Engine 是一种动态策略——它会实时思考、学习并适应市场。 这不仅仅是自动化,更是一场持续的进化。 更上一层楼的智能:让您自由发挥的核心功能 人工智能决策 动态模式识别 预测趋势分析 基于实时数据的智能进出逻辑 多引擎策略核心 – 四种模式,同一个目标:赢。 NeoPips 引擎会根据实时信号自动切换引擎: 剥头皮模式 – 捕捉快速波动的爆发 波动模式 – 瞄准长期趋势阶段 突破模式 – 在重大经济新闻发布时激活 ️ 安全守护模式 – 在市场波动时介入 效果:无缝过渡,在所有市场阶段
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 一款以风险控制为核心的 MetaTrader 5 手动交易面板。 HedgeSafe 可帮助您在点击 BUY 或 SELL 之前,直接在图表上准备、验证和管理交易。 HedgeSafe 不是信号服务、行情预测工具、AI 机器人或自动交易策略。它不会替您选择交易方向,也不承诺盈利。每项交易决定均由交易者本人负责。 主要功能 按账户余额百分比或账户货币中的固定金额计算手数。 按点数或价格规划 Stop Loss;按点数、价格或 R 倍数规划 Take Profit。 实时预览风险金额、潜在收益、手数和风险回报比。 图表上的 Entry、Stop Loss 和 Take Profit 线与面板数值同步。 分别显示 BUY 与 SELL 的就绪状态,并在执行前进行方向相关的最终检查。 验证最小/最大交易量、交易量步长、tick size、tick value、stops level 和 freeze level。 检查市场可用性、品种交易模式、点差、允许偏差及 filling mode。 识别 hedging 与 netting 账户,并说明
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
该产品的买家也购买
Trade Assistant MT5
Evgeniy Kravchenko
4.43 (214)
它有助于计算每笔交易的风险,容易安装新的订单,具有部分关闭功能的订单管理, 7 种类型的追踪止损和其他有用的功能。   附加材料和说明 安装说明   -   应用程序说明   -   模拟账户应用程序的试用版 线条功能  - 在图表上显示开仓线、止损线、止盈线。 有了这个功能,就可以很容易地设置一个新的订单,并在开仓前看到它的附加特性。   风险管理  - 风险计算功能在考虑到设定的风险和止损单的大小的情况下,计算新订单的成交量。它允许你设置任何大小的止损,同时观察设定的风险。 批量计算按钮 - 启用 / 禁用风险计算。 在 " 风险 " 一栏中设置必要的风险值,从 0 到 100 的百分比或存款的货币。 在 " 设置 " 选项卡上选择风险计算的变量: $ 货币, % 余额, % 资产, % 自由保证金, % 自定义, %AB 前一天, %AB 前一周, %AB 前一个月。   R/TP 和 R/SL - 设置止盈和止损的关系。 这允许你设置相对于损失的利润大小。 例如, 1 : 1 - 这决定了 TP = SL 的大小。 2 : 1 - 这意味着 TP 是 SL 的两倍。 RR -
欢迎来到 Trade Manager EA——这是一个终极风险管理工具,旨在使交易变得更直观、精准和高效。它不仅仅是一个下单工具,而是一个用于无缝交易计划、仓位管理和风险控制的全面解决方案。不论您是新手交易员、资深交易员,还是需要快速执行的剥头皮交易员,Trade Manager EA 都可以满足您的需求,适用于外汇、指数、大宗商品、加密货币等各种市场。 借助 Trade Manager EA,复杂的计算已成过去。只需分析市场,在图表上用水平线标记入场、止损和止盈,设置您的风险水平,Trade Manager 就会立即计算出理想的头寸规模,并实时显示以点、账户货币计价的止损和止盈。每笔交易都得以轻松管理。 主要功能: 头寸规模计算器 :根据定义的风险瞬间确定交易规模。 简单的交易计划 :在图表上用可拖动的水平线直接计划交易,设置入场、止损和止盈。 实时显示 SL 和 TP :以账户货币、点或分显示止损和止盈,便于分析。 高级保护工具 盈亏平衡选项 : 基本盈亏平衡 :当您的交易达到设定水平时自动保护利润。 多级盈亏平衡 :设置多达 4 个级别以逐步保护利润。 尾随止损选项 : 基本尾随
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.96 (142)
通过 Local Trade Copier EA MT5 获得非常快速的交易复制体验。它的简单1分钟设置,使您可以在同一台Windows计算机或Windows VPS上在多个MetaTrader终端之间复制交易,具有闪电般快速的复制速度,低于0.5秒。 无论您是初学者还是专业交易者, Local Trade Copier EA MT5 都提供了广泛的选项,可根据您的特定需求进行自定义。对于任何希望增加利润潜力的人来说,这都是终极解决方案。 今天就尝试一下,看看为什么它是市场上最快、最简单的贸易复印机! 提示: 您可以在您的模拟账户中下载并试用 Local Trade Copier EA MT5 模拟版: 这里 将下载的免费演示文件粘贴到您的 MT5 >> 文件 >> 打开数据文件夹 >> MQL5 >> 专家文件夹并重新启动您的终端。  免费演示版本每次可在 4 小时内发挥全部功能,仅限演示帐户。 要重置试用期,请转至 MT5 >> 工具 >> 全局变量 >> Control + A >> 删除。 请仅在非关键模拟账户上执行此操作,不要在挑战道具公司账户中执行此操作。 如果您无法
测试版发布 Telegram to MT5 Signal Trader 即将进入正式的 Alpha 版本。一些功能仍在开发中,您可能会遇到一些小错误。如果您遇到问题,请反馈,您的意见将帮助我们改进软件。 Telegram to MT5 Signal Trader 是一款强大的工具,能够将 Telegram 频道或群组的交易信号自动复制到您的 MetaTrader 5 账户。 支持公开和私人频道,可将多个信号提供者连接至一个或多个 MT5 账户。软件优化、高效、稳定,精准控制每笔复制交易。 界面简洁,仪表盘美观,图表交互性佳,导航直观。您可以管理多个信号账户,自定义每个提供者的设置,并实时监控所有操作。 系统需求 由于 MQL 限制,EA 需要配合 PC 端应用与 Telegram 通信。 安装程序可通过官方 安装指南 获取。 核心功能 多提供者支持: 从多渠道复制信号至多个 MT5 帐户 高级信号识别: 关键词、模式和标签全面自定义 逐提供者控制: 可启用/禁用特定信号类型、平仓策略等 灵活风险管理: 固定手数、固定金额、余额/权益百分比、部分平仓设置 可定制 SL/TP: 覆盖信号
TradePanel MT5
Alfiya Fazylova
4.88 (161)
交易面板是一款多功能交易助手。该应用包含超过50种手动交易功能,并允许您自动执行大多数交易任务。 在购买之前,您可以在演示账户上测试演示版本。下载用于演示账户的试用版应用程序: https://www.mql5.com/zh/blogs/post/762579 。 完整说明 这里 。 贸易. 只需单击一下即可执行交易操作: 打開掛單和頭寸,並自動計算風險。 一鍵打開多個訂單和頭寸。 打開訂單網格。 按組別關閉掛單和頭寸。 反轉頭寸方向(關閉買入>打開賣出,關閉賣出>打開買入)。 鎖定頭寸(通過開啟缺少的頭寸,使買入和賣出頭寸的數量相等)。 一鍵部分關閉所有頭寸。 將所有頭寸的止盈和止損設置在同一價格水平。 將所有頭寸的止損設置在盈虧平衡水平。 開倉時,可使用以下功能: 在多個訂單或倉位之間分配計算出的數量(在單擊一次時開啟多個訂單和倉位)。 在開啟訂單前在圖表上可視化交易水平。 僅在當前點差不超過設定值時才開啟倉位。 止盈和止損之間的自動比例。 虛擬止損和止盈。 自動將止損和止盈的大小增加為當前點差的大小。 基於ATR指標讀數計算止盈和止損。 設置掛單的到期日期。 為掛單設置追蹤(掛單
Power Candles 策略扫描器——自优化多符号设置查找器 Power Candles策略扫描器 采用与Power Candles指标相同的自优化引擎,可同时扫描您“市场观察”中的所有交易品种。一个面板即可显示当前哪些品种在统计上具备交易价值、每种策略的最佳应用方向、最优止损/止盈组合,并在新信号触发时立即向您发送提醒。 本工具是 Stein Investments 生态系统的一部分 - 18+ 款工具,加上 Max,您的一对一 AI 交易导师。  随时在线,深入了解每一款指标,在您需要梳理思路的那一刻就在那里。  立即认识他: https://stein.investments 您的全面市场监控。每个交易品种超过3,000次自动优化。2种警报类型。一键切换图表并采取行动。 为何您需要此工具 大多数多标的扫描器仅展示价格 波动 。每只股票的波动率、百分比变化、RSI。您仍需自行摸索正确的策略、合适的止损位以及理想的入场阈值。Power Candles策略扫描器针对每只股票自动解答这些问题,仅在数学验证过的交易设置中触发实际入场信号时才会向您发出提示。这就是全部卖点。 自动
Telegram to MT5 Multi-Channel Copier 可自动将您 Telegram 频道中的交易信号直接复制到 MetaTrader 5。无需机器人,无需浏览器扩展,无需手动复制。您在 Telegram 上收到信号,EA 会在几秒钟内在您的终端上开仓。 本产品包含两个组件:一个监听您 Telegram 频道的 Windows 应用程序,以及在您的 MT5 终端上执行信号的 EA。同时也提供 MT4 版本。 设置指南和应用程序下载: https://www.mql5.com/en/blogs/post/768988 工作原理 Windows 应用程序使用您自己的 API 凭据连接到 Telegram,而不是机器人。这意味着它可以读取您订阅的任何频道、群组或话题,包括私人和 VIP 频道。检测到信号后,它会进行解析并发送给 EA。EA 根据您的经纪商解析交易品种名称,基于您的风险设置计算手数,然后开仓。 整个过程都是自动的。您无需守在电脑前。 打开应用程序并登录 Telegram(仅第一次)。 选择要监听的频道或话题。 按下 Start。EA 会处理其余的一切。 支持的
Anchor Trade Manager
Kalinskie Gilliam
5 (5)
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
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:/
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
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
Premium Trade Manager - 内置交易导师的图表面板 Premium Trade Manager 将一位交易导师嵌入您的图表,并在其下搭载完整的执行引擎。像往常一样建立交易,然后让您的 AI 交易导师 Max 读取这笔具体的交易,结合您的实时账户给出直接判断,再由您决定是否下单:止损是否符合纪律化交易的要求、风险规模是否合理、高影响新闻事件是否即将发布、您是否接近资金盘限额。其下是完整的执行引擎,负责点击之后的一切:一键按风险下单、您在图表上拖动规划且交易进行中仍可随时调整的计划、最多四个分批止盈级别、七种移动止损方式、实时资金盘合规检查、新闻屏蔽保护,以及对自身成本进行评级的点差功能。决策由您做出。Max 给出第二次审视。面板负责此后的一切。 购买前先亲手体验。 直接在浏览器中点击实时面板,这是在购买前感受其工作方式的最快途径。 stein.investments/products/premium-trade-manager Max 是您的一对一 AI 交易导师,他直接内置于面板之中。  他了解您的账户、您的设置和您的规则,用您自己的语言回答,并在每笔交易下单前进
Seconds Chart MT5
Boris Sedov
4.61 (18)
秒级图表 (Seconds Chart) - 一款专为 MetaTrader 5 设计的独特工具,用于创建秒级时间框架的图表。 通过 秒级图表 ,您可以构建以秒为单位的时间框架图表,获得标准分钟或小时图表无法提供的极致灵活性和分析精度。例如,时间框架 S15 表示每根蜡烛图持续15秒。您可以使用任何支持自定义交易品种的指标和EA交易系统。操作它们就像在标准图表上交易一样方便。 与标准工具不同, 秒级图表 让您能够在超短时间框架下进行高精度交易,无延迟干扰。 免费演示版: Seconds Chart v2.29 Demo.ex5 下载免费演示版,亲自体验: 功能齐全 - 所有功能均可使用 24小时测试 - 足够评估准确性和便利性 仅限模拟账户 - 大多数经纪商均可轻松开立 仅限GBPCAD图表 - 大多数终端均可使用 这些限制仅适用于演示版。完整版适用于任何账户类型(真实、演示、竞赛)和任何图表(XAUUSD、EURUSD 等),无任何限制。 如何安装演示版 通过上方链接下载演示文件 打开MetaTrader -> 文件 -> 打开数据文件夹 -> MQL5 -> Experts 将下
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
EasyInsight AIO MT5
Alain Verleyen
4.92 (12)
EASY Insight AIO – 全能智能交易一站式解决方案 概述 想象一下,您可以在几秒钟内扫描整个市场——外汇、黄金、加密货币、指数,甚至股票——无需手动筛选图表、繁琐安装或配置指标。 EASY Insight AIO 是您专为 AI 交易打造的即装即用数据导出工具。它将整个市场快照一次性输出为简洁的 CSV 文件,直接支持 ChatGPT、Claude、Gemini、Perplexity 等各类 AI 平台的即时分析。 无需窗口切换,无需图表叠加,也没有任何杂乱。只需纯净、结构化的数据自动导出,让您专注于基于数据的高效决策,无需再盯盘耗时。 为什么选择 EASY Insight AIO? 真正的一体化 • 无需设置,无需安装指标,无图表叠加。只需安装、运行并导出——就是这么简单。 多资产全覆盖 • 扫描分析外汇、金属、加密货币、指数、股票——您的券商所能提供的一切市场。 AI 专属数据导出 • 高度结构化、针对 AI 优化的 CSV 文件,直接适配主流智能工具和平台。 完整导出内容: • 三个可选周期的货币强度分析 • 净多头头寸变化体现市场情绪 • 成交量变化、
Trade Dashboard MT5
Fatemeh Ameri
4.95 (131)
疲于复杂的订单下达和手动计算?Trade Dashboard 是您的解决方案。凭借其用户友好的界面,订单下达变得轻而易举,只需点击一下,您就可以开设交易、设置止损和止盈水平、管理交易手数,并计算风险回报比,让您只需专注于您的策略。告别手动计算,使用 Trade Dashboard 简化您的交易体验。 立即下载演示版本 。 您可以在这里找到仪表盘功能和特性的详细信息 。 加入 Telegram 频道 。 购买后请给我发消息以获取支持。如果您需要添加更多功能,可以在产品的评论区留下您的想法,我愿意听取任何建议,希望您能在使用我的产品时获得最佳体验 。 这是 MT4 版本。 风险管理:使用 Trade Dashboard,可以将您的风险设置为账户余额或权益的百分比,或将风险设置为总金额。在图表上直观地定义您的止损,让工具准确计算每个货币对的适当手数。该工具还可以根据您期望的风险回报比自动设置止盈水平。它甚至可以在手数计算中涵盖佣金和点差费用。此外,您的止损和止盈可以转变为虚拟水平,隐藏于经纪商。通过 Trade Dashboard 的高级风险管理功能,掌控风险,保护您的资本。 交易线
工作演示版下载 Copy Cat More (跟单猫) MT5 交易跟单器 (Trade Copier) 是一款本地交易跟单器,也是一套完整的风险管理与执行框架,专为当今的交易挑战而设计。从自营公司 (prop firm) 挑战到个人投资组合管理,它凭借稳健的执行、资金保护、灵活的配置和先进的交易处理的结合,适应各种情况。 该跟单器同时支持主控端 (Master,发送方) 与受控端 (Slave,接收方) 两种模式,可实时同步市价单与挂单、交易修改、部分平仓以及对锁平仓 (Close By) 操作。它兼容模拟与真实账户、交易或投资者登录,并通过持久化交易记忆 (Persistent Trade Memory) 系统确保恢复——即使 EA、终端或 VPS 重启也不例外。可借助唯一 ID 同时管理多个主控端与受控端,跨经纪商差异则通过前缀/后缀调整或自定义品种映射自动处理。 试用版:  先试用看看 : 你可以下载并体验  Copy Cat More (跟单猫) 交易跟单器 MT5 试用版,通过 此链接 。 下载后,请将演示文件放入你的终端文件夹: MT5 » 文件 » 打开数据文件夹
Trade Manager DaneTrades
Levi Dane Benjamin
4.28 (29)
交易管理器可帮助您快速进入和退出交易,同时自动计算风险。 包括帮助您防止过度交易、报复性交易和情绪化交易的功能。 交易可以自动管理,账户绩效指标可以在图表中可视化。 这些功能使该面板成为所有手动交易者的理想选择,并有助于增强 MetaTrader 5 平台。多语言支持。 MT4版本  |  用户指南+演示 交易经理在策略测试器中不起作用。 如需演示,请参阅用户指南 风险管理 根据%或$自动调整风险 可选择使用固定手数或根据交易量和点自动计算手数 使用 RR、点数或价格设置盈亏平衡止损 追踪止损设置 最大每日损失百分比,在达到目标时自动平仓所有交易。 保护账户免遭过多提款并阻止您过度交易 最大每日损失(以美元为单位)在达到目标时自动关闭所有交易。 保护账户免遭过多提款并阻止您过度交易 一键实现所有交易的盈亏平衡 自动计算从手机/电话发送的交易的风险 OCO 在设置中可用 交易和头寸管理 通过设置每月、每周、每天、每小时或每分钟的最大交易次数,停止过度交易和报复性交易。 高级挂单管理。 调整何时关闭挂单的规则 追踪挂单 支持市价订单和挂单 每日最大利润目标(以美元为单位)以确保头寸并停止
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
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
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
================================================================================ 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
MetaTrader 5 专业交易面板 —— 图表与键盘一键交易的高效控制中心 一款面向主动交易者的专业 Trading Panel,可让您比标准 MetaTrader 操作方式更快、更直观地完成开仓、平仓、修改、管理与控制。 这不是一个普通的小工具,而是一个为高频手动操作、仓位管理、挂单控制与利润管理而设计的完整交易工作台。 通过这套面板,您可以直接在图表上一键执行交易,通过键盘快速触发核心操作,并借助自动参数计算、图形提示、信息标签以及可视化管理功能,大幅减少重复性操作,让整个交易流程更加流畅、高效且专业。 使用我们的交易面板,您可以直接从图表上一键下单,执行交易操作的速度可比标准 MetaTrader 控件快约 30 倍。 全新高级版本现已推出: 使用 VirtualTradePad PRO SE 升级您的交易流程 — 适用于 MetaTrader 5 和 MetaTrader 4 的新一代专业交易面板。 MT4 版本 | 完整说明 + DEMO + PDF | 如何购买 | 如何安装 | 如何获取日志文件 | 如何测试与优化 | Expforex 的所有产品 为什么交易者会
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
The Ultimate TradingView to MT5 Bridge Automation 告别手动交易和延迟问题。 TradingView to MT5 Copier PRO 是最快、最可靠的桥接工具,可直接在 MetaTrader 5 上执行您的 TradingView 警报。无论您使用的是自定义指标、策略测试脚本还是手动绘图,该 EA 都能利用 高速 WebSocket 技术 瞬间执行您的交易。 与简单的跟单工具不同,此 PRO 版本包含 Arena Statistics —— 一个内置的专业仪表板,可直接在图表上分析您的交易表现、回撤(Drawdown)和夏普比率。 主要功能 跟单交易 (Trade Copier) 超快速执行: 使用 WebSocket 连接(比标准 WebRequest 更快),最大限度地减少滑点。 通用经纪商支持: 适用于 任何经纪商 和 自营交易公司 (Prop Firm) (如 FTMO, MyForexFunds 等)。您无需在两个平台上使用相同的经纪商。 智能资产映射: 自动检测并映射代码(例如,将 XAUUSD 转换为 GOLD.pro,
The News Filter MT5
Leolouiski Gan
4.78 (23)
这个产品在新闻时间过滤所有的专家顾问和手动图表,因此您不必担心突然的价格波动会破坏您的手动交易设置或其他专家顾问输入的交易。此产品还带有完整的订单管理系统,可在任何新闻发布前处理您的持仓和挂单。一旦您购买了   The News Filter ,您将不再需要依赖以后的专家顾问内置的新闻过滤器,因为这个产品可以从此过滤它们所有。 新闻选择 新闻来源于Forex Factory的经济日历。 选择可以基于任何一种货币,如USD,EUR,GBP,JPY,AUD,CAD,CHF,NZD和CNY等。 选择也可以基于关键识别,例如Non-Farm (NFP),FOMC,CPI等。 能够选择新闻影响级别的筛选,从低、中、到高影响。 自动模式只选择与图表相关的新闻。 新闻来源每小时自动刷新,以确保最新的新闻数据。 为每个新闻影响级别提供单独的输入,以确定您要过滤掉的新闻发布前后的分钟数。 订单管理选项 在新闻发布前关闭未平仓头寸的选项,并在新闻发布后恢复它们。 在新闻发布前删除挂单的选项,并在新闻发布后恢复它们。 在新闻发布前移除止损和止盈水平的选项,并在新闻发布后恢复它们。 在新闻发布前移动止损和
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
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
Chart Copilot
George Angelo Boutselis
Chart Copilot 是一款交易助手,旨在帮助交易者更快地下单、管理持仓并直接从图表设置各种类型的提醒。所有这些功能都可以通过图形面板以及对话式聊天机器人访问。 其他资料和说明: 试用版  - 设置说明 聊天机器人 Chart Copilot 配备专用服务器,运行着大型语言模型——这意味着您无需创建自己的 API 密钥,安装后即可立即与聊天机器人交互。 Chart Copilot 与您熟悉的普通聊天机器人不同,它可以直接执行与您的交易相关的操作。您可以尝试询问以下几个问题: 在任何可能影响当前图表波动性的新闻事件发生前 30 分钟提醒我 查看我的历史交易并告诉我如何改进 在我的图表上找到支撑位和阻力位,并在价格突破这些水平时提醒我 在昨天价格区间的最高点设置买入止损订单,止损设在最低点。承担账户 1% 的风险 将所有持仓调整至盈亏平衡点 然而,灵活性没有上限。我鼓励用户提出更具挑战性的需求。其他一些功能包括将您的历史交易导出为 CSV 文件(您也可以仅请求买入交易,或特定交易品种等)。或者咨询技术分析——聊天机器人可以访问所有可用的 MT5 指标。 图形面板 如果您更喜欢传统的交
Local Trade Copier EA 是针对需要从外部来源执行交易信号或需要同时管理多个账户的个人交易者或账户经理的解决方案,无需 MAM 或 PAMM 账户。它可以从多达 8 个主帐户复制到无限的从帐户 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 100% 自托管 容易安装和使用 不使用安装程序、配置文件、服务器、内存管道或 DLL 1000 次激活可永久使用 EA 本地执行,无网络延迟 它实现了您需要的所有功能: 最多8个主账户和无限从属账户 适用于所有经纪人和 DD/NDD/ECN/STP 执行 适用于具有不同帐户货币的帐户 在真实账户和模拟账户之间工作不明显 支持主从账户中的符号名称后缀 按幻数和订单评论过滤 不会干扰其他交易 可选择复制 SL 和 TP 水平 可选择复制挂单 支持符号翻译 支持部分关闭 反向模式 灵活的交易规模: - 固定地段 - 乘数 - 成比例的 - 与乘数成比例 EA 可以使用投资者或任何账户的主密码复制交易。 如何将交易从一个主账户复制到一个或多个从账户 在源终端中安装 EA 将 EA 加载到任何图表并选择“MA
作者的更多信息
Gmrfx ZZ Multi Tool
Rudianto Spdi Mhi
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
筛选:
无评论
回复评论