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.


Prodotti consigliati
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
HotKeys MT5
Alexey Valeev
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 è uno strumento per il calcolo rapido della dimensione della posizione, l'esecuzione degli ordini e la gestione delle operazioni in MT5. Posiziona i livelli di Open Price, Stop Loss e Take Profit direttamente sul grafico, ottieni il calcolo automatico della dimensione della posizione e apri operazioni con un rischio controllato in pochi clic. Perché scegliere Easy Trade Executor? Easy Trade Executor è stato progettato per i trader che desiderano qualcosa di più del semplice
️ 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
Konstantin Chernov
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
Market Sniper
Clive Chatikobo
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% GRATUITO — versione completa, senza limitazioni né registrazione. Se Aegis ti è utile, lascia una recensione — ci aiuta molto e mantiene lo strumento gratuito. Altri strumenti gratuiti dello stesso sviluppatore: - Falcon Trailing Stop Manager (trailing stop universale e break-even): https://www.mql5.com/en/market/product/182633 - Sentinel News Filter (pausa del trading durante le news): https://www.mql5.com/en/market/product/182634 - Rapid Trade Panel (trading a un clic basato sul risch
FREE
Tick Volume Chart - uno strumento unico per la creazione di grafici basati sui volumi di tick in MetaTrader 5 . Con Tick Volume Chart puoi costruire grafici in cui ogni candela si forma non in base al tempo, ma in base a un numero prestabilito di tick. Questo ti offre una precisione ideale nell'analisi dell'attività di mercato, irraggiungibile con i grafici temporali standard. Puoi utilizzare qualsiasi indicatore e Expert Advisor con supporto per simboli personalizzati. Lavorare con i grafici ot
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
Indicatore Crypto_Forex "WPR con 2 Medie Mobili" per MT5, senza ridisegno. - WPR è uno dei migliori oscillatori per lo scalping. - L'indicatore "WPR e 2 Medie Mobili" consente di visualizzare le medie mobili veloci e lente dell'oscillatore WPR. - L'indicatore offre l'opportunità di visualizzare le correzioni di prezzo molto presto. - È molto facile impostare questo indicatore tramite parametri e può essere utilizzato su qualsiasi timeframe. - È possibile visualizzare le condizioni di ingresso
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
Close Buttons Utility è un'utility MQL5 compatta e flessibile per la gestione manuale di posizioni e ordini pendenti direttamente dal grafico. Il pannello consente di chiudere gruppi di ordini e posizioni sul simbolo corrente o su un gruppo di simboli selezionati con un solo clic. Può funzionare con tutti gli ordini, così come con un elenco specificato di Magic Number o con ordini manuali. Il pannello può essere ridotto a icona o spostato sullo schermo. Sono supportati temi chiari e scuri, dime
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
Gli utenti di questo prodotto hanno anche acquistato
Trade Assistant MT5
Evgeniy Kravchenko
4.43 (213)
It helps to calculate the risk per trade, the easy installation of a new order, order management with partial closing functions, trailing stop of 7 types and other useful functions. Additional materials and instructions Installation instructions - Application instructions - Trial version of the application for a demo account Line function -   shows on the chart the Opening line, Stop Loss, Take Profit. With this function it is easy to set a new order and see its additional characteristics bef
Forex Trade Manager MT5
InvestSoft
4.98 (667)
Benvenuto a Trade Manager EA, lo strumento definitivo per la gestione del rischio , progettato per rendere il trading più intuitivo, preciso ed efficiente. Non è solo uno strumento per l'esecuzione degli ordini, ma una soluzione completa per la pianificazione delle operazioni, la gestione delle posizioni e il controllo del rischio. Che tu sia un principiante, un trader avanzato o uno scalper che necessita di esecuzioni rapide, Trade Manager EA si adatta alle tue esigenze, offrendo flessibilità s
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.96 (142)
Sperimenta una copia di trading eccezionalmente veloce con il   Local Trade Copier EA MT5 . Con la sua facile configurazione in 1 minuto, questo copiatore di trading ti consente di copiare i trades tra diversi terminali di MetaTrader sullo stesso computer Windows o su Windows VPS con velocità di copia ultra veloci inferiori a 0.5 secondi. Che tu sia un trader principiante o professionista,   Local Trade Copier EA MT5   offre una vasta gamma di opzioni per personalizzarlo alle tue esigenze speci
TradePanel MT5
Alfiya Fazylova
4.88 (160)
Trade Panel è un assistente commerciale multifunzionale. L'applicazione contiene più di 50 funzioni di trading per il trading manuale e permette di automatizzare la maggior parte delle attività commerciali. Prima dell'acquisto, è possibile testare la versione dimostrativa su un conto demo. Scaricare la versione di prova dell'applicazione per un account dimostrativo: https://www.mql5.com/it/blogs/post/762419 . Istruzioni complete qui . Commercio. Consente di effettuare operazioni di trading con u
Versione Beta Telegram to MT5 Signal Trader è quasi pronto per il rilascio ufficiale in versione alpha. Alcune funzionalità sono ancora in fase di sviluppo e potresti riscontrare piccoli bug. Se riscontri problemi, ti preghiamo di segnalarli, il tuo feedback aiuta a migliorare il software per tutti. Telegram to MT5 Signal Trader è uno strumento potente che copia automaticamente segnali di trading da canali o gruppi Telegram al tuo account MetaTrader 5 . Supporta canali pubblici e privati e cons
FarmedHedge Pair Trading Dashboard
Tanapisit Tepawarapruek
5 (3)
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 - Strumento di ricerca configurazioni multi-simbolo con ottimizzazione automatica Power Candles Strategy Scanner utilizza lo stesso motore di auto-ottimizzazione che alimenta l'indicatore Power Candles, applicandolo a tutti i simboli presenti nel tuo Market Watch, uno accanto all'altro. Un unico pannello ti indica quali simboli sono statisticamente negoziabili in questo momento, quale strategia è vincente su ciascuno di essi, la coppia ottimale di Stop Loss / Take
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.94 (34)
Copiatore professionale di trade per MetaTrader 5 Un copiatore di trade veloce, professionale e affidabile per MetaTrader . COPYLOT consente di copiare operazioni Forex tra terminali MT4 e MT5 con supporto per conti Hedge e Netting . La versione MT5 di COPYLOT supporta: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting Versione MT4 Descrizione completa + DEMO + PDF Come acquistare Come installare Come ot
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
Telegram to MT5 Multi-Channel Copier copia automaticamente i segnali di trading dai tuoi canali Telegram direttamente in MetaTrader 5. Nessun bot, nessuna estensione del browser, nessuna copia manuale. Ricevi un segnale su Telegram e l'EA apre l'operazione sul tuo terminale in pochi secondi. Il prodotto include due componenti: un'applicazione Windows che ascolta i tuoi canali Telegram, e questo Expert Advisor che esegue i segnali sul tuo terminale MT5. È disponibile anche una versione per MT4. G
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 - Il pannello di trading con un coach integrato Premium Trade Manager porta un coach di trading direttamente nel tuo grafico, con un motore di esecuzione completo al di sotto. Imposta il trade come fai sempre, poi lascia che Max, il tuo coach di trading IA, legga esattamente quel setup rispetto al tuo conto live e ti dia un verdetto chiaro prima che tu confermi: lo stop rispetta un approccio disciplinato, il rischio è ragionevole, c'è un evento ad alto impatto tra pochi min
Trade copier MT5
Alfiya Fazylova
4.58 (48)
Trade Copier è un'utilità professionale progettata per copiare e sincronizzare le transazioni tra conti di trading. La copiatura avviene dal conto/terminale del fornitore al conto/terminale del destinatario, che sono installati sullo stesso computer o vps. PROMOZIONE - Se avete già acquistato il "Trade copier MT5", potete ottenere gratuitamente il "Trade copier MT4" (per la copia MT4 > MT5 e MT4 < MT5). Per maggiori informazioni sulle condizioni, vi preghiamo di contattarci tramite messaggi priv
Timeless Charts
Samuel Manoel De Souza
5 (7)
Timeless Charts è un'utilità di trading completa progettata per trader professionisti. Combina tipi di grafici personalizzati come Grafici a Secondi e Renko con analisi avanzata del flusso ordini tramite Footprints , Clusters , Profili di Volume , studi VWAP e strumenti di analisi ancorata per una visione più approfondita del mercato. Il trading e la gestione delle posizioni vengono eseguiti direttamente dal grafico tramite un pannello integrato di gestione delle operazioni , mentre Market Repla
Seconds Chart MT5
Boris Sedov
4.61 (18)
Seconds Chart - uno strumento unico per creare grafici in secondi su MetaTrader 5 . Con Seconds Chart , puoi generare grafici con timeframe definiti in secondi, ottenendo una flessibilità e una precisione d'analisi ideali, non disponibili nei grafici standard in minuti o ore. Ad esempio, il timeframe S15 indica un grafico con candele di 15 secondi. Puoi utilizzare qualsiasi indicatore e Expert Advisor con supporto per simboli personalizzati. Lavorare con loro è comodo quanto operare sui grafici
Trading View ToMT5
Mirel Daniel Gheonu
The Ultimate TradingView to MT5 Bridge Automation Basta trading manuale e problemi di latenza. TradingView to MT5 Copier PRO è il bridge più veloce e affidabile per eseguire i tuoi alert di TradingView direttamente su MetaTrader 5. Che tu usi indicatori personalizzati, script dello Strategy Tester o disegni manuali, questo EA esegue i tuoi trade istantaneamente utilizzando la tecnologia WebSocket ad alta velocità . A differenza dei semplici copiatori, questa versione PRO include Arena Statistics
Trade Manager DaneTrades
Levi Dane Benjamin
4.28 (29)
Trade Manager per aiutarti a entrare e uscire rapidamente dalle operazioni calcolando automaticamente il tuo rischio. Incluse funzionalità che ti aiutano a prevenire l'eccessivo trading, il vendetta trading e il trading emotivo. Le operazioni possono essere gestite automaticamente e i parametri di performance del conto possono essere visualizzati in un grafico. Queste caratteristiche rendono questo pannello ideale per tutti i trader manuali e aiuta a migliorare la piattaforma MetaTrader 5. Suppo
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 Trading View to MT5 Pro
Mirel Daniel Gheonu
4 (1)
Signal TradingView to MT5 Pro Automator Esecuzione professionale istantanea tra TradingView e MetaTrader 5 Automatizza la tua strategia di trading con il ponte di comunicazione più robusto tra gli alert di TradingView e l'esecuzione reale in MT5. Progettato per i trader che richiedono velocità, flessibilità e una gestione del rischio impeccabile, questo Expert Advisor trasforma qualsiasi messaggio di avviso in un preciso ordine a mercato o limite. PUNTI DI FORZA E VANTAGGI Motore di Parsing Univ
Scarica la demo funzionante Copy Cat More (Gatto Copione) — Copiatore di Trade (Trade Copier) MT5 è un copiatore locale di trade e un framework completo di gestione del rischio e di esecuzione, progettato per le sfide di trading di oggi. Dalle challenge delle prop firm alla gestione di portafogli personali, si adatta a ogni situazione con una combinazione di esecuzione robusta, protezione del capitale, configurazione flessibile e gestione avanzata dei trade. Il copiatore funziona in entrambe l
VirtualTradePad One Click Trading Panel
Vladislav Andruschenko
4.59 (74)
Pannello di trading per MetaTrader 5 — controllo professionale del trading in un clic dal grafico e dalla tastiera Un pannello di trading avanzato progettato per trader attivi, pensato per aprire, gestire e chiudere operazioni molto più velocemente rispetto all’interfaccia standard di MetaTrader. Questa soluzione è dedicata a chi desidera controllare posizioni, ordini pendenti, profitto totale ed esecuzione da un unico spazio di lavoro professionale. Non si tratta di un semplice utilitario. È u
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 è uno strumento avanzato di gestione delle operazioni progettato per migliorare l'efficienza e l'efficacia del trading sulla piattaforma MetaTrader 5. Offre una suite completa di funzionalità, tra cui calcolo del rischio, gestione degli ordini, sistemi di griglia avanzati, strumenti basati su grafici e analisi delle prestazioni. Caratteristiche Principali 1. Griglia di Recupero Implementa un sistema di griglia flessibile e di media per gestire le operazioni in condizioni di mercato avve
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)
Attention: You can view the program operation in the free version  YuClusters DEMO .  YuClusters is a professional market analysis system. The trader has unique opportunities to analyze the flow of orders, trade volumes, price movements using various charts, profiles, indicators, and graphical objects. YuClusters operates on data based on Time&Sales or ticks information, depending on what is available in the quotes of a financial instrument. YuClusters allows you to build graphs by combining da
The News Filter MT5
Leolouiski Gan
4.78 (23)
Questo prodotto filtra tutti gli esperti consulenti e i grafici manuali durante il periodo delle notizie, così non dovrai preoccuparti di improvvisi picchi di prezzo che potrebbero distruggere le tue impostazioni di trading manuali o le negoziazioni effettuate da altri esperti consulenti. Questo prodotto viene fornito anche con un sistema completo di gestione degli ordini che può gestire le tue posizioni aperte e gli ordini in sospeso prima della pubblicazione di qualsiasi notizia. Una volta che
Altri dall’autore
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:
Nessuna recensione
Rispondi alla recensione