Position Manager Pro MT5

Position Manager Pro v1.0 (MT5)

Dual Magic Number Independent Group Manager with Live P&L Dashboard

Overview

Position Manager Pro is a powerful trade management Expert Advisor for MetaTrader 5 that operates as an overlay manager — it does not open positions itself, but instead manages and monitors positions opened by other EAs or manually by the trader.

The core concept is two fully independent groups, each identified by a unique Magic Number. Each group has its own Take Profit, Stop Loss, and Trailing Stop thresholds defined in dollar amounts, not pips. This makes the EA universal — it works with any symbol, any lot size, and any broker.

A compact, real-time on-chart dashboard displays everything you need at a glance: live floating P&L per group, today's closed P&L per group, and a combined summary panel showing Monthly / Weekly / Daily performance across both groups.

Key Features

  • Two independent magic number groups — manage two separate EAs (or strategies) simultaneously on the same chart
  • Dollar-based thresholds — Take Profit, Stop Loss, and Trailing Stop are set in account currency ($), not pips
  • Combined mode — treats all positions in a group as one unit; closes all positions together when the combined P&L target is hit
  • Individual mode — applies TP / SL / Trailing to each position separately
  • Trailing Stop — profit-lock trailing that activates after a configurable start level, then trails by a step amount
  • Historical P&L dashboard — shows today, this week, and this month closed P&L (including commission and swap) broken down by group
  • One-click manual close buttons — close an entire group instantly with a single button click; optional double-click confirmation mode to prevent accidents
  • Symbol filter — optionally restrict management to a single symbol
  • Timer-based refresh — panel updates every 2 seconds even during low-tick periods

How It Works

Position Assignment

Positions are assigned to a group based on their Magic Number:

  • Group 1 manages all positions with G1_MagicNumber
  • Group 2 manages all positions with G2_MagicNumber
  • Positions with any other magic number are completely ignored

Set MagicNumber = 0 to disable a group entirely.

Combined Mode (default)

All positions in the group are treated as one portfolio. The EA sums the total floating P&L (profit + swap) across all positions in the group, then:

  • Closes the entire group when total P&L ≥ TakeProfit
  • Closes the entire group when total P&L ≤ −StopLoss
  • Activates trailing when total P&L ≥ TrailingStart, then trails at (totalP&L − TrailingStep) — ideal for grid and martingale strategies

Individual Mode

Each position is evaluated independently:

  • Closes the position when position P&L ≥ TakeProfit
  • Closes the position when position P&L ≤ −StopLoss
  • Moves the position's SL price to lock in profit once position P&L ≥ TrailingStart

Trailing Stop Logic

Combined: The trailing stop level is stored in memory (not as a broker SL order). Once activated, the level rises as profit increases, and all positions are closed the moment total P&L drops back to the stop level.

