GRInvest Breakeven Manager mt5

4

GRInvest Breakeven Manager is an MT5 trade-management Expert Advisor designed to manage existing open positions after entry. Its purpose is to automate breakeven protection, staged partial closes, trailing stops and position management while still giving the trader full manual control over individual trades.

The EA does not need to open trades itself. It can manage manual trades and trades opened by other Expert Advisors according to the selected symbol, direction and magic-number filters.

The design focuses heavily on one-shot execution, persistent state protection and avoiding duplicate partial closes.

1. Breakeven Management

The EA can automatically move the Stop Loss to breakeven once a position reaches a configurable amount of profit.

Main breakeven settings include:

  • Enable/disable automatic breakeven.

  • Profit points required before BE is triggered.

  • Configurable positive offset beyond the entry price.

  • Separate handling for BUY and SELL positions.

For example:

  • BUY opened at 4000.00

  • BE trigger = +500 points

  • BE offset = +50 points

Once the required profit is reached, the EA can move the SL above the original entry rather than exactly onto it.

For SELL positions the logic is reversed.

The EA will not deliberately move an existing stop backwards to a worse level.

2. Partial Close 1 — PC1

PC1 is the first automated partial-close stage.

It is normally triggered at the same profit threshold used for automatic breakeven.

The trader can configure:

  • Enable/disable PC1.

  • Percentage of the current position to close.

  • PC1 automatic trigger through the breakeven threshold.

Example:

  • Position = 0.10 lots

  • PC1 = 50%

  • EA closes approximately 0.05 lots when PC1 is triggered.

The exact volume is adjusted according to the broker's:

  • minimum lot size;

  • lot step;

  • permitted remaining volume.

The EA attempts to leave a valid tradable remainder rather than accidentally closing the full position.

3. Breakeven and PC1 Are Independent

A critical feature of the current version is that Breakeven and PC1 have separate completion states.

Using the manual SET ALL BE button:

  • moves the selected positions to breakeven;

  • marks BE as applied;

  • does not mark PC1 as completed;

  • does not prevent PC1 from executing later.

If PC1 is still waiting, it remains:

PC1: WAIT

PC1 becomes completed only when:

  • PC1 is actually executed;

  • PC1 reaches a condition where it cannot legitimately partial-close and its one-shot handling is completed;

  • or the trader manually selects SKIP.

Simply moving an SL to breakeven does not imply that PC1 has been taken.

This distinction is maintained across EA reloads and MT5 restarts.

4. Partial Close 2 — PC2

PC2 is a completely separate second partial-close stage.

It has its own:

  • enable/disable option;

  • profit trigger;

  • partial-close percentage;

  • persistent completion state.

Example:

  • PC1 = 50% at +1,000 points

  • PC2 = 50% of the remaining volume at +3,000 points

PC2 can therefore manage the remaining position independently of PC1.

5. Persistent Partial-Close Protection

One of the main safety systems in the EA is persistent one-shot protection.

The EA remembers whether PC1 or PC2 has already been completed for an individual position.

This protects against duplicate partial closes caused by events such as:

  • EA input changes;

  • EA reinitialisation;

  • recompilation;

  • timeframe changes;

  • chart reloads;

  • MT5 terminal restarts;

  • rebuilding the EA's internal position array.

Completion information is stored outside the temporary in-memory position array so the EA does not simply forget that a partial close has already occurred.

The position's persistent identity is used wherever possible rather than relying exclusively on a temporary in-memory state.

The objective is simple:

PC1 should execute once.
PC2 should execute once.

Reloading the EA must not make either stage available for execution again.

6. PC Status — WAIT / DONE / SKIP

Every managed position has an independent status for PC1 and PC2.

Possible states are:

WAIT
The partial has not been taken and remains available.

DONE
The partial has already been completed.

SKIP
The trader manually instructed the EA never to perform that partial close for this position.

Example display:

#26020120 BUY 0.10L +2450 pts PC1: DONE PC2: WAIT

Or:

#26020120 BUY 0.05L +2450 pts
 PC1: SKIP
 PC2: WAIT

These states are position-specific.

7. Manual PC1 / PC2 Controls

Each managed position can display its own manual controls.

Example:

#26020120 BUY 0.10L +2450 pts PC1: WAIT [CLOSE] [SKIP] PC2: WAIT [CLOSE] [SKIP]

CLOSE

Pressing CLOSE manually executes the relevant partial close immediately.

It uses the same configured PC percentage and broker-aware volume calculation as the automatic system.

For example:

  • PC1 percentage = 50%

  • Press PC1 CLOSE

  • EA immediately attempts to close 50% according to the current valid lot size.

Once successful, PC1 becomes:

DONE

SKIP

Pressing SKIP does not close any volume.

Instead, it permanently tells the EA that this PC stage should not be used for that specific position.

Example:

PC1: SKIP

The automatic PC1 trigger will then ignore that position permanently.

PC1 and PC2 have independent CLOSE and SKIP controls.

8. Manual/Automatic Duplicate Protection

The EA protects against the manual and automatic systems attempting to execute the same partial simultaneously.

For example, if the trader presses:

PC2 CLOSE

at almost exactly the same moment price reaches the automatic PC2 trigger, the EA uses an execution lock and persistent state checks to prevent two PC2 closes being deliberately initiated from the two management paths.

9. Trailing Stop

The EA includes an independent automatic trailing-stop system.

Configurable settings include:

  • enable/disable trailing stop;

  • profit required before trailing begins;

  • trailing distance;

  • trailing step;

  • minimum update interval.

The trailing stop is designed to move only in the profitable direction.

For a BUY:

  • SL can move upward as price rises;

  • it is not deliberately trailed back downward.

For a SELL:

  • SL can move downward as price falls;

  • it is not deliberately trailed back upward.

A configurable update interval also prevents unnecessary SL modification requests on every individual tick.

10. BUY and SELL Filters

