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.


Produits recommandés
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
R trend sync robot
Ekaterina Saltykova
r-Trend Sync Robot is an expert advisor for extra volatility markets like XAUUSD with dynamic lot size. Main EA features : The advisor's algorithm is based on the analysis of an extensive array of historical data (from 1995 for EURUSD & EURJPY and from 2004 for XAUUSD), which ensured the identification of general patterns in the behavior of these pairs across a wide range of timeframes. The analysis of historical data helped the advisor learn to recognize market triggers for medium-term trends a
ID Trade_Bot BS - an effective tool for automated trading using RSI Trade_Bot BS is an efficient solution for automated trading based on RSI, allowing flexible parameter customization and risk management. Thanks to the ability to choose a trading mode, dynamic Stop-Loss and Take-Profit levels, and trading mode adjustment (buying, selling, or both), it is suitable for various trading strategies. Key Features: Uses the RSI indicator to determine market conditions. Automatically opens an
!! IMPORTANT!, PLEASE REMEMBER TO RUN THIS EA ON THE 1 MINUTE TIME-FRAME AND BOOM1000 ASSET ONLY !! This wonderful piece of software is a super intelligent self learning algorithm made for mt5, checkout the examples at the bottom of the page Engage has had the pleasure of working with a very talented honest and good willed individual called Nardus van Staden to create this wonderful product, if you want something as awesome as this check him out at  This Link . The EA "Engage Synthetic Scalper
Super Powered
Godbless C Nygu
The SUPER POWER AI represents the convergence of cutting-edge computational intelligence and advanced algorithmic trading technologies. Engineered on the robust GPT-4o platform, it integrates high-dimensional neural network architectures capable of real-time adaptability to the stochastic dynamics of global financial markets. A defining feature of this Expert Advisor is its implementation of discrete Fourier transform visualizations within the proprietary ATFNet framework. By harmonizing the spe
Gold Ray
Dmitriq Evgenoeviz Ko
Gold Ray MT5 — The Art of the Golden Ratio in Trading Gold Ray is more than just a trading robot. It's the culmination of years of research into the dynamics of gold ( XAUUSD ), embodied in a highly accurate spectral analysis algorithm. While most expert advisors use outdated indicators, Gold Ray works with the price structure itself, calculating the trajectory of the "golden ray"—the moment when market liquidity and volatility converge into a powerful directional impulse. Why is Gold Ray your
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
Automated trading system. Trend Advisor big_Source MT5 uses 2 EMA indicators and an RSI indicator. Safe, doesn 't use a martingale or a grid of warrants. The expert uses standard stop loss, teak profit and trailer stop. Requirements Optimized for GOLD (XAUUSD). The Expert Advisor trades on M30 timeframes. The minimum deposit is $ 500. Compatible with four- and five-digit accounts. Compatible with all brokers, including American ones, that are subject to the FIFO rule. Input Parameters L
SolarTrade Suite Financial Robot: LaunchPad Market Expert - conçu pour ouvrir des transactions ! Il s'agit d'un robot de trading qui utilise des algorithmes spéciaux innovants et avancés pour calculer ses valeurs, votre assistant dans le monde des marchés financiers. Utilisez notre ensemble d'indicateurs de la série SolarTrade Suite pour mieux choisir le moment de lancer ce robot. Découvrez nos autres produits de la série SolarTrade Suite en bas de la description. Vous souhaitez naviguer en
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
Scalper Solution
Mahmoud Taher Ahmad Alshanty
Scalper Solution EA is a professional trading system designed for institutional‑grade performance on XAUUSD M1 charts. It is built with a modular architecture that emphasizes adaptability, broker safety, and diagnostic clarity. The system integrates advanced regime filters, session control, and reinforcement logic to handle diverse market conditions with precision. Key features include: Adaptive entry logic with candlestick pattern recognition and regime awareness. Session control that aligns tr
Liga Dinamica
Cesar Juan Flores Navarro
El EA Liga Dinamica, tiene el comportamiento de una liga que se estira cuando pierde y cierra cuando es positivo,  analiza el precio y abre esperando dar positivo y cierra cuando lo considera negativo. Utiliza Indicadores: para cerrar, abrir y en caso de que de negativo para cerrar. ------------------------------------------------------------------------------------------------ CASO ORO / USD: En el video se muestra la configuracion del par XAUUSD: - Lote = 0.01 (utiliza el doble 0.02) - Gananci
Perfect Trade EA Indicator 2026 for XAUUSD MT5 Премиальный многоуровневый самообучающийся индикатор с режимом автоторговли для XAUUSD Perfect Trade EA Indicator 2026 — это не просто индикатор и не обычный советник с примитивным входом по шаблону. Это премиальный торговый комплекс для MetaTrader 5, созданный для работы с XAUUSD, который объединяет в себе: - многоуровневый анализ рынка; - интеллектуальную фильтрацию сигналов; - режим автоматической торговли; - продвинутое сопровождение сделки;
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
K Dragon Gold (KDG-1) is a professional XAUUSD Expert Advisor for MetaTrader 5. "Powered by proprietary dual-strategy architecture — Trend + Mean Reversion running in parallel." No grid. No martingale. No hedging. Both Long and Short. XAUUSD M5 | Dual-Strategy: Trend + Mean Reversion | No Grid | No Martingale | IC Markets Optimized | Verified Across 6 Years | 20+ Years of Experience ️ IMPORTANT: Dual-Lot Architecture (1:2 Ratio) K Dragon Gold uses a unique 2-strategy dual-lot system: S
Renko Logic
Ahmed Mohammed Bakr Bakr
MetaTrader 5 Renko Expert Advisor - User Guide Overview This Expert Advisor implements a complete Renko-based trading system with custom brick calculation, visual display, and automated trading logic. -The EA only for Rent unlimited Version coming soon. Features 1. Renko Engine Custom Renko Calculation : Built from scratch, no offline charts needed No Repainting : Uses only closed Renko bricks Configurable Brick Size : Set in points via input parameters Real-time Brick Formation : Automatically
Smart M Quantum
Ignacio Agustin Mene Franco
Smart Money Quantum EA Smart Money Quantum is an advanced algorithmic trading Expert Advisor designed specifically to trade XAU/USD (gold) on the M15 timeframe. This system combines Smart Money Concepts (SMC) principles with institutional risk management to capture high-probability movements in the gold market. Key Features Trading Strategy SMC Methodology: Accurately identifies and trades institutional Order Blocks Break & Retest System: Confirms liquidity zones before executing trades RSI
Gold Limitless EA
Paulus Wawan Hernawan
GOLD LIMITLESS EA The Only Gold EA You Will Ever Need What Is It? GOLD LIMITLESS EA is a fully automated Expert Advisor designed specifically for Gold (XAUUSD) — the world's most traded commodity. It runs 24/5 on your MetaTrader 5 platform, finds the best entry points every 4 hours, and manages every trade from open to close — completely on its own. No manual input. No screen watching. No emotions. Just plug it in and let it work. How Does It Work? Every 4-hour session, the EA identifies two key
عنوان المنتج نظام نوفا للذكاء الاصطناعي للتداول الخوارزمي متعدد المصادر | منصة MT5 | إطار زمني 15 دقيقة ملخص نظام NOVA AI EA هو نظام تداول آلي تم تطويره لمنصة MetaTrader 5. وهو مصمم لدعم قرارات التداول من خلال الجمع بين نماذج معالجة البيانات الخارجية والتحليل الإحصائي الداخلي. يعتمد النظام على بيانات السوق المنظمة ومنطق قابل للتكوين لتوليد إشارات التداول. ولا يعتمد على مؤشرات ثابتة فقط، بل يدمج مكونات تحليلية متعددة لتحسين اتساق القرارات. بنية النظام يعتمد نظام NOVA AI EA على بنية تحليلية متع
GOLD D1 – Estratégia Candle 80% com Pirâmide Inteligente e Trailing Dinâmico (MT5) O   GOLD D1   é um Expert Advisor avançado desenvolvido para operar principalmente o XAUUSD (Ouro) com base em análise de força do candle diário, confirmação de momentum e gestão inteligente de posições. Trata-se de um robô robusto, focado em capturar movimentos fortes do mercado enquanto controla o risco através de uma estrutura adaptativa de pirâmide e trailing stop. Estratégia Principal – Candle 80% O robô
Wiki Gold Pro V2
Huynh Tan Linh N
4.2 (5)
Wiki Gold Pro V2 is the latest version of the second-generation gold trading EA, optimized for better performance with a noticeable reduction in drawdown. It operates on the M15 timeframe, delivering high performance, and maintains a simple configuration with fewer parameters, similar to V1. The results obtained for the period from January 2022 to the end of November 2023 are highly promising, based on real tick data. Setup: Target Market : Gold Optimal Timeframe : M15 Ideal Account Types : ECN
Yellowstone FX
Michael Prescott Burney
4 (5)
Yellowstone FX : Le robot de trading d’or le plus sûr, la plateforme MT5 et le graphique XAUUSD pour le premier semestre de cette année. Les effets spéciaux de Yellowstone       Il présente un design complexe.       Le robot de trading d'or MT5 le plus sûr       Cette solution est destinée aux traders qui privilégient la préservation du capital, l'exécution systématique des transactions et des niveaux de risque gérables.       Le marché XAUUSD   est spécifiquement conçu pour les objectifs suiv
Avalut X1 - Advanced Gold Expert Advisor (MT5) Precision trading pour XAUUSD Live Signal Avalut X1 est un Expert Advisor professionnel pour le trading automatisé sur XAUUSD (Gold) dans MetaTrader 5. Le système combine désormais cinq stratégies complémentaires dans un seul EA afin de gérer différents régimes de marché. Il est entièrement autonome pour MT5 et ne nécessite aucune DLL externe ni installateur tiers. Fonctionnalités principales Cinq stratégies dans un seul EA : des stratégies coordo
FDM 6-Gate Sniper Turbo: Master the Four Dimensions of Price The Problem: Why Do You Keep Failing with "Smart Money" Systems? Let’s be brutally honest. Most traders struggle because the systems they use are broken. They are either too complex, too subjective, or completely unreliable. ICT and SMC drown you in confusing terminology. You obsess over "manipulation" and "liquidity sweeps," leading to analysis paralysis where every move looks like a trap. Indicators lag behind the market, cluttering
Green Hawk
Rashed Samir
Green Hawk  is a professional scalping expert. The strategy is based on smart scalping algorithms which trades in certain periods of the market. The system does not use risky strategies such as grid or martingale. Trading is done based on the return of the price in short periods. All trades are closed within hours. I will increase the price in the near future. Next Price: $700 The final price will be $2000. Selling only through the mql5 site MT4 Version  can be found here FEATURES Support thro
Classic SNR MetaTrader 5 Expert Advisor | Multi-Symbol Support & Resistance Trading with Trend-Based Logic Overview Classic SNR Breakout EA is a professional trading robot that identifies structural Support & Resistance levels using daily swing points and executes trades based on H1 price action relative to these levels. The EA applies   dual logic : in an uptrend, it sells on H1 rejection below an SNR level; in a downtrend, it buys on H1 rejection above an SNR level. Breakout confirmations are
Sabira Reactive
Gounteni Dambe Tchimbiandja
IMPORTANT NOTE THIS EA IS NOT FULLY AUTOMATED, IT ONLY TAKES POSITIONS IN ZONES YOU DEFINE IT ASSISTS YOU. SO YOU NEED TO WATCH THE CHART CLOSELY THE MAIN POINT OF THIS EA IS TO FORCE THE TRADER TO RESPECT ENTRY RULES <<CONFIRMATION IS THE KEY>>. SO THE TRADER WILL ONLY LOOK FOR ZONES THE EA WILL LOOK FOR CONFIRMATION CANDLES AND ENTER IF A CONFIRMATION IS FOUND FOR EXAMPLE: If price is in a Bullish zone. Rule, look for buys. If Bullish Candlestick Pattern  or any other bullish candle pattern s
M5 Scalp XAU
Dmitriq Evgenoeviz Ko
M5 Scalp XAU – Grid Scalper for Gold M5 Scalp XAU is an automated trading robot (Expert Advisor) designed specifically for the volatile XAUUSD (gold) market on the M5 timeframe. It is based on a grid strategy with scalping elements, aimed at profiting from short-term price fluctuations. The advisor uses adaptive order placement logic with a dynamic step, responding to market conditions, as well as a system for managing a basket of positions until the overall target profit level is reached. Produ
The Inside Bar e one is a reversal/continuation candle formation, and is one of the most traded candle patterns. Robot F1 allows you to configure different trading strategies, Day Trade or swing trade, based on the Inside Bar as a starting point.  This pattern only requires two candles to perform. Robot F1 uses this extremely efficient pattern to identify trading opportunities. To make operations more effective, it has indicators that can be configured according to your strategy. Among the o
Golden Voyage
Dmitriq Evgenoeviz Ko
Golden Voyage MT5 is an expert advisor for conservative gold trading (XAUUSD), focused on strict risk management and single-position trading. The advisor does not use grids, martingale, averaging, or locking. Trading logic and risk management Single Position Mode Only one trade per symbol can be open at a time. Re-entries and volume increases are not permitted. Fixed risk per trade The stop-loss size is calculated as a percentage of the current balance. The lot size is automatically determined
Les acheteurs de ce produit ont également acheté
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:/
HINN Lazy Trader
ALGOFLOW OÜ
5 (2)
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 market structure - Understands swing market structure by Michael Huddleston
EA price is reduced to 50% discount for limited time period. Spot vs Future Arbitrage EA for MT5 Spot vs Future Arbitrage EA is an automated Expert Advisor designed for MetaTrader 5 that operates using price differences between Gold spot and Gold futures instruments. The strategy opens positions on both instruments simultaneously to take advantage of temporary differences between spot and futures prices. Requirements The trading account must provide both Gold spot and Gold futures instruments
ENGLISH VERSION TICK CHART SERVICE - Professional Tick Chart Service
GRID for MT5
Volodymyr Hrybachov
GRID for MT5 is a convenient tool for those who trade a grid of orders, designed for quick and comfortable trading in the FOREX financial markets. GRID for MT5 has a customizable panel with all the necessary parameters. Suitable for both experienced traders and beginners. It works with any brokers, including American brokers, requiring FIFO to close primarily previously opened transactions. The grid of orders can be either fixed - orders are opened with a fixed step, or have dynamic levels of op
Mt5BridgeBinary
Leandro Sanchez Marino
I automated its commercial strategies for use of binary in MT5 and with our Mt5BridgeBinary I sent the orders to its Binary account and I list: begin to operate this way of easy! The expert advisers are easy to form, to optimize and to realize hardiness tests; also in the test we can project its long-term profitability, that's why we have created Mt5BridgeBinary to connect its best strategies to Binary. Characteristics: - It can use so many strategies as I wished. (Expert Advisor). - He does
FiboPlusWaves MT5
Sergey Malysh
5 (1)
FiboPlusWave Series products Ready-made trading system based on Elliott waves and Fibonacci retracement levels . It is simple and affordable. Display of the marking of Elliott waves (main or alternative option) on the chart. Construction of horizontal levels, support and resistance lines, a channel. Superposition of Fibonacci levels on waves 1, 3, 5, A Alert system (on-screen, E-Mail, Push notifications).    Features: without delving into the Elliott wave theory, you can immediately open one of
Xrade EA
Yao Maxime Kayi
Xrade EA is an expert advisor as technical indicator. For short period trade it's the best for next previsions of the trend of the market. +--------------------------------------------------------------------------------------- Very Important Our robot(data anylizer) does'nt take a trade procedure. If using only our robot you must take positions by yoursels +--------------------------------------------------------------------------------------- The technical indiator provide for a given sma
News: IDEA 2.0 is out with lot of features, like telegram bot notifications and Limits order! Check the changelog at bottom of page (*). Hi all, here you can find my Expert Advisor, called IDEA  (Intelligent Detection & managEr Algorithm) . In short, with this software you can: Have   a clear view of market status , with an indication of current trend. Simply add symbols you want to monitor to your market watch, and IDEA will notify you if some of them are in trend; Have an   automatic lots ca
PROMOTION!! $499 until 1 Mar. After that, EA will be $1,050 Developed and tested for over 3 years, this is one of the safest EAs on the planet for trading the New York Open. Trading could never be easier.  Trade On NASDAQ US30 (Dow Jones Industrial Average) S&P 500  What Does The EA do? The EA will open a Buy Stop Order and a Sell Stop Order(With SL and TP) on either side of the market just a few seconds before the NY Open.  As soon as 1 of the 2 trades is triggered, the EA automatically delete
Market book saver
Aliaksandr Hryshyn
Saving data from the order book. Data replay utility: https://www.mql5.com/en/market/product/71640 Library for use in the strategy tester: https://www.mql5.com/en/market/product/81409 Perhaps, then a library will appear for using the saved data in the strategy tester, depending on the interest in this development. Now there are developments of this kind using shared memory, when only one copy of the data is in RAM. This not only solves the memory issue, but gives faster initialization on each
All in one Keylevel
Trinh Minh Tung
5 (1)
Instead of sticking to the Charts,let's use ALL IN ONE KEYLEVEL Announcement: We are pleased to announce the latest version 14.02 of the One In One Keylevel product. This is a reliable product that has been upgraded with many new features and improvements to make your work easier and more efficient. Currently, we have a special promotion for this new version. The current discounted price is $500, and there are only 32 units left. After that, the price will increase to $1000, and will continue to
GerFX EA Protection Filter MT5
Exler Consulting GmbH
5 (1)
The EA Protection Filter ( MT4 version here ) provides a news filter as well as a stock market crash filter, which can be used in combination with other EAs. Therefore, it serves as an additional protective layer for other EAs that do provide such filters.  During backtest analysis of my own night scalpers, which already use a stock market crash filter, I noticed that the historic drawdown,  especially during stock market crash phases like 2007-2008, was reduced significantly by using such a fil
Hedge Ninja
Robert Mathias Bernt Larsson
3 (2)
Make sure to join our Discord community over at www.Robertsfx.com , you can also buy the EA at robertsfx.com WIN NO MATTER IN WHICH DIRECTION THE PRICE MOVES This robot wins no matter in which direction the price moves by following changing direction depending on in which direction price moves. This is the most free way of trading to this date. So you win no matter which direction it moves (when price moves to either of the red lines as seen on the screenshot, it wins with the profit target you
Best for Technical Analysis You can set from one key shortcut for graphical tool or chart control for technical analysis. Graphic design software / CAD-like smooth drawing experience. Best for price action traders. Sync Drawing Objects You don’t need to repeat drawing the same trend line on the other charts. Shortcuts do that for you automatically. Of course, any additional modifications of the object immediately apply to the other charts too. Colors depend on Timeframe Organize drawings with
Gold instrument scanner is the chart pattern scanner to detect the triangle pattern, falling wedge pattern, rising wedge pattern, channel pattern and so on. Gold instrument scanner uses highly sophisticated pattern detection algorithm. However, we have designed it in the easy to use and intuitive manner. Advanced Price Pattern Scanner will show all the patterns in your chart in the most efficient format for your trading. You do not have to do tedious manual pattern detection any more. Plus you
Gold Wire Trader MT5 trades using the RSI Indicator. It offers many customizable RSI trading scenarios and flexible position management settings, plus many useful features like customizable trading sessions, a martingale and inverse martingale mode. The EA implements the following entry strategies, that can be enabled or disabled at will: Trade when the RSI Indicator is oversold or overbought Trade when the RSI comes back from an oversold or overbought condition Four different trading behavio
Gold trend scanner MT5 a multi symbol multi timeframe dashboard that monitors and analyzes Average True Range indicator value in up to 28 symbols and 9 timeframes  in 3 modes :  It shows the ATR indicator value in all pairs and timeframes and signals when the ATR value reaches a maximum or minimum in a given duration. Short term ATR/Long term ATR ratio: It shows ratio of 2 ATRs with different periods. It's useful in detecting short term volatility and explosive moves. ATR Value/Spread ratio: S
Attention: this is a multicurrency EA, which trades by several pairs from one chart!  Therefore, in order to avoid duplicate trades, it is necessary to attach EA only to one chart, ---> all trading in all pairs is conducted only from one chart! we can trade simultaneously in three different pairs, as by default (EURUSD + GBPUSD + AUDUSD), which take into account the correlation when entering the market for all three; we can trade only EURUSD (or any currency pair) and at the same time take into
A triangular arbitrage strategy exploits inefficiencies between three related currency pairs, placing offsetting transactions which cancel each other for a net profit when the inefficiency is resolved. A deal involves three trades, exchanging the initial currency for a second, the second currency for a third, and the third currency for the initial. With the third trade, the arbitrageur locks in a zero-risk profit from the discrepancy that exists when the market cross exchange rate is not aligned
Gold index expert MT5 Wizard uses Multi-timeframe analysis. In simpler terms, the indicator monitors 2 timeframes. A higher timeframe and a lower timeframe. The indicator determines the trend by analyzing order flow and structure on the higher timeframe(4 hour for instance). Once the trend and order flow have been determined the indicator then uses previous market structure and price action to accurately determine high probability reversal zones. Once the high probability reversal zone has bee
Golden Route home MT5 calculates the average prices of BUY (LONG) and SELL (SHORT) open positions, taking into account the size of open positions, commissions and swaps. The indicator builds the average line of LONG open positions, after crossing which, from the bottom up, the total profit for all LONG positions for the current instrument becomes greater than 0. The indicator builds the average line of SHORT open positions, after crossing which, from top to bottom, the total profit for all SH
Do you want an EA with small stoploss? Do you want an EA that is just in and out of market? Gold looks at several MT5 It is ONLY buying when the market opens and with a window of 10 minutes or less. It uses pre-market price so be sure your broker has that.   This strategies (yes, it is 2 different strategies that can be used with 3 different charts) have tight stoplosses and a takeprofit that often will be reached within seconds! The strategies are well proven. I have used them manually for
Bionic Forex
Pablo Maruk Jaguanharo Carvalho Pinheiro
Bionic Forex - Humans and Robots for profit. Patience is the key. The strategies are based on: - Tendency - Momentum + High Volatility - Dawn Scalper + Support Resistence. Again, patience is the key. No bot is flawless, sometimes it will work seamlessly, sometimes it simply won't.  it's up to you manage its risk and make it a great friend to trade automatically with fantastic strategies. Best regards, Good luck., Pablo Maruk.
ABOUT THE PRODUCT Your all-in-one licensing software is now available. End users are typically granted the right to make one or more copies of software without infringing on third-party rights. The license also specifies the obligations of the parties to the license agreement and may impose limitations on how the software can be used. AIM OF THE SOFTWARE The purpose of this system is to provide you with a one-of-a-kind piece of software that will help you license and securely track your MT4/MT5
Le but de ce service est de vous avertir quand le pourcentage du niveau de marge dépasse soit un seil vers le haut, soit vers le bas. La notification se fait par mail et/ou message sur mobile dans l'app metatrader. La fréquence des notifications se fait soit à intervalle de temps régulier, soit par étape de variation de la marge. Les paramètres sont: - Smartphone (true or false) : si true, active les notifications sur mobile ; la valeur par défaut est false. Il faut que les options du terminal
基于Goodtrade/GoodX 券商推出的黄金双仓对冲套利的交易模型/策略/系统,在日常的操作遇到的问题: 1、B账户跟随A账户即刻下单。 2:A账户 下单后  B账户 自动抄写止损止盈。 3:A账户平仓B账户同时平仓。 4:B账户平仓A账户也平仓。 5:不利点差下拒绝下单。 6:增加有利点值因子。 通过解决以上问题,改变了熬夜、手工出错、长期盯盘、紧张、恐慌、担心、睡眠不足、饮食不规律、精力不足等问题 目前解决这些问题后,有效提升了工作效率和盈利比例,由原来月10%盈利率提升到月45%的最佳盈利率。 原来的一名交易员只能管理操作两组账户,通过此EA提高到操作管理高达16组交易账户,或许你可以超越我们的记录,期待你的经验交流。 此EA分为: GoodtradeGoodX Tradercropy A       GoodtradeGoodX Tradercropy B     是一个组合EA,假设您购买的额  GoodtradeGoodX Tradercropy   A  必须同时购买 GoodtradeGoodX Tradercropy   B  两个组合使用会到最佳效果。   
BOTON para trading manual
Cesar Juan Flores Navarro
El EA Boton pone botones de Buy y Sell en la pantalla Ideal para usuarios que habren muchas ordenes y diferentes pares 9 botones buy desde 0.01 al 0.09 y 9 botones sell de 0.01 al 0.09 9 botones buy desde 0.1 al 0.9 y 9 botones sell de 0.1 al 0.9 Boton Close buy y sell Boton Close buy positivos y Boton Sell positivos Boton Close buy negativos y Boton Sell negativos un boton close all y botones buy de 1, 5 y 10 y botones de sell 1,5, 10
Отличный помощник для тех кто грамотно распоряжается своими рисками. Данный помощник просто не заменим если у вас всегда должен быть фиксированный риск на сделку. Помогает автоматически высчитывать лот в зависимости от вашего риска. Теперь можно не беспокоиться о том каким будет ваш Stoploss, риск всегда будет одинаковый. Считает объем сделок как для рыночных ордеров так и для отложенных. Удобный и интуитивно понятный интерфейс, так же есть некоторые дополнительные функции для упрощения вашей то
FTMO Sniper 7
Vyacheslav Izvarin
Dedicated for FTMO and other Prop Firms Challenges 2020-2024 Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Best results on GOLD and US100  Use any Time Frame Close all deals and Auto-trading  before  US HIGH NEWS, reopen 2 minutes after Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday Recommended time to trade 09:00-21:00 GMT+3 For Prop Firms MUST use special  Protector  https://www.mql5.com/en/market/product/94362 --------------------
Filtrer:
Aucun avis
Répondre à l'avis