Position Closure Management MT5

NOHEDGE — Automated Hedge Manager and Risk Controller for MetaTrader 5

A close-only utility that never opens a trade. It resolves the buy/sell pairs you already carry, at zero spread, across your entire account.

OVERVIEW

Running grid, martingale or manual hedging strategies means you constantly carry open buy/sell pairs that need to be resolved at exactly the right moment — before the spread widens at rollover, before a news spike blows your account, or exactly at your daily profit target. Doing that manually is slow, error-prone and stressful.

NOHEDGE automates the entire process. It scans every tick, matches opposing buy/sell pairs across your account and closes them with MT5's native CloseBy mechanism, which settles both sides in a single server transaction at zero spread cost. Partial-volume matching is fully supported, so even complex multi-lot grids are unwound cleanly.

One EA, one chart, full account scope: NOHEDGE monitors and controls all symbols simultaneously from whatever chart you attach it to.

FEATURES

Zero spread on pair closings
Most close approaches call PositionClose() twice, once per leg, and pay the full spread twice. NOHEDGE uses the MT5 function CloseBy(), which settles both legs in one server request at zero spread. On gold or volatile pairs with a 30-50 point spread that is real money over hundreds of closes. Partial-volume matching handles any lot-size combination, with automatic fallback to PositionClose() for brokers without CloseBy support.

Master switch and safe defaults
EnableEA defaults to false, so not a single trade can be closed until you activate it. That makes NOHEDGE safe to attach to a live account for observation first: dashboard, panic buttons and all visual elements stay fully active while the automation is paused.

Live dashboard panel [new in v1.4]
An on-chart panel shows buy and sell count with total volume, P/L per side in real time, net P/L across all positions, daily P/L with an animated progress bar between loss limit and profit target, and the active filter status for rollover, spread, CloseBy mode and anti-loop. It refreshes every 2 seconds.

Accurate daily P/L with target and loss limit
Many tools track only the floating P/L of open positions. NOHEDGE adds every deal already realised that day before comparing against your target, so no close is triggered by an uncounted loss and no limit is missed because earlier profits were ignored. When daily P/L reaches the target or drops to the limit, the whole account is closed automatically, broker-accurate rather than estimate-based.

Three one-click panic buttons, always live
Three permanent on-chart buttons cover CLOSE ALL, CLOSE PROFIT ONLY and CLOSE LOSS ONLY. Dashboard, rollover guard and spread filter never disable them: even with EnableEA false or the rollover window active they fire immediately, and panic close deliberately bypasses the anti-loop cooldown so every position stays reachable. They centre horizontally by default and reposition themselves when the chart is resized.

Anti-loop protection for grid EAs
Grid and martingale EAs reopen positions the instant they are closed, and without a cooldown that turns into a destructive cycle that burns through equity in seconds. The ring-buffer cooldown runs at O(1) performance and blocks re-closing the same symbol for a configurable window, five minutes by default, then clears itself.

Rollover protection and spread filter
A configurable quiet window, 23:55 to 00:10 by default, suspends automated closing around the daily swap rollover, with three behaviours: postpone, close regardless, or close selectively by each symbol's spread. It applies separately to hedge closing, daily limits, time-based close and panic buttons. A per-symbol spread check also runs before every close attempt, with separate thresholds for standard pairs and for crypto and XAU, optionally active outside the rollover window too.

Cross-symbol hedging
No other basic close manager on the MQL5 Marketplace detects hedges across different symbols. NOHEDGE pairs a EURUSD buy with a GBPUSD sell — common in correlation-based strategies and basket grids — and closes them together with full partial-volume matching. Unpaired single positions are processed in the same pass when CloseSinglePositions is active.

Time-based closing and trading day filter
A forced close can be scheduled at a specific server time on individually selectable weekdays, covering all positions, buy only or sell only, with optional exclusion of crypto and XAU. Ideal for a Friday evening close before the weekend gap. Automated hedge closing has its own independent per-weekday switch.

Closing priority
Four close-order modes are available: newest first, oldest first, most profitable first and least profitable first, applied consistently across pair closing, single-position closing and cross-symbol mode.

Broker-grade error handling
Retry logic with exponential backoff, trade.ResultRetcode() for accurate broker rejection codes instead of the unreliable GetLastError(), specific error messages for every known TRADE_RETCODE, and automatic fallback to direct close when CloseBy is unavailable — all production-tested on live accounts running 24/7 on a VPS.

Multi-instance, multi-strategy
The magic-number filter restricts all operations to positions carrying a given magic number. Chart A can manage your grid EA with MagicNumber 1001 while chart B manages your scalper with MagicNumber 2002 — same account, fully independent, no conflicts.

