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 の間でインターネットに依存せずに取引をコピーでき、ローカルファイル通信を利用することで最大限の速度と信頼性を実現します。リアルタイムダッシュボードには接続状態、コピー統計、日次パフォーマンスが表示されます。   ロットとリスク管理   4 種類のロット計算モードを提供します:固定ロット、乗数、リスク割合、残高割合。ストップロスやテイクプロフィットはスケーリングや調整が可能で、必要に応じてシグナルを反転させることもできます。安全機能には日次損失・取引制限、最小/最大ロット制
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 金融ロボット: LaunchPad Market Expert - 取引を開始するために設計されています! これは、革新的で高度なアルゴリズムを使用して値を計算する取引ロボットであり、金融​​市場の世界でのアシスタントです。 SolarTrade Suite シリーズのインジケーター セットを使用して、このロボットを起動するタイミングをより適切に選択してください。 説明の下部にある SolarTrade Suite シリーズの他の製品をご覧ください。 投資と金融市場の世界を自信を持ってナビゲートしたいですか? SolarTrade Suite 金融ロボット: LaunchPad Market Expert は、情報に基づいた投資決定を行い、利益を増やすのに役立つ革新的なソフトウェアです。 SolarTrade Suite 金融ロボット: LaunchPad Market Expert の利点: - 正確な計算: 当社のロボットは、高度なアルゴリズムと分析方法を使用して、市場の動きを正確に予測します。 資産を売買するのに最適なタイミングを
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)
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
S&P 500スキャルパーアドバイザーは、S&P 500指数で成功したいトレーダーのために設計された革新的なツールです。この指数は、米国の株式市場で最も広く利用され、権威のある指標の一つであり、米国の主要企業500社で構成されています。 特徴: 自動取引ソリューション:     アドバイザーは、高度なアルゴリズムとテクニカル分析に基づいており、変化する市場状況に合わせて戦略を自動的に適応させます。 多目的なアプローチ:     アドバイザーは、インデックスのトレンドの理解、変動価格の分析、利益を最大化しリスクを最小化するアルゴリズムなど、複数の戦略を組み合わせます。 柔軟性とカスタマイズ性:     トレーダーは、取引目標、リスク レベル、取引戦略の好みに合わせて EA 設定をカスタマイズできます。 リスク管理:     アドバイザーは市場を常に監視し、リスクを管理するための対策を講じます。一定の損失レベルに達したときに取引を自動的に終了するように設定することもできます。 透明性と報告:     トレーダーは詳細なレポートと分析にアクセスしてアドバイザーのパフォーマンスを評価し、情報に
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 - 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 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
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
このユーティリティを使用すると、マスター設定のある端末からスレーブ設定の他の端末に任意の取引をコピーすることができます 同時に、コピーするペアを選択し、いくつかのパラメータでコピーされた順序のサイズを設定することができます。 ドローダウンでリミット損失を設定するか、収益性の高い取引のみをコピーします あなたはMT4またはMT5からMT4またはMT5他のブローカーに取引をコピーすることができます これで、MT4で動作するExpert Advisorの信号をMT5ターミナルまたはバックにコピーすることは困難ではありません コピーマスターを使用して、他のシグナル、Ea、手動取引から任意の取引をコピーします。  設定を使用すると、ロットサイズ、取引方向を変更し、利益取引のみをコピーし、setdbvalueを使用して預金を保存することができます  コピーマスターは、一つのアカウント上の異なるサブスクリプションシグナルのいくつかの戦略を統合することができます MT4で取引をコピーするには、コピーマスター MT4バージョンが必要です: -ここで コピーマスター設定の詳細については:
NeoPips Engine EA – 究極のトレーディング革命が到来! 「トレーディングの真の力は、他者が見逃すものを見抜くことにあります。NeoPips Engineは市場を追うのではなく、市場を掌握します。」 NeoPips Engine EAについて:あなたのインテリジェントなトレーディングの味方 NeoPips Engine EAは、ありきたりなトレーディングロボットではありません。精度、適応性、そして長期的なパフォーマンスを求めるトレーダーのために開発された、AIに最適化された多次元のエキスパートアドバイザーです。 時代遅れの厳格なルールを持つボットとは異なり、NeoPips Engineは生きた戦略です。リアルタイムで市場を思考し、学習し、適応します。 これは単なる自動化ではなく、進化の過程です。 次世代のインテリジェンス:あなたを自由にするコア機能 AIによる意思決定 動的パターン認識 予測トレンド分析 ライブデータに基づくスマートなエントリー/エグジットロジック マルチエンジン戦略コア – 4つのモード。目標はただ
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 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 は、機関投資家レベルのトレンドフォロー向けに設計された、プロフェッショナルなマルチ通貨アルゴリズム取引システムです。独自開発のスムーズド平均足(Heikin Ashi)アルゴリズムにより、市場ノイズを完全に除去し、大きなトレンドを安全に捉えて追従することを可能にします。 絶対的な回復力を追求して設計されたこのEAは、スプレッドの急騰、リクオート、高ボラティリティなブローカー環境さえも難なく処理する、非常に堅牢な執行エンジンを備えています。最も過酷な実戦市場環境でも生き残り、成長するように作られています。 利点と特徴 ノイズのないトレンドフォロー:独自のスムーズド平均足(SMMA)計算を使用し、ダマシを排除して真の市場方向を識別します。 マルチ通貨アーキテクチャ:単一のチャートから複数の銘柄(例:EURUSD、GBPUSD、XAUUSD)を同時に取引できます。 マルチタイムフレーム(MTF)アライメント:上位時間枠(例:H4)でエントリーを自動フィルタリングし、常にマクロトレンドに沿った取引を保証します。 動的ピラミッディング&
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
このプロダクトを購入した人は以下も購入しています
Trade Assistant MT5
Evgeniy Kravchenko
4.43 (213)
取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 7 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 追加の資料と説明書 インストール手順   -   アプリケーションの手順   -   デモアカウント用アプリケーションの試用版 ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、 リスク 計算 の 種類 を 選択 します :「 $ 通
Trade Manager EAへようこそ。これは、取引をより直感的、正確、そして効率的にするために設計された究極の リスク管理ツール です。これは単なるオーダー実行ツールではなく、包括的な取引計画、ポジション管理、リスク管理のためのソリューションです。初心者から上級者、迅速な実行を必要とするスキャルパーまで、Trade Manager EAはあらゆるニーズに対応し、為替、指数、商品、暗号通貨などさまざまな市場で柔軟に対応します。 Trade Manager EAを使用すると、複雑な計算が過去のものになります。市場を分析し、エントリーポイント、ストップロス、テイクプロフィットのレベルをチャート上のラインでマークし、リスクを設定するだけで、Trade Managerが最適なポジションサイズを即座に計算し、SLとTPをピップ、ポイント、口座通貨でリアルタイムに表示します。すべての取引が簡単かつ効果的に管理されます。 主な機能: ポジションサイズ計算機 :定義されたリスクに基づいて取引サイズを瞬時に決定します。 簡単な取引計画 :エントリー、ストップロス、テイクプロフィットを設定するためのド
TradePanel MT5
Alfiya Fazylova
4.87 (159)
Trade Panelは多機能なトレーディングアシスタントです。アプリには手動取引用の50以上のトレーディング機能が搭載されており、ほとんどの取引作業を自動化することができます。 購入前に、デモアカウントでアプリのデモ版をテストすることができます。デモアカウント用のアプリの試用版をダウンロードするには、次のリンクをご利用ください: https://www.mql5.com/en/blogs/post/750865 。 完全な手順 こちら 。 取引。 ワンクリックで取引操作を行うことができます: リスクを自動計算して指値注文やポジションを開く。 複数の注文やポジションをワンクリックで開く。 注文のグリッドを開く。 保留中の注文やポジションをグループごとに閉じる。 ポジションの方向を反転(Buyを閉じてSellを開く、またはSellを閉じてBuyを開く)。 ポジションをブロックする(不足している量のポジションを開くことでBuyとSellのポジション量を等しくする)。 すべてのポジションを部分的にワンクリックで閉じる。 すべてのポジションの利食い(Take Profit)および損切り(Sto
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.96 (141)
Local Trade Copier EA MT5 による、驚くほど高速な取引コピーを体験してください。1分で簡単にセットアップできるこの取引コピー機は、同じWindowsコンピュータまたはWindows VPS上の複数のMetaTrader端末間で取引をコピーすることができ、0.5秒未満の高速コピースピードを実現します。 初心者であろうとプロのトレーダーであろうと、 Local Trade Copier EA MT5 には、あなたの特定のニーズに合わせてカスタマイズするための幅広いオプションが用意されています。これは、利益の可能性を高めたい人にとって究極のソリューションです。 今すぐ試してみて、これが市場で最も速くて簡単なトレードコピー機である理由を理解してください。 ヒント: デモアカウントで Local Trade Copier EA MT5 デモバージョンをダウンロードして試すことができます: ここ ダウンロードした無料のデモ ファイルを MT5 >> ファイル >> データ フォルダを開く >> MQL5 >> Experts フォルダに貼り付けて、ターミナルを再起動しま
ベータリリース Telegram to MT5 Signal Trader はまもなく正式なアルファ版をリリースします。いくつかの機能はまだ開発中で、小さな不具合に遭遇する可能性があります。問題が発生した場合はぜひご報告ください。皆さまのフィードバックがソフトウェア改善に役立ちます。 Telegram to MT5 Signal Trader は、 Telegram のチャンネルやグループからの取引シグナルを自動的に MetaTrader 5 にコピーする強力なツールです。 パブリックおよびプライベートの両方のチャネルに対応し、複数のシグナル提供元を複数のMT5口座に接続可能です。ソフトウェアは高速で安定し、すべての取引を細かく制御できます。 インターフェースは直感的で、ダッシュボードとチャートは見やすく設計されており、リアルタイムで動作状況をモニターできます。 必要環境 MQL の制限により、EA は Telegram と通信するためのデスクトップアプリが必要です。 インストーラーは公式の インストールガイド にあります。 主な機能 マルチプロバイダー: 複数の Telegram
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 - 自動最適化型マルチシンボル設定ファインダー パワーキャンドル・ストラテジー・スキャナーは 、パワーキャンドル・インジケーターを駆動するのと全く同じ自己最適化エンジンを、マーケットウォッチに登録されているすべての銘柄に対して並行して実行します。1つのパネルで、現在統計的に取引可能な銘柄、各銘柄で勝率の高い戦略、最適なストップロス/テイクプロフィットの組み合わせが表示され、新たなシグナルが発生した瞬間に通知が届きます。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨を受け取り、  https://stein.investments でコミュニティに参加しましょう 市場動向を網羅。銘柄ごとに3,000件以上の自動最適化。2種類のアラート。ワンクリックでチャートを切り替えて即座にアクション。 なぜこれが必要なのか 多くのマルチ銘柄スキャナーは、 価格の動き (ボラティリティ、変動率、銘柄ごとのRSI)を表示するだけです。それ
Premium Trade Manager - コーチ内蔵型トレードパネル Premium Trade Manager は、AIトレーディングコーチをあなたのチャートの中に置き、その下に完全な執行エンジンを備えたツールです。いつも通りにトレードをセットアップし、あなた専任のAIトレーディングコーチ Max にそのセットアップをそのまま読み取らせて、発注前に率直な見解を伝えてもらいましょう。ストップの幅が規律あるアプローチに合っているか、リスクサイズは適切か、高影響のニュースイベントが数分後に迫っていないか、プロップファームの制限に近づいていないか。その下には、クリックの後をすべて処理するエンジンが備わっています。ワンクリックのリスクサイズ計算による発注、ドラッグ可能なストップ・ターゲットライン、最大4段階の分割利確、7種類のトレール方式、リアルタイムのプロップファームコンプライアンス、ニュースガード、そしてコストを自ら採点するスプレッド機能。判断はあなたが下す。Max がもう一度確認する。後のことはすべてパネルが担う。 購入前に実際に触れて試せます。 ブラウザ上でライブパネルをそのまま
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
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 - MetaTrader 5で秒足チャートを作成するユニークなツールです。 Seconds Chart を使用すると、秒単位のタイムフレームでチャートを構築でき、標準的な分足や時間足チャートでは得られない柔軟性と分析精度を実現します。例えば、 S15 は15秒足を表します。カスタムシンボルをサポートしているインジケーターやEAをすべて使用できます。標準的なチャートと同様に便利に操作できます。 標準的なツールとは異なり、 Seconds Chart は超短期のタイムフレームでも高い精度と遅延なく作業できるように設計されています。 Free Demo: Seconds Chart v2.29 Demo.ex5 無料デモをダウンロードしてご自身でお確かめください: 完全機能版 - すべての機能が利用可能 24時間テスト - 精度と利便性を評価するのに十分な時間 デモ口座のみ - ほとんどのブローカーで簡単に開設可能 GBPCADチャートのみ - ほとんどの端末で利用可能 これらの制限はデモ版のみに適用されます。製品版は、あらゆる口座タイプ(リアル、デモ、コンテス
Grid Manual MT5
Alfiya Fazylova
4.9 (21)
「Grid Manual」は、注文のグリッドを操作するための取引パネルです。 ユーティリティはユニバーサルで、柔軟な設定と直感的なインターフェイスを備えています。 それは、損失を平均化する方向だけでなく、利益を増やす方向でも注文のグリッドで機能します。 トレーダーは注文のグリッドを作成して維持する必要はありません。 すべてが「Grid Manual」によって行われます。 注文を開くだけで十分であり、「Grid Manual」は注文のグリッドを自動的に作成し、非常に閉じるまでそれに付随します。 完全な説明とデモバージョン ここ。 ユーティリティの主な機能と機能 ユーティリティは、モバイル端末から開かれた注文を含め、あらゆる方法で開かれた注文を処理します。 「制限」と「停止」の2種類のグリッドで機能します。 グリッド間隔の計算には、固定と動的(ATRインジケーターに基づく)の2つの方法で機能します。 オープンオーダーグリッドの設定を変更できます。 チャート上の各注文グリッドの損益分岐点を表示します。 各注文グリッドの利益率を表示します。 ワンクリックでグリッドから収益性の高い注文を閉じるこ
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
Telegram to MT5 Multi-Channel Copier は、Telegram チャンネルからのトレードシグナルを MetaTrader 5 に自動的に直接コピーします。ボットも、ブラウザ拡張機能も、手動コピーも不要です。Telegram でシグナルを受信すると、EA が数秒以内にターミナルでトレードを開きます。 本製品は 2 つのコンポーネントで構成されています:Telegram チャンネルを監視する Windows アプリケーションと、MT5 ターミナルでシグナルを実行するこの Expert Advisor です。MT4 バージョンも利用可能です。 セットアップガイドとアプリケーションのダウンロード: https://www.mql5.com/en/blogs/post/768988 動作の仕組み Windows アプリケーションは、ボットではなくお客様自身の API 認証情報を使用して Telegram に接続します。これにより、プライベートチャンネルや VIP チャンネルを含め、登録しているあらゆるチャンネル、グループ、フォーラムトピックを読み取れます。シグナル
Telegram to MT5 Pro — 高度なTelegramシグナルコピー機(自動修正・マルチTP・リスク管理・完全トレード管理) Telegram to MT5 Pro — プロフェッショナル Telegram シグナルコピーツール Telegram to MT5 Pro は、TelegramのシグナルをMetaTrader 5アカウントへ自動で直接実行する高性能トレードコピーシステムです。リスク管理、執行、トレード管理を完全に制御できます。 本システムは2つのコンポーネントで構成されています: • MetaTrader 5内で動作するExpert Advisor(EA) • Telegramと接続しシグナルをローカルでEAへ送信するコンパニオンデスクトップアプリ 両方は同じPC上で動作する必要があります。MQL5の制限によりEAはTelegramへ直接接続できません。ブリッジがTelegram処理を担当し、EAが取引を実行します。 サポートとインストール支援 完全なPDFインストール&ユーザーガイドが提供されます。 サポート内容: • 完全PDFユーザーガイド(全設定説明)
================================================================================ 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
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
あなたがメンバーである任意のチャネルから(プライベートおよび制限されたものを含む)シグナルを直接あなたのMT5にコピーします。  このツールは、トレードを管理し監視するために必要な多くの機能を提供しながら、ユーザーを考慮して設計されています。 この製品は使いやすく、視覚的に魅力的なグラフィカルインターフェースで提供されています。設定をカスタマイズして、数分で製品を使用を開始できます! ユーザーガイド + デモ  | MT4版 | Discord版 デモを試してみたい場合は、ユーザーガイドにアクセスしてください。 Telegram To MT5 受信機は、ストラテジーテスターで動作しません! Telegram To MT5の特徴 複数のチャネルから一度にシグナルをコピー プライベートおよび制限されたチャネルからシグナルをコピー BotトークンまたはChat IDは必要ありません   (必要に応じて使用することができます) リスク%または固定ロットを使用して取引 特定のシンボルを除外 すべてのシグナルをコピーするか、コピーするシグナルをカスタマイズするかを選択 すべてのシグナルを認
# 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
Trade Manager は、リスクを自動的に計算しながら、取引を迅速に開始および終了するのに役立ちます。 過剰取引、復讐取引、感情的な取引を防止する機能が含まれています。 取引は自動的に管理され、アカウントのパフォーマンス指標はグラフで視覚化できます。 これらの機能により、このパネルはすべてのマニュアル トレーダーにとって理想的なものとなり、MetaTrader 5 プラットフォームの強化に役立ちます。多言語サポート。 MT4バージョン  |  ユーザーガイド + デモ Trade Manager はストラテジー テスターでは機能しません。 デモについてはユーザーガイドをご覧ください。 危機管理 % または $ に基づくリスクの自動調整 固定ロットサイズを使用するか、ボリュームとピップに基づいた自動ロットサイズ計算を使用するオプション RR、Pips、または価格を使用した損益分岐点ストップロス設定トレーリングストップロス設定 目標に達したときにすべての取引を自動的に終了するための 1 日あたりの最大損失 (%)。 過度のドローダウンからアカウントを保護し、オーバートレードを防ぎます
動作デモ版ダウンロード Copy Cat More (コピーキャット・モア) MT5 トレードコピー (Trade Copier) は、ローカルのトレードコピーであり、今日のトレード課題のために設計された完全なリスク管理・執行フレームワークです。プロップファーム (prop firm) のチャレンジから個人のポートフォリオ管理まで、堅牢な執行、資金保護、柔軟な設定、高度なトレード処理の組み合わせによって、あらゆる状況に適応します。 このコピーは、マスター (Master、送信側) とスレーブ (Slave、受信側) の両モードで動作し、成行注文・指値注文、トレードの変更、部分決済、両建て決済 (Close By) 操作をリアルタイムで同期します。デモ口座と実口座、トレード用ログインと投資家ログインの両方に対応し、永続的トレードメモリ (Persistent Trade Memory) システムにより、EA・端末・VPS が再起動しても復旧を保証します。一意の ID により複数のマスターとスレーブを同時に管理でき、ブローカー間の差異は接頭辞/接尾辞の調整やカスタムシンボルマッピングに
Timeless Charts
Samuel Manoel De Souza
5 (6)
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
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 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
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.
MT5 to Telegram Signal Provider は、Telegramのチャット、チャンネル、またはグループに 指定された シグナルを送信することができる、完全にカスタマイズ可能な簡単なユーティリティです。これにより、あなたのアカウントは シグナルプロバイダー になります。 競合する製品とは異なり、DLLのインポートは使用していません。 [ デモ ] [ マニュアル ] [ MT4版 ] [ Discord版 ] [ Telegramチャンネル ]  New: [ Telegram To MT5 ] セットアップ ステップバイステップの ユーザーガイド が利用可能です。 Telegram APIの知識は必要ありません。必要な全ては開発者から提供されます。 主な特長 購読者に送信する注文の詳細をカスタマイズする機能 例えば、Bronze、Silver、Goldといった階層型のサブスクリプションモデルを作成できます。Goldサブスクリプションでは、すべてのシグナルが提供されます。 id、シンボル、またはコメントによって注文をフィルターできます 注文が実行されたチャート
Royal Copier
Janet Abu Khalil
5 (1)
Royal Copier — プロフェッショナル MT5 トレードコピー EA Royal Copier は、MetaTrader 5 用のプロフェッショナルなローカルリアルタイムトレードコピー EA です。 現在は 1 つの MT5 Expert Advisor の中に両方の機能が統合されています。 入力設定から、EA を Master モード または Client モード のどちらで動作させるかを選ぶだけです。 つまり、同じ EA を送信元口座でも受信先口座でも使用でき、元のコピー動作をそのまま維持します。 Royal Copier は以下の一般的な組み合わせで口座間コピーをサポートします。 MT5 から MT5 MT5 から MT4 MT4 から MT4 MT4 から MT5 MT4 とコピーする場合は、 MT4_Copier を使用してください。 仕組み Royal Copier は、同じ Windows PC 上の共有ファイルを使用して動作するローカルコピー EA です。 EA が Master モード に設定されている場合、送信元口座を監視し、すべての取引アクティビティを共
MetaTrader 5 用トレーディングパネル — チャートとキーボードから行うプロフェッショナルなワンクリック取引 アクティブトレーダーのために設計された高機能 Trading Panel。標準の MetaTrader 操作よりも、はるかに速く、直感的に、そして効率的に取引を実行できます。 本パネルは、ポジション管理、未決注文管理、利益コントロール、執行スピードをひとつのプロフェッショナルなワークスペースに集約した実践的なソリューションです。 これは単なる補助ツールではありません。MetaTrader 5 のための本格的な trading cockpit です。チャートから直接操作し、キーボードで素早くコマンドを実行し、自動計算や視覚的なガイドを活用することで、手動トレードをより速く、より明確に、より快適にします。 このパネルを使えば、チャート上からワンクリックで注文を実行でき、標準の MetaTrader コントロールと比べて最大 30 倍速く取引操作を行うことができます。 新しいプレミアム版が利用可能です: VirtualTradePad PRO SE で取引ワークフローを強
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
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
作者のその他のプロダクト
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
フィルタ:
レビューなし
レビューに返信