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.


Önerilen ürünler
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, MT5 için hızlı pozisyon büyüklüğü hesaplama, emir yürütme ve işlem yönetimi aracıdır. Open Price, Stop Loss ve Take Profit seviyelerini doğrudan grafik üzerine yerleştirin, pozisyon büyüklüğünü otomatik olarak hesaplayın ve yalnızca birkaç tıklamayla kontrollü risk altında işlemler açın. Neden Easy Trade Executor? Easy Trade Executor, yalnızca risk hesaplamakla kalmayıp işlemlerini doğrudan grafik üzerinden hızlı ve verimli şekilde yönetmek isteyen yatırımcılar için tasarla
️ 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 ÜCRETSİZ — tam sürüm, sınırlama yok, kayıt gerekmez. Aegis işinize yaradıysa lütfen bir değerlendirme bırakın — bize çok yardımcı olur ve aracın ücretsiz kalmasını sağlar. Aynı geliştiricinin diğer ücretsiz araçları: - Falcon Trailing Stop Manager (evrensel takip eden stop + başabaş): https://www.mql5.com/en/market/product/182633 - Sentinel News Filter (haber dönemlerinde işlemi durdurma): https://www.mql5.com/en/market/product/182634 - Rapid Trade Panel (risk bazlı tek tık işlem paneli
FREE
Tick Volume Chart - MetaTrader 5 için tick hacmine dayalı grafikler oluşturmaya yarayan benzersiz bir araçtır. Tick Volume Chart sayesinde, her bir mumun zamana göre değil, belirli sayıda tick'e göre oluştuğu grafikler inşa edebilirsiniz. Bu, standart zaman tabanlı grafiklerde bulunmayan, piyasa aktivitesini analiz etmede ideal bir hassasiyet sağlar. Özel sembolleri destekleyen tüm indikatörleri ve Expert Advisor'ları kullanabilirsiniz. Oluşturulan grafiklerle çalışmak, standart grafikler kadar
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
MT5 için "2 Hareketli Ortalamalı WPR" Kripto Forex Göstergesi, Yeniden Boyama Yok. - WPR, scalping için en iyi osilatörlerden biridir. - "WPR ve 2 Hareketli Ortalama" Göstergesi, WPR osilatörünün Hızlı ve Yavaş Hareketli Ortalamalarını görmenizi sağlar. - Gösterge, fiyat düzeltmelerini çok erken görme fırsatı sunar. - Bu göstergeyi parametreler aracılığıyla kurmak çok kolaydır, herhangi bir zaman diliminde kullanılabilir. - Resimlerde Alış ve Satış giriş koşullarını görebilirsiniz. - WPR MA'la
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
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, pozisyonların ve bekleyen emirlerin doğrudan grafikten manuel yönetimi için kompakt ve esnek bir MQL5 yardımcı programıdır. Panel, tek tıklamayla geçerli veya seçili semboller grubundaki emir ve pozisyon gruplarını kapatmanıza olanak tanır. Tüm emirlerle ve ayrıca belirli bir Sihirli sayılar listesi veya manuel emirlerle çalışabilir. Panel küçültülebilir veya ekran etrafında hareket ettirilebilir. Açık ve koyu temalar, özelleştirilebilir boyutlar, satır yüksekliği ve düğm
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  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
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
Bu ürünün alıcıları ayrıca şunları da satın alıyor
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
Trade Manager EA’ye hoş geldiniz! Ticaretin daha sezgisel, hassas ve verimli hale gelmesi için tasarlanmış nihai risk yönetim aracı ile tanışın. Bu sadece bir emir verme aracı değil; ticaret planlaması, pozisyon yönetimi ve risk kontrolü için kapsamlı bir çözüm. İster yeni başlayan bir yatırımcı olun, ister deneyimli bir trader ya da hızlı emir gerektiren bir scalper, Trade Manager EA ihtiyaçlarınıza uyum sağlar ve forex, endeksler, emtialar ve kripto paralar dahil tüm piyasalarda esneklik sunar
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.96 (142)
Local Trade Copier EA MT5   ile olağanüstü hızlı işlem kopyalama deneyimi yaşayın. Kolay 1 dakikalık kurulumuyla bu işlem kopyalayıcısı, aynı Windows bilgisayarda veya Windows VPS'te birden fazla MetaTrader terminali arasında işlemleri kopyalamanıza olanak tanır ve 0.5 saniyenin altındaki şimşek hızında kopyalama hızları sunar. Başlangıç seviyesinde veya profesyonel bir tüccar olsanız da,   Local Trade Copier EA MT5 , spesifik ihtiyaçlarınıza göre özelleştirmek için geniş bir seçenek yelpazesi s
TradePanel MT5
Alfiya Fazylova
4.88 (160)
Trade Panel, çok işlevli bir ticaret asistanıdır. Uygulama, manuel ticaret için 50'den fazla ticaret fonksiyonu içerir ve çoğu ticaret görevini otomatikleştirmeyi mümkün kılar. Satın almadan önce demo hesapta demo sürümü test edebilirsiniz. Demo hesap için uygulamanın deneme sürümünü indirin: https://www.mql5.com/en/blogs/post/750865 . Talimatların tamamı buraya . Ticaret. Tek tıklamayla ticaret işlemleri yapmayı sağlar: Risk otomatik hesaplaması ile bekleyen emirleri ve pozisyonları açmak. Bird
Beta Sürümü Telegram to MT5 Signal Trader resmi alfa sürümüne neredeyse hazır. Bazı özellikler hâlâ geliştirilmekte olup küçük hatalarla karşılaşabilirsiniz. Sorun yaşarsanız lütfen bildirin, geri bildiriminiz yazılımın herkes için gelişmesine yardımcı olur. Telegram to MT5 Signal Trader , Telegram kanallarından veya gruplarından gelen işlem sinyallerini otomatik olarak MetaTrader 5 hesabınıza kopyalayan güçlü bir araçtır. Herkese açık ve özel kanalları destekler ve birden fazla sinyal sağlayıc
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 Strateji Tarayıcısı - Kendi Kendini Optimize Eden Çoklu Sembol Kurulum Bulucu Power Candles Strateji Tarayıcısı , Power Candles göstergesini çalıştıran aynı kendinden optimize edici motoru, Piyasa İzleyicinizdeki her sembol üzerinde yan yana çalıştırır. Tek bir panel, şu anda istatistiksel olarak hangi sembollerin işlem yapılabilir olduğunu, her birinde hangi stratejinin kazandığını, en uygun Stop Loss / Take Profit çiftini gösterir ve yeni bir sinyal geldiği anda size bildirim gön
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.94 (34)
MetaTrader 5 için profesyonel işlem kopyalayıcı MetaTrader için hızlı, profesyonel ve güvenilir bir işlem kopyalayıcı . COPYLOT , MT4 ve MT5 terminalleri arasında Forex işlemlerini kopyalamanıza olanak tanır ve Hedge ile Netting hesaplarını destekler. COPYLOT MT5 sürümü şunları destekler: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting MT4 sürümü Tam açıklama + DEMO + PDF Nasıl satın alınır Nasıl kurul
================================================================================ 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 , Telegram kanallarınızdaki trading sinyallerini otomatik olarak doğrudan MetaTrader 5'e kopyalar. Bot yok, tarayıcı uzantısı yok, manuel kopyalama yok. Telegram'da bir sinyal alırsınız ve EA birkaç saniye içinde terminalinizde işlem açar. Ürün iki bileşen içerir: Telegram kanallarınızı dinleyen bir Windows uygulaması ve sinyalleri MT5 terminalinizde yürüten bu Expert Advisor. Bir MT4 sürümü de mevcuttur. Kurulum kılavuzu ve uygulama indirme: https://www.mql5
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 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)
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
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: 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 - İçine Koç Yerleştirilmiş İşlem Paneli Premium Trade Manager , grafiğinizin içine bir trading koçu yerleştirir; altında tam bir yürütme motoru çalışır. İşlemi her zamanki gibi kurun, ardından yapay zeka trading koçunuz Max, o kurulumu tam olarak okusun ve canlı hesabınıza göre taahhüt etmeden önce size net bir değerlendirme sunsun: stop disiplinli bir yaklaşıma uyuyor mu, risk büyüklüğü makul mü, yüksek etkili bir haber dakikalar sonra mı geliyor, prop firm limitinize yakl
Trade copier MT5
Alfiya Fazylova
4.57 (46)
Trade Copier, ticaret hesapları arasındaki işlemleri kopyalamak ve senkronize etmek için tasarlanmış profesyonel bir yardımcı programdır. Kopyalama, tedarikçinin hesabından/terminalinden alıcının aynı bilgisayarda veya vps'de kurulu olan hesabına/terminaline gerçekleşir. KAMPANYA - Eğer zaten "Trade copier MT5" aldıysanız, "Trade copier MT4"ü ücretsiz olarak alabilirsiniz (MT4 > MT5 ve MT4 < MT5 kopyalamalar için). Koşullar hakkında daha fazla bilgi almak için lütfen bizimle özel mesaj yoluyla i
Timeless Charts
Samuel Manoel De Souza
5 (7)
Timeless Charts, profesyonel yatırımcılar için hepsi bir arada bir trading aracıdır. Saniye Grafikleri ve Renko gibi özel grafik türlerini, Footprints , Clusters , Hacim Profilleri , VWAP çalışmaları ve gelişmiş piyasa analizi sağlayan sabitlenmiş analiz araçlarıyla gelişmiş emir akışı analiziyle birleştirir. İşlem ve pozisyon yönetimi, entegre işlem yönetim paneli aracılığıyla doğrudan grafik üzerinden gerçekleştirilirken, Market Replay ve Sanal Hesaplar trading becerileri ve stratejileri üzeri
Seconds Chart - MetaTrader 5 için saniye bazlı grafikler oluşturmanıza olanak sağlayan eşsiz bir araçtır. Seconds Chart sayesinde saniye cinsinden zaman dilimleriyle grafik oluşturabilir, standart dakika veya saatlik grafiklerde mümkün olmayan esneklik ve analiz hassasiyetine ulaşabilirsiniz. Örneğin, S15 zaman dilimi 15 saniyelik mum çubuklarını ifade eder. Desteklenen özel sembollerle herhangi bir gösterge ve danışman kullanabilirsiniz. Onlarla çalışmak, standart grafiklerde işlem yapmak kadar
The Ultimate TradingView to MT5 Bridge Automation Manuel işlemleri ve gecikme sorunlarını durdurun. TradingView to MT5 Copier PRO , TradingView alarmlarınızı doğrudan MetaTrader 5 üzerinde yürütmek için en hızlı ve en güvenilir köprüdür (bridge). İster özel göstergeler, ister Strateji Test Komut Dosyaları veya manuel çizimler kullanın, bu Uzman Danışman (EA), Yüksek Hızlı WebSocket teknolojisini kullanarak işlemlerinizi anında gerçekleştirir. Basit kopyalayıcıların aksine, bu PRO sürüm Arena Sta
Riskinizi otomatik olarak hesaplarken işlemlere hızlı bir şekilde girip çıkmanıza yardımcı olacak Ticaret Yöneticisi. Aşırı Ticaret, İntikam Ticareti ve Duygusal Ticaretten korunmanıza yardımcı olacak özellikler içerir. İşlemler otomatik olarak yönetilebilir ve hesap performans ölçümleri bir grafikte görselleştirilebilir. Bu özellikler, bu paneli tüm manuel yatırımcılar için ideal kılar ve MetaTrader 5 platformunun geliştirilmesine yardımcı olur. Çoklu Dil desteği. MT4 Sürümü  |  Kullanım Kılavu
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.
Çalışan Demo İndir Copy Cat More (Taklitçi Kedi) — İşlem Kopyalayıcı (Trade Copier) MT5 , yerel bir işlem kopyalayıcı ve bugünün ticaret zorlukları için tasarlanmış eksiksiz bir risk yönetimi ve yürütme çerçevesidir. Prop firm challenge'larından kişisel portföy yönetimine kadar, sağlam yürütme, sermaye koruması, esnek yapılandırma ve gelişmiş işlem yönetimi karışımıyla her duruma uyum sağlar. Kopyalayıcı hem Master (Master, gönderen) hem de Slave (Slave, alıcı) modlarında çalışır; piyasa ve be
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
MetaTrader 5 için Trading Panel — grafik ve klavyeden profesyonel tek tıkla işlem kontrolü Aktif traderlar için geliştirilmiş güçlü bir Trading Panel; işlemleri standart MetaTrader arayüzüne göre çok daha hızlı açmanıza, yönetmenize ve kapatmanıza yardımcı olur. Bu çözüm; pozisyonları, bekleyen emirleri, toplam kârı ve işlem yürütmesini tek bir profesyonel çalışma alanında kontrol etmek isteyen kullanıcılar için tasarlanmıştır. Bu sadece sıradan bir yardımcı araç değildir. MetaTrader 5 için ger
Trade Manager DashPlus
Henry Lyubomir Wallace
5 (12)
DashPlus , MetaTrader 5 platformunda işlem verimliliğinizi ve etkinliğinizi artırmak için tasarlanmış gelişmiş bir işlem yönetim aracıdır. Risk hesaplama, emir yönetimi, gelişmiş ızgara sistemleri, grafik tabanlı araçlar ve performans analitiği gibi kapsamlı bir özellik yelpazesi sunar. Temel Özellikler 1. Kurtarma Izgarası Olumsuz piyasa koşullarında işlemleri yönetmek için ortalama alma ve esnek bir ızgara sistemi uygular. İşlem kurtarma çabalarını optimize etmek için stratejik giriş ve çıkış
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
Bu ürün, haber saatlerinde tüm uzman danışmanları ve manüel grafikleri filtreler, böylece manüel ticaret kurulumlarınızı veya diğer uzman danışmanlar tarafından girilen işlemleri yok edebilecek ani fiyat dalgalanmaları konusunda endişelenmenize gerek kalmaz. Bu ürün, herhangi bir haber yayınlanmadan önce açık pozisyonlarınızı ve bekleyen emirlerinizi yönetebilen tam bir sipariş yönetim sistemi ile birlikte gelir.   The News Filter'ı   satın aldığınızda, gelecekteki uzman danışmanlar için yerleşi
Yazarın diğer ürünleri
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
Filtrele:
Değerlendirme yok
Değerlendirmeye yanıt