Individual: The EA modifies the actual SL price on the broker's server as profit grows, locking in profit at (currentProfit − TrailingStep) converted to the corresponding price level.

    Input Parameters

    Group 1 / Group 2 Settings

    Parameter Default Description
    G1_MagicNumber 91919191 Magic number to identify Group 1 positions. Set to 0 to disable.
    G1_TakeProfit 15.0 Close all (or each) position when P&L reaches this dollar amount. Set 0 to disable.
    G1_StopLoss 0.0 Close all (or each) position when P&L drops to this loss amount. Set 0 to disable.
    G1_UseTrailing false Enable profit-locking trailing stop.
    G1_TrailingStart 2.0 Trailing activates only after P&L exceeds this dollar amount.
    G1_TrailingStep 0.5 The trailing buffer — stop level is always (peak P&L − step).
    G1_IndividualMode false false = Combined mode, true = Individual mode.

    (Group 2 parameters are identical with the G2_ prefix)

    UI / General Settings

    Parameter Default Description
    UI_X 10 Horizontal pixel position of the panel (from left edge).
    UI_Y 30 Vertical pixel position of the panel (from top edge).
    TargetSymbol "" Leave blank to manage all symbols. Enter a symbol name (e.g. "XAUUSD") to restrict management to that symbol only.
    RequireDoubleClick false If true, the Close button turns yellow and requires a second click to confirm. Prevents accidental closes.

    Setup Guide

    Step 1 — Installation

    1. Copy Position_Manager_Pro_v1_0_MT5.mq4 to your MetaTrader 4 Experts folder: [MT5 Data Folder] → MQL5 → Experts
    2. Restart MetaTrader 5 or click Refresh in the Navigator panel.
    3. The EA will appear under Expert Advisors in the Navigator.

    Step 2 — Attach to Chart

    1. Open any chart (symbol does not matter — use TargetSymbol to filter if needed).
    2. Drag and drop the EA onto the chart.
    3. In the Inputs tab, configure your magic numbers and thresholds.
    4. Ensure "Allow live trading" is checked in the Common tab.
    5. Click OK.

    Important: Make sure your MetaTrader 5 has AutoTrading enabled (green play button in the toolbar). Without it, the EA cannot close positions.

    Step 3 — Configure Magic Numbers

    Match the magic numbers in this EA to the magic numbers used by the EAs that open your positions. For example:

    • If your grid EA uses magic number 12345 , set G1_MagicNumber = 12345
    • If your second EA uses magic number 67890 , set G2_MagicNumber = 67890

    Step 4 — Choose Combined or Individual Mode

    • Grid / Martingale strategies → Use Combined mode (default). The group closes only when the combined total P&L reaches the target.
    • Scalpers / single-position EAs → Use Individual mode. Each position is closed independently.

    Step 5 — Set Dollar Thresholds

    All thresholds are in account currency (USD, EUR, etc.):

    Example — Combined grid, $15 take profit, $5 trailing start, $0.50 step: G1_TakeProfit = 15.0 G1_StopLoss = 0 (disabled — let trailing handle it) G1_UseTrailing = true G1_TrailingStart = 5.0 G1_TrailingStep = 0.50 G1_IndividualMode = false

    Frequently Asked Questions

    Q: Can I run this EA on multiple charts at the same time? A: No. Run it on one chart only. Duplicate instances will cause conflicts and double-closes. Use the TargetSymbol parameter to restrict which symbol's positions are managed.

    Q: Does this EA open its own trades? A: No. It only manages positions that were opened by other EAs or manually. No trading signals are generated.

    Q: What happens if I manually close a position that the EA is tracking? A: The EA detects the closed position on the next tick and removes it from the group count. No errors occur.

    Q: Can I use this alongside a hedging strategy (simultaneous Buy and Sell)? A: Yes. In Combined mode, the group P&L includes both Buy and Sell positions, so hedged positions will partially cancel each other's P&L — which is the correct behavior for a hedging setup.

    Q: Why does Today P&L sometimes differ from Live P&L? A: Today P&L shows closed trades for the current day (from account history). Live P&L shows open floating profit. They will match only after all positions are closed.

    Q: The panel does not appear on the chart. What should I do? A: Ensure AutoTrading is enabled, the EA is attached and running (smiley face icon in the top-right of the chart), and that UI_X / UI_Y values place the panel within the visible chart area.

    Important Notes

    • Historical P&L is read from the broker's account history. Make sure your broker provides sufficient history depth. If the broker limits history, older trades will not appear in the Monthly summary.
    • Commission data ( OrderCommission() ) is included in all historical P&L calculations.
    • The Trailing Stop in Combined mode is a virtual trailing (stored in memory). It is not placed as a server-side SL order. If the EA is removed from the chart or MT5 is closed, the trailing stop ceases to function.
    • The Trailing Stop in Individual mode modifies the actual SL price on the server, so it persists even if the EA is disconnected.

    Prodotti consigliati
    IQuantum
    Evgeniy Scherbina
    The indicator IQuantum shows trading signals for 10 symbols in the daily chart: AUDCAD, AUDUSD, EURUSD, GBPCAD, GBPCHF, GBPUSD, NZDUSD, USDCAD, USDCHF, and USDJPY. Signals of the indicator are produced by 2 neural models which were trained independently from one another. The inputs for the neural models are normalised prices of the symbols, as well as prices of Gold, Silver and markers of the current day. Each neural model was trained in 2 ways. The Ultimate mode is an overfitted neural model
    FREE
    Basic Theme Builder MT5
    Mehran Sepah Mansoor
    5 (2)
    Basic Theme Builder: Semplifica la Personalizzazione del Tuo Grafico Trasforma la tua esperienza di trading con l'indicatore Basic Theme Builder , uno strumento versatile progettato per semplificare la personalizzazione dell'aspetto del tuo grafico su MetaTrader 5 . Questo indicatore intuitivo offre un pannello facile da usare che ti consente di passare senza sforzo tra vari temi e schemi di colore, migliorando sia l'aspetto visivo che la funzionalità del tuo ambiente di trading. Free MT4 versi
    FREE
    Basket Take-Profit Utility Lite   is a free on-chart trade management tool for MetaTrader 5 that lets you close groups of trades the moment their   combined profit target   is reached — something MetaTrader cannot do natively. All settings are controlled directly from the interactive panel on your chart. No need to detach and re-attach the EA to change your target. Features: Group trades   by: All open positions · Specific symbol · Magic number Three target types   selectable from the panel: - F
    FREE
    OMG Trading
    OMG FZE LLC
    5 (3)
    [ My Products ]   ,   [ My Channel ] OMG Trading Panel Ora puoi controllare il tuo pannello di trading direttamente dal tuo telefono. Installa OMG Trading Tool sul tuo VPS MQL e fai trading comodamente dall'app mobile MetaTrader 5 mentre il pannello è in funzione 24/7. Ho anche aggiunto due strategie utili: Smart Margin Protection e Grid Strategy. È inoltre possibile impostare un avviso che si attiva quando il prezzo scende. Caratteristiche Principali Controllo Remoto via Mobile MT5 Controlla i
    FREE
    ZigZag Profile
    Nguyen Thanh Cong
    Introducing the ZigZag Profile — a powerful tool designed to identify high-probability pivot zones where price action frequently reverses. This indicator analyzes historical price data to pinpoint key areas where price has pivoted multiple times, providing traders with actionable insights into potential support and resistance levels. The ZigZal Profile  indicator continuously scans for zones where price has reversed direction the most, highlighting these critical areas on your chart. By focusing
    FREE
    The DD_Profit_Monitor MT5  indicator is a trading tool developed by the Dagangduit Core Team . This indicator is designed to monitor profits in real-time with the following key features: All Time Profit : Displays the total profit earned since the beginning of the trading account's usage. This feature helps traders see the overall performance of their trading activities. Daily Profit : Displays daily profits, allowing traders to monitor their daily performance more specifically. Key Features: Al
    Ruhm Regime
    Syamsurizal Dimjati
    RUHM REGIME (TF M1) This Expert Advisor (EA) is provided   FREE OF CHARGE for testing and educational purposes only . It is   NOT recommended for use on live (real) trading accounts . Codebase for sale: $100 Contact me. == Contains 2 .mqh files and 1 .mq5 file If you choose to use this EA on a real account,   all risks, losses, and consequences are entirely your own responsibility . The developer assumes no liability for any financial loss. ##   Test on XAU/GOLD | RAW Account (not suitable for
    FREE
    Daily P/L Risk Management is a MetaTrader 5 utility that watches your account's daily profit and loss and acts automatically when a limit is hit. It tracks both realized and unrealized P/L and can close positions, disable trading or alert you. It is a practical safety net for prop-firm challenges and disciplined day trading. Features Daily loss and profit limits, set by money amount or percent of balance/equity. Combined P/L tracking: counts both closed-trade (realized) and open-position (unreal
    FREE
    Logarithmic chart in new window You can use both chart as half or full window All features are active in both arithmetic and logarithmic charts Magnet in arithmetic  chart is standard metatrader magnet in logarithmic chart magnet have two modes: first mode only select high or low, if this mode is enabled, you can set how many candles will be search before and after to find the highest or lowest points second mode select the closest point of the candle to click, its choose between 4 points (High,
    FREE
    SuperTrend Indicator – Description & Important Notice The SuperTrend is a composite technical indicator designed to help you identify the primary trend, measure its strength, and assess signal quality. However, an indicator is only a tool —it’s never 100% accurate and cannot replace sound risk management. 1. Core Formula & Components ATR (Average True Range): measures price volatility; customize sensitivity via Periods and Multiplier . Upper/Lower Bands: derived from ATR and your chosen source p
    FREE
    This is a trading EA on M1 Chart for currency pair GBPUSD. I don't recommend you to use in other charts or currency pairs.  Backtests are performed at mt5 and my Broker is FxPro.   "Works On M1 Chart"; // GBPUSD Strategy Properties  Parameters are, LessOrderMoreProfitFactor_Flag = false; // Less Order More Profit Factor (trade is very rare but profit factor is high Entry_Amount = 0.01; // __Amount for a new position [lot] Take_Profit = 800; // __Take Profit [point]  Stop_Loss = 650; //  __Stop L
    FREE
    Quick Close 1S
    Tan Au Phuong
    5 (8)
    Quick Close 1S è un’utilità progettata per una gestione rapida e organizzata delle operazioni. Offre un pannello di controllo pulito per aprire o chiudere ordini istantaneamente, applicare impostazioni SL/TP flessibili, gestire obiettivi del paniere e controllare il profitto o la perdita complessivi. Adatta ai trader che apprezzano precisione, efficienza ed esecuzione chiara nelle operazioni quotidiane. Caratteristiche principali Controllo semplificato delle operazioni: Gestisci le posizioni da
    FREE
    Crimson FX
    Michael Prescott Burney
    Crimson FX Portfolio for USDJPY H1 Crimson FX Portfolio is a professional MetaTrader 5 Expert Advisor for USDJPY on the H1 timeframe, running on the Expert Advisor HQ universal portfolio framework. It is designed for structured automated trading on USDJPY H1, with clear on-chart feedback for entries, exits, protections, and live performance so you can see how the EA is operating in real time. Overview Crimson FX Portfolio combines its portfolio-style strategy logic for USDJPY with the Expert Adv
    FREE
    Trade Manager with Risk-Based Position Control This Expert Advisor is a manual trade management tool designed to assist traders in planning, managing, and controlling open positions on MetaTrader 5 charts. The product does not generate trading signals and does not make independent trading decisions . All entries are initiated manually by the user or by other Expert Advisors. This tool focuses exclusively on position sizing, trade management, and execution assistance . Key Features Manual positi
    FREE
    TradeDock Pro
    Alex Michael Murray
    TradeDock Pro (MT5) — One-Click Trade Manager Panel TradeDock Pro is a sleek and professional one-click trade panel for MetaTrader 5 designed for fast manual execution and simple trade management. Built for traders who want a clean interface, quick order placement, and essential management tools — without complicated settings or typing. Can be used on any market. KEY FEATURES One-Click BUY / SELL Lot size control on chart (0.01 – 99.99) SL toggle + SL in points TP toggle + TP in points Trailing
    FREE
    XXXX ATR (Average True Range) Position Manager: ATR StopLoss, ATR Target, ATR Breakeven, ATR Trailing StopLoss, with Risk % Calculation / Position. More about ATR: www.atr-trading.com Key takeaways   One click does it all: SELL and BUY button automatically places ATR stoploss, ATR target, ATR breakeven, ATR trailing stop and Risk % calculation of equity Entire position is calculated based on ATR No more manual position calculations = No more wasted time =  No more late entries Position sizes c
    TradingCoPilot
    Viktor Mitrofanov
    Trading Co-Pilot for MetaTrader 5 Advanced Position Management for Manual Traders Trading Co-Pilot is a professional trade management assistant designed for traders who open positions manually and want precise, automated control over risk and profit handling. It does not open trades. It manages them intelligently. You focus on entries. The Co-Pilot protects and optimizes the exit. How It Works Once you open a manual position, Trading Co-Pilot automatically: • Applies Stop Loss • Sets Take Profit
    FREE
    Manual Assistant MT5
    Igor Kotlyarov
    4.75 (4)
    Bonus when buying an indicator or an advisor from my list. Write to me in private messages to receive a bonus. Manual Assistant MT5 is a professional manual trading tool that will make your trading fast and comfortable. It is equipped with all the necessary functions that will allow you to open, maintain and close orders and positions with one click. It has a simple and intuitive interface and is suitable for both professionals and beginners. The panel allows you to place buy and sell orders w
    FREE
    Enhanced FVG Enhanced FVG is a technical indicator for MetaTrader 5 that identifies Fair Value Gaps on the chart and measures the buyer-to-seller volume ratio within each detected gap. Volume classification is performed using M1 timeframe tick volume data, applying the same methodology used in standard Volume Profile analysis. How It Works The indicator scans three consecutive candlesticks to detect Fair Value Gaps. A Bullish FVG is identified when the high of the first candle does not overlap w
    FREE
    Gap Catcher
    Mikita Kurnevich
    5 (5)
    Read more about my products Gap Cather - is a fully automated trading algorithm based on the GAP (price gap) trading strategy. This phenomenon does not occur often, but on some currency pairs, such as AUDNZD, it happens more often than others. The strategy is based on the GAP pullback pattern. Recommendations:  AUDNZD  TF M1  leverage 1:100 or higher  minimum deposit 10 USD Parameters:  MinDistancePoints - minimum height of GAP  PercentProfit - percentage of profit relative to GAP level
    FREE
    Paid release: Relative Volume Breakout Signals MT5 is a paid MetaCoderStore indicator. Use the product comments for setup questions, feature requests, and feedback for future updates. Relative Volume Breakout Signals measures the current bar volume against its recent average and marks range breakouts that happen on unusual participation. Use cases Identify breakouts with stronger-than-normal tick or real volume. Filter quiet range breaks from high-participation expansion moves. Feed relative-vol
    BlueArmor ETH V2 Sample – FREE Version! BlueArmor ETH V2 – Sample Version is a high-performance Expert Advisor designed for ETHUSD trading on the H1 timeframe. Engineered for intraday and swing strategies, this EA combines robust backtesting optimized using ICMarkets data with adaptive risk management to cater to both assertive and conservative traders. This sample edition includes an   adjustable trailing stop loss , empowering you to lock in profits with precision and flexibility. To encour
    FREE
    MAFX Trading Manager
    Mark Anthony Noblefranca Nazarrea
    5 (1)
    MAFX Trading Manager Pannello professionale di gestione manuale delle operazioni per MetaTrader 5 Panoramica del prodotto MAFX Trading Manager è un pannello professionale di gestione manuale delle operazioni per MetaTrader 5, progettato per aiutare i trader a eseguire e gestire le operazioni in modo più efficiente. Offre esecuzione rapida degli ordini e strumenti essenziali di gestione in un’interfaccia compatta e intuitiva. Questo prodotto è pensato per trader manuali che desiderano maggiore co
    FREE
    Phoenix Support and Resistance
    Nigel Nii Darku Narnor Darko
    This MQL5 script is a Dynamic Support & Resistance (S/R) Investigator. It functions as a real-time analytical tool that identifies key price levels and mathematically evaluates their "durability" based on historical interactions. Unlike static indicators, it uses a custom Graphical User Interface (GUI) to provide a live dashboard of market structure. 1. Level Detection Logic The indicator scans the most recent InpPeriod (lookback) of bars to identify the absolute highest peak (Resistance) and t
    FREE
    All in One MT5 Panel
    Sina Nasiri Bavili
    All-in-One MT5 Trading Panel EA Take full control of your trades directly from the chart using this intuitive and efficient MetaTrader 5 Expert Advisor. Built for precision, speed, and simplicity, this EA provides a fully integrated trading panel to manage your positions without navigating multiple menus. Key Features Instant Order Execution Place trades instantly with six predefined buttons: BUY 0.5 – Open a buy position with 0.5 lot BUY 1.0 – Open a buy position with 1.0 lot BUY 2.0 – Open a
    FREE
    Bybit BTC Scalper
    STANTON ROUX
    3.9 (10)
    BTC Scalper - Automated RSI Breakout Strategy for BTCUSD Unlock the power of automated trading with BTC Scalper! This expert advisor is a fully autonomous trading strategy, designed to capitalize on fast-moving BTCUSD markets. It leverages a potent combination of RSI Breakouts and two Exponential Moving Averages (EMA) to find high-probability trade entries, ensuring optimal confluence for success. Key Features: Fully Automated Trading : Set it, forget it, and let BTC Scalper handle your trades 2
    FREE
    ️ AutoProtect R13: Your Intelligent Trade Guardian Tired of manual management and emotional exits? AutoProtect R13 is a professional-grade utility designed to automate your risk management. This tool ensures your account stays protected 24/7. WHAT’S NEW IN V1.1 Optimized Execution: Faster processing for high-volatility market conditions. New User Interface: Professional GUI Dialog panel (replacing basic chart comments). Smart Break-Even+: Move Stop Loss to entry plus a small profit buffer
    FREE
    EA Trailing Stop
    Boonyarit Pornuan
    "Are you tired of losing money on unsuccessful trades? Look no further than EA Trailing Stop! Our program is designed to help you prevent losses and control your trades efficiently. With features such as adjustable stop loss and more, you can rest assured that your trades are in good hands. Don't wait any longer to start making successful trades. Try EA Trailing Stop today!" You can use this as a starting point and tailor it to your audience and the platform you're using. This EA Trailing Stop
    FREE
    Structure & Volatility-Based Precision Execution Signal Indicator B2U Market State System  Part of the B2U Market State System B2U EX is a professional indicator designed to analyze market structure, trend state, and volatility in an integrated and objective way. 시장 구조 , 추세 상태 , 모멘텀을 입체적으로 분석하기 위한 전문 인디케이터 시스템입니다 . 이 인디케이터는 무작위 신호 생성이 아닌 ,  시장 구조 · 변동성 · 추세 방향이 동시에 정렬된 구간에서만  실행 신호를 제공합니다. 추세상태 분석을 위한 B2U Ultimate HARSI 또는 모멘텀 상태 판단을 위한 B2U Ultimate Percent R Edition 과 함께 사용하면 시장 구조와 상태를 보다 입체적
    FREE
    Account Risk Monitor and Drawdown Alerts Account Risk Monitor and Drawdown Alerts is a lightweight non-trading utility for MetaTrader 5 designed to help traders stay aware of account risk conditions in real time. This tool does not open, modify, or close trades. It is strictly a monitoring and alert system. What It Monitors • Daily total profit and loss • Maximum drawdown from peak equity • Margin level percentage • Current spread (in points) • Total open positions • Floating profit/loss When a
    FREE
    Gli utenti di questo prodotto hanno anche acquistato
    Trade Assistant MT5
    Evgeniy Kravchenko
    4.42 (212)
    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 (663)
    Benvenuto a Trade Manager EA, lo strumento definitivo per la gestione del rischio , progettato per rendere il trading più intuitivo, preciso ed efficiente. Non è solo uno strumento per l'esecuzione degli ordini, ma una soluzione completa per la pianificazione delle operazioni, la gestione delle posizioni e il controllo del rischio. Che tu sia un principiante, un trader avanzato o uno scalper che necessita di esecuzioni rapide, Trade Manager EA si adatta alle tue esigenze, offrendo flessibilità s
    Local Trade Copier EA MT5
    Juvenille Emperor Limited
    4.96 (141)
    Sperimenta una copia di trading eccezionalmente veloce con il   Local Trade Copier EA MT5 . Con la sua facile configurazione in 1 minuto, questo copiatore di trading ti consente di copiare i trades tra diversi terminali di MetaTrader sullo stesso computer Windows o su Windows VPS con velocità di copia ultra veloci inferiori a 0.5 secondi. Che tu sia un trader principiante o professionista,   Local Trade Copier EA MT5   offre una vasta gamma di opzioni per personalizzarlo alle tue esigenze speci
    TradePanel MT5
    Alfiya Fazylova
    4.87 (158)
    Trade Panel è un assistente commerciale multifunzionale. L'applicazione contiene più di 50 funzioni di trading per il trading manuale e permette di automatizzare la maggior parte delle attività commerciali. Prima dell'acquisto, è possibile testare la versione dimostrativa su un conto demo. Scaricare la versione di prova dell'applicazione per un account dimostrativo: https://www.mql5.com/it/blogs/post/762419 . Istruzioni complete qui . Commercio. Consente di effettuare operazioni di trading con u
    Versione Beta Telegram to MT5 Signal Trader è quasi pronto per il rilascio ufficiale in versione alpha. Alcune funzionalità sono ancora in fase di sviluppo e potresti riscontrare piccoli bug. Se riscontri problemi, ti preghiamo di segnalarli, il tuo feedback aiuta a migliorare il software per tutti. Telegram to MT5 Signal Trader è uno strumento potente che copia automaticamente segnali di trading da canali o gruppi Telegram al tuo account MetaTrader 5 . Supporta canali pubblici e privati e cons
    FarmedHedge Pair Trading Dashboard
    Tanapisit Tepawarapruek
    5 (3)
    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:/
    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
    Power Candles Strategy Scanner - Strumento di ricerca configurazioni multi-simbolo con ottimizzazione automatica Power Candles Strategy Scanner utilizza lo stesso motore di auto-ottimizzazione che alimenta l'indicatore Power Candles, applicandolo a tutti i simboli presenti nel tuo Market Watch, uno accanto all'altro. Un unico pannello ti indica quali simboli sono statisticamente negoziabili in questo momento, quale strategia è vincente su ciascuno di essi, la coppia ottimale di Stop Loss / Take
    Trade Dashboard MT5
    Fatemeh Ameri
    4.95 (129)
    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
    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
    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
    Exp COPYLOT CLIENT for MT5
    Vladislav Andruschenko
    3.94 (34)
    Copiatore professionale di trade per MetaTrader 5 Un copiatore di trade veloce, professionale e affidabile per MetaTrader . COPYLOT consente di copiare operazioni Forex tra terminali MT4 e MT5 con supporto per conti Hedge e Netting . La versione MT5 di COPYLOT supporta: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting Versione MT4 Descrizione completa + DEMO + PDF Come acquistare Come installare Come ot
    Premium Trade Manager - Gestione dei trade rapida e disciplinata per MetaTrader 5 Premium Trade Manager è per i trader che vogliono tenere il focus sulla decisione mentre il pannello gestisce la routine: dimensionamento, piazzamento, parziali, trailing, news e limiti prop-firm, gestiti con la stessa disciplina su ogni trade. È un pannello rapido sul grafico per MetaTrader 5 che si occupa di tutto il lavoro meccanico in ogni trade. Decidi tu direzione, simbolo e momento; il pannello calcola la di
    ================================================================================ 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
    Seconds Chart MT5
    Boris Sedov
    4.59 (17)
    Seconds Chart - uno strumento unico per creare grafici in secondi su MetaTrader 5 . Con Seconds Chart , puoi generare grafici con timeframe definiti in secondi, ottenendo una flessibilità e una precisione d'analisi ideali, non disponibili nei grafici standard in minuti o ore. Ad esempio, il timeframe S15 indica un grafico con candele di 15 secondi. Puoi utilizzare qualsiasi indicatore e Expert Advisor con supporto per simboli personalizzati. Lavorare con loro è comodo quanto operare sui grafici
    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.
    Signal Trading View to MT5 Pro
    Mirel Daniel Gheonu
    4 (1)
    Signal TradingView to MT5 Pro Automator Esecuzione professionale istantanea tra TradingView e MetaTrader 5 Automatizza la tua strategia di trading con il ponte di comunicazione più robusto tra gli alert di TradingView e l'esecuzione reale in MT5. Progettato per i trader che richiedono velocità, flessibilità e una gestione del rischio impeccabile, questo Expert Advisor trasforma qualsiasi messaggio di avviso in un preciso ordine a mercato o limite. PUNTI DI FORZA E VANTAGGI Motore di Parsing Univ
    Trade copier MT5
    Alfiya Fazylova
    4.56 (45)
    Trade Copier è un'utilità professionale progettata per copiare e sincronizzare le transazioni tra conti di trading. La copiatura avviene dal conto/terminale del fornitore al conto/terminale del destinatario, che sono installati sullo stesso computer o vps. PROMOZIONE - Se avete già acquistato il "Trade copier MT5", potete ottenere gratuitamente il "Trade copier MT4" (per la copia MT4 > MT5 e MT4 < MT5). Per maggiori informazioni sulle condizioni, vi preghiamo di contattarci tramite messaggi priv
    Prop Firm Os
    Gayathiri Gopalakrishnan
    5 (1)
    PROP FIRM OS Structured Trading Assistant for MetaTrader 5 PROP FIRM OS is a structured trading assistant designed for MetaTrader 5 users who prefer rule-based market analysis and organized trading workflows. The Expert Advisor combines market analysis tools, scanner functions, dashboard monitoring, alerts, risk-control settings, and trade management features inside one system. PROP FIRM OS is designed to help traders follow selected rules, filters, and monitoring conditions during trading activ
    The News Filter MT5
    Leolouiski Gan
    4.78 (23)
    Questo prodotto filtra tutti gli esperti consulenti e i grafici manuali durante il periodo delle notizie, così non dovrai preoccuparti di improvvisi picchi di prezzo che potrebbero distruggere le tue impostazioni di trading manuali o le negoziazioni effettuate da altri esperti consulenti. Questo prodotto viene fornito anche con un sistema completo di gestione degli ordini che può gestire le tue posizioni aperte e gli ordini in sospeso prima della pubblicazione di qualsiasi notizia. Una volta che
    Working Demo Download Copy Cat More Trade Copier MT5 is a local trade copier and a complete risk management and execution framework designed for today’s trading challenges. From prop firm challenges to personal portfolio management, it adapts to every situation with a blend of robust execution, capital protection, flexible configuration, and advanced trade handling. The copier works in both Master (sender) and Slave (receiver) modes, with real-time synchronization of market and pending orders,
    HINN MagicEntry Extra
    ALGOFLOW OÜ
    4.73 (15)
    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-profit  functions - Invalidation leves - Intuitive, adaptive, and customizable interface - Works
    Anchor Trade Manager
    Kalinskie Gilliam
    5 (3)
    Anchor: The EA Manager Run your full EA portfolio without conflicts, without stacked risk, and without watching every chart yourself. Anchor coordinates up to 64 Expert Advisors on a single account. Attach Anchor to any chart. Type your EA names and magic numbers in one line. Click OK. Anchor begins coordinating immediately. Built for portfolios. Built for discipline. Built for prop firms. The Problem Running multiple EAs on the same account creates risk. Two gold EAs can open opposite positions
    RiskGuard Management
    MONTORIO MICHELE
    5 (22)
    ATTENZIONE  per una versione di prova gratuita visita il mio sito web. Manuale QUANTUM RiskGuard Management — Il tuo alleato definitivo per un trading senza compromessi. Lot Calculator — Calcolo automatico della size. Quantum — Rischio automatico per massimizzare i profitti e ridurre i drawdown. Automatic Journal — Incluso e scaricabile gratuitamente dal mio sito. Automatic Screenshot — Due screenshot: uno in apertura e uno in chiusura del trade. Partial Profit — Uscite parziali gestite in modo
    Trade Manager DaneTrades
    Levi Dane Benjamin
    4.28 (29)
    Trade Manager per aiutarti a entrare e uscire rapidamente dalle operazioni calcolando automaticamente il tuo rischio. Incluse funzionalità che ti aiutano a prevenire l'eccessivo trading, il vendetta trading e il trading emotivo. Le operazioni possono essere gestite automaticamente e i parametri di performance del conto possono essere visualizzati in un grafico. Queste caratteristiche rendono questo pannello ideale per tutti i trader manuali e aiuta a migliorare la piattaforma MetaTrader 5. Suppo
    Take a Break MT5
    Eric Emmrich
    4.76 (25)
    News filter, equity guard & session control for all your EAs — one tool, full protection — Free Demo | Latest Updates Take a Break has evolved from a basic news filter into a comprehensive account protection solution . It pauses your other Expert Advisors during news events or based on custom filters. When trading resumes, it automatically restores your entire chart setup , including all EA settings. New in v10: an integrated AI Trade Assessment evaluates each new trade entry directly on your ch
    Timeless Charts
    Samuel Manoel De Souza
    5 (6)
    Timeless Charts è un'utilità di trading completa progettata per trader professionisti. Combina tipi di grafici personalizzati come Grafici a Secondi e Renko con analisi avanzata del flusso ordini tramite Footprints , Clusters , Profili di Volume , studi VWAP e strumenti di analisi ancorata per una visione più approfondita del mercato. Il trading e la gestione delle posizioni vengono eseguiti direttamente dal grafico tramite un pannello integrato di gestione delle operazioni , mentre Market Repla
    Entry In The Zone with SMC Multi Timeframe is a real-time 2-in-1 market analysis tool that combines market structure analysis and a No Repaint BUY / SELL signal system into a single indicator, built on Smart Money Concepts (SMC) — a widely adopted framework used by professional traders to understand market structure. This indicator helps you see the market more clearly, make decisions based on structure rather than guesswork, and focus on high-probability zones where price is more likely to reac
    EA Auditor
    Stephen J Martret
    5 (3)
    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
    MT5 to Telegram Signal Provider è un'utilità facile da usare e completamente personalizzabile che consente l'invio di segnali specificati a una chat, canale o gruppo Telegram, rendendo il tuo account un fornitore di segnali. A differenza della maggior parte dei prodotti concorrenti, non utilizza importazioni DLL. [ Dimostrativo ] [ Manuale ] [ Versione MT4 ] [ Versione Discord ] [ Canale Telegram ]  New: [ Telegram To MT5 ] Configurazione Una guida utente passo-passo è disponibile. Nessuna cono
    Altri dall’autore
    SuperScalp Pro Trader EA Automated trading EA for the indicator — dual-source Fibonacci TP, per-ticket management, and advanced trailing stop. Quick start: Apply the indicator to your chart first, then attach this EA.  How to use Open your chart and select your preferred symbol and timeframe. Insert the indicator onto the chart. Attach SuperScalp Pro Trader EA to the same chart. Leave IndicatorName blank — the EA automatically detects the chart indicator instance (Mode B). To load the indicat
    Product Name AllAverages Cross EA – 36 Moving Average Crossover Strategy Short Description (one-liner) Universal MA crossover EA with 36 built-in moving average types, multi-timeframe support, ATR-based risk management, multi-level TP partial close, and trailing stop — no external indicators required. Full Description Overview AllAverages Cross EA is a fully self-contained dual moving average crossover Expert Advisor that internalizes 36 different moving average algorithms. Unlike typical MA cro
    FREE
    1. Overview — TrendFusion Pro TrendFusion Pro is a free, open-source MetaTrader 5 indicator that generates buy and sell signals only when all seven independent filters simultaneously agree. By requiring SuperTrend direction change, Triple EMA alignment, EMA proximity, RSI momentum direction, MACD divergence, wick ratio, and over-extension filters to pass at once, it delivers high-precision confluence signals with minimal false positives — suitable for both trend-following and scalping strategie
    FREE
    All Averages Cross Signal – 36 MA Types with Built-in Trade Simulator Description: All Averages Cross Signal is a powerful dual moving average crossover indicator featuring 36 different MA calculation methods and a built-in trade simulation engine. Identify golden cross and dead cross signals with any combination of moving averages, then instantly evaluate strategy performance — all without leaving the chart. 36 Moving Average Types in One Indicator Choose from 36 MA methods for both Fast and Sl
    FREE
    Bullish Consecutive Signal — Consecutive Bullish Candle Buy Signal with Alerts & P&L Simulation Bullish Consecutive Signal automatically detects consecutive bullish candle patterns and marks high-probability buy entries directly on the chart. Each signal comes with an ATR-calculated Stop Loss and Take Profit level, drawn as reference lines so you can assess risk at a glance. A built-in P&L back-simulation lets you evaluate strategy performance without leaving the chart.   IMPORTANT — DEFAULT
    FREE
    Real Time Account Overview MT4 — Account & Magic Number P&L Monitor Real-time account overview and per-strategy P&L tracking, all in one clean panel. Overview Dashboard MT5 is a lightweight Expert Advisor that overlays a live information panel directly on your MetaTrader 4 chart. It gives you an instant snapshot of your account health and the performance of each trading strategy — identified by magic number — without ever leaving the platform. Whether you run a single EA or a dozen simultaneous
    FREE
    A complete copy trading EA suite that automatically replicates trades across MT4 and MT5 platforms. Supports all four combinations — MT4→MT4, MT4→MT5, MT5→MT4, and MT5→MT5 — in a single package. Uses the FILE_COMMON shared folder method for fast, reliable signal delivery within the same PC or VPS. Overview CopyTrading EA Suite is a utility package that automatically replicates trades between MetaTrader 4 and MetaTrader 5 platforms. A single Sender EA can broadcast signals to multiple Receive
    FREE
    Indicator Trader EA v1.0 for MetaTrader 5 Universal EA that bridges any custom indicator's signals to automated trading XAUUSD · Major Forex Pairs · Crypto | All Timeframes M1 ~ D1 Overview Indicator Trader EA is a universal Expert Advisor that automatically executes buy and sell orders based on signal buffers from any custom indicator. With a single EA, you can connect any commercial indicator (SuperScalp Pro, Trend 7Filter Pro, etc.) directly — no extra coding required. Simply configur
    FREE
    Position Manager Pro v1.0 (MT4) Dual Magic Number Independent Group Manager with Live P&L Dashboard Overview Position Manager Pro is a powerful trade management Expert Advisor for MetaTrader 4 that operates as an overlay manager — it does not open positions itself, but instead manages and monitors positions opened by other EAs or manually by the trader. The core concept is two fully independent groups , each identified by a unique Magic Number . Each group has its own Take Profit, Stop Loss, and
    FREE
    A complete copy trading EA suite that automatically replicates trades across MT4 and MT5 platforms. Supports all four combinations — MT4→MT4, MT4→MT5, MT5→MT4, and MT5→MT5 — in a single package. Uses the FILE_COMMON shared folder method for fast, reliable signal delivery within the same PC or VPS. Overview CopyTrading EA Suite is a utility package that automatically replicates trades between MetaTrader 4 and MetaTrader 5 platforms. A single Sender EA can broadcast signals to multiple Receive
    FREE
    Real Time Account Overview MT5 — Account & Magic Number P&L Monitor Real-time account overview and per-strategy P&L tracking, all in one clean panel. Overview Dashboard MT5 is a lightweight Expert Advisor that overlays a live information panel directly on your MetaTrader 5 chart. It gives you an instant snapshot of your account health and the performance of each trading strategy — identified by magic number — without ever leaving the platform. Whether you run a single EA or a dozen simultaneous
    FREE
    Filtro:
    Nessuna recensione
    Rispondi alla recensione