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.

Değerlendirmeler 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)

Önerilen ürünler
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 için profesyonel manuel işlem yönetim paneli Ürün Genel Bakışı MAFX Trading Manager, MetaTrader 5 için geliştirilmiş profesyonel bir manuel işlem yönetim panelidir. Traderların işlemleri daha verimli şekilde açıp yönetmelerine yardımcı olur. Hızlı emir yürütme ve temel işlem yönetim araçlarını kompakt ve kullanıcı dostu bir arayüzde sunar. Bu ürün, otomatik stratejilere veya işlem sinyallerine bağlı kalmadan, işlemlerini daha fazla kontrol, hız ve tutarlılıkla y
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
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)
Lot by Risk ticaret paneli elle işlem yapmak üzere tasarlanmıştır. Bu, emir göndermek için alternatif bir araçtır. Panelin ilk özelliği, kontrol hatlarını kullanarak siparişlerin uygun bir şekilde düzenlenmesidir. İkinci özellik, stop loss hattı mevcut olduğunda belirli bir risk için işlem hacminin hesaplanmasıdır. Kontrol hatları kısayol tuşları kullanılarak ayarlanır: kar al - varsayılan olarak T tuşu; price - varsayılan olarak P tuşu; kaybı durdur - varsayılan olarak S tuşu; Tuşları ticar
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
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
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
Amaç: Market Watch 'taki tüm sembolleri default.tpl şablonu ile mevcut zaman diliminde (TF) otomatik olarak açar ve aktif olmayan tüm grafikleri kapatır. Manuel işlem gerektirmeden birden fazla enstrümanı hızlı analiz etmek için idealdir! Özellikler: Otomasyon: Tek tıklamayla onlarca grafiği açar. Güvenlik: Gereksiz grafikleri kapatır, aktif grafiği korur. Esneklik: Özel default.tpl şablonunuzu kullanır (önceden yapılandırın!). Mevcut Zaman Dilimi: Grafikler, script çalıştırıldığı
FREE
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
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. Sometimes you do not want to open another trade. You just want control. Maybe you want to close every BUY position but leave SELL positions untouched. Maybe only the losing positions need to go. Maybe you want to remove all LIMIT orders w
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
Açık işlemlerinizin Stop Loss, Take Profit ve anlık kâr/zarar değerlerini tek bir panelde gösterir. Kullanıcı dostu, taşınabilir ve çoklu dil desteği ile risk yönetimini kolaylaştırır. risk yönetimi, stop loss, take profit, kâr zarar, portföy analizi, MT5 indikatör, işlem paneli, çoklu dil desteği Genel Tanım Bu indikatör, MetaTrader 5 platformunda açık işlemlerinizin Stop Loss , Take Profit ve anlık kâr/zarar değerlerini tek bir panelde toplu şekilde gösterir. Panel, kullanıcı dostu bir arayüzl
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
Bu ürünün alıcıları ayrıca şunları da satın alıyor
Trade Assistant MT5
Evgeniy Kravchenko
4.41 (216)
It helps to calculate the risk per trade, the easy installation of a new order, order management with partial closing functions, trailing stop of 7 types and other useful functions. Additional materials and instructions Installation instructions - Application instructions - Trial version of the application for a demo account Line function -   shows on the chart the Opening line, Stop Loss, Take Profit. With this function it is easy to set a new order and see its additional characteristics bef
Trade Manager EA’ye hoş geldiniz! Ticaretin daha sezgisel, hassas ve verimli hale gelmesi için tasarlanmış nihai risk yönetim aracı ile tanışın. Bu sadece bir emir verme aracı değil; ticaret planlaması, pozisyon yönetimi ve risk kontrolü için kapsamlı bir çözüm. İster yeni başlayan bir yatırımcı olun, ister deneyimli bir trader ya da hızlı emir gerektiren bir scalper, Trade Manager EA ihtiyaçlarınıza uyum sağlar ve forex, endeksler, emtialar ve kripto paralar dahil tüm piyasalarda esneklik sunar
TradePanel MT5
Alfiya Fazylova
4.88 (167)
Trade Panel, çok işlevli bir ticaret asistanıdır. Uygulama, manuel ticaret için 50'den fazla ticaret fonksiyonu içerir ve çoğu ticaret görevini otomatikleştirmeyi mümkün kılar. Satın almadan önce demo hesapta demo sürümü test edebilirsiniz. Demo hesap için uygulamanın deneme sürümünü indirin: https://www.mql5.com/en/blogs/post/750865 . Talimatların tamamı buraya . Ticaret. Tek tıklamayla ticaret işlemleri yapmayı sağlar: Risk otomatik hesaplaması ile bekleyen emirleri ve pozisyonları açmak. Bird
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
================================================================================ 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
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.97 (146)
Local Trade Copier EA MT5   ile olağanüstü hızlı işlem kopyalama deneyimi yaşayın. Kolay 1 dakikalık kurulumuyla bu işlem kopyalayıcısı, aynı Windows bilgisayarda veya Windows VPS'te birden fazla MetaTrader terminali arasında işlemleri kopyalamanıza olanak tanır ve 0.5 saniyenin altındaki şimşek hızında kopyalama hızları sunar. Başlangıç seviyesinde veya profesyonel bir tüccar olsanız da,   Local Trade Copier EA MT5 , spesifik ihtiyaçlarınıza göre özelleştirmek için geniş bir seçenek yelpazesi s
Beta Sürümü Telegram to MT5 Signal Trader resmi alfa sürümüne neredeyse hazır. Bazı özellikler hâlâ geliştirilmekte olup küçük hatalarla karşılaşabilirsiniz. Sorun yaşarsanız lütfen bildirin, geri bildiriminiz yazılımın herkes için gelişmesine yardımcı olur. Telegram to MT5 Signal Trader , Telegram kanallarından veya gruplarından gelen işlem sinyallerini otomatik olarak MetaTrader 5 hesabınıza kopyalayan güçlü bir araçtır. Herkese açık ve özel kanalları destekler ve birden fazla sinyal sağlayıc
Telegram to MT5 Multi-Channel Copier , Telegram kanallarınızdaki trading sinyallerini otomatik olarak doğrudan MetaTrader 5'e kopyalar. Bot yok, tarayıcı uzantısı yok, manuel kopyalama yok. Telegram'da bir sinyal alırsınız ve EA birkaç saniye içinde terminalinizde işlem açar. Ürün iki bileşen içerir: Telegram kanallarınızı dinleyen bir Windows uygulaması ve sinyalleri MT5 terminalinizde yürüten bu Expert Advisor. Bir MT4 sürümü de mevcuttur. Kurulum kılavuzu ve uygulama indirme: https://www.mql5
Trade copier MT5
Alfiya Fazylova
4.58 (52)
Trade Copier, ticaret hesapları arasındaki işlemleri kopyalamak ve senkronize etmek için tasarlanmış profesyonel bir yardımcı programdır. Kopyalama, tedarikçinin hesabından/terminalinden alıcının aynı bilgisayarda veya vps'de kurulu olan hesabına/terminaline gerçekleşir. KAMPANYA - Eğer zaten "Trade copier MT5" aldıysanız, "Trade copier MT4"ü ücretsiz olarak alabilirsiniz (MT4 > MT5 ve MT4 < MT5 kopyalamalar için). Koşullar hakkında daha fazla bilgi almak için lütfen bizimle özel mesaj yoluyla i
Grid Manual MT5
Alfiya Fazylova
4.73 (22)
Grid Manual, sipariş ızgarasıyla çalışmak için kullanılan bir ticaret yardımcı programıdır. Yardımcı program evrenseldir, esnek ayarlara ve sezgisel bir arayüze sahiptir. Sadece kayıpların ortalaması yönünde değil, aynı zamanda kazanç artışı yönünde de bir emir ızgarası ile çalışır. Tüccarın bir emir ızgarası oluşturmasına ve eşlik etmesine gerek yoktur, bu yardımcı programı yapacaktır. Emri açmanız yeterlidir ve Grid manual otomatik olarak ona bir emir ızgarası oluşturacak ve kapanana kadar ona
LIMITED SUMMER SALE -40% !   ONLY $30 insead of $50!  Maximum real discount!  ONLY UNTIL 08/22 HINN MAGIC ENTRY – the ultimate tool for entry and position management! 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-p
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.97 (35)
MetaTrader 5 için profesyonel işlem kopyalayıcı MetaTrader için hızlı, profesyonel ve güvenilir bir işlem kopyalayıcı . COPYLOT , MT4 ve MT5 terminalleri arasında Forex işlemlerini kopyalamanıza olanak tanır ve Hedge ile Netting hesaplarını destekler. COPYLOT MT5 sürümü şunları destekler: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting MT4 sürümü Tam açıklama + DEMO + PDF Nasıl satın alınır Nasıl kurul
Power Candles Strateji Tarayıcısı - Kendi Kendini Optimize Eden Çoklu Sembol Kurulum Bulucu Power Candles Strateji Tarayıcısı , Power Candles göstergesini çalıştıran aynı kendinden optimize edici motoru, Piyasa İzleyicinizdeki her sembol üzerinde yan yana çalıştırır. Tek bir panel, şu anda istatistiksel olarak hangi sembollerin işlem yapılabilir olduğunu, her birinde hangi stratejinin kazandığını, en uygun Stop Loss / Take Profit çiftini gösterir ve yeni bir sinyal geldiği anda size bildirim gön
Premium Trade Manager - İçine Koç Yerleştirilmiş İşlem Paneli Premium Trade Manager , grafiğinizin içine bir trading koçu yerleştirir; altında tam bir yürütme motoru çalışır. İşlemi her zamanki gibi kurun, ardından yapay zeka trading koçunuz Max, o kurulumu tam olarak okusun ve canlı hesabınıza göre taahhüt etmeden önce size net bir değerlendirme sunsun: stop disiplinli bir yaklaşıma uyuyor mu, risk büyüklüğü makul mü, yüksek etkili bir haber dakikalar sonra mı geliyor, prop firm limitinize yakl
Telegram To MT5 — Sinyal Kopyalayıcı Telegram kanallarınızdaki işlem çağrılarını gerçek MT5 emirlerine dönüştürün — otomatik olarak, istediğiniz kadar hesapta ve risk ile kurallar tamamen sizin kontrolünüzde. Telegram To MT5, Telegram'da zaten takip ettiğiniz VIP / sinyal kanallarını MetaTrader 5 terminalinize bağlar. Ücretsiz bir eşlik eden masaüstü uygulaması mesajları okur (botlara izin vermeyen kanallardan bile), ve bu Expert Advisor bunları hesabınızda yürütür — kendi risk ayarlarınızı, sem
Timeless Charts
Samuel Manoel De Souza
5 (8)
Timeless Charts, profesyonel yatırımcılar için hepsi bir arada bir trading aracıdır. Saniye Grafikleri ve Renko gibi özel grafik türlerini, Footprints , Clusters , Hacim Profilleri , VWAP çalışmaları ve gelişmiş piyasa analizi sağlayan sabitlenmiş analiz araçlarıyla gelişmiş emir akışı analiziyle birleştirir. İşlem ve pozisyon yönetimi, entegre işlem yönetim paneli aracılığıyla doğrudan grafik üzerinden gerçekleştirilirken, Market Replay ve Sanal Hesaplar trading becerileri ve stratejileri üzeri
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) MULTI-ASSET SUPPORT Trade any asset available on your broker - Forex: Major, Minor, Exotic pairs - Crypto: BTC, ETH, XRP, SOL, BNB - Stocks: Apple, Tesla, Amazon, Google, etc. - Commodities: Gold, Silver, Oil, Gas - Indices: US30, NAS100, SPX500, DAX40 - Any CFD your broker offers VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https:/
Riskinizi otomatik olarak hesaplarken işlemlere hızlı bir şekilde girip çıkmanıza yardımcı olacak Ticaret Yöneticisi. Aşırı Ticaret, İntikam Ticareti ve Duygusal Ticaretten korunmanıza yardımcı olacak özellikler içerir. İşlemler otomatik olarak yönetilebilir ve hesap performans ölçümleri bir grafikte görselleştirilebilir. Bu özellikler, bu paneli tüm manuel yatırımcılar için ideal kılar ve MetaTrader 5 platformunun geliştirilmesine yardımcı olur. Çoklu Dil desteği. MT4 Sürümü  |  Kullanım Kılavu
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
YuClusters
Yury Kulikov
4.93 (43)
Attention: You can view the program operation in the free version  YuClusters DEMO .  YuClusters is a professional market analysis system. The trader has unique opportunities to analyze the flow of orders, trade volumes, price movements using various charts, profiles, indicators, and graphical objects. YuClusters operates on data based on Time&Sales or ticks information, depending on what is available in the quotes of a financial instrument. YuClusters allows you to build graphs by combining da
Custom Alerts AIO: Tüm Piyasaları Takip Et — Hiçbir Kurulum Gerekmez Genel Bakış Custom Alerts AIO , hiçbir ek yapılandırma gerektirmeyen, kullanıma hazır bir piyasa izleme çözümüdür. Gerekli tüm göstergeler — FX Power, FX Volume, FX Dynamic, FX Levels, IX Power — iç yapısına gömülüdür. Grafik görüntülemesi olmadan çalışır, bu da onu sessiz ve verimli bir şekilde gerçek zamanlı alarm üretimi için mükemmel hale getirir. Brokerınızın sunduğu tüm varlık sınıflarını destekler: Forex, Metaller, End
Seconds Chart - MetaTrader 5 için saniye bazlı grafikler oluşturmanıza olanak sağlayan eşsiz bir araçtır. Seconds Chart sayesinde saniye cinsinden zaman dilimleriyle grafik oluşturabilir, standart dakika veya saatlik grafiklerde mümkün olmayan esneklik ve analiz hassasiyetine ulaşabilirsiniz. Örneğin, S15 zaman dilimi 15 saniyelik mum çubuklarını ifade eder. Desteklenen özel sembollerle herhangi bir gösterge ve danışman kullanabilirsiniz. Onlarla çalışmak, standart grafiklerde işlem yapmak kadar
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
VirtualTradePad PRO SE MT5 — MetaTrader 5 için profesyonel işlem kontrol merkezi VirtualTradePad PRO SE , MetaTrader 5 için grafik tabanlı premium bir işlem paneli ve trade yönetim çalışma alanıdır. Daha hızlı emir yürütme, daha net pozisyon kontrolü, yapılandırılmış trade yönetimi, görsel seviye planlama ve doğrudan grafik üzerinden profesyonel bir çalışma akışı isteyen traderlar için tasarlanmıştır. Bu yalnızca basit bir BUY / SELL paneli değildir. PRO SE; manuel işlem, bekleyen emirler, pozis
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.
Quant AI Agents are independent trading Expert Advisors. Instead of trading using a fixed strategy like other conventional EAs, Quant AI Agents   is a   multi-agent AI trading framework   that turns natural-language strategy prompts into live.  WANT THE SAME RESULTS AS MY LIVE SIGNAL?   Use the exact same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating un
Exp5 Duplicator
Vladislav Andruschenko
4.78 (9)
Duplicator for MetaTrader 5 — tek terminal içinde profesyonel pozisyon çoğaltıcı MetaTrader 5 içinde önceden açılmış pozisyonları otomatik olarak çoğaltmak, hacmi artırmak, özel lot ayarları uygulamak ve kopyaları hassas kurallarla yönetmek isteyen yatırımcılar için güvenilir bir Expert Advisor. Manuel işlem, algoritmik sistemler ve tek terminal içinde mevcut pozisyonların esnek yönetimi için pratik bir araçtır. Duplicator for MT5 kendi işlem stratejisine göre pozisyon açmaz. Görevi, MetaTrader
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
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
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
Yazarın diğer ürünleri
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
Filtrele:
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
613
Geliştiriciden yanıt 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
Değerlendirmeye yanıt