Universal Smart Manual Trade Manager MT5

# Universal Smart Manual Trade Manager MT5 v1.00

## What the EA does

Universal Smart Manual Trade Manager MT5 is a protective and management Expert Advisor for manually opened trades. It does not open new entries by itself. It only adopts already open positions that pass the selected filters, and can add missing SL/TP, manage break-even, profit lock, ATR trailing, send Telegram notifications, and display status information on the chart.

The default setup is intentionally safe: the EA manages only manual positions (`magic = 0`) on the current chart symbol. This minimizes the risk of accidentally interfering with another trading robot.

This Expert Advisor is a manual trade management utility. It does not open trades automatically and does not use martingale, grid, arbitrage, scalping or news trading logic.

## Important warning

The EA is universal, but every broker can have different symbol conditions, tick value, tick size, minimum stop distance, freeze level, and volume steps. Before using the EA live, always test the exact symbol and broker on a demo account or with a very small position.

The EA reads broker symbol properties such as:

- `SYMBOL_TRADE_TICK_VALUE`
- `SYMBOL_TRADE_TICK_SIZE`
- `SYMBOL_DIGITS`
- `SYMBOL_POINT`
- `SYMBOL_TRADE_STOPS_LEVEL`

This allows it to calculate risk per 1 lot in a universal way. However, for exotic CFDs and non-standard broker symbols, the risk calculation should always be manually verified.

---

# 1. General settings

## InpManagerEnabled

Turns EA management on or off.

- `true` = the EA manages positions according to the filters
- `false` = the EA does not manage positions

## InpPresetProfile

Quick preset profile. When this is set to anything other than `CUSTOM`, the EA internally overrides selected detailed parameters.

- `HM_PROFILE_CUSTOM` = exact input values are used
- `HM_PROFILE_CONSERVATIVE` = wider ATR SL, later break-even, more conservative behavior
- `HM_PROFILE_BALANCED` = default trading management mode: ATR SL + BE + Lock
- `HM_PROFILE_ACTIVE` = more active mode with ATR trailing

Recommendation: use `CUSTOM` while testing and fine-tuning. For regular users, `BALANCED` is the best default.

## InpManageScope

Defines whether the EA manages only the current chart symbol or all account symbols.

- `HM_SCOPE_CURRENT_SYMBOL` = manages only the chart symbol, for example only XAUUSD on an XAUUSD chart
- `HM_SCOPE_ALL_SYMBOLS` = one EA instance scans and manages all open positions on the account

The safe default is `CURRENT_SYMBOL`.

## InpManageManualPositionsOnly

- `true` = the EA manages only manual positions with `magic = 0`
- `false` = the EA may also manage positions opened by another EA if they pass the remaining filters

Recommendation for the public version: keep this `true` by default.

## InpUseMagicNumberFilter / InpMagicNumberFilter

Optional filter by magic number.

Typical use:

- manual trades: `InpManageManualPositionsOnly = true`, magic filter disabled
- specific robot: `InpManageManualPositionsOnly = false`, `InpUseMagicNumberFilter = true`, `InpMagicNumberFilter = magic number of that robot`

## InpAdoptExistingPositionsOnInit

When `true`, the EA adopts already open positions after startup if they pass the filters.

## InpSendExistingAdoptionMessages

When `true`, the EA sends Telegram messages for positions that already existed before the EA was started. The default is `false` to avoid message spam after VPS restart or migration.

## InpTimerSeconds

How often the management loop runs, in seconds. The default value `2` is a good compromise. Setting this to `1` is not recommended when multiple symbols or Telegram are used.

## InpDeviationPoints

Maximum deviation for close operations and trade requests. It is not critical for normal SL/TP management.

---

# 2. Automatic SL/TP placement

## InpSLTPMode

Defines how the EA calculates SL/TP.

### HM_SLTP_NONE

The EA will not automatically add SL/TP.

Useful when you only want to use BE/trailing on positions where SL is entered manually.

### HM_SLTP_FIXED_POINTS_RR

Simple mode:

- SL = fixed number of points
- TP = SL × RR

Main parameters:

- `InpFixedSLPoints`
- `InpAddSpreadToFixedSL`
- `InpRewardRiskRatio`

### HM_SLTP_ATR_SPREAD_RR

Recommended default.

Calculation:

```text
SL distance = ATR × InpSL_ATR_Multiplier + Spread × InpSpreadBufferMultiplier
TP distance = SL distance × InpRewardRiskRatio
```

Main parameters:

- `InpATRTimeframe`
- `InpATRPeriod`
- `InpSL_ATR_Multiplier`
- `InpSpreadBufferMultiplier`
- `InpRewardRiskRatio`
- `InpMinSLPoints`
- `InpMaxSLPoints`

### HM_SLTP_SWING_ATR_BUFFER_RR

More advanced mode.

- BUY SL = last swing low − ATR buffer
- SELL SL = last swing high + ATR buffer
- TP = RR × risk

Main parameters:

- `InpSwingTimeframe`
- `InpSwingLookbackBars`
- `InpSwingStartShift`
- `InpSwingATRBufferMultiplier`
- `InpRewardRiskRatio`

## InpPlaceMissingSL / InpPlaceMissingTP

Defines whether the EA adds missing SL and TP.

## InpReplaceExistingSL / InpReplaceExistingTP

When `true`, the EA may replace existing SL/TP values.

Recommendation: keep this `false` for regular users so the EA respects manually entered levels.

## InpAutoAdjustToMinStopLevel

When the broker does not allow SL/TP too close to the current price, the EA attempts to move the level to the minimum allowed distance.

---

# 3. Break-even, profit lock, and trailing

## InpManagementMode

### HM_MGMT_NONE