The trader can independently control which direction the EA manages.

Settings include:

  • Manage BUY positions: ON/OFF

  • Manage SELL positions: ON/OFF

Examples:

BUY only

ManageBuys  = true
ManageSells = false

SELL only

ManageBuys = false ManageSells = true

Both

ManageBuys  = true
ManageSells = true
11. Manual Trades

Manual trades normally have:

Magic Number = 0

The EA can be configured specifically to manage these positions.

This allows the Breakeven Manager to act as a standalone trade manager for manually entered MT5 positions.

12. Single Magic Number Management

The EA can manage positions belonging to one specific Expert Advisor using its magic number.

Example:

MagicNumberToManage = 12345

Only positions matching that magic number are managed when the corresponding filtering mode is being used.

13. Multiple Magic Numbers

The EA also supports a comma-separated list of magic numbers.

Example:

MagicNumbersToManage = 0,2,5

or:

MagicNumbersToManage = 0, 2, 5, 10001, 20002

This allows one instance of the Breakeven Manager to manage positions created by several different EAs as well as manual positions.

14. Manage All Magic Numbers

A dedicated option allows the EA to ignore magic-number restrictions entirely:

ManageAllMagicNumbers = true

When enabled, the EA can manage every magic number on the current chart symbol, including:

  • magic 0 manual trades;

  • fixed-magic EAs;

  • EAs using different magic numbers;

  • EAs dynamically generating magic numbers.

Magic filtering priority is:

Priority 1

ManageAllMagicNumbers = true

Manage every magic number.

Priority 2

If Manage All is disabled and a list is entered:

MagicNumbersToManage = 0,2,5

Manage those numbers.

Priority 3

If no list is entered, use the original:

  • ManualTradesOnly

  • MagicNumberToManage

settings.

15. Symbol Protection

The EA manages positions belonging to the symbol of the chart it is attached to.

For example:

An instance on:

XAUUSD

manages applicable XAUUSD positions.

An instance on:

BTCUSD

manages applicable BTCUSD positions.

Using Manage All Magic Numbers therefore does not mean blindly managing unrelated symbols across the entire terminal.

16. SET ALL BE Button

The chart interface contains a:

SET ALL BE

button.

This immediately attempts to move all qualifying managed positions on the current symbol to the configured breakeven level.

Importantly:

SET ALL BE ONLY SETS BREAKEVEN.

It does not:

  • close PC1;

  • mark PC1 DONE;

  • mark PC1 SKIP;

  • mark PC2 DONE;

  • perform a partial close.

Example:

Before:

PC1: WAIT PC2: WAIT

After pressing SET ALL BE:

PC1: WAIT
PC2: WAIT

The SL has been moved to BE, but the partial-close states remain independent.

17. CLOSE ALL Button

The EA includes a manual:

CLOSE ALL

button.

It applies to positions that match the EA's current symbol and management filters.

A confirmation stage is used to reduce the chance of an accidental single-click close.

18. EA ON/OFF Control

The chart interface includes an EA management toggle:

EA: ON

or:

EA: OFF

This allows automated management to be paused from the chart interface without removing the EA.

19. Information Panel

The EA provides a configurable information panel showing important management settings and position information.

Depending on the selected panel mode, information can include:

  • EA status;

  • BUY/SELL management state;

  • BE trigger;

  • BE offset;

  • PC1 settings;

  • PC2 settings;

  • trailing-stop settings;

  • magic-number filter;

  • News Protection state;

  • managed position tickets;

  • BUY/SELL direction;

  • current lot size;

  • current profit in points;

  • PC1 status;

  • PC2 status;

  • CLOSE/SKIP buttons.

Several panel display modes are available so the trader can choose between a full information display and more compact layouts.

20. Automatic Removal of Closed-Position Controls

When a managed position closes, the EA removes its associated position information and manual partial controls from the chart.

Unused panel labels are hard deleted, rather than simply having their text hidden.

This prevents old:

  • ticket information;

  • PC1/PC2 rows;

  • CLOSE buttons;

  • SKIP buttons;

  • panel labels

from remaining as chart remnants after a position has disappeared.

The EA also performs cleanup during initialisation to remove panel objects left behind by an abnormal reload or previous EA version.

21. News Protection EA Integration

The Breakeven Manager can optionally communicate with the GRInvest Universal News Protection Manager.

The two EAs remain separate programs.

They communicate using shared MT5 Terminal Global Variables.

Default communication prefix:

GRINVEST_NEWS_BLOCK

The News Protection EA acts as the master authority for whether a protected news window is currently active.

22. Behaviour During News Protection

When the linked News Protection EA reports that protection or post-news recovery is active, the Breakeven Manager temporarily stops actions that could interfere with protected positions.

During the protection state, it blocks:

  • automatic PC1;

  • automatic PC2;

  • automatic breakeven SL movement;

  • automatic trailing-stop movement;

  • manual PC1 CLOSE;

  • manual PC2 CLOSE;

  • manual SET ALL BE.

This is particularly important when the News Protection EA temporarily removes SL/TP levels around high-impact news.

Without the handshake, the Breakeven Manager could potentially see the removed SL and attempt to add a new BE or trailing SL while the News EA is intentionally protecting the position.

23. Controls Still Available During News

The trader retains certain manual controls during news protection.

The EA can continue to allow:

  • PC1 SKIP;

  • PC2 SKIP;

  • CLOSE ALL;

  • chart panel/status updates.

SKIP remains available because it does not place a partial-close trade or modify SL/TP.

24. Partial Close Is Not Lost During News

If price reaches a PC trigger while News Protection is active, the partial is not automatically marked as completed.

Example:

PC2 trigger = +3000 points

Price reaches:

+3300 points

during the news protection window.

The EA blocks PC2.

PC2 remains:

PC2: WAIT

When protection finishes, if the position still satisfies the PC2 trigger, the EA can execute PC2 normally.