Layout control and position markers
Independent PanelTopOffset and ButtonTopOffset inputs push dashboard and panic buttons down from the chart top separately [new in v1.4], for brokers whose toolbars overlap the chart header. Arrow markers mark every open position, green for buy and red for sell, optionally limited to the current symbol.

PARAMETERS

Every parameter ships with a working default. The only one you must change is EnableEA.

Master switch. EnableEA (false) is the master on/off; false means monitoring mode with dashboard and buttons active and no automated closing.

Hedge closing. EnableHedgeClosing (true) enables automatic hedge pair detection and closing. CloseOrder (newest first) chooses between newest, oldest, most profitable and least profitable. CloseOnlyMagic (false) restricts management to positions matching MagicNumber (12345). UseDirectClose (false) uses PositionClose instead of CloseBy for brokers without CloseBy support. MaxPositionsPerCycle (5) caps positions closed per tick to limit server load. MaxRetries (3) and RetryDelay (200 ms, doubling with each attempt, capped at 1 s) govern broker rejections, and VerboseLogging (false) enables detailed journal logging.

Daily profit and loss limits. EnableDailyLimits (true) activates the system. DailyProfitTarget (+1000.0) and DailyLossLimit (-500.0) are set in account currency and close all positions when daily P/L reaches or drops to them. DailyLimitBehavior (respect rollover) covers a limit hit inside the rollover window: postpone, close regardless or selective. CryptoHandling (always close) defines how crypto and XAU are treated when a limit triggers.

Anti-loop protection. PreventTradeLoop (true) locks a symbol after a close to prevent cycling with grid EAs, and TradeLoopCooldown (300 s) sets how long it stays locked, implemented as a ring buffer with O(1) lookup.

Cross-symbol and single positions. CrossSymbolClose (false) matches buy and sell across different instruments. CloseSinglePositions (false) also closes unpaired positions, independent of the daily limits, with SinglePosMaxCount (5) as the maximum per cycle. MinimumLotSize (0.01) ignores positions below that volume.

Trading day filter. MondayEnabled through SundayEnabled switch the EA per weekday; Monday to Friday true, Saturday and Sunday false.

Rollover protection. EnableIgnoreTime (true) activates the quiet window, defined in server time by IgnoreStartHour (23), IgnoreStartMinute (55), IgnoreEndHour (0) and IgnoreEndMinute (10).

Spread filter. CheckSpreadInIgnoreTime (true) extends the spread check outside the rollover window. MaxAllowedSpread (5.0 points) applies to standard pairs such as forex and indices, CryptoMaxSpread (25.0 points) to crypto and XAU, and CryptoPrefix holds the comma-separated prefixes such as BTC and ETH identifying those instruments.

Time-based closing. EnableTimeBasedClosing (false) is the master switch for scheduled closing at CloseHour (17) and CloseMinute (0) in server time. CloseOnlyForex (true) excludes crypto and XAU, CloseBuyOnly (false) and CloseSellOnly (false) restrict it to one direction. TimeBasedCloseBehavior (respect rollover) decides whether the rollover window is respected or overridden, and ClosingMon to ClosingSun configure each weekday individually, defaulting to Friday only.

Panic buttons. EnablePanicButton (true) shows the emergency close buttons. ButtonWidth (210 px), ButtonHeight (35 px) and ButtonFontSize (7) control their size, ButtonRightMargin (0) centres them horizontally while any higher value is a fixed pixel distance from the right edge, and ButtonTopOffset (10 px) their distance from the chart top. ButtonColor (red), ProfitButtonColor (green), LossButtonColor (crimson) and TextColor (white) define the appearance, and PanicButtonBehavior (close regardless) decides whether a panic close respects the rollover window.

Info panel. EnableEAComment (true) shows the live dashboard. PanelInfoWidth (480 px) scales the whole internal layout, PanelTopOffset (25 px) sets the distance from the chart top independently of the buttons, CommentRefreshSeconds (2 s) is the refresh interval, and CommentBgColor (80,80,80) plus CommentFontSize (7) give full RGB and font control.

Position markers. ShowPositionMarkers (true) draws an arrow per open position, ShowOnlyCurrentSymbol (true) limits them to the chart symbol, and BuyMarkerColor (SeaGreen), SellMarkerColor (Crimson) and MarkerSize (8) define their look.

INSTALLATION

Copy the compiled .ex5 file into the MQL5 Experts folder of your MT5 data folder, then restart MetaTrader 5 or press F5 to refresh the Navigator. Drag the EA onto any chart; the chart symbol does not matter, because NOHEDGE manages all account symbols by default. In the EA properties enable Allow automated trading and click OK. Dashboard and panic buttons appear immediately.

Set EnableEA to true to activate automated closing. Until you do, the EA runs in observation mode and is safe to use on a live account. Then set DailyProfitTarget and DailyLossLimit to your account size, switch EnableDailyLimits to true, and adjust IgnoreStartHour and IgnoreEndHour to your broker's swap rollover time; the default of 23:55 to 00:10 server time covers most brokers.

