Copy trading EA

# DS_Copy_EA - User Description
DS_Copy_EA is a MetaTrader 5 Expert Advisor that copies trades between MT5 terminals running on the same machine. One EA instance acts as a **Provider** (signal source) and another acts as a **Receiver** (copier). The mode is selected in the EA settings.

**How it works:**

1. The **Provider** publishes its open positions internally every 500ms
2. The **Receiver** reads every 1 second, detects new/changed/closed positions, and mirrors them on its own account
3. Internal communication - no network, no latency, no external services

**Key capabilities:**

- Copy from up to 3 providers simultaneously on one receiver
- Per-provider copy percentage (e.g. copy 10% of provider's lot size)
- Per-provider symbol mapping with wildcards (e.g. EURUSD on provider = EURUSDx on receiver)
- Hard stop: auto-close everything if daily equity drops beyond a threshold
- Margin protection, spread filters, retry logic
- On-chart dashboard showing live status
- Survives EA restarts (rebuilds position tracking from magic numbers)


### Step 1: Set up the Provider

1. Open the MT5 terminal where the signal source trades
2. Drag `DS_Copy_EA` onto any chart
3. In the settings dialog:
   - **EA Mode** = `Provider (Signal Source)`
   - **Provider ID** = any unique name, e.g. `MySignal`
   - Leave other settings at defaults
4. Click OK
5. The dashboard should show "Publishing: N positions" where N matches your open trades

### Step 2: Set up the Receiver

1. Open the MT5 terminal where you want trades copied
2. Drag `DS_Copy_EA` onto any chart
3. In the settings dialog:
   - **EA Mode** = `Receiver (Copier)`
   - **Provider 1 ID** = the exact same name you used on the Provider, e.g. `MySignal`
   - **Provider 1 copy %** = how much of the provider's lot to copy (e.g. 50 = half)
   - **Provider 1 symbol map** = how to translate symbols (see Symbol Mapping below)
4. Click OK
5. Existing provider positions should start copying within seconds

### Step 3: Verify

- **Provider dashboard**: shows "Publishing: N positions" and "Positions on account: N"
- **Receiver dashboard**: shows provider as "LIVE", copied position count, equity/drawdown
- **Experts tab** (Ctrl+E): shows log messages for every copy/close action

> **Important**: Both terminals must be running on the same machine. The Provider ID must match exactly between Provider and Receiver (whitespace and invalid characters are auto-stripped).

---

## Settings Reference

### EA Mode

| Parameter | Default | Description |
|-----------|---------|-------------|
| EA Mode | Receiver (Copier) | Select Provider or Receiver mode |

### Provider Settings (Provider mode only)

| Parameter | Default | Description |
|-----------|---------|-------------|
| Provider ID | PROVIDER_1 | Unique name for this provider. Must match on the receiver side. |
| File write interval (ms) | 500 | How often to update the shared file. Lower = faster but more disk I/O. |
| Only publish these symbols | *(empty)* | Filter: only publish positions in these symbols. Semicolon-separated. Empty = publish all. |
| Only publish positions with specific magic | false | Filter: only publish positions with a specific magic number. |
| Magic number to filter by | 0 | The magic number to filter. Only used if the above is true. |

### Receiver: Provider 1/2/3

Each provider slot has these settings:

| Parameter | Default | Description |
|-----------|---------|-------------|
| Provider ID | PROVIDER_1 / *(empty)* / *(empty)* | The Provider ID to subscribe to. Empty = slot disabled. |
| Copy % of lot | 100.0 | Percentage of the provider's lot size to copy. 100 = same size, 50 = half, 200 = double. |
| Max positions | 20 | Maximum positions to copy from this provider. |
| Symbol map | `*=*` | Symbol mapping rules for this provider. See Symbol Mapping below. |

### Risk Management (Receiver only)

| Parameter | Default | Description |
|-----------|---------|-------------|
| Hard stop equity % | 50.0 | Close ALL positions if equity drops this % from day-start equity. 0 = disabled. |
| Min margin level % | 150.0 | Don't open new positions if margin level would drop below this. 0 = disabled. |
| Max spread (pips) | 0 | Skip copying if spread exceeds this. 0 = disabled (no spread filter). |
| Max slippage (points) | 300 | Maximum allowed slippage when opening/closing positions. |
| Max total positions | 100 | Hard cap on total copied positions across all providers. |

### Timing

| Parameter | Default | Description |
|-----------|---------|-------------|
| Polling interval (ms) | 1000 | How often the receiver checks provider files. Lower = faster reaction, more CPU. |
| Heartbeat timeout (sec) | 30 | If provider file hasn't been updated in this many seconds, consider it disconnected. |
| Trading hours start | *(empty)* | Only copy during these hours. Format: HH:MM. Empty = 24 hours. |
| Trading hours end | *(empty)* | End of trading hours. Supports overnight ranges (e.g. start=22:00, end=06:00). |

### Behavior (Receiver only)

| Parameter | Default | Description |
|-----------|---------|-------------|
| On provider disconnect | Keep positions open | What to do when a provider's heartbeat goes stale. Options: Keep / Close immediately / Close after delay. |
| Disconnect close delay (sec) | 300 | How long to wait before closing positions of a disconnected provider (if Close after delay is selected). |
| Copy stop loss | true | Mirror the provider's stop loss on copied positions. |
| Copy take profit | true | Mirror the provider's take profit on copied positions. |
| Max retry attempts | 10 | How many times to retry a failed order before giving up. |
| Delay between retries (ms) | 3000 | Wait time between retry attempts. |
| Close confirm seconds | 3 | A position must be absent from the provider file for this many seconds before closing. Protects against file-write races. |
| Close confirm reads | 3 | A position must be absent for this many consecutive file reads before closing. |
| Close all on EA removal | false | If true, close all copied positions when the EA is removed from the chart. |

### Identification (Receiver only)

| Parameter | Default | Description |
|-----------|---------|-------------|
| Base magic number | 900000 | Base for magic number encoding. Each provider gets an offset: Provider 1 = 901000, Provider 2 = 902000, Provider 3 = 903000. |

### Display & Logging

| Parameter | Default | Description |
|-----------|---------|-------------|
| Show dashboard | true | Show the on-chart status panel. |
| Enable file logging | true | Write log files to the Common Files folder. |
| Log level | 1 | 0 = Off, 1 = Info (normal), 2 = Debug (verbose - use for troubleshooting). |

---

## Symbol Mapping Guide

Each provider has its own symbol mapping rules. The format is `SOURCE=DESTINATION` pairs separated by semicolons.

### Basic Syntax

```
EURUSD=EURUSDx;GBPUSD=GBPUSDx;XAUUSD=XAUUSDx
```

This maps provider's `EURUSD` to receiver's `EURUSDx`, etc. Symbols not listed pass through unchanged.

### Wildcard Syntax

Use `*` as a wildcard to create rules that match multiple symbols:

| Rule | Meaning | Example |
|------|---------|---------|
| `*=*` | Pass-through (no change) | EURUSD -> EURUSD |
| `*=*x` | Append "x" to all symbols | EURUSD -> EURUSDx |
| `*=*.p` | Append ".p" to all symbols | EURUSD -> EURUSD.p |
| `*.s=*` | Remove ".s" suffix | EURUSD.s -> EURUSD |
| `*.raw=*.p` | Replace ".raw" with ".p" | EURUSD.raw -> EURUSD.p |

### Mixing Exact and Wildcard Rules

Exact matches always take priority over wildcards, regardless of order:

```
*=*x;BTCUSD=BTCUSD
```

| Provider Symbol | Matched Rule | Receiver Symbol |
|----------------|--------------|-----------------|
| EURUSD | `*=*x` (wildcard) | EURUSDx |
| GBPUSD | `*=*x` (wildcard) | GBPUSDx |
| XAUUSD | `*=*x` (wildcard) | XAUUSDx |
| BTCUSD | `BTCUSD=BTCUSD` (exact) | BTCUSD |

Another example - provider uses `.s` suffix, but gold has a different name:

```
XAUUSD.s=GOLD;*.s=*
```

| Provider Symbol | Matched Rule | Receiver Symbol |
|----------------|--------------|-----------------|
| EURUSD.s | `*.s=*` (wildcard) | EURUSD |
| XAUUSD.s | `XAUUSD.s=GOLD` (exact) | GOLD |
| GBPUSD.s | `*.s=*` (wildcard) | GBPUSD |

### Default

The default mapping is `*=*` which means all symbols pass through unchanged. This works when both accounts use the same broker with the same symbol names.

---

## Safety Features

### Hard Stop (Daily Equity Protection)

Monitors account equity against the day's starting equity. If the drawdown exceeds the configured threshold, ALL copied positions are closed immediately and no new positions are opened until the next trading day.

- **Threshold**: configurable (default 50%)
- **Resets**: automatically at the start of each new trading day
- **Dashboard**: shows "Hard Stop: ARMED" (green) or "HARD STOP: TRIGGERED" (red)
- **Alert**: MT5 alert popup when triggered

Example: Day starts at $10,000 equity, hard stop at 50%. If equity drops to $5,000, all positions close.

### Margin Protection

Before every trade, the EA checks:

1. Is there enough free margin for this position?
2. Would the projected margin level stay above the minimum threshold (default 150%)?

If either check fails, the position is skipped (not retried for margin).

### Close Confirmation

When a position disappears from the provider file, the receiver does NOT close immediately. Instead:

1. Marks the position as "missing" and starts a timer
2. Must be absent for 3 consecutive file reads AND 3 seconds (configurable)
3. If the position reappears during confirmation, counters reset - position stays open
4. If the provider's heartbeat is stale, close checks are skipped entirely (unreliable data)

This prevents false closures during rapid trading or file-write races.

### Retry Logic

If an order fails (requote, timeout, server busy), the EA retries up to 10 times with a 3-second delay between attempts. Non-retryable errors (no money, invalid volume, trading disabled) stop immediately.

### Anti-Flood Protection

- Minimum 500ms between order sends (rate limiting)
- 5-second cooldown between volume modifications on the same position
- Never re-copies a position that's already tracked
- Poll interval prevents excessive file reads (default 1 second)

### Volume Resync

If the copy percentage is changed while positions are open, the EA closes the affected positions and reopens them with the correct volume on the next cycle. This prevents the "add volume" infinite loop that would occur in hedging mode.

### Provider Heartbeat

The receiver tracks when each provider file was last updated. If a provider's file hasn't been updated in 30 seconds (configurable), it's marked as disconnected. The dashboard shows "DEAD" in red. The receiver will not close positions based on stale file data.

---

## Dashboard

### Provider Mode Dashboard

```
--- DS COPY EA [PROVIDER] ---
Provider ID: MySignal
Account: 12345678  BrokerServer
Positions on account: 4
Publishing: 4 positions
Filters: None (all positions)
File: CopyTrade_Provider_MySignal.csv
Last update: 14:30:45
```

- **Positions on account**: total positions detected by `PositionsTotal()` - diagnostic
- **Publishing**: how many passed the filters and were written to file
- **Filters**: shows active symbol/magic filters (or "None")
- **File**: the CSV filename being written

### Receiver Mode Dashboard

```
--- DS COPY EA [RECEIVER] ---
Equity: 10250.00  Balance: 10000.00
Margin Level: 450.2%
Drawdown: 2.5% / 50%  DayStart: 10512.00
Hard Stop: ARMED
Copied Positions: 5
PROVIDER_1: LIVE  Copy: 50%  Pos: 3
  Heartbeat: 2s ago
PROVIDER_2: LIVE  Copy: 100%  Pos: 2
  Heartbeat: 1s ago
Last: (last error message if any)
```
-
## Troubleshooting

### Provider shows "Publishing: 0 positions" but I have trades open

1. Check **Positions on account** on the dashboard - if this is also 0, the EA can't see your positions
2. Check if symbol filter or magic filter is accidentally active (look at **Filters** line)
3. Make sure "Allow Algo Trading" is enabled in MT5 settings
4. Set Log Level to 2 (Debug) and check Experts tab for detailed position enumeration

### Receiver shows "Cannot read provider file"
1. **Provider ID mismatch**: the ID must match EXACTLY between Provider and Receiver (check for spaces)
2. **Different Common Files folder**: check both terminals log `Common Files path:` at startup - they must be the same
3. **Provider not running**: make sure the provider EA is attached and active

### Receiver reads file but shows 0 positions / stale heartbeat

```
WARNING: Provider 'XYZ' heartbeat stale (45s) positions=0
```

1. The provider may have been restarted or its ID was changed
2. An old file from a previous session still exists - delete `CopyTrade_Provider_*.csv` from the Common Files folder and restart both EAs
3. The provider is running with a different ID than the receiver expects

### Positions not copying

Set Log Level to 2 (Debug) on the receiver and check:

1. `Symbol map: EURUSD -> ???` - verify the mapped symbol name is correct
2. `Symbol not tradeable: XYZ` - the mapped symbol doesn't exist on the receiver's broker
3. `Insufficient margin` - not enough margin to open the position
4. `Max total positions reached` - position limit hit
5. `Max positions for ProviderX reached` - per-provider limit hit

### Positions closed unexpectedly

Check the log for what triggered the close:

- `Close confirmed: ... absent for Xs` - provider closed the position (or file-read issue)
- `Hard stop closed:` - equity drawdown triggered the hard stop
- `Volume resync closed:` - copy percentage was changed, position closed for reopen
- `Closing positions for disconnected provider` - heartbeat timeout with disconnect action set to Close
Рекомендуем также
Advanced Envelope Grid Scalper EA Advanced Envelope Grid Scalper EA is a fully automated, high-precision algorithmic trading system designed for traders who want to capitalize on market volatility, breakout momentum, and mean-reversion retracements. Built on a sophisticated multi-stage entry framework, this Expert Advisor (EA) combines the structural power of the Envelopes Indicator with dynamic volume management to safely navigate both trending and ranging market conditions. Core Trading St
VR Smart Grid MT5
Vladimir Pastushak
4.27 (30)
VR Smart Grid — это полнофункциональный торговый советник для MetaTrader 4 и MetaTrader 5, разработанный на основе классической стратегии сеточной торговли. Робот самостоятельно открывает позиции, управляет ими и закрывает частями, создавая эффективную сетку ордеров, которая адаптируется к изменениям рынка. За 15 лет разработки советник прошёл тысячи вариаций и тестирований — это результат систематического совершенствования на реальных и демо-счётах. Файлы настроек (set files), демо версии проду
Monei Flow Index Grid EA
AL MOOSAWI ABDULLAH JAFFER BAQER
• Please test the product in the Strategy Tester before purchasing to understand how it works. • If you face any issues, contact me via private message—I’m always available to help. • After purchase, send me a screenshot of your order to receive a   FREE EA   as a gift. Money Flow Index Grid System Volume-Weighted Reversals with Advanced Drawdown Control Most grid systems fail because they rely entirely on price action while ignoring the underlying flow of buying and selling pressure. The Money
Финансовый Робот SolarTrade Suite: LaunchPad Market Expert - предназначенный для открытия торговых сделок! Это торговый робот, который использует особые инновационные и передовые алгоритмы для рассчета своих значений, Ваш Помошник в Мире Финансовых Рынков. Испольуйте наш набор индикаторов из серии SolarTrade Suite чтобы лучше выбрать момент для запуска этого робота. Проверьте другие наши продукты из серии SolarTrade Suite внизу описания. Хотите уверенно ориентироваться в мире инвестиций и фи
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
Bober Real MT5
Arnold Bobrinskii
4.88 (16)
Bober Real MT5 — полностью автоматический советник для торговли на рынке Forex. Робот создан в 2014 году и за этот период сделал множество прибыльных сделок, показав более 7000% прироста депозита на моем личном счете. Было выпущено много обновлений, но версия 2019 года считается самой стабильной и прибыльной. Робот можно запускать на любых инструментах, но лучшие результаты достигаются на EURGBP , GBPUSD , таймфрейм M5 . Робот не покажет хорошие результаты в тестере или на реальном счете, если
Gold Ray
Dmitriq Evgenoeviz Ko
Gold Ray MT5 — Искусство золотого сечения в трейдинге Gold Ray — это не просто торговый робот. Это кульминация многолетних исследований динамики движения золота ( XAUUSD ), воплощенная в высокоточном алгоритме спектрального анализа. В то время как большинство советников используют устаревшие индикаторы, Gold Ray работает с самой структурой цены, вычисляя траекторию «золотого луча» — момента, когда рыночная ликвидность и волатильность сливаются в мощный направленный импульс. Почему Gold Ray — эт
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
HedgingMartingale
OMG FZE LLC
4.72 (129)
HedgingMartingale EA [ Set Files ]   ,   [ My Channel ]  ,   [ My Products ]  ,  [ Blog ]     ,  [ Public Chat ] Рекомендуемые счета: Стандартные с высоким кредитным плечом, ECN, Raw; Центовые; Проп-фирмы Этот EA представляет собой торговый алгоритм, который сочетает хеджирование и интеллектуальное управление рисками со стратегией Мартингейла. Он разработан для обеспечения стабильной производительности в сильных рыночных условиях, где вы не можете предсказать направление тренда. При использован
FREE
G.X.L (GALAXY ELEGANCE) Product Overview G.X.L is an automated trading robot for MetaTrader 5 that operates based on price action analysis. The system processes real-time market data to identify trading opportunities. It provides information and recommendations aligned with user-defined trading preferences. Core Functionality The robot analyzes price movements without relying on traditional lagging indicators. It focuses on current market structure, including swing points and fractals, to determ
Grid Scalper Pro Plus
Meet Shah Kamakumar Suryakant Shah
GRID SCALPER PRO PLUS v2.2 Institutional Scaling Engine  Turn your MetaTrader 5 into a 24/7 Wealth Machine. Engineered for Stability. Validated for Security. Built for Profit. Most Grid EAs are dangerous. They keep buying until your account hits Margin Call. [b]We fixed that.[/b] Universal Dynamic Risk Guard (UDRG) Mathematical protection that physically blocks trades if your margin gets too tight.  Netting Account Native The only EA optimized for MT5 Netting accounts with millisecond
Trion Miner EA MT5 is built based on smart grid averaging hedging system, which has been perfected. If these strategies run individually without any combination of other strategies, it will be very risky. And it will end up blowing out your account. By combining these three strategies and adding a systematic system, we can cover the weakness of each strategy and build a very profitable EA. Trion Miner use multi-currency hedging system that will make the trade always profitable wherever the marke
SmartRisk MA Pro Обзор стратегии: SmartRisk MA Pro — это оптимизированная, риск-ориентированная автоматическая торговая стратегия (советник), разработанная для платформы MetaTrader 5. Она предназначена для идентификации торговых возможностей на основе динамики ценовых отклонений от скользящих средних и обладает комплексной системой управления капиталом. Советник работает по логике "нового бара", что обеспечивает стабильность и предсказуемость исполнения торговых сигналов. Принципы работы и торг
"Universal US100 HFT" — это высокочастотный скальпинговый бот, разработанный для работы с индексом NASDAQ 100 (US100). Робот ориентирован на краткосрочные сделки, используя малейшие колебания рынка для получения прибыли. Бот не применяет рискованные стратегии, такие как сетка или мартингейл, что делает его более безопасным и устойчивым к рыночным изменениям. Основные особенности: Высокочастотный скальпинг:   Бот ориентирован на быстрые сделки с минимальным временем удержания позиций, что позволя
LIMINAL Institutional Trader v1.91 — Contrast-State Modelling EA for MetaTrader 5 LIMINAL Institutional Trader is a ground-up Multi Currency - Expert Advisor built natively around the Contrast-State Modelling suite — CSM, TPE, and DEE designed to trade 24/5 using Prop Firm Grade rules. The LIMINAL signals are the primary decision engine, not a filter layer on top of legacy indicator logic. The EA trades only when a regime transition is actively forming. The CSM (Contrast State Modelling) indicat
Cryptosecurency – полностью автоматический трендовый торговый советник для торговли криптовалютами (Bitcoin, Etherium и другие). Советник входит в сделку в моменты повышенной волатильности в сторону импульса. Определение импульса происходит по одному из двух алгоритмов: По процентному изменению цены за определенный временной период или по встроенным индикаторам на основе полос Боллинджера. Для измерения силы тренда может быть использован индикатор ADX . Закрытие сделок происходит по Stop Loss /
MACD Trend Pro
Katlego Frans Manyathela
Smart Trend Momentum EA (M30) — VWAP + EMA + MACD Strategy Smart Trend Momentum EA is a fully automated trading system designed for the MetaTrader 5 platform, built to identify and trade high-probability trend opportunities using a combination of trend alignment, institutional bias, and momentum confirmation . The EA operates on the M30 timeframe and is optimized for the following symbols: XAUUSD (Gold) XAGUSD (Silver) BTCUSD (Bitcoin) EURUSD GBPUSD   Trading Strategy The system follows a struct
Experience the immense potential of the Alligator indicator like never before with our Alligator Expert Advisor. This powerful tool is meticulously designed to harness the wisdom of this iconic indicator and elevate your trading to new heights.  The Alligator indicator, created by legendary trader Bill Williams, is not just a tool – it's a philosophy. It's based on the concept that the market exhibits different phases – sleeping, waking, and eating. By understanding these phases, you gain a rema
10-Year Optimized EA for EURUSD H1 This Expert Advisor is specifically designed and optimized for the EURUSD pair on the H1 timeframe. This strategy has been optimized to adapt to both trending and ranging market conditions, ensuring consistent performance over time. Risk is set at about 3% of balance, the number of lots placed on the order will change when the balance changes I don't want to waste your time explaining too much, see the backtest results for each cycle below, since 2014. Thank
Prime X
Husain A M A Alasfour
Одна покупка. Три мощные версии. Выберите режим, подходящий вашему стилю торговли — Standard, Hero или Attack — всё включено после единственной покупки. Prime X — это автоматический торговый советник для MetaTrader 5, разработанный исключительно для торговли XAUUSD (золото) на таймфрейме H1 . Советник сочетает многоиндикаторный технический анализ со структурированной системой управления рисками. Принцип работы Prime X использует систему оценки сигналов, которая требует одновременного подтвержден
Pew Pew EA – Советник Mean Reversion Grid для MT5 Pew Pew — это продвинутый торговый советник, основанный на логике возврата к среднему, с прогнозируемой системой grid recovery, разработанной для адаптации к реальным рыночным условиям. Советник был создан в результате длительной разработки, тестирования и доработки. Он использует структурированную торговую логику для настройки поведения recovery-системы в зависимости от волатильности, новостного фона и изменения рыночного поведения. EA разработа
This EA is an   RSI Crossover Trading System   with advanced position management features . This is not one of those EAs with fake/manipulated test results out there. RSI Crossover Advanced Robot  is robust and  suitable for traders who want automated RSI-based trading with professional-grade position management. It's particularly useful in trending markets where RSI signals can provide reliable entry and exit points. Recommended settings tested with 1HR timeframe using ICMarkets Tickers on 1 y
Представляем Neural Bitcoin Impulse - инновационный торговый бот, созданный с использованием технологии обучения нейросети на объёмных массивах рыночных данных. Встроенная математическая модель искусственного интеллекта ищет потенциальный импульс каждого следующего рыночного бара и использует образовавшиеся паттерны дивергенции и конвергенции между прогностическими показателями и ценой для формирования высокоточных разворотных точек открытия торговых позиций. В основе торгового робота лежит ра
Aegis BTC Balanced EA Introduction Aegis BTC Balanced EA is a trend-following Expert Advisor designed specifically for BTCUSD on the H4 timeframe . This EA focuses on a balanced approach between profit potential and risk control, aiming to provide a stable trading experience for users who prefer a moderate risk profile. The Aegis BTC Series offers three different risk styles: Stable — Lower risk approach Balanced — Balanced performance and risk Aggressive — Higher growth potential with higher ri
GoldSupreme is a sophisticated Expert Advisor designed for the gold market (XAUUSD). Using a combination of advanced technical indicators and rigorous selection criteria, GoldSupreme aims to identify only the best trading opportunities in gold, optimizing profit potential while minimizing risk. Key Features: Selection of the Best Trades: GoldSupreme employs a set of technical indicators, including exponential moving averages (EMA), stochastic oscillators, and Bollinger Bands, to pinpoint the be
Oxi – Mean Reversion DCA Riser (MT5 Expert Advisor) Oxi is a fully automated MetaTrader 5 Expert Advisor that combines advanced Mean Reversion logic with strategic Dollar-Cost Averaging (DCA) to help you grow your account steadily. Designed to work across multiple currency pairs using adaptive analysis and smart trade management, Oxi offers a high win rate, flexible controls, and reliable recovery—perfect for traders who want performance with peace of mind. Key Features: ️ Plug & Pla
Force Index Grid EA
AL MOOSAWI ABDULLAH JAFFER BAQER
• Please test the product in the Strategy Tester before purchasing to understand how it works. • If you face any issues, contact me via private message—I’m always available to help. • After purchase, send me a screenshot of your order to receive a   FREE EA   as a gift. Force Index Grid System Volume-Validated Momentum with Advanced Drawdown Control Most grid systems fail because they rely only on price action while ignoring the actual money flowing through the market. The Force Index Grid EA i
️ Aureus Edge Gold Trader (v2.10) The Specialist Engine for XAUUSD Aureus Edge is not a "jack-of-all-trades" bot. It is a high-precision Expert Advisor engineered strictly for Gold (XAUUSD) . While it includes stability protocols to pass global market validation, every line of logic is optimized for the unique volatility and liquidity of the Gold market . ️ Built for Professional Capital Preservation Unlike popular EAs that use dangerous recovery grids, Aureus Edge focuses on disciplined br
Boleta Marota
Renan Tavares Dos Santos Martins
Boleta Marota is a trading tool designed for traders who value speed, clarity, and full control when executing orders on MetaTrader 5. Created by Renan Martins , Boleta Marota offers a clean and intuitive interface that brings the most important trading actions together, allowing you to buy, sell, move to breakeven, and cancel orders with just one click. The interface is built for real trading conditions: Clean and straightforward design Essential information always visible Reduced operati
С этим продуктом покупают
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (8)
Легенда продолжается. Королева эволюционирует. Добро пожаловать в Quantum Queen X — новое поколение легендарной торговой системы GOLD, основанной на проверенном успехе Quantum Queen. Quantum Queen X построена на том же проверенном движке, что и Quantum Queen, и представляет собой новый мощный пользовательский режим, который позволяет трейдерам выбирать, какие именно стратегии включать или отключать. Каждая стратегия была индивидуально проверена, доработана и оптимизирована для обеспечения еще лу
Lizard
Marco Scherer
5 (29)
ЧТО ТАКОЕ LIZARD? Lizard - это полностью автоматический советник (Expert Advisor), разработанный исключительно для XAUUSD (золото) на MetaTrader 5. Он использует мультистратегическую систему пробоя на основе свингов, которая определяет ключевые структурные уровни на графике и размещает отложенные стоп-ордера в точно рассчитанных точках входа. Без мартингейла. Без сетки. Без усреднения. Каждая сделка имеет заданный Stop Loss и Take Profit и активно управляется многоуровневой системой выхода, авто
Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
The Gold Reaper MT5
Profalgo Limited
4.47 (103)
ГОТОВНОСТЬ К ИСПОЛЬЗОВАНИЮ ПРОПОРЦИИ! (   скачать SETFILE   ) ПРЕДУПРЕЖДЕНИЕ: Осталось всего несколько экземпляров по текущей цене! Окончательная цена: 990$ Получите 1 советника бесплатно (на 3 торговых аккаунта) -> свяжитесь со мной после покупки Выгодное комплексное предложение     ->     нажмите здесь ПРИСОЕДИНИТЬСЯ К ОБЩЕСТВЕННОЙ ГРУППЕ:   Нажмите здесь   Сигнал в реальном времени Сигнал клиента Обзоры YouTube ПОСЛЕДНЕЕ РУКОВОДСТВО Добро пожаловать в «Золотого Жнеца»! Созданный на основе
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.45 (120)
Меньше сделок. Лучшие сделки. Стабильность прежде всего. • Живой сигнал Режим 1   Живой сигнал Режим 2 Twister Pro EA — это высокоточный скальпинговый советник, разработанный исключительно для XAUUSD (Золото) на таймфрейме M15. Торгует реже — но каждая сделка имеет смысл. Каждый вход проходит через 5 независимых уровней проверки перед открытием ордера, что обеспечивает чрезвычайно высокую точность на стандартной конфигурации. ДВА РЕЖИМА: • Режим 1 (рекомендуется) — Очень высокая точность, ма
Adaptive Gold Scalper Important Pre-notice: This strategy requires a long period of practical verification, and favorable trading returns cannot be guaranteed in the short run. Traders must select brokers with ultra-low order latency, minimal slippage and zero/low stop level requirement; poor broker conditions will lead to disastrous trading results. I have over 14 years of professional trading experience. With proper brokerage conditions and sufficient running time, this fully automated scalpi
ВАЖНЫЙ   : Этот пакет будет продаваться по текущей цене только в очень ограниченном количестве экземпляров.    Цена очень быстро вырастет до 1999$    Включено более 100 стратегий   , и их будет еще больше! БОНУС   : При цене 1499$ или выше — выберите  5     моих других советника бесплатно!  ВСЕ ФАЙЛЫ НАБОРА ПОЛНОЕ РУКОВОДСТВО ПО НАСТРОЙКЕ И ОПТИМИЗАЦИИ ВИДЕО РУКОВОДСТВО ЖИВЫЕ СИГНАЛЫ ОБЗОР (третья сторона) NEW - VERSION 5.0 - ONECHARTSETUP NEW - 30-STRATEGIES LIVE SIGNAL Добро пожаловать в И
Smart Gold Hunter
Barbaros Bulent Kortarla
5 (18)
Smart Gold Hunter — это Expert Advisor для торговли XAUUSD / Gold на MetaTrader 5. Он создан для трейдеров, которые предпочитают советник по золоту без сетки, без мартингейла, с реальными Stop Loss и Take Profit, а также с контролируемым управлением риском. Вы можете проверить live-сигналы перед покупкой: Live Signal - IC Markets: https://www.mql5.com/en/signals/2365400?source=Site +Signals+My Live Signal - Ultima Markets: https://www.mql5.com/en/signals/2376242?source=Site +Signals+My Smart Go
Zerqon EA
Vladimir Lekhovitser
3.6 (25)
Торговый сигнал в реальном времени Публичный мониторинг торговой активности в режиме реального времени: https://www.mql5.com/ru/signals/2372719 Официальная информация Профиль продавца Официальный канал Руководство пользователя Инструкции по установке и использованию: Открыть руководство пользователя Zerqon EA — это адаптивный экспертный советник, разработанный специально для торговли XAUUSD. Стратегия основана на модели нейронной сети Deep LSTM, интегрированной через ONNX, что позволяе
Gold Snap
Chen Jia Qi
4.69 (16)
Gold Snap — система быстрого захвата прибыли на золоте Живой сигнал: https://www.mql5.com/en/signals/2362714 Живой сигнал 2: https://www.mql5.com/en/signals/2372603 Реальный сигнал v2.0: https://www.mql5.com/en/signals/2379945 Осталось только 3 копии по текущей цене. Скоро цена будет повышена до $999. Важно: После покупки, пожалуйста, свяжитесь с нами через личные сообщения, чтобы получить руководство пользователя, рекомендуемые настройки, примечания по использованию и поддержку обновлений. ht
Quantum King EA
Bogdan Ion Puscasu
4.96 (211)
Quantum King EA — интеллектуальная мощь, усовершенствованная для каждого трейдера IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. Специальная цена запуска Живой сигнал:       КЛИКНИТЕ СЮДА Версия MT4:   ЩЕЛКНИТЕ ЗДЕСЬ Канал Quantum King:       Кликните сюда ***Купите Quantum King MT5 и получите Quantum StarMan бесплатно!*** За подробностями обращайтесь в личном сообщении! Управляйте   своей торговлей точно и
Goldwave EA MT5
Shengzu Zhong
4.73 (71)
Реальный торговый счёт   LIVE SIGNAL (IC MARKETS): https://www.mql5.com/en/signals/2339082 Данный EA использует абсолютно ту же торговую логику и те же правила исполнения, что и верифицированный сигнал реальной торговли, представленный на MQL5.При использовании рекомендованных и оптимизированных настроек, а также при работе с надёжным ECN / RAW-spread брокером (например, IC Markets или TMGM) , поведение EA в реальной торговле спроектировано таким образом, чтобы максимально соответствовать струк
NEXORION: Initium Novum — Детерминированная логика и алгоритмический синтез NEXORION — это аналитический комплекс институционального уровня, базирующийся на строгих математических алгоритмах обработки ликвидности. В основу проекта заложена концепция прозрачности вычислений: советник преобразует хаотичные котировки в структурированные геометрические зоны, визуализируя процесс принятия решений непосредственно на торговом графике. Мониторинг в реальном времени https://www.mql5.com/es/signals/237233
Gold Neural Core — Hyper-Scalping Grid System for XAUUSD Learn how I personally manage risk when using grid systems:  https://www.mql5.com/en/blogs/post/767250 Join my open group for questions related to any of my products:  https://www.mql5.com/en/messages/014beab2560cdc01 Read the user guide to any TickStack grid system:  https://www.mql5.com/en/blogs/post/767232 Gold Neural Core is a high-frequency grid trading system engineered specifically for gold (XAUUSD), combining momentum and trend-bas
AXIO Gold EA
Shengzu Zhong
4.6 (10)
AXIO GOLD EA MT5 Ссылка на реальный торговый сигнал MQL5 https://www.mql5.com/en/signals/2378982?source=Site+Signals+My AXIO GOLD EA MT5 — это автоматическая торговая система, разработанная специально для торговли золотом XAUUSD на платформе MetaTrader 5. Этот советник использует ту же логику и те же правила исполнения, что и проверенный реальный сигнал, представленный на MQL5. При использовании рекомендованных оптимизированных настроек у надежного брокера с ECN/RAW-спредом, например TMGM , пове
Mavrik Scalper
Vladimir Lekhovitser
4 (1)
Торговый сигнал в реальном времени Публичный мониторинг торговой активности в режиме реального времени: https://www.mql5.com/ru/signals/2378119 Официальная информация Профиль продавца Официальный канал Руководство пользователя Инструкции по установке и использованию: Открыть руководство пользователя Mavrik Scalper представляет новое поколение торговых советников, разработанных на основе архитектуры нейронной сети Hybrid Attention. В отличие от традиционных алгоритмических стратегий, к
Gold House MT5
Chen Jia Qi
4.59 (58)
Gold House — Система торговли на пробоях свинг-структуры золота Один советник. Три торговых режима. Выберите тот, который подходит именно вам. Без сетки. Без мартингейла. Цена будет увеличиваться на 50 долларов после каждых 10 покупок. Окончательная запланированная цена: 1 999 долларов. Торговые сигналы в реальном времени: Режим Profit Priority: https://www.mql5.com/en/signals/2359124 Режим BE Priority:  https://www.mql5.com/en/signals/2372604 Адаптивный режим:   https://www.mql5.com/en/sign
Logan MT5
Thierry Ouellet
5 (6)
LIMITED TIME OFFER AT 249$ Price will go up at  499$ on July 24th! Logan MT5 isn't your typical Gold Grid EA that blindly opens trade after trade, consuming your margin and putting your capital at unnecessary risk. Instead, it patiently waits for high-probability entry opportunities and uses an intelligent recovery system that combines ATR-based grid spacing with dynamic lot progression . This allows it to withstand adverse market movements that would wipe out most conventional grid EAs—includ
SomaOil
Andrii Soma
5 (2)
SomaOil — мультистратегийный пробойный советник для MetaTrader 5, созданный исключительно для сырой нефти WTI (XTIUSD). Один график, один советник, 20 независимых стратегий, работающих вместе как единый диверсифицированный портфель. Живой сигнал. Чтобы сделать его доступным на старте, я использую прозрачную модель поэтапного роста цены: Стартовая цена: 100 USD (48 часов) Начиная с понедельника цена увеличивается на 100 USD за каждые 10 проданных копий Цена повышается не чаще одного раза в день,
Smart Gold Impulse
Barbaros Bulent Kortarla
4 (6)
Smart Gold Impulse теперь доступен на этапе специального раннего запуска. Это советник (EA), который я сейчас использую с впечатляющими результатами на своем реальном сигнальном счете в Ultima Markets. Вы можете проверить текущую доходность в результатах живых сигналов Ultima, где Smart Gold Impulse уже продемонстрировал очень сильный потенциал в реальных рыночных условиях. Тот же сет-файл (set file), который используется на моем реальном счете в Ultima, будет предоставлен исключительно поку''
Pulse Engine
Jimmy Peter Eriksson
3.94 (34)
ОБНОВЛЕНИЕ - ОСТАЛОСЬ ВСЕГО НЕСКОЛЬКО ЭКЗЕМПЛЯРОВ ПО ТЕКУЩЕЙ ЦЕНЕ! Главная цель этой системы — долговременная работа в режиме реального времени без использования каких-либо рискованных мартингейлов или сеток.  ОЧЕНЬ ОГРАНИЧЕННОЕ КОЛИЧЕСТВО ЭКЗЕМПЛЯРОВ ПО ТЕКУЩЕЙ ЦЕНЕ Окончательная цена: 1499 долларов США [Сигнал в реальном времени]    |    [Результаты тестирования]    |    [Руководство по настройке]    |    [Результаты FTMO] Другой подход к торговле Торговая система Pulse Engine не использует н
Scalper speed with sniper entries. Built for Gold. Wave Rider 5.0 is out (see  Announcement ) $499 for a limited time  before the regular $599 price kicks in. Check the Live signal  or Manual  or  Broker performance Version 5.0 upgrade notice: Close all Wave Rider positions before updating. Strategy Magic Numbers and several input names changed. Review your settings and save a new preset because older sets or templates may not restore every option. New version runs best on VT Markets, Vantage, B
Quantum Emperor MT5
Bogdan Ion Puscasu
4.86 (507)
Представляем       Quantum Emperor EA   , новаторский советник MQL5, который меняет ваш подход к торговле престижной парой GBPUSD! Разработан командой опытных трейдеров с опытом торговли более 13 лет. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Купите Quantum Emperor EA и вы можете получить  Quantum StarMan   бесплатно!*** За подробностями обращайтесь в личном сообщении Подтвержденный сигнал:   нажмите здесь В
BB Return mt5
Leonid Arkhipov
4.5 (123)
BB Return — советник для торговли золотом (XAUUSD). Эту торговую идею я использовал ранее в ручной торговле. В основе стратегии — возврат цены к диапазону Bollinger Bands , но не в лоб и не по каждому касанию. Для рынка золота одних лент недостаточно, поэтому в советнике применяются дополнительные фильтры, отсекающие лишние и нерабочие ситуации. Открываются только те сделки, где логика возврата действительно оправдана. Global update on June 14th   Принципы торговли — в торговле не используются с
SixtyNine EA
Farzad Saadatinia
5 (3)
SixtyNine EA – Экспертный советник для торговли золотом на MetaTrader 5, оснащённый 6 интегрированными стратегическими слоями, предустановленным Stop Loss в каждой сделке и чистой торговой структурой без Martingale, Recovery-систем и Grid-торговли. Публичный Live Signal: старт $500, фиксированный 0.02 лота, рост 500%+, более 20 недель работы Публичный Live Signal является главным доказательством работы SixtyNine EA . Счёт был запущен с балансом $500 , использовался фиксированный размер лота 0.0
Quantum Bitcoin EA
Bogdan Ion Puscasu
4.77 (128)
Quantum Bitcoin EA   : нет ничего невозможного, вопрос лишь в том, как это сделать! Шагните в будущее торговли   биткойнами   с   Quantum Bitcoin EA   , последним шедевром от одного из лучших продавцов MQL5. Разработанный для трейдеров, которым нужна производительность, точность и стабильность, Quantum Bitcoin переопределяет возможности в изменчивом мире криптовалют. ВАЖНО!   После покупки отправьте мне личное сообщение, чтобы получить руководство по установке и инструкции по настройке. Цена
Impulse MT5
Simon Reeves
5 (13)
Are you ready to power up your Gold trading? Impulse by Starpoint Trading — A six-strategy gold EA that waits for the perfect shot. Launch offer: 30% off until 26th July   — to celebrate the v2.00 release, Impulse is available at a 30% discount. On 26th July the price reverts to $499, so grab it while the offer lasts. Impulse v2.00 is here! The biggest update in Impulse's history has arrived. Version 2.00 takes everything that made Impulse a disciplined, patient Gold trading system and elevates
Quantum iGold MT5
Yassine Mouhssine
5 (2)
Quantum iGold MT5 — Продвинутая система ИИ-трейдинга (XAUUSD) Quantum iGold MT5 — это полностью автоматизированная торговая система, созданная с использованием передовых технологий искусственного интеллекта. Она использует гибридную нейронную архитектуру, объединяющую модели LSTM и Transformer для анализа поведения цены на XAUUSD. Такая структура позволяет системе выявлять рыночные паттерны, адаптироваться к изменениям волатильности и генерировать технически точные торговые сигналы в реальном вр
XG Gold Robot MT5
MQL TOOLS SL
4.27 (112)
The XG Gold Robot MT5 is specially designed for Gold. We decided to include this EA in our offering after extensive testing . XG Gold Robot and works perfectly with the XAUUSD, GOLD, XAUEUR pairs. XG Gold Robot has been created for all traders who like to Trade in Gold and includes additional a function that displays weekly Gold levels with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on Price Action, Cycle S
Chiroptera
Rob Josephus Maria Janssen
4.57 (46)
Prop Firm Ready! Chiroptera is a non-martingale, non-grid, multi-currency Expert Advisor that operates in the quiet hours of the night. It uses single-placed trades (of all 28 pairs!) with tactically placed Take Profits and Stop Losses, that are continuously adjusted to maximize gains and minimize losses. It keeps track of past and upcoming news reports to ensure impacts are minimized and carefully measures real-time volatility to prevent impacts due to unpredictable geo-political disturbances c
Фильтр:
Нет отзывов
Ответ на отзыв