This prevents News Protection from silently consuming or cancelling a legitimate partial-close stage.

25. News Protection Recovery Handshake

The News Protection EA can maintain the protection signal not only during the scheduled news period but also while post-news restoration is unresolved.

This means the Breakeven Manager does not immediately start changing stops or taking partials while the News EA is still:

  • restoring the original SL;

  • restoring the original TP;

  • processing saved recovery state;

  • resolving a protected position.

A short renewable expiry/heartbeat mechanism is used rather than a permanent boolean lock.

If the News Protection EA stops unexpectedly, the protection signal can eventually expire instead of leaving the Breakeven Manager permanently disabled.

26. Broker-Aware Partial Lot Calculation

Partial-close volume calculations consider the symbol's:

  • SYMBOL_VOLUME_MIN

  • SYMBOL_VOLUME_STEP

  • current position volume

The EA normalises the amount to a broker-valid volume.

It also attempts to ensure a valid remainder is left open after the partial close.

This avoids sending obviously invalid lot sizes such as a volume below the broker's minimum or one that does not respect the lot step.

27. Trade Execution Validation

Partial closes use explicit MT5 trade requests and verify the returned trade result.

The EA can attempt compatible order filling modes where necessary and checks the broker result before considering the close successful.

This helps make the trade-management process more robust across brokers with different execution configurations.

28. Failed Partial Handling

Automatic partials use one-shot protection.

If an automatic PC action reaches a state where repeatedly attempting the same close every tick would be unsafe or undesirable, the EA prevents uncontrolled repeated requests.

Manual CLOSE behaviour is handled separately so the trader can deliberately retry an unsuccessful manual action where appropriate.

29. Persistent State Across Reloads

The EA is designed so important one-shot management information is not dependent only on local variables that disappear when the EA reloads.

Persistent information includes PC completion and skip state.

This is intended to protect against scenarios such as:

PC2 executes ↓ EA inputs changed ↓ EA reloads ↓ Price is still above PC2 trigger

The expected behaviour is:

PC2: DONE

and not another PC2 close.

30. Historical Recovery

The persistent-state system also includes support for recognising certain previous partial-close activity from trade history.

This was introduced to provide safer migration from older versions of the EA that did not originally store persistent PC1/PC2 state.

The priority remains preventing an existing position from receiving an unintended duplicate partial close.

31. Overall Management Sequence

A typical position can therefore be managed like this:

POSITION OPENS │ ▼ PC1 / BE threshold reached │ ├── PC1 closes configured % │ └── SL moves to BE + offset │ ▼ PC2 threshold reached │ └── PC2 closes configured % of remaining volume │ ▼ Trailing trigger reached │ └── SL trails price according to distance/step │ ▼ Remaining position continues toward TP / SL / manual close

Any individual PC stage can instead be manually:

[CLOSE]

or:

[SKIP]

32. Example Position Display
-- BREAKEVEN MANAGER 2.58 --

STATUS: RUNNING
NEWS PROTECTION: CLEAR

BUYS: ON   SELLS: ON

BE After:   75000 pts
BE Offset:   1000 pts

PC1 at BE: 33% of lot
PC2 at 150000 pts: 50% of lot

Trail Trigger: 300000 pts
Trail Dist:     200000 pts
Trail Step:      50000 pts

Magic: ALL

#244076844 BUY 0.01L +42300 pts
 PC1: WAIT       [CLOSE] [SKIP]
 PC2: WAIT       [CLOSE] [SKIP]
33. Main Design Goals

The GRInvest Breakeven Manager is designed around five principles:

Automated protection

Move positions to breakeven and progressively protect profitable trades.

Flexible position reduction

Use two independent partial-close stages.

Manual control

Allow the trader to manually CLOSE or SKIP each PC stage per position.

Persistent safety

Do not repeat partial closes simply because MT5, the chart or the EA was reloaded.

EA compatibility

Manage manual trades or positions created by other Expert Advisors using single, multiple or unrestricted magic-number filtering.

Core Feature Summary

Breakeven

  • Automatic BE trigger

  • Adjustable BE offset

  • Manual SET ALL BE

  • BE independent from PC1

Partial Close

  • PC1 at BE threshold

  • Independent PC2 threshold

  • Individual percentages

  • Persistent one-shot protection

  • Broker-aware volume calculation

  • Manual CLOSE per PC

  • Manual SKIP per PC

  • WAIT / DONE / SKIP status

  • Manual/automatic duplicate protection

Trailing Stop

  • Adjustable trigger

  • Distance

  • Step

  • Update interval

Position Selection

  • BUY only

  • SELL only

  • BUY + SELL

  • Manual trades

  • Single magic number

  • Multiple comma-separated magic numbers

  • Manage all magic numbers

Chart Controls

  • EA ON/OFF

  • SET ALL BE

  • CLOSE ALL with confirmation

  • Per-position PC1 CLOSE/SKIP

  • Per-position PC2 CLOSE/SKIP

  • Multiple panel modes

Reliability

  • Persistent PC state

  • Historical recovery support

  • Hard removal of stale chart labels/buttons

  • Position-specific state

  • Trade-result validation

  • Protection against repeated partial execution

News Protection Integration

  • Shared MT5 handshake

  • Pauses BE/PC/trailing during protection

  • Pauses manual PC CLOSE and SET ALL BE

  • Leaves SKIP and CLOSE ALL available

  • Does not consume PC triggers during news

  • Resumes automatically after recovery

The EA is intended to act as a dedicated MT5 position-management layer: entries can come from the trader or another EA, while the Breakeven Manager handles protection, partial exits and ongoing position management according to a consistent set of rules.

Отзывы 1
Marcelo De Oliveira Saraiva
137
Marcelo De Oliveira Saraiva 2025.01.19 16:06 
 