No exit management.

### HM_MGMT_CONSERVATIVE_BE

After reaching `InpBETriggerR`, the EA moves SL to entry plus a small offset.

Example:

```text
InpBETriggerR = 1.00
InpBEOffsetR = 0.03
```

After reaching +1R, SL is moved to approximately +0.03R.

### HM_MGMT_BE_AND_LOCK

Recommended default.

Typical behavior:

```text
0.75R -> SL to BE + 0.03R
1.20R -> lock 0.30R
1.80R -> lock 0.80R
```

Parameters:

- `InpBETriggerR`
- `InpBEOffsetR`
- `InpLock1TriggerR`
- `InpLock1R`
- `InpLock2TriggerR`
- `InpLock2R`

### HM_MGMT_ATR_TRAILING

After reaching `InpTrailStartR`, the EA starts moving SL using ATR trailing.

Parameters:

- `InpTrailATRTimeframe`
- `InpTrailATRPeriod`
- `InpTrailStartR`
- `InpTrailATRMultiplier`

## InpNeverLoosenSL

Very important protection. When `true`, SL is never moved to a worse level.

- for BUY positions, SL can only move up
- for SELL positions, SL can only move down

Recommendation: always keep this `true`.

## InpMinSecondsBetweenTradeMods

Protection against too frequent SL/TP modifications. The default is `8` seconds.

---

# 4. Daily safety guard

## InpUseDailySafetyGuard

Enables daily protection based on equity.

## InpMaxDailyLossMoney

Fixed money daily loss limit. `0` = disabled.

## InpMaxDailyLossPercent

Percentage daily loss limit calculated from start-of-day equity.

## InpSafetyAction

- `HM_SAFETY_ALERT_ONLY` = alert only
- `HM_SAFETY_DISABLE_MANAGEMENT` = after the limit is reached, the EA stops modifying positions
- `HM_SAFETY_CLOSE_MANAGED` = attempts to close managed positions

Recommendation for the first version: keep the default as `ALERT_ONLY`. Closing positions is an aggressive function and should be tested with the specific broker before live use.

---

# 5. Telegram

Telegram is optional. The EA works normally without Telegram.

## Inputs

- `InpUseTelegram` = enables/disables Telegram
- `InpTelegramBotToken` = bot token
- `InpTelegramChatId` = user or group chat ID
- `InpTelegramStatusMode` = status message detail level
- `InpStatusIntervalMinutes` = regular status interval
- `InpSendOpenCloseMessages` = adoption and close messages
- `InpSendSLTPModificationMessages` = SL/TP placement and modification messages
- `InpSendRiskStatusMessages` = regular risk/status messages
- `InpMinSecondsBetweenTelegramMessages` = minimum spacing between normal messages
- `InpMaxTelegramMessagesPerMinute` = maximum number of normal messages per minute

## Anti-spam protection

If the user opens or closes multiple trades in a short time, the EA may not send every individual notification. Some messages can be merged or skipped, and the next message may include the note:

```text
Note: X notification(s) were merged/skipped by anti-spam protection.
```

This is intentional protection against Telegram spam and unnecessary WebRequest calls.

---

# 6. What you will see on the chart

The chart panel displays:

- current symbol
- Bid/Ask
- spread
- ATR
- ATR/Spread
- suggested BUY SL
- suggested SELL SL
- risk per 1 lot for BUY
- risk per 1 lot for SELL
- number and lot size of open BUY/SELL positions
- open BUY/SELL profit/loss
- daily safety guard status
- management scope mode

---

# 7. Recommended configurations

## Safe default for one symbol

```text
InpManageScope = HM_SCOPE_CURRENT_SYMBOL
InpManageManualPositionsOnly = true
InpSLTPMode = HM_SLTP_ATR_SPREAD_RR
InpManagementMode = HM_MGMT_BE_AND_LOCK
InpNeverLoosenSL = true
InpUseTelegram = false for the first test
```

## One Hand Manager for the whole account

```text
InpManageScope = HM_SCOPE_ALL_SYMBOLS
InpManageManualPositionsOnly = true
```

Use only one EA instance in `ALL_SYMBOLS` mode. Do not run multiple Hand Managers in `ALL_SYMBOLS`, otherwise they may try to manage the same positions.

## Managing another robot by magic number

```text
InpManageManualPositionsOnly = false
InpUseMagicNumberFilter = true
InpMagicNumberFilter = the selected magic number
```
# Telegram setup for Universal Smart Manual Trade Manager MT5

## What you need

1. A Telegram account.
2. A created Telegram bot.
3. Bot token.
4. Chat ID.
5. WebRequest enabled in MT5.

## 1. Create a Telegram bot

1. In Telegram, search for `@BotFather`.
2. Send the command `/newbot`.
3. Enter a bot name, for example `My Trade Manager Bot`.
4. Enter a bot username. It must end with `bot`, for example `my_trade_manager_123_bot`.
5. BotFather will send you a token similar to:

```text
1234567890:ABCdefGhIJKlmNoPQRstuVWxyz
```

Paste this token into the EA input:

```text
InpTelegramBotToken
```

## 2. Get your Chat ID

The simplest method:

1. Open your new bot in Telegram.
2. Click `Start` or send it a message, for example `test`.
3. Open this address in your browser:

```text
https://api.telegram.org/bot<YOUR_TOKEN>/getUpdates
```

4. In the response, find the `chat` object and its `id` value.
5. Paste this number into the EA input:

```text
InpTelegramChatId
```

Note: group chat IDs can be negative numbers. That is normal.

## 3. Enable WebRequest in MT5

MT5 must allow the Telegram API URL:

1. Open `Tools`.
2. Select `Options`.
3. Open the `Expert Advisors` tab.
4. Check `Allow WebRequest for listed URL`.
5. Add exactly this address:

```text
https://api.telegram.org
```

Without this step, the EA will report a WebRequest error in the MT5 Journal.

## 4. Enable Telegram in the EA

Set these EA inputs:

```text
InpUseTelegram = true
InpTelegramBotToken = token from BotFather
InpTelegramChatId = your chat ID
InpStatusIntervalMinutes = 10
InpSendOpenCloseMessages = true
InpSendSLTPModificationMessages = true
InpSendRiskStatusMessages = true
```

## 5. Recommended anti-spam settings

```text
InpMinSecondsBetweenTelegramMessages = 20
InpMaxTelegramMessagesPerMinute = 3
```

If the user opens several trades in quick succession, the EA may skip or merge some messages. This is correct behavior and is intentional anti-spam protection.

Recommended text for product documentation:

```text
Telegram notifications include anti-spam protection. If multiple trades are opened, modified or closed within a short time, some individual notifications may be merged or skipped and summarized in a later message.
```

## 6. Test Telegram

After the EA is enabled, you should receive a message:

```text
Smart Manual Trade Manager started
```

If the message does not arrive:

1. Check the bot token.
2. Check the chat ID.
3. Make sure you sent at least one message to the bot.
4. Check that the WebRequest URL is allowed in MT5.
5. Check the `Experts` and `Journal` tabs in MT5.

## Security note

The Telegram bot token is sensitive. Do not publish it in screenshots, videos, product comments, or public support messages. If the token is exposed, regenerate it in BotFather and update the EA inputs.


# Deploying Universal Smart Manual Trade Manager MT5 on MT5 VPS


## Basic principle


MT5 VPS migrates the current local terminal environment to the virtual platform: open charts, attached Expert Advisors, indicators, and their input parameters. Therefore, before migration, it is important to prepare all charts locally exactly as they should run on the VPS.


## Adding Hand Manager next to the main trading robot


If a main trading EA is already intended to run on the VPS on a symbol such as UKOIL, and you want to add Hand Manager, prepare it locally like this:


1. Open the original UKOIL chart with the main trading EA.

2. Open a second chart of the same symbol, UKOIL.

3. Attach `Universal Smart Manual Trade Manager MT5` to the second chart.

4. Keep the safe Hand Manager default:


```text

InpManageScope = HM_SCOPE_CURRENT_SYMBOL

InpManageManualPositionsOnly = true

```


5. Confirm that both charts are running:

   - chart 1: main trading EA

   - chart 2: Hand Manager

6. Perform a new migration/synchronization to MT5 VPS.

7. Check the VPS Journal and verify that both Expert Advisors are running.


## Important warning


A new migration does not simply add a new chart to what is already running on the VPS. It transfers the current local terminal environment. Therefore, during migration, all charts and EAs that should remain on the VPS must be open locally.


If you leave only the Hand Manager chart open locally and run migration, you may accidentally overwrite the VPS environment without the original main trading robot.


## One symbol


For one symbol, the recommended setup is:


```text

Chart 1: symbol + main trading EA

Chart 2: same symbol + Hand Manager

```


In `CURRENT_SYMBOL` mode, Hand Manager will manage only manual positions on its chart symbol.


## Multiple symbols: oil and gold


Question: if a user has two charts on VPS, for example oil and gold, will Hand Manager manage manual trades on both?


The answer depends on `InpManageScope`.


### Option A: safe and recommended for most users


Use one Hand Manager instance per symbol.


Example:


```text

Chart 1: UKOIL + main EA or manual trading

Chart 2: UKOIL + Hand Manager, InpManageScope = CURRENT_SYMBOL

Chart 3: XAUUSD + main EA or manual trading

Chart 4: XAUUSD + Hand Manager, InpManageScope = CURRENT_SYMBOL

```


In this mode:


- Hand Manager on UKOIL manages only UKOIL.

- Hand Manager on XAUUSD manages only XAUUSD.

- The setup is clear and safe.


### Option B: one instance for the whole account


Use one Hand Manager instance with:


```text

InpManageScope = HM_SCOPE_ALL_SYMBOLS

```


In this mode, one Hand Manager can manage manual positions across all account symbols, for example UKOIL and XAUUSD.


Important rule:


```text

Run only one Hand Manager instance in ALL_SYMBOLS mode.

```


If two Hand Manager instances are running on the VPS and both are set to `ALL_SYMBOLS`, they may try to manage the same positions, send duplicate messages, and perform unnecessary SL/TP modifications.


## Recommended text for product documentation


```text

Default mode manages only the current chart symbol. To manage multiple symbols, attach one Hand Manager instance to each symbol chart. Advanced users may use ALL_SYMBOLS mode, but only one ALL_SYMBOLS instance should run on the account.

```


## Checklist after VPS migration


After migration, check:


1. VPS Journal.

2. Number of charts.

3. Number of running Expert Advisors.

4. Whether Algo Trading is enabled.

5. Whether Telegram sent the start message, if Telegram is enabled.

6. Whether the chart panel did not show errors locally before migration.


## Telegram on VPS


WebRequest settings must be prepared locally before migration. The allowed URL list must contain:


```text

https://api.telegram.org

```


After changing Telegram inputs or WebRequest settings, perform a new migration to VPS.


## Practical recommendation


For beginners and regular users, use `CURRENT_SYMBOL` mode and attach one Hand Manager to each symbol chart. Use `ALL_SYMBOLS` only if the user understands that one EA instance will manage all manual positions on the account.


