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.

Comentários 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)

Produtos recomendados
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
Ao executara ordem, seja ela pela boleta do metatrader no computador ou pelo metatrader no celular, seja ordem manual ou pendente, o Easy Trade irá posicionar os níveis de take profit e stop loss, bem como uma ordem limit e seus respectivos take profit e stop loss de forma automática. Seguindo a estratégia de negociação para abertura de Bolsa (us30, us100,us500) porém, pode ser ultilizada em quaisquer ativo do mercado.
FREE
MAFX Trading Manager
Mark Anthony Noblefranca Nazarrea
5 (1)
MAFX Trading Manager Painel profissional de gerenciamento manual de trades para MetaTrader 5 Visão geral do produto O MAFX Trading Manager é um painel profissional de gerenciamento manual de trades para MetaTrader 5, desenvolvido para ajudar traders a executar e gerenciar operações com mais eficiência. Ele oferece execução rápida de ordens e ferramentas essenciais de gerenciamento em uma interface compacta e intuitiva. Este produto é destinado a traders manuais que buscam maior controle, velocid
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
Very often there are situations when you need to quickly close all open positions or close only under a certain condition... The Positions Close script closes open positions according to the selected settings. You can choose to close All positions , only Buy, only Sell You can also choose by which symbols to close positions: by all symbols or only by the current one, on the chart of which the script was thrown There is a filter for closing profitable or unprofitable positions, as well as bo
FREE
Lot by Risk MT5
Sergey Vasilev
4.88 (16)
O painel de negociação Lot by Risk é projetado para negociação manual. Este é um meio alternativo para enviar ordens. A primeira característica do painel é a colocação conveniente de ordens usando linhas de controle. A segunda característica é o cálculo do volume da transação de acordo com um determinado risco, se houver uma linha stop loss. As linhas de controle são definidas usando as teclas de atalho: take profit-tecla T padrão; price-tecla padrão P; stop loss - tecla padrão S; Você mesmo
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
Objetivo: Abre automaticamente os gráficos de todos os símbolos do Market Watch usando o template default.tpl no timeframe atual (TF) , fechando todos os outros gráficos (exceto o ativo). Perfeito para análise rápida de múltiplos ativos sem trabalho manual! Funcionalidades: Automação: Abre dezenas de gráficos com um clique. Segurança: Fecha gráficos desnecessários, mantendo o atual ativo. Flexibilidade: Usa seu template default.tpl (configure-o previamente!). Timeframe atual: Gráf
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 remover automáticamente todos os indicadores do seu gráfico oferecido gratuitamente pela NS Finanças! Não perca mais tempo deletando os indicadores um por um. Com esse script é possível em um click remover todos os indicadores da tela para ajustar sua nova estratégia ainda utilizando as configurações do seu gráfico, além da possibilidade de configuração de atalho no teclado para acesso rápido do script. Aproveite para conhecer nosso cana
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
Account Nuclear
Putu Hery Siswanto
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
Displays Stop Loss, Take Profit, and real-time profit/loss of open trades in a single panel. User-friendly, movable, and multilingual support for easier risk management. risk management, stop loss, take profit, profit loss, portfolio analysis, MT5 indicator, trading panel, multilingual support General Description This indicator displays the Stop Loss, Take Profit, and real-time profit/loss values of your open trades in a single panel on the MetaTrader 5 platform. The panel features a user-frien
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
Os compradores deste produto também adquirem
Trade Assistant MT5
Evgeniy Kravchenko
4.41 (216)
Ajuda a calcular o risco por comércio, a fácil instalação de uma nova encomenda, gestão de encomendas com funções de fecho parcial, trailing stop de 7 tipos e outras funções úteis. Materiais e instruções adicionais Instruções de instalação   -   Instruções para a aplicação   -   Versão de teste da aplicação para uma conta de demonstração Função de linha Mostra no gráfico a linha de Abertura, Stop Loss, Take Profit. Com esta função é fácil definir uma nova ordem e ver as suas características ad
Bem-vindo ao Trade Manager EA—uma ferramenta de gestão de risco criada para tornar o trading mais intuitivo, preciso e eficiente. Não é apenas uma ferramenta para executar ordens, mas uma solução abrangente para planejamento de operações, gerenciamento de posições e controle de risco. Seja você um iniciante, trader avançado ou scalper que precisa de execução rápida, o Trade Manager EA adapta-se às suas necessidades, oferecendo flexibilidade em todos os mercados, desde forex e índices até commodi
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.97 (146)
Experimente uma cópia de negociação excepcionalmente rápida com o Local Trade Copier EA MT5 . Com sua fácil configuração de 1 minuto, este copiador de negociações permite que você copie negociações entre vários terminais MetaTrader no mesmo computador Windows ou em um Windows VPS com velocidades de cópia ultra rápidas de menos de 0.5 segundos. Seja você um trader iniciante ou profissional, o   Local Trade Copier EA MT5   oferece uma ampla gama de opções para personalizá-lo de acordo com suas ne
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
TradePanel MT5
Alfiya Fazylova
4.88 (167)
Trade Panel é um assistente de negociação multifuncional. O aplicativo contém mais de 50 funções de negociação para trading manual e permite automatizar a maioria das tarefas de negociação. Antes da compra, você pode testar a versão de demonstração em uma conta demo. Baixe a versão experimental do aplicativo para uma conta de demonstração: https://www.mql5.com/pt/blogs/post/762547 . Instruções completas aqui . Comércio. Permite realizar operações de negociação com um clique: Abrir ordens pendent
================================================================================ 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
Versão Beta O Telegram to MT5 Signal Trader está quase no lançamento oficial da versão alfa. Alguns recursos ainda estão em desenvolvimento e você pode encontrar pequenos erros. Se tiver problemas, por favor reporte, seu feedback ajuda a melhorar o software para todos. Telegram to MT5 Signal Trader é uma ferramenta poderosa que copia automaticamente sinais de trading de canais ou grupos do Telegram diretamente para sua conta MetaTrader 5 . Suporta canais públicos e privados do Telegram, e você
Telegram to MT5 Multi-Channel Copier copia automaticamente sinais de trading dos seus canais do Telegram diretamente para o MetaTrader 5. Sem bots, sem extensões de navegador, sem copiar manualmente. Você recebe um sinal no Telegram e o EA abre a operação no seu terminal em poucos segundos. O produto inclui dois componentes: um aplicativo do Windows que escuta seus canais do Telegram, e este Expert Advisor que executa os sinais no seu terminal MT5. Também está disponível uma versão para MT4. Gui
Trade copier MT5
Alfiya Fazylova
4.58 (52)
Trade Copier é um utilitário profissional projetado para copiar e sincronizar negociações entre contas de negociação. A cópia ocorre da conta / terminal do fornecedor para a conta / terminal do destinatário, instalada no mesmo computador ou vps. PROMOÇÃO - Se você já adquiriu o "Trade copier MT5", pode receber o "Trade copier MT4" gratuitamente (para cópia MT4 > MT5 e MT4 < MT5). Para obter informações mais detalhadas sobre os termos, por favor, entre em contato conosco através de mensagens priv
HINN MagicEntry Extra
ALGOFLOW OÜ
4.71 (17)
HINN MAGIC ENTRY – the ultimate tool for entry and position management! SIMPLE. FASTEST. INTUITIVE. MAX AUTOMATED. Place orders by selecting a level directly on the chart! full description   ::  demo-version  :: 60-sec-video-description Key features: - Market, limit, and pending orders - Automatic lot size calculation - Automatic spread and commission accounting - Unlimited partitial take-profits  - Breakeven and trailing stop-loss and take-profit  functions - Invalidation leves - Intuitive, a
Grid Manual MT5
Alfiya Fazylova
4.73 (22)
"Grid Manual" é um painel comercial para trabalhar com uma grade de ordens. O utilitário é universal, possui configurações flexíveis e uma interface intuitiva. Ele trabalha com uma grade de ordens não apenas na direção da média das perdas, mas também na direção do aumento dos lucros. O trader não precisa criar e manter uma grade de ordens, tudo será feito pelo ""Grid Manual". Basta abrir um orden e o "Grid manual" criará automaticamente uma grade de ordens para ele e trabalhará com ele até que s
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.97 (35)
Copiador profissional de operações para MetaTrader 5 Um copiador de operações rápido, profissional e confiável para MetaTrader . COPYLOT permite copiar operações de Forex entre terminais MT4 e MT5 com suporte para contas Hedge e Netting . A versão MT5 do COPYLOT oferece suporte a: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting Versão MT4 Descrição completa + DEMO + PDF Como comprar Como instalar Como
Telegram To MT5 Ultra
Mirel Daniel Gheonu
5 (4)
Telegram To MT5 — Copiador de sinais Transforme as chamadas de trading dos seus canais do Telegram em ordens reais no MT5 — automaticamente, em quantas contas quiser, com o risco e as regras totalmente sob o seu controlo. O Telegram To MT5 liga os canais VIP / de sinais que já segue no Telegram ao seu terminal MetaTrader 5. Um aplicativo de desktop complementar gratuito lê as mensagens (mesmo de canais que bloqueiam bots), e este Expert Advisor executa-as na sua conta — aplicando as suas própria
Timeless Charts
Samuel Manoel De Souza
5 (8)
Timeless Charts é um utilitário de trading tudo-em-um para traders profissionais. Ele combina tipos de gráficos personalizados, como Gráficos por Segundos e Renko , com análise avançada de fluxo de ordens utilizando Footprints , Clusters , Perfis de Volume , estudos VWAP e ferramentas de análise ancorada para uma visão mais profunda do mercado. O gerenciamento de ordens e posições é realizado diretamente no gráfico por meio de um painel integrado de gerenciamento de operações , enquanto o Market
Footprint Chart Pro — Professional OrderFlow EA for MetaTrader 5 Version 6.34 | Professional tool for real traders | Institutional-Grade Visualization DEMO USERS - PLEASE SELECT EVERY TICK / REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROLLED OVER PERIOD.
Trade 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
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
Global Investing FX Terminal
Santiago Nicolas Pla Casuriaga
O Global Investing FX Terminal é um dashboard de FX completo para o MetaTrader 5 — taxas de política monetária, posicionamento COT do CFTC, rankings de carry, surpresas econômicas, skew de opções, sentimento de varejo e correlações, treze painéis ao todo — renderizado sobre um único overlay canvas sem flicker, com atualização a cada 10 segundos a partir de um único EA. Nenhum software externo é necessário. A análise profissional de câmbio exige acesso simultâneo a dados que normalmente ficam esp
Signal TradingView to MT5 Pro Automator Execução profissional instantânea entre TradingView e MetaTrader 5 Automatize a sua estratégia de trading com a ponte de comunicação mais robusta entre os alertas do TradingView e a execução real no MT5. Concebido para traders que exigem velocidade, flexibilidade e uma gestão de risco impecável, este Expert Advisor transforma qualquer mensagem de alerta numa ordem de mercado ou de limite precisa. PONTOS FORTES E VANTAGENS Motor de Parsing Universal (Propri
Premium Trade Manager - O Painel de Operações com um Coach Integrado Premium Trade Manager coloca um coach de trading dentro do seu gráfico, com um motor de execução completo por baixo. Configure a operação da forma que sempre faz e deixe o Max, seu coach de trading com IA, ler exatamente esse setup em relação à sua conta ao vivo e dar um veredicto direto antes de confirmar: se o stop é disciplinado, se o risco faz sentido, se há um evento de alto impacto a minutos de distância, se você está pró
Trading Chaos Expert
Gennadiy Stanilevych
5 (11)
Não existe software igual no mundo e que represente um "console" universal de negociação informando sinais para operar, entrada automatizada do mercado, configurando o Stop Loss e o Take Profit, assim como o Trailling Profit para diversas negociações em apenas uma janela aberta. O controle intuitivo do Expert Advisor em "três cliques" garante um uso abrangente de todas as suas funções em diferentes computadores, incluindo tablets. Interagindo com indicadores de sinal adicionais que marcam o gráf
MT5 to Telegram Signal Provider é uma utilidade fácil de usar e totalmente personalizável que permite o envio de sinais especificados para o chat, canal ou grupo do Telegram, tornando sua conta um fornecedor de sinais . Ao contrário da maioria dos produtos concorrentes, ele não usa importações de DLL. [ Demonstração ] [ Manual ] [ Versão MT4 ] [ Versão Discord ] [ Canal do Telegram ]  New: [ Telegram To MT5 ] Configuração Um guia do usuário passo a passo está disponível. Não é necessário conhec
Power Candles Strategy Scanner - Localizador de configurações multissímbolo com auto-otimização O Power Candles Strategy Scanner utiliza o mesmo motor de auto-otimização que alimenta o indicador Power Candles — em todos os símbolos da sua lista de observação, lado a lado. Um painel indica-lhe quais os símbolos que são estatisticamente negociáveis neste momento, qual a estratégia vencedora para cada um, o par ideal de Stop Loss / Take Profit, e avisa-o assim que um novo sinal é emitido. Esta ferr
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
Trade Manager DaneTrades
Levi Dane Benjamin
4.23 (30)
Trade Manager para ajudá-lo a entrar e sair rapidamente de negociações enquanto calcula automaticamente seu risco. Incluindo recursos para ajudar a evitar negociações excessivas, negociações de vingança e negociações emocionais. As negociações podem ser gerenciadas automaticamente e as métricas de desempenho da conta podem ser visualizadas em um gráfico. Esses recursos tornam este painel ideal para todos os traders manuais e ajudam a aprimorar a plataforma MetaTrader 5. Suporte multilíngue. Vers
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
The product will copy all telegram signal to MT5 ( which you are member) , also it can work as remote copier.  Easy to set up, copy order instant, can work with almost signal formats, image signal,  s upport to translate other language to English Work with all type of channel or group, even channel have "Restrict Saving Content", work with  multi channel, multi MT5 Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. Support to backtest signal. How to s
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
Baixar demo funcional Copy Cat More (Gato Copião) — Copiador de Trades (Trade Copier) MT5 é um copiador local de trades e um completo framework de gerenciamento de risco e execução, projetado para os desafios de trading de hoje. De desafios de prop firm ao gerenciamento de portfólio pessoal, ele se adapta a cada situação com uma combinação de execução robusta, proteção de capital, configuração flexível e manuseio avançado de trades. O copiador funciona em ambos os modos — Mestre (Master, emiss
VirtualTradePad PRO SE MT5 — centro profissional de controle de trading para MetaTrader 5 VirtualTradePad PRO SE é um painel de trading premium baseado no gráfico e um ambiente de gerenciamento de operações para MetaTrader 5 . Ele foi desenvolvido para traders que desejam execução mais rápida, controle de posições mais claro, gerenciamento de trades estruturado, planejamento visual de níveis e um fluxo de trabalho profissional diretamente no gráfico. Não é apenas um painel de COMPRA / VENDA. O P
Mais do autor
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
Filtro:
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
664
Resposta do desenvolvedor 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
Responder ao comentário