é excelente, se tivesse um mini painel para colocar os parametros sem necessitar entrar nas propriedades seria melhor ainda, o trailling stop eu não entendi e deveria ter opção de desligar... eu uso outro expert a unica parte ruim é que os 2 não funcionam juntos um exclui o outro (o outro é um painel de trade)

Рекомендуем также
Click Trading
Jawad Tauheed
5 (2)
One Click Trading – Auto TP SL Developer TraderLinkz Version 1.00 Category Utility What it does Adds missing TP and SL to your manual trades and pending orders Sets them once per ticket Lets you move TP and SL afterward Works on hedging and netting accounts Scans on every tick and reacts on trade events Why you want it You place faster entries You get consistent risk and exit targets You reduce fat finger errors You keep full manual control Quick start Attach the EA to any chart Keep TP and SL e
FREE
When executing an order, whether through the Metatrader ticket on a computer or the Metatrader app on a mobile device, either manual or pending, Easy Trade will automatically set the take profit and stop loss levels, as well as a limit order with its respective take profit and stop loss levels. It follows the trading strategy for market open (US30, US100, US500), but it can be applied to any market asset.
FREE
MAFX Trading Manager
Mark Anthony Noblefranca Nazarrea
5 (1)
MAFX Trading Manager Профессиональная панель ручного управления сделками для MetaTrader 5 Обзор продукта MAFX Trading Manager — это профессиональная панель ручного управления сделками для MetaTrader 5, разработанная для более эффективного открытия и управления позициями. Она обеспечивает быстрое исполнение ордеров и основные инструменты управления сделками в компактном и удобном интерфейсе. Данный продукт предназначен для ручных трейдеров, которым необходимы больший контроль, скорость и стабильн
FREE
Prop Edge Heartbeat
Nuno Madeira Amaro Pire Costa
EA to prevent inactivity violations on prop firms. This EA will scout for your most recent trade and if it is older than the number of days defined, will enter a micro lot position size 0.01 on the pair defined. It is recommended to use a tight spread pair like EURUSD. This EA will not act as long as you have at least one trade in the last X days (defined on config). This EA will not place other trades or modify existing position.
FREE
Core function Intelligent transaction management one-click opening and closing operation, which supports user-defined lots to set multiple closing modes: all closing, closing by direction and closing by profit and loss status. Professional risk control, real-time risk monitoring and spread control to avoid high-cost trading environment. Visual control panel has an intuitive graphical interface, and all functions can be operated with one button to display position information, profit and loss sta
FREE
GDS RiskLab TradeDesk Free Manual Trading Desk and Risk-Control Utility for MetaTrader 5 GDS RiskLab TradeDesk is a free chart-based utility for traders who want a cleaner manual trading workspace in MetaTrader 5. It is designed as a simple execution-support and risk-control panel. The goal is to keep the trading process more organized: review the chart, plan the trade, keep risk visible and execute manually with more structure. This tool does not generate buy or sell signals. It does not predic
FREE
Risk Manager – Account Protection Tool Risk Manager is an Expert Advisor for MetaTrader 5 designed to protect your trading account by applying automatic risk management rules. This tool does not open trades . It continuously monitors your account and enforces predefined limits to help prevent excessive losses and maintain disciplined trading. Risk Manager works in the background and can manage positions opened by manual trading or other Expert Advisors. It is particularly useful for: • Manual tr
FREE
Trade assistant pro v8
Ahmed Mohammed Bakr Bakr
FREE FREE FREE Trade Assistant MT5 – Professional Trading & Risk Management Panel Trade Assistant MT5 is an advanced trading panel designed to help traders execute orders faster, safer, and more professionally . It simplifies manual trading by combining smart order management , precise risk control , and one-click execution , making it ideal for both beginners and advanced traders. This tool does not trade automatically . Instead, it empowers you with full control while applying professional-gra
FREE
WAP TP Stealth EA – Intelligent Basket Management for Precision Exits WAP TP Stealth EA is a specialized trade management expert advisor designed for traders who rely on basket strategies, recovery systems, and multi-position workflows. Instead of closing trades individually, the EA dynamically calculates the Weighted Average Price (WAP) of all open positions and executes a coordinated closure once your defined profit target is reached. This approach enables efficient drawdown management, smooth
FREE
Очень часто случаются ситуации, когда нужно быстро закрыть все открытые позиции либо закрыть только по определенному условию... Скрипт Positions Close закрывает открытые позиции в соответствии с выбранными настройками. Можно выбрать для закрытия Все позиции , только Buy , только Sell Также можно выбрать по каким символам закрывать позиции: по всем символам или только по текущему, на график которого был брошен скрипт Есть фильтр по закрытию прибыльных или убыточных позиций, а также и тех и других
FREE
Lot by Risk MT5
Sergey Vasilev
4.88 (16)
Торговая панель Lot by Risk предназначена для торговли вручную . Это альтернативное средство для отправки ордеров. Первая особенность панели –   удобное выставление ордеров при помощи контрольных линий. Вторая особенность – расчёт объёма сделки по заданному риску при наличии линии stop loss . Контрольные линии выставляются при помощи горячих клавиш: take profit – по умолчанию клавиша T ; price – по умолчанию клавиша P ; stop loss – по умолчанию клавиша S ; Настроить клавиши можно самостоятельно
FREE
Скрипт для быстрого закрытия рыночных и отложенных ордеров. Этот зацикленный скрипт гарантированно закроет все выбранные ордера. Он будет работать, пока не закроет все выбранные позиции и удалится когда сделает свою работу. Если у Вас много открытых позиций этот скрипт поможет вам. Интуитивно понятный интерфейс 1) Просто бросьте его на график. 2) Выберите ордера, которые надо закрыть. По умолчанию выбраны все! 3) нажмите кнопку "Close". Если вы забыли включить Авто торговлю, будет выдано сообщен
FREE
Chart Link
David Gitau Gakunga
4.83 (12)
Chart Link  allows you to control multiple charts from one chart or multiple charts from multiple charts. Features 1. Synchronised Scrolling :     Scrolling the master chart also scrolls all linked sub charts to the same position.     Sub charts inherit offset and auto-scroll settings from the master chart. 2. Synchronised Timeframe :     Switching the master chart timeframe also switches all linked sub charts. 3. Synchronised   Symbol   :     Switching the master chart symbol also switches all
FREE
Market & Pending Risk Manager EA Operation Manual Market & Pending Risk Manager is a professional MT5 trading panel EA that integrates multiple functions such as market order trading, pending order trading, risk management, and trailing stop loss, providing traders with a comprehensive trading solution. Core Advantages Intelligent Dual-Mode Trading Market Order Mode: One-click buy/sell for fast execution Pending Order Mode: Precise entry to wait for the optimal timing Seamless Switching
FREE
FiT Panel Pro
Thonglak Janyakorn
Overview FiT Panel Pro is a professional-grade trade management panel designed for MetaTrader 5 traders who demand speed, precision, and full control over their trades. Built with a modern dark-theme UI, it combines one-click execution with advanced risk management, visual SL/TP drag lines, automatic Fibonacci-based levels, and comprehensive order management — all in a single, compact panel. Whether you are a scalper, day trader, or swing trader, FiT Panel Pro gives you the edge you need to exec
FREE
EA Utility Tool: Risk Consistency Manager The Risk Consistency Manager EA is a simple yet powerful tool that automates risk management across multiple open positions. It dynamically adjusts stop-loss levels to distribute a predefined total risk value (e.g., $10,000) evenly among all active trades. Key Features: Dynamic Risk Distribution: Automatically allocates an equal share of risk to each position (e.g. with total risk capital of $10,000, its will be distribute each trade with $3,333.33 risk
FREE
The free trade manager — simple but effective. Quickly open positions with preset take profit and stop loss levels. Set everything to breakeven or close all trades with one click. Get plenty of information on your chart about your account, trades, and profit/loss. It speaks for itself — that’s how simple this manager is to use. Check out our other EAs and our Telegram for more information! By traders, for traders!
FREE
Auto TP SL in Pips
Suci Ridha Krismayanti
This utility automates Take Profit (TP) and Stop Loss (SL) levels for your trades, calculated in Pips . It ensures consistent risk management for all your positions. Crucial Note for Manual Traders: If you intend to use this utility on trades opened manually (without an Expert Advisor), you must change the 'Magic Number' setting to 0 (zero) . This allows the utility to correctly identify and manage your manual orders.
FREE
Automatic Trade Protection EA For MT5 Overview Trade Equity Guardian is a lightweight, always-on Expert Advisor that continuously monitors all open positions on your account and automatically closes any trade that breaches your predefined risk thresholds. It acts as a safety net — protecting your account from oversized positions, runaway losses, or locking in profits when targets are hit. Attach it to any chart and let it run in the background. It works alongside your other EAs and manual trades
FREE
OpenAllSymbolsSafe.mq5 — Умный скрипт для MetaTrader 5 Назначение: Автоматически открывает графики всех символов из Обзора рынка с применением шаблона default.tpl на текущем таймфрейме (TF) , предварительно закрывая все открытые графики (кроме текущего). Идеален для быстрого анализа множества инструментов без рутинных действий! Особенности: Автоматизация: Экономит время — открытие десятков графиков в один клик. Безопасность: Аккуратно закрывает лишние графики, сохраняя текущий акти
FREE
Dynamic Candle Timer
Channaphat Yamuangmorn
Overview The Dynamic Candle Timer is a lightweight and efficient utility designed for MetaTrader 5. Unlike traditional candle timers that remain static in the corner of the chart, this indicator dynamically attaches to the current Bid price line. This allows traders to monitor the remaining candle time directly at the point of action, enhancing focus during fast-paced market movements. It is highly suitable for day traders and scalpers operating on XAUUSD, Forex, Crypto, or Indices. Key Feature
FREE
Are you an MT5 trader who needs rapid, reliable risk management? ​Introducing this essential utility – a powerful, free Expert Advisor designed to instantly close all open positions on your MetaTrader 5 account with a single, dedicated action. This tool is a must-have for emergency market exits or quick, decisive profit-taking. ​ Why is this a FREE tool? ​I am a professional MQL developer actively focused on delivering   5-star solutions   and   securing custom MQL5 Freelance Jobs . This free ut
FREE
NS Financas Automatic Clear All Chart Indicators Script Automatically remove all indicators from your chart offered for free by NS Financas! Don't waste any more time deleting the indicators one by one. With this script it is possible in one click to remove all indicators from the screen to adjust your new strategy while still using the settings of your graph, in addition to the possibility of configuring keyboard shortcuts for quick access to the script. Take the opportunity to visit our cha
FREE
Collective TP SL Manager is a MetaTrader 5 utility that manages a combined take-profit and stop-loss across many open positions on one symbol. Instead of setting TP/SL per order, it watches the net profit or loss of all (or filtered) positions and closes the basket when your target is reached. Features Basket-level targets: one collective take-profit and one collective stop-loss for the whole group of positions. Net P/L monitoring: continuously sums the profit/loss of all selected positions in
FREE
FOX CUSTOMER BENEFITS Verified customers with qualifying MQL5 Market purchases may be eligible for complimentary FOX commercial Expert Advisors. Learn more about the FOX Customer Benefits Program: https://www.mql5.com/en/blogs/post/774575 ACCOUNT NUCLEAR One account. One control panel. Full manual authority when you need it. Account Nuclear is a free MetaTrader 5 utility built for traders who manage multiple positions, pending orders, manual trades or several Expert Advisors on the same account
FREE
Bundle Risk Manager Pro EA "Risk Manager Pro EA is an all-in-one trading utility that combines advanced risk management tools, ensuring full control over your trading account while protecting your capital and complying with trading regulations. By bundling Limit Positions , Concurrent Risk Capital , and the newly added Limit Profit , this EA is the ultimate solution for disciplined trading and achieving evaluation goals. Key Features: 1. Limit Positions : Enforces a maximum number of open posi
FREE
Отображает Stop Loss, Take Profit и текущую прибыль/убыток открытых сделок в одной панели. Удобный интерфейс, перемещаемая панель и поддержка нескольких языков для эффективного управления рисками.  управление рисками, стоп лосс, тейк профит, прибыль убыток, анализ портфеля, MT5 индикатор, торговая панель, многоязычная поддержка Общие сведения Этот индикатор отображает значения Stop Loss, Take Profit и текущую прибыль/убыток ваших открытых сделок в одной панели на платформе MetaTrader 5. Панель и
FREE
Smart SLTP ATR Trade Manager A trade management utility for MetaTrader 5 that automatically assigns Stop Loss and Take Profit levels to open positions, and trails Stop Loss as price moves in the trader's favor. Compatible with manual trades, Expert Advisors, and copy trading signals simultaneously. Overview The utility monitors all open positions on the chart and assigns SL/TP levels immediately upon trade entry, based on one of four configurable calculation modes. An optional step-based traili
FREE
Main Features: Trading Panel: Quick on-chart buttons for Buy, Sell, Close Profit, and Close All. Risk Management: Built-in Auto Lot calculation based on your specified risk percentage. Visual Tools: Automatically draws Supply/Demand zones and Fibonacci levels on the current chart. Market Data: Displays real-time ATR (Volatility) and RSI values directly on the panel. Optional Auto Mode: A basic automated trading function using EMA crossover and ATR volatility filter. Parameters to Note: RiskPerce
FREE
Calculating the volume of orders every time you create an order is an extremely important thing in risk management Let this tool simplify your work! ----------------------------------------------------- How to use? Attach the indicator to the chart and set its parameters:  Risk size in %  or money and Risk Reward Ratio. Click on the ON button and locate the horizontal line to your would-be StopLoss level. Options: Click on the Pending/Instant button to locate the horizontal line  to your would-b
FREE
С этим продуктом покупают
Trade Assistant MT5
Evgeniy Kravchenko
4.41 (216)
Помогает рассчитать риск на сделку, простая установка нового ордера с помощью линий, управление ордерами с функциями частичного закрытия, 7 типов трейлинг-стопа и другие полезные функции. Дополнительные материалы и инструкции Инструкция по установке - Инструкция к приложению - Пробная версия приложения для демо счета Функция Линии   - отображает на графике линию открытия, стоп-лосс, тейк-профит. С помощью этой функции легко установить новый ордер и увидеть его дополнительные характеристики пе
Добро пожаловать в Trade Manager EA — лучший инструмент для управления рисками, предназначенный для упрощения, точности и эффективности торговли. Это не просто инструмент для размещения ордеров; это комплексное решение для удобного планирования торгов, управления позициями и усиленного контроля над рисками. Независимо от того, начинающий вы трейдер, опытный специалист или скальпер, нуждающийся в быстром исполнении, Trade Manager EA адаптируется к вашим потребностям и работает с любыми активами:
Astro Trade MT5
Indra Maulana
5 (2)
AstroTrade Trading Assistant AstroTrade is a comprehensive multi-functional trading utility developed for the MetaTrader 5 platform. It integrates essential tools for trade execution, risk management, and technical monitoring into a single unified interface. The application is designed to assist traders in managing their daily operations through a visual and structured environment. Visual Trade Execution and Risk Management The application includes a specialized trading panel that assists in c
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.97 (146)
Опыт экстремально быстрого копирования сделок с помощью Local Trade Copier EA MT5 . Благодаря простой установке в течение 1 минуты этот копировщик сделок позволяет вам копировать сделки между несколькими терминалами MetaTrader на одном компьютере с Windows или на Windows VPS с крайне быстрыми скоростями копирования менее 0.5 секунды. Независимо от того, новичок вы или профессиональный трейдер, Local Trade Copier EA MT5 предлагает широкий спектр опций, чтобы настроить его под ваши конкретные по
TradePanel MT5
Alfiya Fazylova
4.88 (167)
Trade Panel — это многофункциональный торговый помощник. Приложение содержит более 50 торговых функций для ручной торговли и позволяет автоматизировать большинство торговых операций. Полная инструкция здесь . Торговля. Позволяет совершать торговые операции в один клик: Открыть отложенные ордера и позиции с автоматическим расчетом риска. Открыть несколько ордеров и позиций одним кликом. Открыть сетку ордеров. Закрыть отложенные ордера и позиции по группам. Разворот позиции (закрыть Buy > открыть
Бета-версия Telegram to MT5 Signal Trader почти готов к официальному альфа-релизу. Некоторые функции все еще находятся в разработке, и вы можете столкнуться с небольшими ошибками. Если вы заметите проблемы, пожалуйста, сообщите о них, ваша обратная связь помогает улучшать программное обеспечение для всех. Telegram to MT5 Signal Trader — мощный инструмент, который автоматически копирует торговые сигналы из каналов и групп Telegram прямо в ваш счёт MetaTrader 5 . Поддерживаются как публичные, так
================================================================================ 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-каналов напрямую в MetaTrader 5. Никаких ботов, никаких браузерных расширений, никакого ручного копирования. Вы получаете сигнал в Telegram, и советник открывает сделку на вашем терминале за несколько секунд. Продукт включает два компонента: приложение для Windows, которое слушает ваши Telegram-каналы, и этот советник, который исполняет сигналы на терминале MT5. Также доступна версия для MT4. Руководст
HINN MAGIC ENTRY - лучший инструмент для входа и менеджмента позиций! ПРОСТО. БЫСТРО. ИНТУИТИВНО. МАКСИМАЛЬНО АВТОМАТИЗИРОВАНО. Выставляет ордера через выбор уровня на графике! полное описание    ::    demo-версия    ::   60-sec-video-description Основные функции: - Рыночные, лимитные и отложенные ордера -  Автоматический подсчет лоттажа  -  Автоматический учет спреда и комиссий -  Неограниченное количество промежуточных тейков для позиций - Перевод в безубыток и трейл стоп-лосса и тейк-проф
Grid Manual MT5
Alfiya Fazylova
4.73 (22)
Grid Manual — это торговая панель для работы с сеточными стратегиями. Утилита универсальная, имеет гибкие настройки и понятный интерфейс. Работает с сеткой ордеров не только в сторону усреднения убытков, но и в сторону наращивания прибыли. Трейдеру не нужно создавать и сопровождать сетку ордеров, это сделает утилита. Достаточно открыть ордер и Grid manual автоматически создаст ему сетку ордеров и будет сопровождать его до самого закрытия. Полная инструкция и демо-версия здесь . Основные особенно
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.97 (35)
Профессиональный копировщик сделок для MetaTrader 5 Быстрый, профессиональный и надежный копировщик сделок для MetaTrader . COPYLOT позволяет копировать сделки Forex между терминалами MT4 и MT5 с поддержкой счетов Hedge и Netting . Версия COPYLOT для MT5 поддерживает: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting Версия MT4 Полное описание + DEMO + PDF Как купить Как установить Как получить файлы жур
Trade copier MT5
Alfiya Fazylova
4.58 (52)
Trade Copier — это профессиональная утилита, предназначенная для копирования и синхронизации сделок между торговыми счетами. Копирование происходит от счета/терминала поставщика к счету/терминалу получателя, которые установлены на одном компьютере или vps. АКЦИЯ - Если вы уже приобрели "Trade copier MT5", вы можете получить "Trade copier MT4" бесплатно (для копирования MT4 > MT5 и MT4 < MT5). Для получения более подробной информации об условиях, пожалуйста, свяжитесь с нами через личные сообщени
Telegram To MT5 Ultra
Mirel Daniel Gheonu
5 (4)
Telegram To MT5 — копировщик сигналов Превратите торговые сигналы из ваших Telegram-каналов в реальные ордера MT5 — автоматически, на любом количестве счетов, с полным контролем над риском и правилами. Telegram To MT5 связывает VIP / сигнальные каналы, на которые вы уже подписаны в Telegram, с вашим терминалом MetaTrader 5. Бесплатное приложение-компаньон для ПК читает сообщения (даже из каналов, которые не допускают ботов), а этот советник исполняет их на вашем счёте — применяя ваши настройки р
Signal TradingView to MT5 Pro Automator Мгновенное профессиональное исполнение между TradingView и MetaTrader 5 Автоматизируйте свою торговую стратегию с помощью самого надежного моста связи между алертами TradingView и реальным исполнением в MT5. Разработанный для трейдеров, которым требуются скорость, гибкость и безупречное управление рисками, этот советник (Expert Advisor) превращает любое сообщение с алертом в точный рыночный или лимитный ордер. ПРЕИМУЩЕСТВА И СИЛЬНЫЕ СТОРОНЫ Универсальный д
Trade Copier Ultimate
Janitha Sandaruwan Amaradasa Wickramasingha Arachchilage
5 (4)
Trade Copier Ultimate - Telegram to MT5 Signal Copier Trade Copier Ultimate automatically copies Telegram trading signals into MetaTrader 5. The EA can read signal messages, detect the symbol, order type, entry price, Stop Loss, Take Profit levels and selected update commands, then execute or manage the trade in MT5 using your lot and risk settings. It is more than a basic Telegram to MT5 copier. TCU also supports Bot API and user-account Bridge workflows, Discord signal routing, local MT5 to MT
Timeless Charts
Samuel Manoel De Souza
5 (8)
Timeless Charts is an all-in-one trading utility for professional traders. It combines custom chart types such as Seconds Charts and Renko with advanced order flow analysis using Footprints , Clusters , Volume Profiles , VWAP studies, and anchored analysis tools for deeper market insight. Trading and position management are handled directly from the chart through an integrated trade management panel , while Market Replay and Virtual Accounts provide environments for practicing trading skills and
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.
Anchor Trade Manager
Kalinskie Gilliam
5 (7)
Anchor: The EA Manager Your EAs manage their own trades. Anchor manages the account around them. Anchor gives you one place to control your EAs, manage risk and decide when trading is allowed. Any EA, any vendor, any broker or symbol. No source-code changes required. The Problem Most EAs only know what they are doing. They cannot see when another EA is already trading, when several EAs open and are stacking risk or when the account has reached your loss limit. Even using just one EA, it may not
Global Investing FX Terminal
Santiago Nicolas Pla Casuriaga
Global Investing FX Terminal — это комплексный FX-дашборд для MetaTrader 5 — процентные ставки центральных банков, позиции COT CFTC, рэнкинг carry, индексы экономических сюрпризов, перекос опционов, настроения ритейла и корреляции, тринадцать панелей в общей сложности — отображается на едином канвасе без мерцания и обновляется каждые 10 секунд через один прикреплённый EA. Никаких внешних программ не требуется. Профессиональный анализ валютного рынка требует одновременного доступа к данным, котор
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https://www.mql5.com/en/signals/2356404 - Farmed Hedge Yield V Copy:  https://www.mql5.com/en/signals/2357156 * Before purchasing, please feel free to send me a message if you have any questions about the product or setup. ** After purchase,  Contact me via private message to receive t
Premium Trade Manager - Торговая панель со встроенным коучем Premium Trade Manager помещает торгового коуча прямо в ваш график, а под ним работает полноценный движок исполнения. Настройте сделку так, как вы всегда это делаете, затем позвольте Max, вашему ИИ-наставнику по трейдингу, прочитать именно эту настройку с учётом вашего живого счёта и дать чёткое заключение до того, как вы входите: соответствует ли стоп дисциплинированному подходу, разумен ли риск, не выходит ли высоковолатильный релиз ч
Trading Chaos Expert
Gennadiy Stanilevych
5 (11)
Этот программный продукт не имеет аналогов в мире, поскольку он является универсальным "пультом управления" торговых операций, начиная от получения торговых сигналов, автоматизации входа в позиции, установки стоп-лоссов и тейк-профитов, а также трейлинга прибыли одновременно по множеству сделок в одном открытом окне. Интуитивно понятное управление экспертом в "три клика" на экране монитора позволяет полноценно использовать все его функции на разного рода компьютерах, включая планшетные. Взаимоде
MT5 to Telegram Signal Provider — это простой в использовании полностью настраиваемый инструмент, который позволяет отправлять определённые сигналы в чат, канал или группу Telegram, превращая вашу учётную запись в провайдера сигналов . В отличие от большинства конкурирующих продуктов, он не использует импорт DLL. [ Демо ]   [ Руководство ] [ Версия MT4 ] [ Версия для Discord ] [ Канал в Telegram ]  New: [ Telegram To MT5 ] Настройка Доступно пошаговое руководство пользователя . Никаких знаний A
Power Candles Strategy Scanner — самооптимизирующийся инструмент для поиска настроек по нескольким инструментам Power Candles Strategy Scanner использует тот же самооптимизирующийся движок, что и индикатор Power Candles — для всех символов в вашем Market Watch, одновременно. На одной панели отображается информация о том, какие символы в данный момент являются статистически торгуемыми, какая стратегия выигрывает на каждом из них, оптимальная пара Stop Loss / Take Profit, а также отправляется увед
Trade Dashboard MT5
Fatemeh Ameri
4.95 (132)
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
Welcome to ENTRY IN THE ZONE WITH SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool based on Smart Money Concepts (SMC), designed to analyze market structure, price direction, and key trading zones. It supports both Single-Timeframe Analysis and Multi-Timeframe Analysis, providing a clearer view of the overall market structure across multiple timeframes, with real-time BUY / SELL signals that do not repaint. It is designed to help filter trading op
Daily Trading Limiter
AL MOOSAWI ABDULLAH JAFFER BAQER
5 (8)
• Please test the product in the Strategy Tester before purchasing to understand how it works. • If you face any issues, contact me via private message—I’m always available to help. • After purchase, send me a screenshot of your order to receive a FREE EA as a gift. Daily Trading Limiter — the rule you cannot break Every trader knows the number. Three trades. Two percent. One bad day and stop. And every trader has watched themselves take the fourth trade anyway. The problem was never knowing th
Скачать рабочую демо-версию Copy Cat More (Копи Кэт Мор) — копировщик сделок (Trade Copier) MT5 — это локальный копировщик сделок и полноценная система управления рисками и исполнения, созданная для современных торговых задач. От челленджей проп-фирм (prop firm) до управления личным портфелем — он адаптируется к любой ситуации благодаря сочетанию надёжного исполнения, защиты капитала, гибкой настройки и продвинутой обработки сделок. Копировщик работает в обоих режимах — Мастер (Master, отправи
Торговая панель для MetaTrader 5 — профессиональная торговля в один клик с графика и клавиатуры Мощная торговая панель для активного ручного трейдинга, которая позволяет открывать, сопровождать и закрывать сделки значительно быстрее и удобнее, чем стандартными средствами MetaTrader. Панель создана для тех, кто хочет получить полный контроль над позициями, ордерами, прибылью и торговыми сценариями в одном рабочем пространстве. Это не просто вспомогательная утилита. Это полноценный торговый интер
YuClusters
Yury Kulikov
4.93 (43)
Внимание: Ознакомиться с работой программы можно с помощью бесплатной версии  YuClusters DEMO . YuClusters это профессиональная система анализа рынка. Для трейдера открываются уникальные возможности анализа потока ордеров, объемов торговли, движения цены используя различные графики, профили, индикаторы, графические объекты. YuClusters оперирует данными на основе ленты сделок или тиковой информации, в зависимости от того, что доступно в котировках финансового инструмента.  YuClusters позволяет с
Другие продукты этого автора
Elevate your trading with this Breakeven and Trailing Stop Manager, an Expert Advisor (EA) built for MetaTrader 4 to streamline risk management by automating breakeven and trailing stop strategies. This EA helps secure profits and minimize losses without requiring constant manual intervention, giving you more time to focus on market analysis and strategy. ### Key Features: - **Automatic Breakeven Adjustment:**     Automatically move the Stop Loss to the breakeven level once your position reac
FREE
Universal News Protection Manager (UNPM) UNPM is an MT5 news-protection and trade-management EA designed especially for traders who need to respect prop-firm restricted news trading windows. Its main purpose is simple: Protect open trades from being accidentally closed by TP or SL during a restricted high-impact news window. This is particularly useful with prop firms that allow positions to remain open during major news, but do not allow trades to be opened or closed within a set number of minu
Фильтр:
Marcelo De Oliveira Saraiva
137
Marcelo De Oliveira Saraiva 2025.01.19 16:06 
 

é excelente, se tivesse um mini painel para colocar os parametros sem necessitar entrar nas propriedades seria melhor ainda, o trailling stop eu não entendi e deveria ter opção de desligar... eu uso outro expert a unica parte ruim é que os 2 não funcionam juntos um exclui o outro (o outro é um painel de trade)

Greig Cameron Rennie
665
Ответ разработчика Greig Cameron Rennie 2025.01.29 16:57
Thank you for the review. Set trailing stop to 0 to turn off.
If this doesn't work for you mail me and I'll update with a separate setting to toggle off/on Edit Have updated with a setting to toggle trails on/off Also settings to control trail trigger, step an distance from current price
Ответ на отзыв