If your broker's toolbar overlaps the panel or the buttons, adjust PanelTopOffset and ButtonTopOffset. For multi-strategy setups, run a second instance on another chart with a separate MagicNumber filter.

IMPORTANT NOTES

Hedge account required. NOHEDGE closes buy/sell pairs by ticket, so both legs must exist as separate positions. That is only possible on hedge accounts. Netting accounts merge opposing positions immediately and cannot be managed.

AutoTrading must be enabled. The AutoTrading button in the MT5 toolbar must be green and Allow automated trading must be checked in the EA properties, otherwise no close operation can execute.

The EA never opens trades. It only closes what already exists and carries zero directional risk of its own. Because EnableEA defaults to false, nothing is closed until you activate it, which prevents unexpected closes on accounts that already have positions open.

Panic buttons bypass the guards. PanicButtonBehavior defaults to CLOSE_REGARDLESS, so the buttons execute even during the rollover window or under high spread; switch it to RESPECT_IGNORE_TIME if rollover protection should block panic closes too. The anti-loop cooldown never blocks them either.

The spread filter uses points, not pips. MaxAllowedSpread and CryptoMaxSpread are broker points as returned by SYMBOL_SPREAD. On a 5-digit broker, 5 points equal 0.5 pip for forex, and 50 points are 50 points for gold. Verify your broker's spread unit before setting these values.

Commission accuracy. Daily P/L and position P/L include profit, swap and commission, retrieved from the deal history instead of the deprecated POSITION_COMMISSION property, which keeps limit enforcement accurate even on commission-heavy ECN accounts.

COMPATIBILITY

MetaTrader 5 from build 3000 upwards, written in MQL5, for hedge accounts only; MT5 netting accounts are not supported. All instruments work, including forex, metals such as XAU and XAG, indices, crypto, energy and CFDs, and any timeframe works because NOHEDGE manages the account, not the chart. Any account size is fine, with DailyProfitTarget and DailyLossLimit set in your account currency. AutoTrading must be enabled in the terminal and in the EA properties, and a VPS with a stable broker connection is recommended for 24/7 operation and reliable rollover protection. A one-month rental is available alongside the full purchase.


