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.


Produtos recomendados
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
Introducing Neural Bitcoin Impulse - an innovative trading bot created using neural network training technology on voluminous market data sets. The built-in mathematical model of artificial intelligence searches for the potential impulse of each next market bar and uses the resulting patterns of divergence and convergence between the predictive indicators and the price to form high-precision reversal points for opening trading positions. The trading robot is based on the Neural Bar Impulse ind
This utility provides the ability to use hot keys in manual trading instantly responding to the current market situation. You can assign hot keys to open/close positions by their type, open/close all positions on the current chart and remove all orders on the current chart. You can also assign hot keys for five predefined trade volumes and switch between them if necessary with no need to change the volume manually from time to time. It is also possible to set the auto calculation of a trade volu
Easy Trade Executor é uma ferramenta para cálculo rápido do tamanho da posição, execução de operações e gerenciamento de trades no MT5. Posicione os níveis de Open Price, Stop Loss e Take Profit diretamente no gráfico, obtenha cálculos automáticos do tamanho da posição e abra operações com risco controlado em apenas alguns cliques. Por que escolher o Easy Trade Executor? O Easy Trade Executor foi desenvolvido para traders que desejam mais do que apenas calcular riscos — eles querem gerenciar op
️ 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 is a fully automatic Forex trading Expert Advisor. This robot was made in 2014 year and did a lot of profitbale trades during this period. So far over 7000% growth on my personal account. There was many updates but 2019 update is the best one. The robot can run on any instrument, but the results are better with EURGBP, GBPUSD, on the M5 timeframe. Robot doesn't show good results in tester or live account if you run incorrect sets. Set files for Live accounts availible only for cu
CloseByLossOrProfit Expert Advisor closes all positions as their total profit or loss reaches a specified value (in deposit currency). In addition, it can delete pending orders. Allow AutoTrading before running the Expert Advisor. Usage: Run the Expert Advisor on a chart. Input Parameters:  Language of messages displayed (EN, RU, DE, FR, ES) - language of the output messages (English, Russian, German, French, Spanish); Profit in the currency  - profit in points; Loss in the currency  - loss in p
FREE
Scalping bot for the gold/dollar pair (XAU/USD) — a powerful and versatile solution for traders, designed to deliver maximum efficiency in a dynamic market. This bot is specifically engineered for scalping: it analyzes price changes and places trades even before significant market movements begin. This allows it to secure advantageous positions early and capitalize on even the smallest market fluctuations. Key Features: Flexibility: Adapts to any market conditions and suits your trading strategy
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)
Have you bought a trading advisor, subscribed to a signal, or are you trading manually ?! Don't forget about risk management. EA Hedger   is a professional trading utility with many settings that allows you to manage risks using hedging. Hedging is a trading technique that involves opening opposite positions to those already open positions. With the help of hedging, the position can be completely or partially blocked (locked). For example, you have three open positions on your account: EURUSD b
100% GRÁTIS — versão completa, sem limitações nem registro. Se o Aegis ajudar no seu trading, deixe uma avaliação — ajuda muito e mantém a ferramenta gratuita. Mais ferramentas gratuitas do mesmo desenvolvedor: - Falcon Trailing Stop Manager (trailing stop universal e break-even): https://www.mql5.com/en/market/product/182633 - Sentinel News Filter (pausa o trading em notícias): https://www.mql5.com/en/market/product/182634 - Rapid Trade Panel (negociação em um clique com base em risco): htt
FREE
Tick Volume Chart - uma ferramenta exclusiva para criar gráficos baseados no volume de ticks no MetaTrader 5 . Com o Tick Volume Chart , você pode construir gráficos onde cada candle é formado não por tempo, mas por uma quantidade definida de ticks. Isso oferece uma precisão ideal na análise da atividade do mercado, indisponível nos gráficos de tempo convencionais. Você pode utilizar quaisquer indicadores e robôs de negociação compatíveis com símbolos personalizados. Trabalhar com os gráficos ge
Simo Professional
Maryna Shulzhenko
Description of   Simo : an innovative robot with a unique trading system Simo is a revolutionary trading robot that changes the rules of the game with its unique trading system. Using sentiment analysis and machine learning, Simo takes trading to a new level. This robot can work on any time frame, with any currency pair, and on the server of any broker. Simo uses its own algorithm to make trading decisions. Various approaches to analyzing input data allow the robot to make more informed decis
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
Indicador Crypto_Forex "WPR com 2 Médias Móveis" para MT5, sem repintura. - O WPR em si é um dos melhores osciladores para scalping. - O indicador "WPR e 2 Médias Móveis" permite visualizar as Médias Móveis Rápida e Lenta do oscilador WPR. - O indicador oferece oportunidades para identificar correções de preço muito cedo. - É muito fácil configurar este indicador através de parâmetros, podendo ser usado em qualquer período gráfico. - Você pode ver as condições de entrada de compra e venda nas
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 Trade faster. Manage smarter. Close with confidence. BulkOp Trade Manager is a powerful MT5 utility EA built for traders who need speed, control, and clean execution directly from the chart. It is designed for active manual traders, scalpers, gold traders, and anyone who wants to manage multiple positions with less delay and fewer clicks. Why BulkOp? Ultra-fast Buy and Sell execution One-click Bulk Close Profit One-click Bulk Close Loss Keyboard trading control Bulk order e
GOLD XAU ARRAK EA Automated Gold / XAUUSD trading EA with filtered market direction, grid management, equity-based risk lot calculation, virtual TP/SL and manual chart panel. GOLD XAU ARRAK EA is an automated trading Expert Advisor for MetaTrader 5, designed mainly for Gold / XAUUSD trading. The EA uses an internal filtered market direction engine to identify the current market bias and manage positions according to the active direction. The system is built for traders who want automated Gold
VirtualStopsMT5
Viktor Shpakovskiy
A utility for managing open positions using virtual (invisible to the broker) stops. Virtual stop loss and virtual take profit can be freely moved around the chart. If the price touches the virtual stop line (TP, SL, TS), the EA will close all orders of the same direction on the current chart. Closing orders by virtual take profit is possible only if there is a profit. With the help of the built-in trading simulator, you can, in the strategy tester, see how the adviser works. Parameters Block
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
O Utilitário de Botões de Fecho é um utilitário MQL5 compacto e flexível para a gestão manual de posições e ordens pendentes diretamente do gráfico. O painel permite fechar grupos de ordens e posições no símbolo atual ou num grupo de símbolos selecionados com um clique. Pode funcionar com todas as ordens, bem como com uma lista específica de Números Mágicos ou ordens manuais. O painel pode ser minimizado ou movido pelo ecrã. São suportados temas claros e escuros, tamanhos personalizáveis, altur
Lock Bot
Artem Alekseev
This utility is designed to automatically maintain a "locking" position and reopen it when necessary, which is suitable for position maintenance and protection strategies. A simple utility (hereinafter referred to as the bot) that implements a locking strategy with an infinitely reloadable locking trade. How the bot works: - When launched, select a buy or sell order with a specified TP - Set the SL parameter for the locking trade - The bot monitors the distance between the opening price of the f
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)
The MT5 to Binance trading panel is the perfect tool for cryptocurrency traders looking to maximize their purchases on Binance and Binance US exchanges. Before purchase please familiarize with comparison between MT5 to Binance and Binance Copier To get started, simply input your API Key and Secret Key created in the client area of Binance and select the Enable Spot & Margin Trading and Enable Futures checkboxes and start trading Once launched, the trading panel automatically loads all Spot and F
Os compradores deste produto também adquirem
Trade Assistant MT5
Evgeniy Kravchenko
4.43 (213)
Ajuda a calcular o risco por comércio, a fácil instalação de uma nova encomenda, gestão de encomendas com funções de fecho parcial, trailing stop de 7 tipos e outras funções úteis. Materiais e instruções adicionais Instruções de instalação   -   Instruções para a aplicação   -   Versão de teste da aplicação para uma conta de demonstração Função de linha Mostra no gráfico a linha de Abertura, Stop Loss, Take Profit. Com esta função é fácil definir uma nova ordem e ver as suas características ad
Bem-vindo ao Trade Manager EA—uma ferramenta de gestão de risco criada para tornar o trading mais intuitivo, preciso e eficiente. Não é apenas uma ferramenta para executar ordens, mas uma solução abrangente para planejamento de operações, gerenciamento de posições e controle de risco. Seja você um iniciante, trader avançado ou scalper que precisa de execução rápida, o Trade Manager EA adapta-se às suas necessidades, oferecendo flexibilidade em todos os mercados, desde forex e índices até commodi
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.96 (142)
Experimente uma cópia de negociação excepcionalmente rápida com o Local Trade Copier EA MT5 . Com sua fácil configuração de 1 minuto, este copiador de negociações permite que você copie negociações entre vários terminais MetaTrader no mesmo computador Windows ou em um Windows VPS com velocidades de cópia ultra rápidas de menos de 0.5 segundos. Seja você um trader iniciante ou profissional, o   Local Trade Copier EA MT5   oferece uma ampla gama de opções para personalizá-lo de acordo com suas ne
TradePanel MT5
Alfiya Fazylova
4.88 (160)
Trade Panel é um assistente de negociação multifuncional. O aplicativo contém mais de 50 funções de negociação para trading manual e permite automatizar a maioria das tarefas de negociação. Antes da compra, você pode testar a versão de demonstração em uma conta demo. Baixe a versão experimental do aplicativo para uma conta de demonstração: https://www.mql5.com/pt/blogs/post/762547 . Instruções completas aqui . Comércio. Permite realizar operações de negociação com um clique: Abrir ordens pendent
Versão Beta O Telegram to MT5 Signal Trader está quase no lançamento oficial da versão alfa. Alguns recursos ainda estão em desenvolvimento e você pode encontrar pequenos erros. Se tiver problemas, por favor reporte, seu feedback ajuda a melhorar o software para todos. Telegram to MT5 Signal Trader é uma ferramenta poderosa que copia automaticamente sinais de trading de canais ou grupos do Telegram diretamente para sua conta MetaTrader 5 . Suporta canais públicos e privados do Telegram, e você
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 - Localizador de configurações multissímbolo com auto-otimização O Power Candles Strategy Scanner utiliza o mesmo motor de auto-otimização que alimenta o indicador Power Candles — em todos os símbolos da sua lista de observação, lado a lado. Um painel indica-lhe quais os símbolos que são estatisticamente negociáveis neste momento, qual a estratégia vencedora para cada um, o par ideal de Stop Loss / Take Profit, e avisa-o assim que um novo sinal é emitido. Esta ferr
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.94 (34)
Copiador profissional de operações para MetaTrader 5 Um copiador de operações rápido, profissional e confiável para MetaTrader . COPYLOT permite copiar operações de Forex entre terminais MT4 e MT5 com suporte para contas Hedge e Netting . A versão MT5 do COPYLOT oferece suporte a: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting Versão MT4 Descrição completa + DEMO + PDF Como comprar Como instalar Como
================================================================================ 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
Telegram to MT5 Multi-Channel Copier copia automaticamente sinais de trading dos seus canais do Telegram diretamente para o MetaTrader 5. Sem bots, sem extensões de navegador, sem copiar manualmente. Você recebe um sinal no Telegram e o EA abre a operação no seu terminal em poucos segundos. O produto inclui dois componentes: um aplicativo do Windows que escuta seus canais do Telegram, e este Expert Advisor que executa os sinais no seu terminal MT5. Também está disponível uma versão para MT4. Gui
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
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
YuClusters
Yury Kulikov
4.93 (43)
Atenção: A versão demo para revisão e teste está aqui . YuClusters é um sistema profissional de análise de mercado. O trader tem oportunidades únicas para analisar o fluxo de pedidos, volumes de negociação, movimentos de preços usando vários gráficos, perfis, indicadores e objetos gráficos. O YuClusters opera com base em dados de Tempos e Negócios ou informações de ticks, dependendo do que está disponível nas cotações de um instrumento financeiro. O YuClusters permite que você crie gráficos com
HINN Lazy Trader
ALGOFLOW OÜ
5 (1)
LIMITED SUMMER SALE -40% ! ONLY $470 insead of $790!  Maximum real discount! The core idea: using the user interface, you configure the parameters the chart must meet before entering a position (or positions), choose which entry models to use, and set the rules for when trading and planning should end. Lazy Trader  handles the rest: it  takes over all the routine chart watching and execution! full description  :: 3 key videos [1] ->  [2]   ->  [3] What can it do? - Understands Larry Williams
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
Premium Trade Manager - O Painel de Operações com um Coach Integrado Premium Trade Manager coloca um coach de trading dentro do seu gráfico, com um motor de execução completo por baixo. Configure a operação da forma que sempre faz e deixe o Max, seu coach de trading com IA, ler exatamente esse setup em relação à sua conta ao vivo e dar um veredicto direto antes de confirmar: se o stop é disciplinado, se o risco faz sentido, se há um evento de alto impacto a minutos de distância, se você está pró
Trade copier MT5
Alfiya Fazylova
4.57 (46)
Trade Copier é um utilitário profissional projetado para copiar e sincronizar negociações entre contas de negociação. A cópia ocorre da conta / terminal do fornecedor para a conta / terminal do destinatário, instalada no mesmo computador ou vps. PROMOÇÃO - Se você já adquiriu o "Trade copier MT5", pode receber o "Trade copier MT4" gratuitamente (para cópia MT4 > MT5 e MT4 < MT5). Para obter informações mais detalhadas sobre os termos, por favor, entre em contato conosco através de mensagens priv
Timeless Charts
Samuel Manoel De Souza
5 (7)
Timeless Charts é um utilitário de trading tudo-em-um para traders profissionais. Ele combina tipos de gráficos personalizados, como Gráficos por Segundos e Renko , com análise avançada de fluxo de ordens utilizando Footprints , Clusters , Perfis de Volume , estudos VWAP e ferramentas de análise ancorada para uma visão mais profunda do mercado. O gerenciamento de ordens e posições é realizado diretamente no gráfico por meio de um painel integrado de gerenciamento de operações , enquanto o Market
Seconds Chart MT5
Boris Sedov
4.61 (18)
Seconds Chart - uma ferramenta exclusiva para criar gráficos de segundos no MetaTrader 5 . Com o Seconds Chart , você pode criar gráficos com períodos definidos em segundos, proporcionando flexibilidade e precisão ideais para análise, indisponíveis em gráficos padrão de minutos ou horas. Por exemplo, o período S15 indica um gráfico com velas de 15 segundos. Você pode usar qualquer indicador ou Expert Advisor com suporte a símbolos personalizados. Trabalhar com eles é tão conveniente quanto negoc
The Ultimate TradingView to MT5 Bridge Automation Pare com o trading manual e problemas de latência. TradingView to MT5 Copier PRO é a ponte mais rápida e confiável para executar seus alertas do TradingView diretamente no MetaTrader 5. Quer você use indicadores personalizados, scripts do Strategy Tester ou desenhos manuais, este EA (Expert Advisor) executa suas negociações instantaneamente usando tecnologia WebSocket de Alta Velocidade . Diferente de copiadores simples, esta versão PRO inclui Ar
Trade Manager DaneTrades
Levi Dane Benjamin
4.28 (29)
Trade Manager para ajudá-lo a entrar e sair rapidamente de negociações enquanto calcula automaticamente seu risco. Incluindo recursos para ajudar a evitar negociações excessivas, negociações de vingança e negociações emocionais. As negociações podem ser gerenciadas automaticamente e as métricas de desempenho da conta podem ser visualizadas em um gráfico. Esses recursos tornam este painel ideal para todos os traders manuais e ajudam a aprimorar a plataforma MetaTrader 5. Suporte multilíngue. Vers
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
AI Agent Supervisor is NOT an Expert Advisor. AI Agent Supervisor   is a   multi-agent AI risk & portfolio supervisor   that watches every EA on your account and intervenes in real time.  WANT AN AI PORTFOLIO MANAGER WATCHING YOUR FLEET 24/7?   Run your fleet on the same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating unique data streams. The Supervisor r
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.
Baixar demo funcional Copy Cat More (Gato Copião) — Copiador de Trades (Trade Copier) MT5 é um copiador local de trades e um completo framework de gerenciamento de risco e execução, projetado para os desafios de trading de hoje. De desafios de prop firm ao gerenciamento de portfólio pessoal, ele se adapta a cada situação com uma combinação de execução robusta, proteção de capital, configuração flexível e manuseio avançado de trades. O copiador funciona em ambos os modos — Mestre (Master, emiss
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
Painel de Trading para MetaTrader 5 — controle profissional de trading em um clique a partir do gráfico e do teclado Um painel de trading avançado para traders ativos, criado para abrir, gerenciar e fechar operações muito mais rápido do que com a interface padrão do MetaTrader. Esta solução foi desenvolvida para quem deseja controlar posições, ordens pendentes, lucro total e execução em um único espaço de trabalho profissional. Não se trata apenas de mais um utilitário. É um verdadeiro cockpit
Trade Manager DashPlus
Henry Lyubomir Wallace
5 (12)
DashPlus é uma ferramenta avançada de gerenciamento de operações projetada para melhorar a eficiência e a eficácia das suas transações na plataforma MetaTrader 5. Ela oferece um conjunto completo de funcionalidades, incluindo cálculo de risco, gestão de ordens, sistemas de grade avançados, ferramentas baseadas em gráficos e análise de desempenho. Principais Funcionalidades 1. Grade de Recuperação Implementa um sistema de grade flexível e de média para gerenciar operações em condições adversas de
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
The News Filter MT5
Leolouiski Gan
4.78 (23)
Este produto filtra todos os consultores especializados e gráficos manuais durante o horário das notícias, para que você não precise se preocupar com picos de preços repentinos que possam destruir suas configurações de negociação manuais ou negociações realizadas por outros consultores especializados. Este produto também vem com um sistema de gerenciamento de pedidos completo que pode lidar com suas posições abertas e ordens pendentes antes do lançamento de qualquer notícia. Depois de comprar o
Mais do autor
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
Filtro:
Sem comentários
Responder ao comentário