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.

    Produtos recomendados
    Trailing Stop Manager v1.0 — MT5 Expert Advisor Advanced Multi-Mode Trailing Stop for MetaTrader 5 What Is It? Trailing Stop Manager automatically moves your Stop Loss to protect profits as price moves in your favor. Unlike MT5's built-in trailing stop (which only has one mode), this EA offers 4 professional trailing methods that adapt to different trading styles and market conditions. Works on ALL symbols. Attach to any chart and it manages all matching positions. *** Group support:  https://ww
    FREE
    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: Simplifique a Personalização do Seu Gráfico Transforme sua experiência de negociação com o Basic Theme Builder , um indicador versátil projetado para simplificar a personalização da aparência do seu gráfico no MetaTrader 5. Este indicador intuitivo oferece um painel fácil de usar que permite alternar rapidamente entre vários temas e esquemas de cores, melhorando tanto o apelo visual quanto a funcionalidade do seu ambiente de negociação. Free MT4 version O Basic Theme Builde
    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)
    [ Meus Produtos ] , [ Meu Canal ] OMG Trading Panel Agora você pode controlar seu painel de trading diretamente pelo telefone. Instale o OMG Trading Tool no seu MQL VPS e negocie confortavelmente pelo aplicativo móvel MetaTrader 5 enquanto o painel funciona 24/7. Também adicionei duas estratégias úteis: Smart Margin Protection e Grid Strategy. Você também pode configurar um alerta quando o preço cair. Principais recursos Controle remoto via MT5 móvel Controle sua ferramenta de trading de qua
    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
    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
    Arbitrage365
    Themichl LLC
    3 (1)
    The Arbitrage365 EA is a basic script for MetaTrader that implements a triangular arbitrage strategy. It identifies and exploits price discrepancies between EURUSD, GBPUSD, and EURGBP to profit from temporary market mispricing. This EA capitalizes on the law of one price by simultaneously buying and selling currency pairs. Its advantages include speed, accuracy, scalability, consistency, cost-effectiveness, contribution to market liquidity, and portfolio diversification. However, it's a basic E
    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 (7)
    Quick Close 1S é um utilitário desenvolvido para uma gestão de negociações rápida e organizada. Ele oferece um painel de controle limpo para abrir ou fechar ordens instantaneamente, aplicar configurações flexíveis de SL/TP, gerenciar metas da cesta e controlar o lucro ou prejuízo total. Indicado para traders que valorizam precisão, eficiência e execução clara no dia a dia. Principais recursos Controle simplificado de ordens: Gerencie posições em um painel intuitivo com opções para abrir ou fecha
    FREE
    Crimson FX
    Michael Prescott Burney
    Crimson EA emerges as a force to be reckoned with on the USDJPY M15 chart, embodying the perfect fusion of 50 meticulously crafted strategies that span across trend analysis, hedging, and scalping disciplines. This powerhouse operates beyond the confines of conventional stop-loss and take-profit mechanisms, relying instead on precise entry and exit signals generated from its strategic arsenal. Coupled with an advanced reversal function, Crimson EA offers a protective shield to safeguard invest
    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
    Um utilitário para definir automaticamente os níveis de equilíbrio, transfere as negociações para o equilíbrio ao passar uma determinada distância. Permite que você minimize os riscos. Criado por um trader profissional para traders. O utilitário funciona com quaisquer ordens de mercado abertas por um trader manualmente ou usando consultores. Pode filtrar negociações por número mágico. O utilitário pode trabalhar com qualquer número de pedidos ao mesmo tempo. Versão MT4 https://www.mql5.com/en/
    Gap Catcher
    Mikita Kurnevich
    5 (4)
    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
    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 Painel profissional de gerenciamento manual de trades para MetaTrader 5 Visão geral do produto O MAFX Trading Manager é um painel profissional de gerenciamento manual de trades para MetaTrader 5, desenvolvido para ajudar traders a executar e gerenciar operações com mais eficiência. Ele oferece execução rápida de ordens e ferramentas essenciais de gerenciamento em uma interface compacta e intuitiva. Este produto é destinado a traders manuais que buscam maior controle, velocid
    FREE
    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
    Magic Order Manager EA v1.02 - Professional Trading Assistant Smart Position Management Tool with Auto Take Profit System Product Description Magic Order Manager is a professional-grade Expert Advisor designed to optimize trading profits through smart automation and risk control. This position management tool provides automated profit taking based on customizable rules while maintaining comprehensive risk monitoring. Key Features Intelligent Auto Take Profit Automatically closes all positions wh
    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
    "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
    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
    Profit & Loss Display - MT5 Panel On chart panel to display profit and loss per product over specified time period.  * current version only shows p/l for ea with magic not manual trades Note this is a panel, not an indicator or algorithm, it simply displays profit and loss from account history //---- Install ----// After download, attach indicator to chart from the markets folder which is in navigator window (Cntrl N) //---- Study ----// Set target profit for product per week/specified peri
    FREE
    Bundle Risk Manager Pro EA "Risk Manager Pro EA is an all-in-one trading utility that combines advanced risk management tools, ensuring full control over your trading account while protecting your capital and complying with trading regulations. By bundling Limit Positions , Concurrent Risk Capital , and the newly added Limit Profit , this EA is the ultimate solution for disciplined trading and achieving evaluation goals. Key Features: 1. Limit Positions : Enforces a maximum number of open posi
    FREE
    Os compradores deste produto também adquirem
    Trade Assistant MT5
    Evgeniy Kravchenko
    4.42 (208)
    Ajuda a calcular o risco por comércio, a fácil instalação de uma nova encomenda, gestão de encomendas com funções de fecho parcial, trailing stop de 7 tipos e outras funções úteis. Materiais e instruções adicionais Instruções de instalação   -   Instruções para a aplicação   -   Versão de teste da aplicação para uma conta de demonstração Função de linha Mostra no gráfico a linha de Abertura, Stop Loss, Take Profit. Com esta função é fácil definir uma nova ordem e ver as suas características ad
    Bem-vindo ao Trade Manager EA—uma ferramenta de gestão de risco criada para tornar o trading mais intuitivo, preciso e eficiente. Não é apenas uma ferramenta para executar ordens, mas uma solução abrangente para planejamento de operações, gerenciamento de posições e controle de risco. Seja você um iniciante, trader avançado ou scalper que precisa de execução rápida, o Trade Manager EA adapta-se às suas necessidades, oferecendo flexibilidade em todos os mercados, desde forex e índices até commodi
    Local Trade Copier EA MT5
    Juvenille Emperor Limited
    4.96 (131)
    Experimente uma cópia de negociação excepcionalmente rápida com o Local Trade Copier EA MT5 . Com sua fácil configuração de 1 minuto, este copiador de negociações permite que você copie negociações entre vários terminais MetaTrader no mesmo computador Windows ou em um Windows VPS com velocidades de cópia ultra rápidas de menos de 0.5 segundos. Seja você um trader iniciante ou profissional, o   Local Trade Copier EA MT5   oferece uma ampla gama de opções para personalizá-lo de acordo com suas ne
    TradePanel MT5
    Alfiya Fazylova
    4.87 (149)
    Trade Panel é um assistente de negociação multifuncional. O aplicativo contém mais de 50 funções de negociação para trading manual e permite automatizar a maioria das tarefas de negociação. Antes da compra, você pode testar a versão de demonstração em uma conta demo. Baixe a versão experimental do aplicativo para uma conta de demonstração: https://www.mql5.com/pt/blogs/post/762547 . Instruções completas aqui . Comércio. Permite realizar operações de negociação com um clique: Abrir ordens pendent
    Versão Beta O Telegram to MT5 Signal Trader está quase no lançamento oficial da versão alfa. Alguns recursos ainda estão em desenvolvimento e você pode encontrar pequenos erros. Se tiver problemas, por favor reporte, seu feedback ajuda a melhorar o software para todos. Telegram to MT5 Signal Trader é uma ferramenta poderosa que copia automaticamente sinais de trading de canais ou grupos do Telegram diretamente para sua conta MetaTrader 5 . Suporta canais públicos e privados do Telegram, e você
    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 Contact me via private message to receive the User Manual and Setup. * Thai Lauguage Support Available Farmed Hedge Yield Farming - Professional Pair Trading Dashboard (Manual - Hybrid - Semi/Automated EA) VERSION 3 - WILD HARVEST UPDATE Trading Approac
    Copy Cat More Trade Copier MT5 (Gato Copiador MT5) é um copiador de negociações local e uma estrutura completa de gestão de riscos e execução projetada para os desafios comerciais de hoje. Desde desafios de prop firms até gestão de portfólio pessoal, ele se adapta a cada situação com uma combinação de execução robusta, proteção de capital, configuração flexível e manuseio avançado de negociações. O copiador funciona tanto no modo Master (remetente) quanto Slave (receptor), com sincronização em t
    Trade Dashboard MT5
    Fatemeh Ameri
    4.94 (119)
    Tired of complex order placement and manual calculations? Trade Dashboard is your solution. With its user-friendly interface, placing orders becomes effortless, by a single click, you can open trades, set stop loss and take profit levels, manage trade lot size, and calculate risk to reward ratios, allowing you to only focus on your strategy. Say goodbye to manual calculations and streamline your trading experience with Trade Dashboard. Download  Demo Version  right now. You can find  Details of
    The News Filter MT5
    Leolouiski Gan
    4.74 (19)
    Este produto filtra todos os consultores especializados e gráficos manuais durante o horário das notícias, para que você não precise se preocupar com picos de preços repentinos que possam destruir suas configurações de negociação manuais ou negociações realizadas por outros consultores especializados. Este produto também vem com um sistema de gerenciamento de pedidos completo que pode lidar com suas posições abertas e ordens pendentes antes do lançamento de qualquer notícia. Depois de comprar o
    Exp COPYLOT CLIENT for MT5
    Vladislav Andruschenko
    3.82 (34)
    Copiadora de comércio para MT5 é um  comércio   copiadora para a plataforma МetaТrader 5 . Ele copia negociações forex  entre   qualquer conta   MT5  - MT5, MT4  - MT5 para a versão COPYLOT MT5 (ou MT4  - MT4 MT5  - MT4 para a versão COPYLOT MT4) Copiadora confiável! Versão MT 4 Descrição completa +DEMO +PDF Como comprar Como instalar    Como obter arquivos de log    Como testar e otimizar    Todos os produtos da Expforex Você também pode copiar negociações no terminal МТ4 ( МТ4  - МТ4, МТ5  -
    Trade copier MT5
    Alfiya Fazylova
    4.56 (39)
    Trade Copier é um utilitário profissional projetado para copiar e sincronizar negociações entre contas de negociação. A cópia ocorre da conta / terminal do fornecedor para a conta / terminal do destinatário, instalada no mesmo computador ou vps. Antes de comprar, você pode testar a versão demo em uma conta demo. Versão de demonstração aqui . Instruções completas aqui . Principais funcionalidades e benefícios: Suporta a cópia de MT5> MT5, MT4> MT5, MT5> MT4, incluindo contas "MT5 netting". Os mod
    Telegram To MT5 Receiver
    Levi Dane Benjamin
    4.31 (16)
    Copie os sinais de qualquer canal do qual você seja membro (incluindo privados e restritos) diretamente para o seu MT5.  Esta ferramenta foi projetada com o usuário em mente, oferecendo muitos recursos que você precisa para gerenciar e monitorar as negociações. Este produto é apresentado em uma interface gráfica fácil de usar e visualmente atraente. Personalize suas configurações e comece a usar o produto em minutos! Guia do usuário + Demo  | Versão MT4 | Versão Discord Se deseja experimentar
    Ultimate Extractor
    Clifton Creath
    5 (9)
    Ultimate Extractor - Professional Trading Analytics for MT5 *****this is the local HTML version of Ultimate Extractor. For the online version please reach out to me directly****** Ultimate Extractor transforms your MetaTrader 5 trading history into actionable insights with comprehensive analytics, interactive charts, and real-time performance tracking. What It Does Automatically analyzes your MT5 trading history across all Expert Advisors and generates detailed HTML reports with interactive vi
    Smart Stop Manager – Execução automática de stop-loss com precisão profissional Visão geral O Smart Stop Manager é a camada de execução da linha Smart Stop, desenvolvido para traders que precisam de uma gestão de stop-loss estruturada, fiável e totalmente automatizada em múltiplas posições abertas. Ele monitora continuamente todas as operações ativas, calcula o nível ideal de stop usando a lógica de estrutura de mercado do Smart Stop e atualiza os stops automaticamente com regras claras e tran
    Seconds Chart MT5
    Boris Sedov
    4.59 (17)
    Seconds Chart - uma ferramenta exclusiva para criar gráficos de segundos no MetaTrader 5 . Com o Seconds Chart , você pode criar gráficos com períodos definidos em segundos, proporcionando flexibilidade e precisão ideais para análise, indisponíveis em gráficos padrão de minutos ou horas. Por exemplo, o período S15 indica um gráfico com velas de 15 segundos. Você pode usar qualquer indicador ou Expert Advisor com suporte a símbolos personalizados. Trabalhar com eles é tão conveniente quanto negoc
    Timeless Charts
    Samuel Manoel De Souza
    5 (3)
    Timeless Charts é uma solução avançada de gráficos desenvolvida para traders profissionais que buscam controle total sobre a construção e visualização de gráficos, além das limitações do sistema de gráficos nativo do MetaTrader 5. Diferente dos gráficos offline tradicionais ou indicadores personalizados simplistas, esta solução constrói barras totalmente personalizadas com precisão real de carimbo de tempo , até milissegundos, proporcionando uma experiência de trading poderosa e precisa. Este a
    MT5 to Telegram Signal Provider é uma utilidade fácil de usar e totalmente personalizável que permite o envio de sinais especificados para o chat, canal ou grupo do Telegram, tornando sua conta um fornecedor de sinais . Ao contrário da maioria dos produtos concorrentes, ele não usa importações de DLL. [ Demonstração ] [ Manual ] [ Versão MT4 ] [ Versão Discord ] [ Canal do Telegram ]  New: [ Telegram To MT5 ] Configuração Um guia do usuário passo a passo está disponível. Não é necessário conhec
    Smart Stop Scanner – Sistema multiactivo de análise de stops baseado em estrutura de mercado Visão geral O Smart Stop Scanner oferece aos traders um monitoramento profissional de níveis de stop-loss em múltiplos mercados. O sistema identifica automaticamente as zonas de stop mais relevantes com base na estrutura real do mercado, rupturas significativas e lógica de price action — tudo apresentado em um painel unificado, claro e totalmente compatível com telas de alta resolução (DPI-aware). Func
    HINN MagicEntry Extra
    ALGOFLOW OÜ
    4.71 (14)
    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
    Advanced Dashboard Ultra
    Mirel Daniel Gheonu
    5 (1)
    Stats Dashboard & Journal ULTRA para MT5 O Centro de Comando de Trading Completo: Analytics, Automação e Inteligência de Notícias. O Stats Dashboard ULTRA é a evolução definitiva da ferramenta de análise Pro. Ele transforma o MetaTrader 5 em uma estação de trading profissional, combinando análise de desempenho de nível institucional com proteção automatizada contra notícias e métricas psicológicas avançadas. Projetado para traders manuais e gestores de portfólio de EAs (robôs) que exigem control
    Risk Manager for MT5
    Sergey Batudayev
    4.35 (17)
    O Expert Advisor Risk Manager para MT5 é um programa muito importante e, na minha opinião, necessário para todos os traders. Com este Expert Advisor você poderá controlar o risco em sua conta de negociação. O controle de risco e lucro pode ser realizado tanto em termos monetários quanto em termos percentuais. Para que o Expert Advisor funcione, basta anexá-lo ao gráfico de pares de moedas e definir os valores de risco aceitáveis ​​na moeda de depósito ou em % do saldo atual. [Instruction for
    Take a Break MT5
    Eric Emmrich
    4.75 (24)
    News filter, equity guard & session control for all your EAs — one tool, full protection 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. Why traders choose Take a Break One news filter for all your EAs — no more relying on individual built-in filters that may o
    Equity Protect Pro: Seu Especialista em Proteção de Contas Abrangente para Negociação Tranquila Se você está procurando recursos como proteção de conta, proteção de patrimônio, proteção de portfólio, proteção de múltiplas estratégias, proteção de lucro, coleta de lucro, segurança de negociação, programas de controle de risco, controle automático de risco, liquidação automática, liquidação condicional, liquidação programada, liquidação dinâmica, trailing stop loss, fechamento com um clique, liqu
    Pulsar Terminal é um produto da Pulsar Technologies, uma marca registrada da Astralys LLC . Pulsar Terminal é um complemento utilitário para MetaTrader 5. É uma interface visual combinada com ferramentas de execução em um aplicativo complementar conectado à sua conta MetaTrader 5 através de um Expert Advisor . Utilizamos um aplicativo complementar para maximizar as capacidades da ferramenta e fornecer uma interface visual e um fluxo de trabalho mais avançados do que os painéis padrão do MT5. Pu
    YuClusters
    Yury Kulikov
    4.93 (43)
    Atenção: A versão demo para revisão e teste está aqui . YuClusters é um sistema profissional de análise de mercado. O trader tem oportunidades únicas para analisar o fluxo de pedidos, volumes de negociação, movimentos de preços usando vários gráficos, perfis, indicadores e objetos gráficos. O YuClusters opera com base em dados de Tempos e Negócios ou informações de ticks, dependendo do que está disponível nas cotações de um instrumento financeiro. O YuClusters permite que você crie gráficos com
    Anchor Trade Manager
    Kalinskie Gilliam
    5 (1)
    Anchor: The EA Manager A coordination system for traders running multiple EAs. Anchor ensures only one EA can trade at a time, preventing conflicting positions and keeping your portfolio safer. Attach Anchor to any chart. Configure your EAs and their magic numbers. Anchor handles the rest. 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 on the same candle. Three EA
    The product will copy all telegram signal to MT5 ( which you are member) , also it can work as remote copier.  Easy to set up, copy order instant, can work with almost signal formats, image signal,  s upport to translate other language to English Work with all type of channel or group, even channel have "Restrict Saving Content", work with  multi channel, multi MT5 Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. Support to backtest signal. How to s
    Trade Manager DashPlus
    Henry Lyubomir Wallace
    5 (13)
    DashPlus é uma ferramenta avançada de gerenciamento de operações projetada para melhorar a eficiência e a eficácia das suas transações na plataforma MetaTrader 5. Ela oferece um conjunto completo de funcionalidades, incluindo cálculo de risco, gestão de ordens, sistemas de grade avançados, ferramentas baseadas em gráficos e análise de desempenho. Principais Funcionalidades 1. Grade de Recuperação Implementa um sistema de grade flexível e de média para gerenciar operações em condições adversas de
    Comprehensive on chart trade panel with the unique ability to be controllable from mobile as well. Plus has a library of downloadable configuration, e.g. exit rules, extra panel buttons, pending order setup and more. Please see our product video. Works with all symbols not just currency pairs. Features On chart panel plus controllable from free app for Windows, iPhone and Android Built-in script engine with library of downloadable configuration, e.g. add 'Close All Trades in Profit' button, exit
    DrawDown Limiter
    Haidar Lionel Haj Ali
    5 (20)
    Drawdown Limiter EA You are in the right place if you were searching for Drawdown control, Drawdown limiter, Balance protection, Equity Protection or Daily Drawdown Limit related to Prop Firm, FTMO, or Funded account trading, or if you want to protect your trading account. Have you suffered from controlling your drawdown when trading funded accounts? This EA is meant for you. Prop firms usually set a rule called “Trader Daily Drawdown”, and if it is not respected, you are disqualified.  I am an
    Mais do autor
    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
    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
    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
    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
    Filtro:
    Sem comentários
    Responder ao comentário