Рекомендуем также
Описание   Simo : инновационный робот с уникальной торговой системой Simo представляет собой революционного торгового робота, который меняет правила игры благодаря своей уникальной торговой системе. Используя анализ настроений и машинное обучение, Simo обеспечивает совершение сделок на новом уровне. Этот робот может работать на любом часовом периоде, с любой валютной парой и на сервере любого брокера. Simo использует собственный алгоритм для принятия торговых решений. Разнообразные подходы к а
r-Trend Sync Robot is an expert advisor for extra volatility markets like XAUUSD with dynamic lot size. Main EA features : The advisor's algorithm is based on the analysis of an extensive array of historical data (from 1995 for EURUSD & EURJPY and from 2004 for XAUUSD), which ensured the identification of general patterns in the behavior of these pairs across a wide range of timeframes. The analysis of historical data helped the advisor learn to recognize market triggers for medium-term trends a
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
!! IMPORTANT!, PLEASE REMEMBER TO RUN THIS EA ON THE 1 MINUTE TIME-FRAME AND BOOM1000 ASSET ONLY !! This wonderful piece of software is a super intelligent self learning algorithm made for mt5, checkout the examples at the bottom of the page Engage has had the pleasure of working with a very talented honest and good willed individual called Nardus van Staden to create this wonderful product, if you want something as awesome as this check him out at  This Link . The EA "Engage Synthetic Scalper
The SUPER POWER AI represents the convergence of cutting-edge computational intelligence and advanced algorithmic trading technologies. Engineered on the robust GPT-4o platform, it integrates high-dimensional neural network architectures capable of real-time adaptability to the stochastic dynamics of global financial markets. A defining feature of this Expert Advisor is its implementation of discrete Fourier transform visualizations within the proprietary ATFNet framework. By harmonizing the spe
Gold Ray
Dmitriq Evgenoeviz Ko
Gold Ray MT5 — Искусство золотого сечения в трейдинге Gold Ray — это не просто торговый робот. Это кульминация многолетних исследований динамики движения золота ( XAUUSD ), воплощенная в высокоточном алгоритме спектрального анализа. В то время как большинство советников используют устаревшие индикаторы, Gold Ray работает с самой структурой цены, вычисляя траекторию «золотого луча» — момента, когда рыночная ликвидность и волатильность сливаются в мощный направленный импульс. Почему Gold Ray — эт
The Gold Buyer
Moses Aboliwen Aduboa
Ride the Gold Trend with a Simple Buy-Only EA The  EA is a fully automated Buy-Only Expert Advisor for MetaTrader 5. It is designed to capture upward market opportunities with safe risk management and seamless execution. Why Traders Choose It: Best performance on Gold (XAUUSD) – highly liquid and trending. Buy-Only EA – focuses purely on long positions. Plug & Play setup – attach and let it trade automatically. Built-in Stop Loss & Take Profit protection. Smart one-position contro
Автоматизированная торговая система. Трендовый советник big_Source MT5 использует 2 индикатора EMA и индикатор RSI. Безопасен, не использует мартингейл или сетку ордеров. Эксперт использует стандартные стоп-лосс, тейк-профит и трейлинг-стоп. Требования Оптимизирован для работы с GOLD (XAUUSD). Эксперт торгует на таймфрейме M30. Минимальный депозит - $500. Совместим с четырех- и пятизначными счетами. Совместим со всеми брокерами, включая американских, которые подчиняются правилу FIFO. Вход
Финансовый Робот SolarTrade Suite: LaunchPad Market Expert - предназначенный для открытия торговых сделок! Это торговый робот, который использует особые инновационные и передовые алгоритмы для рассчета своих значений, Ваш Помошник в Мире Финансовых Рынков. Испольуйте наш набор индикаторов из серии SolarTrade Suite чтобы лучше выбрать момент для запуска этого робота. Проверьте другие наши продукты из серии SolarTrade Suite внизу описания. Хотите уверенно ориентироваться в мире инвестиций и фи
Скальпинг бот для пары золото/доллар (XAU/USD) — это мощное и универсальное решение для трейдеров, которое обеспечивает максимальную эффективность в условиях динамичного рынка. Бот специально разработан для скальпинга: он анализирует изменения цены и делает ставки ещё до начала значительного движения. Это позволяет заранее занимать выгодные позиции и извлекать прибыль из самых малейших рыночных колебаний. Основные преимущества: Гибкость: Подходит для любых рыночных условий и адаптируется под ваш
Scalper Solution
Mahmoud Taher Ahmad Alshanty
Scalper Solution EA — это профессиональная торговая система, разработанная для достижения результатов институционального уровня на графиках XAUUSD M1. Она построена на модульной архитектуре, которая делает акцент на адаптивности, безопасности брокера и ясности диагностики. Система интегрирует передовые фильтры режимов, управление сессиями и логику усиления для точной обработки различных рыночных условий. Ключевые особенности включают: *Адаптивная логика входа с распознаванием паттернов свечей и
Liga Dinamica
Cesar Juan Flores Navarro
El EA Liga Dinamica, tiene el comportamiento de una liga que se estira cuando pierde y cierra cuando es positivo,  analiza el precio y abre esperando dar positivo y cierra cuando lo considera negativo. Utiliza Indicadores: para cerrar, abrir y en caso de que de negativo para cerrar. ------------------------------------------------------------------------------------------------ CASO ORO / USD: En el video se muestra la configuracion del par XAUUSD: - Lote = 0.01 (utiliza el doble 0.02) - Gananci
Perfect Trade EA Indicator 2026 for XAUUSD MT5 Премиальный многоуровневый самообучающийся индикатор с режимом автоторговли для XAUUSD Perfect Trade EA Indicator 2026 — это не просто индикатор и не обычный советник с примитивным входом по шаблону. Это премиальный торговый комплекс для MetaTrader 5, созданный для работы с XAUUSD, который объединяет в себе: - многоуровневый анализ рынка; - интеллектуальную фильтрацию сигналов; - режим автоматической торговли; - продвинутое сопровождение сделки;
Представляем Neural Bitcoin Impulse - инновационный торговый бот, созданный с использованием технологии обучения нейросети на объёмных массивах рыночных данных. Встроенная математическая модель искусственного интеллекта ищет потенциальный импульс каждого следующего рыночного бара и использует образовавшиеся паттерны дивергенции и конвергенции между прогностическими показателями и ценой для формирования высокоточных разворотных точек открытия торговых позиций. В основе торгового робота лежит ра
K Dragon Gold (KDG-1) is a professional XAUUSD Expert Advisor for MetaTrader 5. "Powered by proprietary dual-strategy architecture — Trend + Mean Reversion running in parallel." No grid. No martingale. No hedging. Both Long and Short. XAUUSD M5 | Dual-Strategy: Trend + Mean Reversion | No Grid | No Martingale | IC Markets Optimized | Verified Across 6 Years | 20+ Years of Experience ️ IMPORTANT: Dual-Lot Architecture (1:2 Ratio) K Dragon Gold uses a unique 2-strategy dual-lot system: S
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
Smart M Quantum
Ignacio Agustin Mene Franco
Smart Money Quantum EA Smart Money Quantum is an advanced algorithmic trading Expert Advisor designed specifically to trade XAU/USD (gold) on the M15 timeframe. This system combines Smart Money Concepts (SMC) principles with institutional risk management to capture high-probability movements in the gold market. Key Features Trading Strategy SMC Methodology: Accurately identifies and trades institutional Order Blocks Break & Retest System: Confirms liquidity zones before executing trades RSI
GOLD LIMITLESS EA The Only Gold EA You Will Ever Need What Is It? GOLD LIMITLESS EA is a fully automated Expert Advisor designed specifically for Gold (XAUUSD) — the world's most traded commodity. It runs 24/5 on your MetaTrader 5 platform, finds the best entry points every 4 hours, and manages every trade from open to close — completely on its own. No manual input. No screen watching. No emotions. Just plug it in and let it work. How Does It Work? Every 4-hour session, the EA identifies two key
عنوان المنتج نظام نوفا للذكاء الاصطناعي للتداول الخوارزمي متعدد المصادر | منصة MT5 | إطار زمني 15 دقيقة ملخص نظام NOVA AI EA هو نظام تداول آلي تم تطويره لمنصة MetaTrader 5. وهو مصمم لدعم قرارات التداول من خلال الجمع بين نماذج معالجة البيانات الخارجية والتحليل الإحصائي الداخلي. يعتمد النظام على بيانات السوق المنظمة ومنطق قابل للتكوين لتوليد إشارات التداول. ولا يعتمد على مؤشرات ثابتة فقط، بل يدمج مكونات تحليلية متعددة لتحسين اتساق القرارات. بنية النظام يعتمد نظام NOVA AI EA على بنية تحليلية متع
GOLD D1 – Estratégia Candle 80% com Pirâmide Inteligente e Trailing Dinâmico (MT5) O   GOLD D1   é um Expert Advisor avançado desenvolvido para operar principalmente o XAUUSD (Ouro) com base em análise de força do candle diário, confirmação de momentum e gestão inteligente de posições. Trata-se de um robô robusto, focado em capturar movimentos fortes do mercado enquanto controla o risco através de uma estrutura adaptativa de pirâmide e trailing stop. Estratégia Principal – Candle 80% O robô
Wiki Gold Pro V2
Huynh Tan Linh N
4.2 (5)
Wiki Gold Pro V2 is the latest version of the second-generation gold trading EA, optimized for better performance with a noticeable reduction in drawdown. It operates on the M15 timeframe, delivering high performance, and maintains a simple configuration with fewer parameters, similar to V1. The results obtained for the period from January 2022 to the end of November 2023 are highly promising, based on real tick data. Setup: Target Market : Gold Optimal Timeframe : M15 Ideal Account Types : ECN
Yellowstone FX
Michael Prescott Burney
4 (5)
Yellowstone FX – самый безопасный робот для торговли золотом, платформа MT5, график XAUUSD на 1-е полугодие. Спецэффекты в Йеллоустоне       Он имеет точную конструкцию.       Самый безопасный робот для торговли золотом MT5       Это решение разработано для трейдеров, которые отдают приоритет защите капитала, дисциплинированному исполнению сделок и управляемому уровню риска.       Рынок XAUUSD   . Создан специально для...       MetaTrader 5       Оптимизация проводилась по следующим направления
Avalut X1 - Advanced Gold Expert Advisor (MT5) Точная торговля XAUUSD Live Signal Avalut X1 — это профессиональный Expert Advisor для автоматической торговли XAUUSD (Gold) в MetaTrader 5. Теперь система объединяет пять взаимодополняющих стратегий в одном EA, чтобы работать в разных рыночных режимах. EA является полностью самостоятельным решением для MT5 и не требует внешних DLL или сторонних установщиков. Основные функции Пять стратегий в одном EA: скоординированные стратегии, которые дополняю
FDM 6-Gate Sniper Turbo: Master the Four Dimensions of Price The Problem: Why Do You Keep Failing with "Smart Money" Systems? Let’s be brutally honest. Most traders struggle because the systems they use are broken. They are either too complex, too subjective, or completely unreliable. ICT and SMC drown you in confusing terminology. You obsess over "manipulation" and "liquidity sweeps," leading to analysis paralysis where every move looks like a trap. Indicators lag behind the market, cluttering
Green Hawk  is a professional scalping expert. The strategy is based on smart scalping algorithms which trades in certain periods of the market. The system does not use risky strategies such as grid or martingale. Trading is done based on the return of the price in short periods. All trades are closed within hours. I will increase the price in the near future. Next Price: $700 The final price will be $2000. Selling only through the mql5 site MT4 Version  can be found here FEATURES Support thro
Classic SNR EA Эксперт для MetaTrader 5 | Мульти-символьная торговля по уровням Support & Resistance с трендовой логикой Обзор Classic SNR Breakout EA - это профессиональный торговый робот, который определяет структурные уровни поддержки и сопротивления (Support & Resistance) с использованием дневных точек разворота и совершает сделки на основе ценового действия часового таймфрейма (H1) относительно этих уровней. EA применяет   двойную логику : на восходящем тренде продает при отбое (закрытии H1
Sabira Reactive
Gounteni Dambe Tchimbiandja
IMPORTANT NOTE THIS EA IS NOT FULLY AUTOMATED, IT ONLY TAKES POSITIONS IN ZONES YOU DEFINE IT ASSISTS YOU. SO YOU NEED TO WATCH THE CHART CLOSELY THE MAIN POINT OF THIS EA IS TO FORCE THE TRADER TO RESPECT ENTRY RULES <<CONFIRMATION IS THE KEY>>. SO THE TRADER WILL ONLY LOOK FOR ZONES THE EA WILL LOOK FOR CONFIRMATION CANDLES AND ENTER IF A CONFIRMATION IS FOUND FOR EXAMPLE: If price is in a Bullish zone. Rule, look for buys. If Bullish Candlestick Pattern  or any other bullish candle pattern s
M5 Scalp XAU
Dmitriq Evgenoeviz Ko
M5 Scalp XAU — Сеточный скальпер для золота M5 Scalp XAU — это автоматизированный торговый робот (Expert Advisor), разработанный специально для работы на волатильном рынке XAUUSD (золото) на таймфрейме M5. В его основе лежит сеточная стратегия с элементами скальпинга, направленная на извлечение прибыли из краткосрочных ценовых колебаний. Советник использует адаптивную логику размещения ордеров с динамическим шагом, реагируя на рыночную ситуацию, а также систему управления корзиной позиций до дос
The Inside Bar e one is a reversal/continuation candle formation, and is one of the most traded candle patterns. Robot F1 allows you to configure different trading strategies, Day Trade or swing trade, based on the Inside Bar as a starting point.  This pattern only requires two candles to perform. Robot F1 uses this extremely efficient pattern to identify trading opportunities. To make operations more effective, it has indicators that can be configured according to your strategy. Among the o
Golden Voyage
Dmitriq Evgenoeviz Ko
Golden Voyage MT5 — экспертный советник для консервативной торговли золотом (XAUUSD), ориентированный на строгий контроль риска и работу с одной позицией. Советник не использует сетки, мартингейл, усреднение или локирование. Торговая логика и управление рисками Одна позиция (Single Position Mode) В каждый момент времени может быть открыта только одна сделка по символу. Повторные входы и наращивание объема отсутствуют. Фиксированный риск на сделку Размер стоп-лосса рассчитывается как процент от
С этим продуктом покупают
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:/
Суть: используя юзер-интерфейс вы настраиваете параметры, которым должен соответствовать график до входа в позицию(позиции), настраиваете какие входные модели использовать, настраиваете правила по которым надо завершать торговлю и планирование. А всю рутину по наблюдению за графиком и исполнению Lazy Trader берет на себя. полное описание  :: 3 ключевых видео [1] -> [2] -> [3]  :: [ ДЕМО-ВЕРСИЯ ] Что он умеет? - Понимает структуру рынка по Ларри Вильямсу - Понимает Swing-структуру рынка по Майк
EA price is reduced to 50% discount for limited time period. Spot vs Future Arbitrage EA for MT5 Spot vs Future Arbitrage EA is an automated Expert Advisor designed for MetaTrader 5 that operates using price differences between Gold spot and Gold futures instruments. The strategy opens positions on both instruments simultaneously to take advantage of temporary differences between spot and futures prices. Requirements The trading account must provide both Gold spot and Gold futures instruments
TICK CHART SERVICE - Профессиональный сервис тиковых графиков для MT5 КРАТКОЕ ОПИСАНИЕ Tick Chart Service - это инновационный сервис для MetaTrader 5, который создает полноценные тиковые графики из любого инструмента в режиме реального времени. Система преобразует поток тиков в кастомный символ, позволяя торговать и анализировать ры
GRID for MT5
Volodymyr Hrybachov
GRID for MT5 - это удобный инструмент для тех кто торгует сеткой ордеров, предназначен для быстрой и комфортной торговли на финансовых рынках FOREX. GRID for MT5 имеет настраиваемую панель со всеми необходимыми параметрами. Подходит как опытным трейдерам так и новичкам. Работает с любыми брокерами, включая Американских брокеров с требованием FIFO - закрытия в первую очередь ранее открытых сделок. Сетка ордеров может быть как фиксированная - ордера открываются с фиксированным шагом, так и иметь д
Mt5BridgeBinary
Leandro Sanchez Marino
Я автоматизировал их бизнес-стратегии для использования бинарных MT5 в Интернете и Mt5BridgeBinary наши заказы на ваш счет в Binary, и вы готовы начать работать так просто! Опытные консультанты просты в настройке, оптимизации и тестировании на прочность; Кроме того, в тесте мы можем прогнозировать долгосрочную рентабельность, поэтому мы создали механизмы для Mt5BridgeBinary своих лучших стратегий к Binary. Характеристики: -Вы можете использовать как можно больше стратегий. (Expert Advisor). -
Серия продуктов под маркой  FiboPlusWave Готовая торговая система на основе  волн Эллиотта и уровней Фибоначчи . Просто и доступно. Отображение разметки волн Эллиотта (основной или альтернативный вариант) на графике. Построение горизонтальных уровней, линий поддержек и сопротивления, канала. Наложение уровней Фибоначчи на волны 1, 3, 5, A Система алертов (на экран, E-Mail, Push уведомления).    Особенности: не вникая в волновую теорию Эллиотта, можно сразу открыть один из возможных вариантов вхо
Xrade EA
Yao Maxime Kayi
Xrade EA is an expert advisor as technical indicator. For short period trade it's the best for next previsions of the trend of the market. +--------------------------------------------------------------------------------------- Very Important Our robot(data anylizer) does'nt take a trade procedure. If using only our robot you must take positions by yoursels +--------------------------------------------------------------------------------------- The technical indiator provide for a given sma
News: IDEA 2.0 is out with lot of features, like telegram bot notifications and Limits order! Check the changelog at bottom of page (*). Hi all, here you can find my Expert Advisor, called IDEA  (Intelligent Detection & managEr Algorithm) . In short, with this software you can: Have   a clear view of market status , with an indication of current trend. Simply add symbols you want to monitor to your market watch, and IDEA will notify you if some of them are in trend; Have an   automatic lots ca
PROMOTION!! $499 until 1 Mar. After that, EA will be $1,050 Developed and tested for over 3 years, this is one of the safest EAs on the planet for trading the New York Open. Trading could never be easier.  Trade On NASDAQ US30 (Dow Jones Industrial Average) S&P 500  What Does The EA do? The EA will open a Buy Stop Order and a Sell Stop Order(With SL and TP) on either side of the market just a few seconds before the NY Open.  As soon as 1 of the 2 trades is triggered, the EA automatically delete
Сохранение данных с биржевого стакана. Утилита для воспроизведения данных: https://www.mql5.com/ru/market/product/71640 Библиотека для использования в тестере стратегий: https://www.mql5.com/ru/market/product/81409 Возможно, потом появится библиотека для использования сохранённых данных в тестере стратегий, зависит от интереса к этой разработке. Сейчас есть наработки такого рода с использованием разделяемой памяти, когда только одна копия данных находится в оперативной памяти. Это позволяет не
Instead of sticking to the Charts,let's use ALL IN ONE KEYLEVEL Announcement: We are pleased to announce the latest version 14.02 of the One In One Keylevel product. This is a reliable product that has been upgraded with many new features and improvements to make your work easier and more efficient. Currently, we have a special promotion for this new version. The current discounted price is $500, and there are only 32 units left. After that, the price will increase to $1000, and will continue to
The EA Protection Filter ( MT4 version here ) provides a news filter as well as a stock market crash filter, which can be used in combination with other EAs. Therefore, it serves as an additional protective layer for other EAs that do provide such filters.  During backtest analysis of my own night scalpers, which already use a stock market crash filter, I noticed that the historic drawdown,  especially during stock market crash phases like 2007-2008, was reduced significantly by using such a fil
Hedge Ninja
Robert Mathias Bernt Larsson
3 (2)
Не забудьте присоединиться к нашему сообществу Discord на сайте www.Robertsfx.com , вы также можете купить советник на сайте robertsfx.com. ВЫИГРЫВАЙТЕ НЕЗАВИСИМО ОТ КАКОГО НАПРАВЛЕНИЯ ДВИЖЕТСЯ ЦЕНА Этот робот выигрывает независимо от того, в каком направлении движется цена, следуя изменяющемуся направлению в зависимости от того, в каком направлении движется цена. Это самый бесплатный способ торговли на сегодняшний день. Таким образом, вы выигрываете независимо от того, в каком направлении она
Best for Technical Analysis You can set from one key shortcut for graphical tool or chart control for technical analysis. Graphic design software / CAD-like smooth drawing experience. Best for price action traders. Sync Drawing Objects You don’t need to repeat drawing the same trend line on the other charts. Shortcuts do that for you automatically. Of course, any additional modifications of the object immediately apply to the other charts too. Colors depend on Timeframe Organize drawings with
Gold instrument scanner is the chart pattern scanner to detect the triangle pattern, falling wedge pattern, rising wedge pattern, channel pattern and so on. Gold instrument scanner uses highly sophisticated pattern detection algorithm. However, we have designed it in the easy to use and intuitive manner. Advanced Price Pattern Scanner will show all the patterns in your chart in the most efficient format for your trading. You do not have to do tedious manual pattern detection any more. Plus you
Gold Wire Trader MT5 trades using the RSI Indicator. It offers many customizable RSI trading scenarios and flexible position management settings, plus many useful features like customizable trading sessions, a martingale and inverse martingale mode. The EA implements the following entry strategies, that can be enabled or disabled at will: Trade when the RSI Indicator is oversold or overbought Trade when the RSI comes back from an oversold or overbought condition Four different trading behavio
Gold trend scanner MT5 a multi symbol multi timeframe dashboard that monitors and analyzes Average True Range indicator value in up to 28 symbols and 9 timeframes  in 3 modes :  It shows the ATR indicator value in all pairs and timeframes and signals when the ATR value reaches a maximum or minimum in a given duration. Short term ATR/Long term ATR ratio: It shows ratio of 2 ATRs with different periods. It's useful in detecting short term volatility and explosive moves. ATR Value/Spread ratio: S
Attention: this is a multicurrency EA, which trades by several pairs from one chart!  Therefore, in order to avoid duplicate trades, it is necessary to attach EA only to one chart, ---> all trading in all pairs is conducted only from one chart! we can trade simultaneously in three different pairs, as by default (EURUSD + GBPUSD + AUDUSD), which take into account the correlation when entering the market for all three; we can trade only EURUSD (or any currency pair) and at the same time take into
A triangular arbitrage strategy exploits inefficiencies between three related currency pairs, placing offsetting transactions which cancel each other for a net profit when the inefficiency is resolved. A deal involves three trades, exchanging the initial currency for a second, the second currency for a third, and the third currency for the initial. With the third trade, the arbitrageur locks in a zero-risk profit from the discrepancy that exists when the market cross exchange rate is not aligned
Gold index expert MT5 Wizard uses Multi-timeframe analysis. In simpler terms, the indicator monitors 2 timeframes. A higher timeframe and a lower timeframe. The indicator determines the trend by analyzing order flow and structure on the higher timeframe(4 hour for instance). Once the trend and order flow have been determined the indicator then uses previous market structure and price action to accurately determine high probability reversal zones. Once the high probability reversal zone has bee
Golden Route home MT5 calculates the average prices of BUY (LONG) and SELL (SHORT) open positions, taking into account the size of open positions, commissions and swaps. The indicator builds the average line of LONG open positions, after crossing which, from the bottom up, the total profit for all LONG positions for the current instrument becomes greater than 0. The indicator builds the average line of SHORT open positions, after crossing which, from top to bottom, the total profit for all SH
Do you want an EA with small stoploss? Do you want an EA that is just in and out of market? Gold looks at several MT5 It is ONLY buying when the market opens and with a window of 10 minutes or less. It uses pre-market price so be sure your broker has that.   This strategies (yes, it is 2 different strategies that can be used with 3 different charts) have tight stoplosses and a takeprofit that often will be reached within seconds! The strategies are well proven. I have used them manually for
Bionic Forex
Pablo Maruk Jaguanharo Carvalho Pinheiro
Bionic Forex - Humans and Robots for profit. Patience is the key. The strategies are based on: - Tendency - Momentum + High Volatility - Dawn Scalper + Support Resistence. Again, patience is the key. No bot is flawless, sometimes it will work seamlessly, sometimes it simply won't.  it's up to you manage its risk and make it a great friend to trade automatically with fantastic strategies. Best regards, Good luck., Pablo Maruk.
ABOUT THE PRODUCT Your all-in-one licensing software is now available. End users are typically granted the right to make one or more copies of software without infringing on third-party rights. The license also specifies the obligations of the parties to the license agreement and may impose limitations on how the software can be used. AIM OF THE SOFTWARE The purpose of this system is to provide you with a one-of-a-kind piece of software that will help you license and securely track your MT4/MT5
The purpose of this service is to warn you when the percentage of the margin level exceeds either a threshold up or down. Notification is done by email and/or message on mobile in the metatrader app. The frequency of notifications is either at regular time intervals or by step of variation of the margin. The parameters are: - Smartphone (true or false): if true, enables mobile notifications. The default value is false. The terminal options must be configured accordingly. - email (true or false)
基于Goodtrade/GoodX 券商推出的黄金双仓对冲套利的交易模型/策略/系统,在日常的操作遇到的问题: 1、B账户跟随A账户即刻下单。 2:A账户 下单后  B账户 自动抄写止损止盈。 3:A账户平仓B账户同时平仓。 4:B账户平仓A账户也平仓。 5:不利点差下拒绝下单。 6:增加有利点值因子。 通过解决以上问题,改变了熬夜、手工出错、长期盯盘、紧张、恐慌、担心、睡眠不足、饮食不规律、精力不足等问题 目前解决这些问题后,有效提升了工作效率和盈利比例,由原来月10%盈利率提升到月45%的最佳盈利率。 原来的一名交易员只能管理操作两组账户,通过此EA提高到操作管理高达16组交易账户,或许你可以超越我们的记录,期待你的经验交流。 此EA分为: GoodtradeGoodX Tradercropy A       GoodtradeGoodX Tradercropy B     是一个组合EA,假设您购买的额  GoodtradeGoodX Tradercropy   A  必须同时购买 GoodtradeGoodX Tradercropy   B  两个组合使用会到最佳效果。   
El EA Boton pone botones de Buy y Sell en la pantalla Ideal para usuarios que habren muchas ordenes y diferentes pares 9 botones buy desde 0.01 al 0.09 y 9 botones sell de 0.01 al 0.09 9 botones buy desde 0.1 al 0.9 y 9 botones sell de 0.1 al 0.9 Boton Close buy y sell Boton Close buy positivos y Boton Sell positivos Boton Close buy negativos y Boton Sell negativos un boton close all y botones buy de 1, 5 y 10 y botones de sell 1,5, 10
Отличный помощник для тех кто грамотно распоряжается своими рисками. Данный помощник просто не заменим если у вас всегда должен быть фиксированный риск на сделку. Помогает автоматически высчитывать лот в зависимости от вашего риска. Теперь можно не беспокоиться о том каким будет ваш Stoploss, риск всегда будет одинаковый. Считает объем сделок как для рыночных ордеров так и для отложенных. Удобный и интуитивно понятный интерфейс, так же есть некоторые дополнительные функции для упрощения вашей то
FTMO Sniper 7
Vyacheslav Izvarin
Dedicated for FTMO and other Prop Firms Challenges 2020-2024 Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Best results on GOLD and US100  Use any Time Frame Close all deals and Auto-trading  before  US HIGH NEWS, reopen 2 minutes after Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday Recommended time to trade 09:00-21:00 GMT+3 For Prop Firms MUST use special  Protector  https://www.mql5.com/en/market/product/94362 --------------------
Фильтр:
Нет отзывов
Ответ на отзыв