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.


Рекомендуем также
EA SB8 Panel Trade
Juan Manuel Bernal Martin
SB-8 – Manual Trading Panel with Fixed Risk & TradingView-Style Visualization for MT5 SB-8 is an advanced manual trading panel for MetaTrader 5 , designed to execute trades visually, quickly and without calculations . It is especially built for traders coming from TradingView , who often find MT5 confusing when it comes to risk management and trade visualization. With SB-8, you don’t calculate lot size, percentages or risk . You simply move the Stop Loss line , and the panel handles everything a
Представляем Neural Bitcoin Impulse - инновационный торговый бот, созданный с использованием технологии обучения нейросети на объёмных массивах рыночных данных. Встроенная математическая модель искусственного интеллекта ищет потенциальный импульс каждого следующего рыночного бара и использует образовавшиеся паттерны дивергенции и конвергенции между прогностическими показателями и ценой для формирования высокоточных разворотных точек открытия торговых позиций. В основе торгового робота лежит ра
Утилита для ручной торговли с помощью "горячих клавиш". Позволяет моментально реагировать на текущую ситуацию на рынке. "Горячие клавиши" можно назначить на открытие/закрытие позиций по типу, открытие/закрытие всех позиций на текущем графике и удаление всех ордеров на текущем графике. Также можно задать "горячие клавиши" на пять предопределенных торговых объемов и переключаться между ними в зависимости от ситуации без необходимости периодически менять объем вручную. Также возможно задать автомат
Easy Trade Executor — инструмент для быстрого расчета лота, открытия и сопровождения сделок в MT5. Размещайте уровни Open Price, Stop Loss и Take Profit прямо на графике, получайте автоматический расчет объема позиции и открывайте сделки с контролируемым риском всего за несколько кликов. Почему Easy Trade Executor? Easy Trade Executor создан для трейдеров, которые хотят не только рассчитывать риск, но и быстро управлять сделками на графике. Инструмент объединяет расчет позиции, открытие ордеро
️ EquityShield is your automated risk management guardian for MetaTrader 5. If you've ever exceeded your daily loss limit, struggled to enforce your own trading rules during volatile markets, or wanted to automatically lock in profits when you hit your targets, EquityShield is built for you. This is not a trading strategy - it's a safety system that watches your account 24/7, automatically closes positions when your risk limits are breached, and helps you maintain consistent trading discipline
Bober Real MT5
Arnold Bobrinskii
4.88 (16)
Bober Real MT5 — полностью автоматический советник для торговли на рынке Forex. Робот создан в 2014 году и за этот период сделал множество прибыльных сделок, показав более 7000% прироста депозита на моем личном счете. Было выпущено много обновлений, но версия 2019 года считается самой стабильной и прибыльной. Робот можно запускать на любых инструментах, но лучшие результаты достигаются на EURGBP , GBPUSD , таймфрейм M5 . Робот не покажет хорошие результаты в тестере или на реальном счете, если
Эксперт CloseByLossOrProfit выполняет закрытие всех позиций при достижении общего по счету заданного уровня убытка или прибыли в валюте депозита. Кроме того, эксперт может удалить отложенные ордера. Разрешите авто-торговлю перед запуском эксперта. Использование: Запустите эксперт на графике. Входные параметры:  Language of messages displayed (EN, RU, DE, FR, ES)  - язык вывода сообщений (английский, русский, немецкий, французский, испанский); Profit in the currency  - прибыль в пунктах; Loss in
FREE
Скальпинг бот для пары золото/доллар (XAU/USD) — это мощное и универсальное решение для трейдеров, которое обеспечивает максимальную эффективность в условиях динамичного рынка. Бот специально разработан для скальпинга: он анализирует изменения цены и делает ставки ещё до начала значительного движения. Это позволяет заранее занимать выгодные позиции и извлекать прибыль из самых малейших рыночных колебаний. Основные преимущества: Гибкость: Подходит для любых рыночных условий и адаптируется под ваш
Crash5 EA ,I s a automatic robot that has the level of professional decision when to take a trade without any emotion. The bot will help in your scalping decision making with its own TP (take profit) and SL (stop loss) with the trail stop when in profit. This is a trend based spike catching ,looking on whats happening in real time charts no repainting of any signals. The robot helps in making decisions on the candle stick pattern opened and closed lat price with the help of RSI ,MACD and the EMA
This is a standalone dashboard that let the user save their entry strategies for an unlimited number of currency pairs/indexes/commodities. Strategies remain saved after closing the meta trader or removing the EA. It saves your favourite assets to trade and places your trades in an instant.  You can save, your lot size, risk percentage, stop loss and take profit points and trailing stop points.   You can double-entry positions or reverse trades at the click of a button.  After the purchase, you
EA Hedger MT5
Sergej Chukhista
3 (2)
Купили торговый советник, подписались на сигнал или торгуете вручную?! Не забывайте об управлении рисками. EA Hedger   – это профессиональная торговая утилита с множеством настроек, которая позволяет управлять рисками с помощью хеджирования. Хеджирование – это методика торговли, которая предполагает открытие противоположных позиций к уже открытым позициям. С помощью хеджирования позиция может быть полностью или частично локирована (взята в замок). Например, на вашем счёте открыты три позиции: E
100% БЕСПЛАТНО — полная версия, без ограничений и регистрации. Если Aegis полезен вам, пожалуйста, оставьте отзыв — это очень помогает и позволяет держать утилиту бесплатной. Другие бесплатные инструменты разработчика: - Falcon Trailing Stop Manager (универсальный трейлинг-стоп и безубыток): https://www.mql5.com/en/market/product/182633 - Sentinel News Filter (пауза торговли на новостях): https://www.mql5.com/en/market/product/182634 - Rapid Trade Panel (торговля в один клик с расчётом риска
FREE
Tick Volume Chart - уникальный инструмент для создания графиков на основе тиковых объёмов в MetaTrader 5 . С помощью Tick Volume Chart вы можете строить графики, где каждая свеча формируется не по времени, а по заданному количеству тиков. Это дает вам идеальную точность анализа рыночной активности, недоступную на стандартных временных графиках. Вы можете использовать любые индикаторы и советники с поддержкой пользовательских символов. Работать с полученными графиками так же удобно, как и со стан
Описание   Simo : инновационный робот с уникальной торговой системой Simo представляет собой революционного торгового робота, который меняет правила игры благодаря своей уникальной торговой системе. Используя анализ настроений и машинное обучение, Simo обеспечивает совершение сделок на новом уровне. Этот робот может работать на любом часовом периоде, с любой валютной парой и на сервере любого брокера. Simo использует собственный алгоритм для принятия торговых решений. Разнообразные подходы к а
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
Net Z
Sugianto
5 (1)
NET Z uses a very well-known trend reversal technique to determine position entry with slight modifications by using virtual trade techniques and virtual pending orders so that position entry is not too early or too late. Why NETZ? NET Z does not require complicated settings and is easy to use because user only need to upload a set file that is already available. Currently there are set files for 20 fx pairs. The best GRID EA with the ability to control risks. I will share my personal daily ro
Индикатор Crypto_Forex "WPR с 2 скользящими средними" для MT5, без перерисовки. - Сам по себе WPR является одним из лучших осцилляторов для скальпинга. - Индикатор "WPR и 2 скользящие средние" позволяет видеть быстрые и медленные скользящие средние осциллятора WPR. - Индикатор дает возможность увидеть коррекцию цены на очень ранней стадии. - Этот индикатор очень легко настроить через параметры, его можно использовать на любом таймфрейме. - Условия входа на покупку и продажу показаны на изображ
Gifted FX
Michael Prescott Burney
Giftex FX Portfolio for GBPUSD H1 Giftex FX Portfolio is a professional MetaTrader 5 Expert Advisor for GBPUSD on the H1 timeframe, running on the Expert Advisor HQ universal portfolio framework. It is designed for structured automated trading on GBPUSD H1, with clear on-chart feedback for entries, exits, protections, and live performance so you can see how the EA is operating in real time. Overview Giftex FX Portfolio combines its portfolio-style strategy logic for GBPUSD with the Expert Adviso
FREE
Instructions for Using Reverse Copier EA Attach EA to Charts Open MetaTrader and attach the EA to any chart on both accounts (master & slave). Make sure AutoTrading is enabled. Master Account (Signal Sender) Set Mode = Master in EA settings. This account will send trade signals. Slave Account (Signal Receiver) Set Mode = Slave in EA settings. This account will receive trades in reverse (opposite direction). Lot Multiplier In Slave EA settings, set Multiplier to control lot size. Example: 1.0
GoldPulseZ v1.0 — Manual Gold Trading EA for MetaTrader 5 GoldPulseZ is a professional manual trading assistant designed exclusively for XAUUSD (Gold) on MetaTrader 5. Built for active traders who want full control of their entries while benefiting from smart trade management automation. Timeframe: M15 Broker: Any broker Key Features: One-Click Trading Panel — Instantly place Buy or Sell orders directly from the chart dashboard with your pre-set lot size, SL, and TP. Automatic Trailing Stop — Lo
Talents ATR Scalper Utility (MT5) The Talents ATR Scalper Utility is a professional-grade trade execution and management tool built for MetaTrader 5. Inspired by the Biblical Parable of the Talents , this utility is designed to help traders multiply their potential with precision risk control, one-click simplicity, and advanced automation. Whether you’re scalping forex, gold, or indices, this tool delivers speed, consistency, and confidence. Key Features One-Click Trade Preview Click below price
Make grid trading safe again | Built by a grid trader >> for grid traders.     Walkthrough Video  <==   Get Grid Rescue up and running in 5 minutes   This is MT5 version, click  here  for  BlueSwift GridRescue MT4     (settings and logics are same in both versions)   BlueSwift Grid Rescue   MT5    is a risk management   utility  MT5 EA  (used together with other grid trading experts) that can help you trade aggressive grid / averaging / martingale systems with manageable drawdown, therefore
BulkOp Trade Manager
Ahmed Jumaa Saif Ali Almheiri
BulkOp Trade Manager Торгуйте быстрее. Управляйте умнее. Закрывайте сделки увереннее. BulkOp Trade Manager — это мощный торговый помощник для MT5, созданный для трейдеров, которым нужны скорость, контроль и удобное управление сделками прямо с графика. Он разработан для активных ручных трейдеров, скальперов, трейдеров по золоту и всех, кто хочет управлять несколькими позициями быстрее и с меньшим количеством кликов. Почему BulkOp? Ультрабыстрое открытие Buy и Sell Закрытие прибыли одним кликом З
ZŁOTO XAU ARRAK EA GOLD XAU ARRAK EA — это автоматический торговый советник для MetaTrader 5, разработанный в первую очередь для торговли золотом / XAUUSD. Советник использует внутренний фильтр направления рынка, чтобы определять текущий рыночный уклон и управлять позициями в соответствии с активным направлением. Система создана для трейдеров, которым нужен автоматизированный инструмент для торговли золотом с управлением с графика, контролем позиций, сеточными функциями, виртуальными TP/SL и пра
Утилита для управления открытыми позициями с помощью виртуальных (невидимых для брокера) стопов. Виртуальный стоп лосс и виртуальный тейк профит можно свободно передвигать по графику. Если цена коснулась линии виртуального стопа (TP,  SL, TS) советник закроет все ордера одного направления на текущем графике.  Закрытие ордеров по виртуальному тейк профиту возможно только при наличии прибыли. С помощью встроенного симулятора торговли, вы можете, в тестере стратегий, увидеть как работает советник.
Overview Partial Trailing Stop EA is an advanced trade management Expert Advisor for MetaTrader 5 that automatically locks in profits by performing partial position closures when price retraces from its maximum favorable movement (peak profit level) . Unlike a traditional trailing stop that closes the entire position, this EA allows you to scale out gradually. When the market moves in your favor, the EA continuously tracks the highest (for Buy trades) or lowest (for Sell trades) price reached. I
Close Buttons Utility — компактная и гибкая MQL5-утилита для ручного управления позициями и отложенными ордерами прямо с графика. Панель позволяет в один клик закрыть группы ордеров и позиций на текущем или группе выбранных символов. Может работать как со всеми ордерами, так и с заданным списом Меджик номеров или ручными ордерами. Панель можно минимизировать или передвигать по всему экрану. Поддерживаются светлая и тёмная темы, настраиваемые размеры, высота строк и число колонок кнопок, а для ка
Lock Bot
Artem Alekseev
Утилита предназначена для автоматической поддержки "локирующей" позиции и повторного её открытия при необходимости, что подходит для стратегий сопровождения и защиты позиции. Простая утилита (далее бот), который реализует стратегию локирования с бесконечным перезапуском локирующей сделки. Принцип работы бота: - при запуске необходимо выбрать ордер на buy или sell с заданным TP - задать параметр SL локирующей сделки - бот следит за расстоянием между ценой открытия первой сделки и текущей. Если ра
Breakevan Utility
Jose Luis Thenier Villa
BreakEvan Utility  Is a simple tool in a panel with this utilities: This utility will draw a Golden Line in the chart applied showing the breakeven price, considering all the positions opened for that specific symbol. Also the information panel shows: Balance Breakeven Price for that chart Force Breakeven (for that symbol) as ON/OFF Force Breakeven Global (takes into account all trades opened) as ON/OFF Total Lots opened for Symbol Total Lots opened Global And two buttons: Force Breakeven: Whe
MT5 to Binance
Roman Zhitnik
4.2 (5)
MT5 to Binance - это продукт, который позволяет торговать на криптовалютных биржах Binance и Binance US прямо из терминала MetaTrader 5. Если Вам требуется просто автоматическое копирование ордеров и позиций с брокерского аккаунта в MetaTrader 5, лучше использовать Binance Copier Начать использование продукта просто - добавьте свой API Key и Secret Key, созданные в личном кабинете Binance с включенными чекбоксами Enable Spot & Margin Trading и Enable Futures, разрешите доступ с эндпоинтам Binan
С этим продуктом покупают
Trade Assistant MT5
Evgeniy Kravchenko
4.43 (213)
Помогает рассчитать риск на сделку, простая установка нового ордера с помощью линий, управление ордерами с функциями частичного закрытия, 7 типов трейлинг-стопа и другие полезные функции. Дополнительные материалы и инструкции Инструкция по установке - Инструкция к приложению - Пробная версия приложения для демо счета Функция Линии   - отображает на графике линию открытия, стоп-лосс, тейк-профит. С помощью этой функции легко установить новый ордер и увидеть его дополнительные характеристики пе
Добро пожаловать в Trade Manager EA — лучший инструмент для управления рисками, предназначенный для упрощения, точности и эффективности торговли. Это не просто инструмент для размещения ордеров; это комплексное решение для удобного планирования торгов, управления позициями и усиленного контроля над рисками. Независимо от того, начинающий вы трейдер, опытный специалист или скальпер, нуждающийся в быстром исполнении, Trade Manager EA адаптируется к вашим потребностям и работает с любыми активами:
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.96 (142)
Опыт экстремально быстрого копирования сделок с помощью Local Trade Copier EA MT5 . Благодаря простой установке в течение 1 минуты этот копировщик сделок позволяет вам копировать сделки между несколькими терминалами MetaTrader на одном компьютере с Windows или на Windows VPS с крайне быстрыми скоростями копирования менее 0.5 секунды. Независимо от того, новичок вы или профессиональный трейдер, Local Trade Copier EA MT5 предлагает широкий спектр опций, чтобы настроить его под ваши конкретные по
TradePanel MT5
Alfiya Fazylova
4.88 (160)
Trade Panel — это многофункциональный торговый помощник. Приложение содержит более 50 торговых функций для ручной торговли и позволяет автоматизировать большинство торговых операций. Перед покупкой вы можете протестировать демоверсию на демо-счете. Скачать пробную версию приложения для демонстрационного аккаунта: https://www.mql5.com/ru/blogs/post/750864 . Полная инструкция здесь . Торговля. Позволяет совершать торговые операции в один клик: Открыть отложенные ордера и позиции с автоматическим р
Бета-версия Telegram to MT5 Signal Trader почти готов к официальному альфа-релизу. Некоторые функции все еще находятся в разработке, и вы можете столкнуться с небольшими ошибками. Если вы заметите проблемы, пожалуйста, сообщите о них, ваша обратная связь помогает улучшать программное обеспечение для всех. Telegram to MT5 Signal Trader — мощный инструмент, который автоматически копирует торговые сигналы из каналов и групп Telegram прямо в ваш счёт MetaTrader 5 . Поддерживаются как публичные, так
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:/
Power Candles Strategy Scanner — самооптимизирующийся инструмент для поиска настроек по нескольким инструментам Power Candles Strategy Scanner использует тот же самооптимизирующийся движок, что и индикатор Power Candles — для всех символов в вашем Market Watch, одновременно. На одной панели отображается информация о том, какие символы в данный момент являются статистически торгуемыми, какая стратегия выигрывает на каждом из них, оптимальная пара Stop Loss / Take Profit, а также отправляется увед
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.94 (34)
Профессиональный копировщик сделок для MetaTrader 5 Быстрый, профессиональный и надежный копировщик сделок для MetaTrader . COPYLOT позволяет копировать сделки Forex между терминалами MT4 и MT5 с поддержкой счетов 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 Как купить Как установить Как получить файлы жур
ВРЕМЕННАЯ СКИДКА  -40% ! Всего  $470 вместо $790!  Максимальный реальный дисконт! Суть: используя юзер-интерфейс вы настраиваете параметры, которым должен соответствовать график до входа в позицию(позиции), настраиваете какие входные модели использовать, настраиваете правила по которым надо завершать торговлю и планирование. А всю рутину по наблюдению за графиком и исполнению Lazy Trader берет на себя. полное описание  :: 3 ключевых видео [1] -> [2] -> [3]  :: [ ДЕМО-ВЕРСИЯ ] Что он умеет? - П
Telegram to MT5 Multi-Channel Copier автоматически копирует торговые сигналы из ваших Telegram-каналов напрямую в MetaTrader 5. Никаких ботов, никаких браузерных расширений, никакого ручного копирования. Вы получаете сигнал в Telegram, и советник открывает сделку на вашем терминале за несколько секунд. Продукт включает два компонента: приложение для Windows, которое слушает ваши Telegram-каналы, и этот советник, который исполняет сигналы на терминале MT5. Также доступна версия для MT4. Руководст
Trade Dashboard MT5
Fatemeh Ameri
4.95 (131)
Trade Dashboard simplifies how you open, manage, and control your trades, with built-in lot size calculation. It allows you to execute trades, manage risk, and control positions directly on the chart, with tools such as partial close, breakeven, and trailing stop. Designed to reduce manual work and help you stay focused on your trading decisions. A demo version is available for testing. Detailed explanations of features are provided within the MQL5 platform. Installation instructions are include
================================================================================ 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
Anchor Trade Manager
Kalinskie Gilliam
5 (3)
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
Quant AI Agents
Ho Tuan Thang
5 (1)
Quant AI Agents are independent trading Expert Advisors. Instead of trading using a fixed strategy like other conventional EAs, Quant AI Agents   is a   multi-agent AI trading framework   that turns natural-language strategy prompts into live.  WANT THE SAME RESULTS AS MY LIVE SIGNAL?   Use the exact same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating un
Premium Trade Manager - Торговая панель со встроенным коучем Premium Trade Manager помещает торгового коуча прямо в ваш график, а под ним работает полноценный движок исполнения. Настройте сделку так, как вы всегда это делаете, затем позвольте Max, вашему ИИ-наставнику по трейдингу, прочитать именно эту настройку с учётом вашего живого счёта и дать чёткое заключение до того, как вы входите: соответствует ли стоп дисциплинированному подходу, разумен ли риск, не выходит ли высоковолатильный релиз ч
Trade copier MT5
Alfiya Fazylova
4.58 (48)
Trade Copier — это профессиональная утилита, предназначенная для копирования и синхронизации сделок между торговыми счетами. Копирование происходит от счета/терминала поставщика к счету/терминалу получателя, которые установлены на одном компьютере или vps. АКЦИЯ - Если вы уже приобрели "Trade copier MT5", вы можете получить "Trade copier MT4" бесплатно (для копирования MT4 > MT5 и MT4 < MT5). Для получения более подробной информации об условиях, пожалуйста, свяжитесь с нами через личные сообщени
Timeless Charts
Samuel Manoel De Souza
5 (7)
Timeless Charts is an all-in-one trading utility for professional traders. It combines custom chart types such as Seconds Charts and Renko with advanced order flow analysis using Footprints , Clusters , Volume Profiles , VWAP studies, and anchored analysis tools for deeper market insight. Trading and position management are handled directly from the chart through an integrated trade management panel , while Market Replay and Virtual Accounts provide environments for practicing trading skills and
Seconds Chart MT5
Boris Sedov
4.61 (18)
Seconds Chart - уникальный инструмент для создания секундных графиков в MetaTrader 5 . С помощью Seconds Chart вы можете построить график с таймфреймом, заданным в секундах, получая идеальную гибкость и точность анализа, недоступную на стандартных минутных или часовых графиках. Например, таймфрейм S15 обозначает график со свечами продолжительностью 15 секунд. Вы можете использовать любые индикаторы и советники с поддержкой пользовательских символов. Работать с ними так же удобно, как и на станда
The Ultimate TradingView to MT5 Bridge Automation Прекратите торговлю вручную и избавьтесь от проблем с задержками. TradingView to MT5 Copier PRO — это самый быстрый и надежный мост для исполнения ваших алертов TradingView напрямую в MetaTrader 5. Используете ли вы пользовательские индикаторы, скрипты тестера стратегий или ручную разметку, этот советник (EA) мгновенно исполняет ваши сделки, используя технологию High-Speed WebSocket . В отличие от простых копировщиков, эта PRO-версия включает Are
Trade Manager DaneTrades
Levi Dane Benjamin
4.28 (29)
Trade Manager, который поможет вам быстро входить и выходить из сделок, автоматически рассчитывая риск. Включает функции, которые помогут предотвратить чрезмерную торговлю, торговлю из мести и эмоциональную торговлю. Сделками можно управлять автоматически, а показатели эффективности счета можно визуализировать в виде графика. Эти функции делают эту панель идеальной для всех трейдеров, занимающихся ручной торговлей, и помогают улучшить платформу MetaTrader 5. Многоязычная поддержка. Версия для МТ
The product will copy all telegram signal to MT5 ( which you are member) , also it can work as remote copier.  Easy to set up, copy order instant, can work with almost signal formats, image signal,  s upport to translate other language to English Work with all type of channel or group, even channel have "Restrict Saving Content", work with  multi channel, multi MT5 Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. Support to backtest signal. How to s
Signal TradingView to MT5 Pro Automator Мгновенное профессиональное исполнение между TradingView и MetaTrader 5 Автоматизируйте свою торговую стратегию с помощью самого надежного моста связи между алертами TradingView и реальным исполнением в MT5. Разработанный для трейдеров, которым требуются скорость, гибкость и безупречное управление рисками, этот советник (Expert Advisor) превращает любое сообщение с алертом в точный рыночный или лимитный ордер. ПРЕИМУЩЕСТВА И СИЛЬНЫЕ СТОРОНЫ Универсальный д
Скачать рабочую демо-версию Copy Cat More (Копи Кэт Мор) — копировщик сделок (Trade Copier) MT5 — это локальный копировщик сделок и полноценная система управления рисками и исполнения, созданная для современных торговых задач. От челленджей проп-фирм (prop firm) до управления личным портфелем — он адаптируется к любой ситуации благодаря сочетанию надёжного исполнения, защиты капитала, гибкой настройки и продвинутой обработки сделок. Копировщик работает в обоих режимах — Мастер (Master, отправи
Торговая панель для MetaTrader 5 — профессиональная торговля в один клик с графика и клавиатуры Мощная торговая панель для активного ручного трейдинга, которая позволяет открывать, сопровождать и закрывать сделки значительно быстрее и удобнее, чем стандартными средствами MetaTrader. Панель создана для тех, кто хочет получить полный контроль над позициями, ордерами, прибылью и торговыми сценариями в одном рабочем пространстве. Это не просто вспомогательная утилита. Это полноценный торговый интер
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.
Trade Manager DashPlus
Henry Lyubomir Wallace
5 (12)
DashPlus – это продвинутое средство для управления торговлей, разработанное для повышения эффективности и результативности торговли на платформе MetaTrader 5. Оно предлагает широкий набор функций, включая расчет рисков, управление ордерами, продвинутые системы сеток, инструменты на основе графиков и аналитику производительности. Основные функции Восстановительная Сетка Внедряет систему усреднения и гибкую сетку для управления сделками в неблагоприятных рыночных условиях. Позволяет стратегически
Entry In The Zone with SMC Multi Timeframe is a real-time 2-in-1 market analysis tool that combines market structure analysis and a No Repaint BUY / SELL signal system into a single indicator, built on Smart Money Concepts (SMC) — a widely adopted framework used by professional traders to understand market structure. This indicator helps you see the market more clearly, make decisions based on structure rather than guesswork, and focus on high-probability zones where price is more likely to reac
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
YuClusters
Yury Kulikov
4.93 (43)
Внимание: Ознакомиться с работой программы можно с помощью бесплатной версии  YuClusters DEMO . YuClusters это профессиональная система анализа рынка. Для трейдера открываются уникальные возможности анализа потока ордеров, объемов торговли, движения цены используя различные графики, профили, индикаторы, графические объекты. YuClusters оперирует данными на основе ленты сделок или тиковой информации, в зависимости от того, что доступно в котировках финансового инструмента.  YuClusters позволяет с
The News Filter MT5
Leolouiski Gan
4.78 (23)
Этот продукт фильтрует всех экспертных советников и ручные графики во время новостей, так что вам не нужно беспокоиться о внезапных скачках цены, которые могут разрушить ваши ручные торговые настройки или сделки, введенные другими экспертными советниками. Этот продукт также поставляется с полной системой управления ордерами, которая может обрабатывать ваши открытые позиции и ордера на ожидание перед выпуском новостей. После покупки   The News Filter   вам больше не придется полагаться на встроен
Другие продукты этого автора
Brent Precision Pro Brent Precision Pro is an Expert Advisor for MetaTrader 5 designed for Brent oil style CFD symbols. It uses intraday price-action rules to identify selected reversal and break-retest situations. The EA is intended for traders who want an automated strategy with defined stop-loss handling, configurable risk settings and broker time adjustment. It should be tested on each broker symbol before live use. Strategy logic The EA evaluates market structure during predefined intraday
Фильтр:
Нет отзывов
Ответ на отзыв