Version 1.40 | fi.con Investment Group | MQL5 Marketplace
Recommended products
Anchor Trade Manager
Kalinskie Gilliam
5 (8)
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
Ultimate Pro Trading Panel — All-In-One Manual & Grid Trading Dashboard Pro Trading Panel   is an all-in-one on-chart control panel that gives discretionary and semi-automated traders a complete toolkit for entries, exits, risk management, and grid trading — without leaving the chart. Every function is visual, draggable, and updates in real time. If you want to test this utility feel free to download the basic preview version of this tool here:  https://www.mql5.com/en/market/product/181435 Who
CYGNIX RISK GLADIATOR — Professional Trade Manager & Risk Guardian for MT5 Guard every position. Manage every trade. Sleep at night. Cygnix Risk Gladiator is a professional-grade position management Expert Advisor that watches every open trade on your account and automatically applies institutional-level risk controls in real time. It does not generate signals — it protects, manages, and exits trades opened by you, your strategies, or any other EA. Built for IC Markets and fully compatible w
Overtrading Stopper MT5 1. Overview Overtrading Stopper MT5 is a MetaTrader 5 utility EA that helps discretionary traders follow their own trading rules. You can set rules in advance, such as: how many times you may trade today, how many consecutive losses should make you stop, how many minutes to pause after a loss, and how to avoid entering several trades in rapid succession. When a configured limit or condition is reached, the EA displays the reason for the protection state on the chart. Depe
King Trade Copier
Mohammed Maher Al-sayed Mohammed Ahmed Saleh
KingCopier – Lightning-Fast Local Trade Copier for MetaTrader (Master + Slave) KingCopier is a professional local trade copier that mirrors every trading action from one Master account to unlimited Slave accounts on the same PC or VPS — with an internal copy latency of just a few milliseconds. It was built by a real trader for daily real-money use, with one goal: whatever happens on the Master must happen on the Slave, instantly and without exceptions. Watch the demo video to see the real cop
The Stop Loss Manger - SL Mange With the Stop Loss Manager you can finally sleep peacefully while it effectively manages your risk in stock market trading. Simply set your individual stop loss limits and let the manager trade for you. Never worry about losses again - the Stop Loss Manager takes care of it for you! Get the ultimate support for your trading now and maximize your profits with ease. Join the community of successful traders who swear by Stop Loss Manager today. Function overview: 1.
This tool will perform Trailing stop loss and Break even management for orders. Helps you limit or reduce the time spend watching orders on the screen, especially when you need to go to sleep. Just add this EA to 1 chart, you can manage all pairs. You can filter orders by comment, magic number, symbol and order ticket number. When Breakeven it can add shift/offset pips (to cover the commission...). You can try in strategy tester before purchase. The EA will add Buy and Sell alternately, so you
CoPilot dashboard MT5
Frederic Jacques Collomb
CoPilot — Daily Trading Dashboard Know your numbers. Trade with clarity. MT4 version What is CoPilot? CoPilot is a professional-grade trading assistant that displays in real time all your daily performance statistics directly on the chart — with a live equity curve that updates trade by trade. Designed for active traders who need instant visibility into their session without leaving the chart, CoPilot aggregates every closed trade of the day across all symbols and presents them in a clean, color
Trading Utility for Forex Currency Pairs Only not for Gold  Functions Auto Lot Calculation based on Risk Auto stoploss  Auto TakeProfit Breakeven Auto Close Half % Close in percentage with respect to the PIPs Pending Orders BuyLimit Sell Limit with distances BuyStop Sell Stop    with distances Trading Informations Risk in percentage For Multiple trades Combine Takeprofit and Combine Stoplosses
Trade copier MT5
Alfiya Fazylova
4.58 (52)
Trade Copier is a professional utility designed to copy and synchronize trades between trading accounts. Copying occurs from the account / terminal of the supplier to the account / terminal of the recipient, which are installed on the same computer or VPS . PROMOTION - If you have already purchased the "Trade Copier MT5," you can receive the "Trade Copier MT4" for free (for copying MT4 > MT5 and MT4 < MT5). For more detailed information about the conditions, please contact us via private message
Bastion is a monitor-and-close-only risk manager for prop-firm traders. It watches your account against your firm's daily-loss and maximum-drawdown limits in real time and force-closes your open positions BEFORE you cross a line. It never opens a trade of its own, so it stays fully within the tools allowed by FTMO, FundedNext, The5ers, FTUK and FXIFY. Why traders fail challenges A large share of failed evaluations end on a single daily-loss breach: a moment of inattention, a news spike, one tra
Chart Pro Classic Dark v1.00 Chart Pro Classic Dark is a professional MT5 chart styling and customization tool designed to give your charts a clean, modern, and professional dark appearance. Key Features Dark Black Background — Applies a clean black background to the chart. ️ Candlestick Chart — Automatically configures the chart to use candlesticks. Bullish Candles — Green/Lime bullish candles. Bearish Candles — White bearish candles. Grid Removal — Hides the chart grid for a clean
FREE
Enhanced Telegram Position Tracker MT5
Juergen Marcus Wolfgang Rosswinkel
Enhanced Telegram Position Tracker — Real-Time Trade Monitoring and Reporting for MT5 The most complete Telegram reporting solution for MetaTrader 5. Every trade, every update, every alert is delivered to your Telegram channel, group and forum topics. No missed closures, no duplicates, no spam. OVERVIEW Most Telegram tools send one message when a trade opens and another when it closes. That is all they do. This EA tracks the complete lifecycle of every position — open, SL/TP modification, p
The  DYJ MOBILE GAMING TRADING WINNER  can use your various terminals (MOBILE PHONE, WEB, TRADINGVIEW, MT5) for manual trading, and then automatically processed by EA. Mobile trading can use EA's various grid modes, scalp mode, hedging arbitrage mode and independent order mode to open positions manually, EA can automatically set stop loss for mobile opening. And use your mobile phone to open a grid, scalp, and hedge orders. EA can set up fully automatic trading, set up automatic and mobile phone
Trade Manager DaneTrades
Levi Dane Benjamin
4.23 (30)
DaneTrades Trade Manager is a professional trade panel for MetaTrader 5, designed for fast, accurate execution with built‑in risk control. Place market or pending orders directly from the chart while the panel automatically calculates position size from your chosen risk, helping you stay consistent and avoid emotional decision‑making. The Trade Manager is built for manual traders who want structure: clear risk/reward planning, automation for repeatable management, and safeguards that help reduc
Our   Basic Support and Resistance   indicator is the solution you need to boost your technical analysis. This indicator allows you to project support and resistance levels on the chart /   MT4 Version Features Integration of Fibonacci Levels:  With the option to display Fibonacci levels alongside support and resistance levels, our indicator gives you an even deeper insight into market behavior and possible reversal areas. Performance Optimization:  With the option to update extended lines onl
EA Risk Manager is a professional risk‑management Expert Advisor designed to protect your trading account and enforce disciplined money management. The EA does not open trades by itself – it only monitors and manages all existing positions (manual and automated) on the account. It is especially useful for traders who want to: Hard‑limit daily / weekly / monthly losses and profits. Restrict lot size and the number of open trades. Trade a basket of G7‑related Forex pairs using one centralized
SwiftEdge Scalper Professional Tick Scalping EA with Full Manual Control Scalping demands split-second decisions, precise risk management, and seamless order execution. Managing breakeven calculations, trailing stops, and multiple positions while watching price action is overwhelming without the right tools. SwiftEdge Scalper is your professional trading assistant designed for active scalpers and day traders. Execute trades with one click or keyboard shortcut, while the EA handles breakeven, tra
Expert TP SL v04
Mikhail Ostashov
Expert TP SL v04 - Professional Trading Assistant with AI Motivation System Advanced manual trading tool with automatic risk management, overtrading protection, and intelligent psychological support for disciplined trading. PRODUCT OVERVIEW Expert TP SL v04 is a comprehensive trading assistant designed for manual traders who want to maintain emotional discipline while automating risk calculations. This isn't just another order placement tool - it's a complete trading psychology system that pr
CRYPTO ZEUS DUAL-CORE PROTOCOL  Advanced Crypto Matrix: Supertrend AI + External Sync Module - [NEW] 24/7 Crypto Unlock: The EA now fully supports weekend trading by auto-detecting Crypto assets. - [NEW] Continuous Trend Rider: Re-enters trades continuously on pullbacks if the macro-trend remains strong, maximizing profit on long runs. - [NEW] Ghost Trailing Stop: Added a virtual trailing stop to fully ride breakouts instead of exiting at fixed Fibo targets. - [NEW] Preset System: Added a buil
Trade Assistant 38 in 1
Makarii Gubaydullin
4.91 (23)
Multifunctional tool: Lot Calculator, Grid Orders, R/R ratio, Trade Manager, Supply and Demand zones, Price Action and much more Demo version   |   User manual Trade Assistant   doesn't work in the strategy tester : you can download the   Demo Version HERE  to test the utility . Contact me   for any questions  / ideas for improvement / in case of a bug found If you need a MT4 version, it is available here Simplify, speed up and automate your trading   process . Expand the standard terminal capa
TradeControl Pro – Advanced Trade Manager for MetaTrader TradeControl Pro is a trade management tool for MetaTrader that enables structured and efficient management of trading positions directly on the chart. The application combines a clearly designed user interface with automated calculations and flexible control options for different trading approaches. The integrated on-chart panel is organized in a tabular layout and divided into three main sections (tabs): Execution , Close , and Info . Th
Risk Ruler
AL MOOSAWI ABDULLAH JAFFER BAQER
Risk Ruler Plan every trade with precision before you enter the market. Risk Ruler is a professional on-chart position sizing and risk management tool for MetaTrader that helps traders calculate the optimal trade size based on their predefined risk. By simply dragging the Entry, Stop Loss, and Take Profit lines directly on the chart, all essential trading calculations update instantly, allowing you to make informed decisions before placing a trade. Designed for both manual and professional trade
The Multilevel PnL Calculator EA is an advanced trading tool designed for Forex and CFD traders who need precise position sizing and risk management calculations. This intuitive panel-based calculator allows you to simulate multiple entry positions with automatic profit and loss calculations in real-time USD values. Key Features Multi-Position Management Calculate Profit and Loss for up to 10 or more simultaneous positions (configurable) Support for both LONG and SHORT trading modes Real-time
Equity Master Stop v2 MT5
Frank William Jr Colbert
Trading tool combining a sophisticated equity stop-loss, dynamic take-profit management (Breakeven & Trailing), and symbol-group-based closing logic. It is a complete risk management and trade supervision tool. Features: All features of `Equity Master Stop v1` (floating profit/loss limits, exit protection, skip hours). Take-Profit Override: Can force a TP on any order to lock in a `MAX_FLOATING_PROFIT`. Step Breakeven: Locks in increasing amounts of profit as a trade moves favorably (e.g., aft
SmartRAL
Jemy Yeferson Dimu Ludji
SmartRAL (Smart Risk Auto-Lot EA) SmartRAL: The Ultimate Risk & Lot Management Expert Advisor (EA) SmartRAL is an essential tool for traders who demand precise risk management and automated position sizing in MetaTrader 5. Stop guessing your lot size and let the algorithm handle the calculations. This EA allows you to trade with confidence by guaranteeing your risk exposure on every single trade, while offering absolute flexibility in setting your Stop Loss (SL). Key Features & Benefits Guarante
## Product Title ``` SuperDOM — Advanced Depth of Market Trading Panel ``` --- ## Short Description  ``` Professional SuperDOM panel for MT5. Interactive price grid with one-click BUY/SELL/FLAT, pending orders on any level, Trailing Stop (ATR or fixed), and 5 draggable info panels. Works with US Stocks, CFDs, Metals, Indices and B3. Auto-detects resolution (4K/2K/FHD/HD). ``` --- ## Full Description  ### Overview SuperDOM is a professional Depth of Market trading panel for MetaTrader 5.
MANAGING YOUR FOREX TRADING LIKE A PROFESSIONAL WITH   POSITION SIZE   CALCULATOR Position Size Calculator – an MT5 indicator, is a user-friendly tool that allows you to determine your required forex trading size for each trade based on how much you want to risk and available capital in your forex trading account. Load the calculator onto your chart and simply draglines to show your stop loss and take profit level. The calculator will automatically calculate the trade size instantly. This indica
Product Name: Smart Switch Dashboard STOP WASTING SECONDS. SECONDS COST MONEY. Are you losing trades because you're fumbling through the Market Watch? Is your workspace messy and slowing you down? In trading, Speed is everything. If you aren't organized, you are losing money to traders who are. Smart Switch Dashboard is not just a tool—it is your COMMAND CENTER . Designed for serious Scalpers and Day Traders who demand Speed, Precision, and Zero Lag. DOMINATE YOUR WORKFLOW 1. ULTRA-FAST SY
User Manual Buy Trading Utility, Get 1 indicator FREE ! After purchase contact me for your " TWO indicators GIFT (Any one you want) ", adding you in group. Trading Utility MT5 The manual trader's cockpit. Size every trade by risk, place it from the chart, and manage it without ever opening the order dialog. Eight tabs, seven trailing engines, and every stop and target draggable with one click. One panel between you and the order window. Risk-sized entries, draggable stops, seven trailing modes,
Buyers of this product also purchase
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
Forex Trade Manager MT5
InvestSoft
4.98 (673)
Trade Manager MT5 is an advanced position size calculator and trade management tool for MetaTrader 5, designed to help traders plan trades faster, control risk more precisely, and manage open positions directly from the chart. It combines order placement, risk based lot calculation, Stop Loss and Take Profit management, Break Even, Trailing Stop, Partial Close, Equity Protection, and external trade management in one panel. Whether you trade forex, indices, metals, commodities, crypto, or future
================================================================================ 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
TradePanel MT5
Alfiya Fazylova
4.88 (167)
Trade Panel is a multi-functional trading assistant. The app contains over 50 trading functions for manual trading and allows you to automate most trading tasks. Application instructions + video instructions: https://www.mql5.com/en/blogs/post/756482 Trial version of the application for a demo account: https://www.mql5.com/en/blogs/post/750865 How to install the application: https://www.mql5.com/en/blogs/post/756239 How to test the application in visual mode: https://www.mql5.com/en/blogs/post/7
Beta Release The Telegram to MT5 Signal Trader is nearly at the official alpha release. Some features are still under development and you may encounter minor bugs. If you experience issues, please report them, your feedback helps improve the software for everyone. Telegram to MT5 Signal Trader is a powerful tool that automatically copies trading signals from Telegram channels or groups directly to your MetaTrader 5 account. It supports both public and private Telegram channels, and you can conn
Telegram to MT5 Multi-Channel Copier automatically copies trading signals from your Telegram channels directly into MetaTrader 5. No bots, no browser extensions, no manual copying. You receive a signal on Telegram and the EA opens the trade on your terminal in a few seconds. The product includes two components: a Windows application that listens to your Telegram channels, and this Expert Advisor that executes the signals on your MT5 terminal. An MT4 version is also available. Setup guide and app
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
Power Candles Strategy Scanner - Self-Optimizing Multi-Symbol Setup Finder Power Candles Strategy Scanner runs the same self-optimizing engine that powers the Power Candles indicator - on every symbol in your Market Watch, side by side. One panel tells you which symbols are statistically tradable right now, which strategy wins on each, the optimal Stop Loss / Take Profit pair, and pings you the moment a fresh signal fires. This tool is part of the Stein Investments ecosystem - 18+ tools plus Max
FarmedHedge Pair Trading Dashboard
Tanapisit Tepawarapruek
5 (3)
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https://www.mql5.com/en/signals/2356404 - Farmed Hedge Yield V Copy:  https://www.mql5.com/en/signals/2357156 * Before purchasing, please feel free to send me a message if you have any questions about the product or setup. ** After purchase,  Contact me via private message to receive t
Premium Trade Manager - The Trade Panel With a Coach Built In Premium Trade Manager puts a trading coach inside your chart, with a full execution engine underneath it. Set the trade up the way you always do, then let Max, your AI trading coach, read that exact setup against your live account and give you a straight verdict before you commit: is the stop disciplined, is the risk sane, is a high-impact release minutes away, are you near a prop-firm limit. Below sits the engine that runs everything
Quant AI Agents
Ho Tuan Thang
5 (1)
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
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.
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
Ultimate Extractor
Clifton Creath
5 (8)
Ultimate Extractor - Professional Trading Analytics for MT5 *****this is the local HTML version of Ultimate Extractor. !!!!!it is not compatible with Cloud!!!! For the online version please reach out to me directly****** Ultimate EA manager also now available when you use cloud pro and above for free!! Ultimate Extractor transforms your MetaTrader 5 trading history into actionable insights with comprehensive analytics, interactive charts, and real-time performance tracking. What It Does Automa
Grid Manual MT5
Alfiya Fazylova
4.73 (22)
Grid Manual is a trading panel for working with grid strategies. The utility is universal, has flexible settings and an intuitive interface. It works with a grid of orders not only in the direction of averaging losses, but also in the direction of increasing profits. The trader does not need to create and maintain a grid of orders, the utility will do it. It is enough to open an order and the "Grid manual" will automatically create a grid of orders for it and will accompany it until the close. F
MT5 to Telegram Signal Provider turns your trading account into a signal provider. Every trade action, whether manual, by EA or from your phone, is instantly sent as a message to Telegram. You can fully customize the format or use a ready-made template for quick setup. [ Demo ] [ Manual ] [ MT4 Version ] [ Discord Version ]     New: [ Telegram To MT5 ] Setup A step by step user guide is available. Key Features Ability to customize order details sent to subscribers You can create a tiered subs
VirtualTradePad PRO SE MT5 — professional trading control center for MetaTrader 5 VirtualTradePad PRO SE is a premium chart-based trading panel and trade-management workspace for MetaTrader 5 . It is designed for traders who want faster execution, clearer position control, structured trade management, visual level planning and a professional workflow directly from the chart. This is not only a BUY / SELL panel. PRO SE combines manual trading, pending orders, position management, partial exits, b
AI Agents Supervisor
Ho Tuan Thang
5 (1)
AI Agent Supervisor is NOT an Expert Advisor. AI Agent Supervisor   is a   multi-agent AI risk & portfolio supervisor   that watches every EA on your account and intervenes in real time.  WANT AN AI PORTFOLIO MANAGER WATCHING YOUR FLEET 24/7?   Run your fleet on the same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating unique data streams. The Supervisor r
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
EA Auditor
Stephen J Martret
5 (5)
EA Auditor is an independent analysis tool for traders evaluating Expert Advisors and trading signals on MetaTrader 5. It audits backtest reports, reviews posted developer signals, and cross-verifies the two against each other to help traders assess strategies before committing capital. The MQL5 market offers a wide range of Expert Advisors from many developers, with varying approaches, quality, and transparency. EA Auditor provides a consistent, data-driven framework for reviewing them, answer
Check EA performance  https://www.mql5.com/en/signals/2376164?source=Site +Profile+Seller Spot vs Future Arbitrage EA for MT5 Spot vs Future Arbitrage EA is an automated Expert Advisor designed for MetaTrader 5 that operates using price differences between Gold spot and Gold futures instruments. The strategy opens positions on both instruments simultaneously to take advantage of temporary differences between spot and futures prices. Requirements The trading account must provide both Gold spot
Custom Alerts AIO: All-in-One Market Scanner – No Setup Required Overview Custom Alerts AIO is the fastest and easiest way to monitor multiple markets for real-time trading signals—without any setup or extra licenses. It comes with all required Stein Investments indicators already embedded, making it the perfect plug-and-play solution for traders who value simplicity and performance. Just load it to any chart and start receiving alerts across Forex, Metals, Crypto, and Indices. Shares can be a
Custom Timeframe Manager Pro: Unlimited Timeframes in MetaTrader 5 Standard terminal settings often hide important price movement details. By limiting analysis to classic periods only, a trader risks missing trend inception points and true volatility levels. Custom Timeframe Manager Pro is a professional utility that expands the boundaries of MetaTrader 5. Create any custom periods, including fractional and exotic ones, and work with them exactly like standard terminal charts. Available period
Global Investing FX Terminal
Santiago Nicolas Pla Casuriaga
The Global Investing FX Terminal is an all-in-one FX dashboard for MetaTrader 5 — CB policy rates, CFTC COT positioning, carry rankings, economic surprises, options skew, retail sentiment, and correlations, thirteen panels in total — rendered on a single zero-flicker canvas overlay and refreshing every 10 seconds from one attached EA. No external software required. Professional FX analysis requires simultaneous access to data that normally lives in separate platforms: rate derivatives, governmen
Adam FTMO MT5
Vyacheslav Izvarin
5 (2)
ADAM EA Special Version for FTMO Please use ShowInfo= false for backtesting ! Our 1st EA created using ChatGPT technology Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Tested on EURUSD and GBPUSD only  Use 15MIN Time Frame Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday For Prop Firms MUST use special Protector  https://www.mql5.com/en/market/product/94362 --------------------------------------------------------------------------------
Trading Chaos Expert
Gennadiy Stanilevych
5 (11)
This software has no equals in the world and represents a universal trade "console" covering trading signals, automated market entry, setting of Stop Loss and Take Profit, as well as Trailing Profit for multiple trades at the same time in a single open window. Intuitive control of the Expert Advisor in "three clicks" ensures a comprehensive use of all its functions on different computers, including tablets PCs. Interacting with additional signal indicators that mark the chart to give a real mark
The product will copy all  Discord  signal   to MT5   ( which you are member  ) , also it can work as remote copier.  Easy to set up. Work with almost signal formats, support to translate other language to English Work with multi channel, multi MT5. Work with Image signal. Copy order instant, auto detect symbol. Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. How to setup and guide: Let read all details about setup and download Discord To MetaTrader
SQ Tactic Tracker
Devie Arevalo Montemayor
5 (3)
SQ TACTIC TRACKER — Multi-Bot Performance & Risk Dashboard for MT5 KNOW YOUR EDGE. DON'T GUESS IT. Every bot, every symbol, every session, every open position — decoded on one chart. Your equity curve tells you IF you're making money. It never tells you WHERE it comes from, WHEN you actually win, WHICH bot is quietly bleeding the account, or WHAT you're exposed to right now. SQ Tactic Tracker puts your entire trading account on a single chart and answers those questions at a glance — live. It
EasyInsight AIO MT5
Alain Verleyen
4.92 (12)
EASY Insight AIO – All-In-One Power for AI-Driven Trading Want to skip the setup and start scanning the entire market – Forex, Gold, Crypto, Indices, and even Stocks – in seconds? EASY Insight AIO is the complete plug-and-play solution for AI-powered trade analysis. It includes all core Stein Investments indicators built-in and automatically exports clean, structured CSV files – perfect for backtesting, AI prompts, and live market decision-making. No need to install or configure indicators manu
FUTURES ORDERFLOW FOOTPRINT CHART Professional OrderFlow EA for MetaTrader 5 Version 1.01| Professional tool for real traders | Institutional-Grade Visualization STRATEGY TESTER USERS - PLEASE SELECT EVERY 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 ROL
More from author
Trading Reporter Dashboard MT5
Juergen Marcus Wolfgang Rosswinkel
5 (1)
Trading Reporter — Visual Performance Dashboard for MT5 A complete account performance dashboard rendered directly on your MT5 chart. No browser, no external tool, no subscription. Attach it once and resize it to fit your screen. Balance and Live Drawdown update every second, and closed-trade statistics refresh within about a second of a position closing, so there is no waiting for the next bar whatever timeframe the chart runs on. Free. No limitations. No trial period. Full source transparen
FREE
Chart Order Trade Manager MT5
Juergen Marcus Wolfgang Rosswinkel
Trade Manager — Professional Order and Position Management Panel for MetaTrader 5 Automatic lot, Stop Loss and Take Profit calculation, entry by chart click, draggable SL and TP lines, trailing stop, auto break-even, partial close and a complete CSV export of your trading history — all from one interactive chart panel. OVERVIEW Trade Manager is a professional order and position management panel for MetaTrader 5. It significantly simplifies manual order entry, automatically calculates lot siz
Enhanced Telegram Position Tracker MT5
Juergen Marcus Wolfgang Rosswinkel
Enhanced Telegram Position Tracker — Real-Time Trade Monitoring and Reporting for MT5 The most complete Telegram reporting solution for MetaTrader 5. Every trade, every update, every alert is delivered to your Telegram channel, group and forum topics. No missed closures, no duplicates, no spam. OVERVIEW Most Telegram tools send one message when a trade opens and another when it closes. That is all they do. This EA tracks the complete lifecycle of every position — open, SL/TP modification, p
Telegram Trading Reporter MT5
Juergen Marcus Wolfgang Rosswinkel
Telegram Trading Reporter — Automated Performance Reports & Chart Delivery for MetaTrader 5 A pure analysis and reporting Expert Advisor that turns your MetaTrader 5 account history into structured performance reports and delivers them to Telegram automatically, together with visual charts rendered by the terminal itself. OVERVIEW The Telegram Trading Reporter is a pure analysis and reporting Expert Advisor for MetaTrader 5. It does not open, close or modify any positions. It analyses your a
MT5 to Telegram Informer
Juergen Marcus Wolfgang Rosswinkel
MT5 to Telegram Signal Provider — Real-Time Trade Notifications for MetaTrader 5 Every trade event on your account, delivered to your Telegram chats and channels as a formatted message the moment it happens. OVERVIEW MT5 to Telegram Signal Provider is a utility Expert Advisor for MetaTrader 5 that automatically sends trade notifications to one or more Telegram chats or channels. Every trade event on the account is captured and delivered as a formatted message in real time. The EA runs on an
Filter:
No reviews
Reply to review