Position Manager Pro MT4

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 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_MT4.mq4 to your MetaTrader 4 Experts folder: [MT4 Data Folder] → MQL4 → Experts
    2. Restart MetaTrader 4 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 4 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

    • Requires MetaTrader 4 build 765 or later (supports #property strict , ObjectsDeleteAll with prefix, and OnChartEvent ).
    • 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 MT4 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
    Basic Theme Builder
    Mehran Sepah Mansoor
    5 (1)
    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 4. 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 MT5 version O   Basic Theme
    FREE
    News Scalping Executor Pro is an utility which helps to trade high impact and huge volatility   news . This utility helps to create two opposite orders with risk management and profit protection. It moves automatically stop loss level to avoid losses as much as possible by using many different algorithms. It helps to avoid trading the news if spread suddenly becomes very huge. It can lock profit by moving stop loss or partially closing of orders. To be profitable with this type of trading you
    SpreadChartOscillator é um indicador que exibe a linha de propagação do símbolo na sub-janela do oscilador. Nos parâmetros é possível especificar outro símbolo a partir do qual a linha de propagação será transmitida. Se o parâmetro "Símbolo" for deixado vazio, a linha de spread será exibida a partir do símbolo atual no qual o indicador está definido. Esta ferramenta é ideal para os comerciantes que querem ver a dinâmica do spread no formato do oscilador e usá-la para se protegerem de entrar no
    FREE
    Hi! Between the given time range. Adds profit and lot. This can be written on the charter in English and Hungarian. The name of the symbol must be entered exactly. Good used for it. :) Szia! A meg adott idősáv között Összeadja a profitot és lot-ot. Ezt ki írathatjuk Angolul és Magyarul a chartra. Pontosan kell beírni a szimbólum nevét. Jó használatott hozzá. :)
    EA Liuk Trend Limited
    Maulana Dihaan Tadiska
    2 (1)
    This is the free version of EA LIUK TREND. The different is only this is limited use only, maximum 100 trades. But not limited for back test purpose. Lot will be only 0.01. For more detail in original version, please visit :  https://www.mql5.com/en/market/product/86874 EA LIUK TREND The best way to get profit in trading is to follow the Market trend. Good money management is important too to keep your investment save, by minimizing the Draw Down. With this EA LIUK TREND, you will be able to co
    FREE
    TAwES
    Ahmad Aan Isnain Shofwan
    Trading Assistant with Equity Security (TAwES) This EA for helping manual trading (the EA will be activated when manual trade opened - Semi Auto) - This EA will be triggered by manual trading/first OPEN TRADE - If some manual trades have been opened and EA activated then all manual trades will be take over by EA separately. - This EA feature can be a martingale with multiplier, max order, and the distance can be adjusted - This EA will secure your Equity by max/loss Equity Setup.
    FREE
    Rua TrailingStop BreakEven Little
    PHAM KIM QUY RuaCoder
    4.5 (2)
    Rua TrailingStop BreakEven Little The EA not for Real Account. You can EA for Real Account with link:   https://www.mql5.com/en/market/product/47635 Uses of EA - Trailingstop: Move stoploss continuously. - Breakeven: Move the stoploss once. Custom parameters: All OrderOpenTime:     + true: acts on all order     + false: only affect the order opened since EA run All OrderType:     + true: acts on all order.     + false: only the order is running (Buy, Sell) TraillingStop: true (Use), false (do n
    FREE
    Confirmation Entry
    Fawwaz Abdulmantaser Salim Albaker
    Dear Valuable Friends ,   This New Free EA works as below : - waiting the M15 diagram to show the reverse or continuing of the trend - confirm  signal on H4 Diagram . - wait till the entry strategy is being extremely true  - put direct entry point (sell or Buy ) and put Pending Orders (P.O) in grid   All these will be Active after manually set in common parameters that u fully controlled . Check the pics to recognize .. for any Question write to me directly .. Best Luck  Best Luck  
    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.    (Mt5 version is  https://www.mql5.com/en/market/product/55467 ) "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_Pr
    FREE
    MAM Black MT4
    Matei-Alexandru Mihai
    Overview MAM Black MT4 is an Expert Advisor for MetaTrader 4 designed as a profit-only grid system for S&P 500 / US500 symbols. It builds positions only in the direction of the EMA slope, adapts grid spacing with ATR, and closes baskets exclusively in profit using equity targets and trailing. When risk conditions deteriorate, the system automatically activates freeze, pause, or light-hedge modes for protection. Key Features Trend-aligned grid: trades are opened only when price and EMA slope ar
    FREE
    This is a fully functional evaluation version for working on "CADCHF". Full version - Risk Controller If there are active deals on the account when the robot is launched, then all of them except CADCHF will be closed! Risk controller is a tool allowing you to automatically control orders, losses and emotionally motivated actions. Main advantages Limitation of the total account loss. When the MinimalDepo value is reached, any trade will be closed. Limitation of losses per day. Limitation of los
    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 siz
    Elevate your trading with this Breakeven and Trailing Stop Manager, an Expert Advisor (EA) built for MetaTrader 4 to streamline risk management by automating breakeven and trailing stop strategies. This EA helps secure profits and minimize losses without requiring constant manual intervention, giving you more time to focus on market analysis and strategy. ### Key Features: - **Automatic Breakeven Adjustment:**     Automatically move the Stop Loss to the breakeven level once your position reac
    FREE
    BBarsio AUDCAD
    Aleksandr Butkov
    4.5 (2)
    Free version of BBarsio Expert Advisor, which is intended only for AUDCAD pair. Works with a fixed minimum lot ! The Expert Advisor uses a weighted scalping strategy. Currency pair: AUDCAD. Timeframe: M5-M15. The advisor's strategy: the advisor finds possible reversal / trend continuation points; filters out some of the false signals; entry into the deal with only one order !!! exit from a trade by take profit or by a signal of a possible reversal; Default settings for M5. The Expert Advis
    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 MT5 https://www.mql5.com/ru/
    EA Gap Catcher
    Mikita Kurnevich
    5 (3)
    Read more about my products EA 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
    Raven
    Dmitriy Prigodich
    5 (1)
    "Raven" is an expert scalper who does not use dangerous strategies in his work. It trades at the extremes of the pullback, according to the trend. Channel scalping means confidence, reliability and minimal risks. The Expert Advisor implements all types of stops from the percentage of the balance to the signal stop, so you can always control your balance and not worry. It is recommended to use a signal stop - this will optimize losses and increase profits. The first 10 copies are priced at $ 10
    FREE
    RSI Good luck
    Sorapol Thanavikasit
    RSI Good Luck  buy and sell  EURUSDm Spread 10, USDJPYm Spread 11, XAUUSDm Spread 26 , GBPUSDm Spread15 , AUDUSDm Spread 17  , NZDUSDm Spread20 , USDCADm Spread 22 , USDCHFm Spread 15 , EURJPYm , EURGBPm , GBPJPYm RSI 70% and 30% Run Timeframes M5 , M15 , M30 , H1 , H4 , D1 open 0.01 lot Balance $100 version 1.00  12 Dec 2019 TP 200 point or 20 pips  SL 450 point or 45 pips  version 2 xx Dec 2019 (you chage) TP 450 point or 45 pips SL 200 point or 20 pips  ***************************************
    O indicador Multímetro de intensidade da moeda mostra a força, a direção e a classificação de cada uma das seguintes moedas: AUD CAD CHF EUR GBP JPY NZD USD Além disso, também mostra a força, a direção e a classificação de cada um dos seguintes pares de moedas: AUDCAD AUDCHF AUDJPY AUDNZD AUDUSD CADCHF CADJPY CHFJPY EURAUD EURCAD EURCHF EURGBP EURJPY EURNZD EURUSD GBPAUD GBPCAD GBPCHF GBPJPY GBPNZD GBPUSD NZDCAD NZDCHF NZDJPY NZDUSD USDCAD USDCHF USDJPY O indicador funciona em qualquer gráfico
    FREE
    IceFX DrawProfit
    Norbert Mereg
    4.92 (24)
    O indicador IceFX DrawProfit pode contribuir eficazmente para aqueles traders que querem ver no gráfico todas as saídas de posições fechadas: lucro ou prejuízo. Se você definir o DrawProfit no seu gráfico gerido por um Expert Advisor (EA), você vai ver claramente o seu desempenho quanto aos lucros e as perdas. Principais características: Exibe as linhas de ordens fechadas Exibe lucros/perdas de ordens fechadas por moeda Resume ordens por candles Filtro MagicNumber para EAs Filtro de Comentário
    FREE
    This is a free demo version for USDJPY only. Here is the link to full version: https://www.mql5.com/en/market/product/25912 This product has no input parameters. The product helps you to open and close orders faster, include instant and pending orders. It helps you to open order faster and easier, to make an order you simply click on the button. Buttons List BUY/SELL: to open instant Buy or Sell orders. BUY STOP/BUY LIMIT/SELL STOP/SELL LIMIT: to open pending order. The distance to the current
    FREE
    This EA manage your trailing stop loss on every manual opened position and he lead your position to profit. This is free tool that can be used from any trader and is special good for rookie traders. You must to try it and you can feel how your positions go to profit.  I'm a professional forex trader for about 4 years now and I'm specialized in automated trading systems (EA's) and scalping trading strategies. I've tried a lot in my journey and finally found the tools that make consistent results
    FREE
    Description: EquityStop UAP is the solution designed to optimize the management of your forex operations securely and efficiently. Our software provides a superior level of control and protection for every trade. *Key Features:* 1.  **Equity Protection:** Preserve your capital with our advanced Equity Stop feature, applying an automatic safety barrier to limit losses. 2.  **Percentage Trailing Stop:** Maximize your profits and minimize losses with the Percentage Trailing Stop feature, dynam
    FREE
    Safety
    Sergey Ermolov
    5 (2)
    Eu acho que todo mundo conhece a regra da Gestão de dinheiro como "cofre". Para aqueles que não estão cientes, o cofre envolve o fechamento de metade da posição depois que o lucro da transação foi igual ao tamanho da parada. Assim, mesmo que o preço se desdobre e pegue o stop, você não perderá dinheiro, porque exatamente o mesmo tamanho de lucro foi obtido ao fechar parte da posição anteriormente. O Safety Advisor tem apenas uma configuração-Um lote de fechamento. Deixando - o na posição 0, O
    FREE
    This Tool Allow you close all open Orders automatics when Equity reach to specific value:  - When Equity is less than  specific value - When Equity is greater than  specific value - And Allow you close all open orders in manual - It will notification to MT4 Mobile app when it execute close all orders. __________________________________________ It very helpful for you when you trade with prop funds. Avoid reach daily drawdown and automatics close all orders when you get target.
    FREE
    Risk manager x2 free
    Andrii Malakhov
    5 (1)
    Советник риск-менеджер с огромным арсеналом возможностей защиты вашего депозита. Для инвесторов, которые решили передать капитал в доверительное управление. Когда у трейдера нет доступа к настройкам - нивелирует торговые риски. А также для трейдеров, которые осознали необходимость стороннего контроля за их торговлей для улучшения торговых результатов.  Для максимальных результатов - должен стоять на отдельном VPS сервере и у трейдера не должно быть возможности менять настройки в торговый период.
    FREE
    Introduction Auto Chart Alert is a convenient tool to set alert for your trading in your chart. With Auto Chart Alert, you can set the alert line in one click in your desired location in your chart. You can even set alert over the sloped lines in your chart. Auto Chart Alert is a great tool when you have to watch out importnat support and resistance levels for your trading. You can receive the sound alert, email and push notification when the price hit the alert line at you desired location. Au
    FREE
    功能 勾选需要显示的内容,(当前版本包括当前K线倒计时,市场信息)并显示到图表右下角。 显示格式参数 fontsize 字体大小 c 颜色 font  字体类型 自定义显示的内容 参数 Symbol candle time left SPREAD DIGITS STOPLEVEL LOTSIZE LOTSIZE TICKSIZE SWAPLONG SWAPSHORT STARTING EXPIRATION TRADEALLOWED MINLOT LOTSTEP MAXLOT SWAPTYPE PROFITCALCMODE MARGINCALCMODE MARGININIT MARGINMAINTENANCE MARGINHEDGED MARGINREQUIRED FREEZELEVEL CLOSEBY_ALLOWED
    FREE
    AQ RiskOptimizer
    HIT HYPERTECH INNOVATIONS LTD
    5 (1)
    Risk Optimizer is the absolute solution for applying risk management on your account. Bad risk management is the main reason that causes traders to lose money. Risk Optimizer calculates and suggests the correct lot size for each position according to your personal, customized risk profile. You can give directly your preferred risk as percentage (%) for each position or you can trust our algorithms to calculate and optimize according to your risk category selection. But it is not only that! Selec
    FREE
    Simple setting Attach Magic SL TP Trailing to single fresh chart and to manage all orders please set SL TP 0 for other Expert advisor . This is Free, if you found this useful please give feedback and 5 STAR (if you need more function on this please feel free do DM) Chart Selection :- if select all chart then EA will manage all chart or if select single chart then EA will manage current chart only Choose Trailing Method :- you can select trailing method how you want to trail Choose SL & TP M
    FREE
    Os compradores deste produto também adquirem
    Local Trade Copier EA MT4
    Juvenille Emperor Limited
    4.96 (109)
    Experimente uma cópia de negociação excepcionalmente rápida com o Local Trade Copier EA MT4 . 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 MT4 oferece uma ampla gama de opções para personalizá-lo de acordo com suas necess
    Trade Assistant MT4
    Evgeniy Kravchenko
    4.42 (193)
    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 adicionais
    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
    TradePanel MT4
    Alfiya Fazylova
    4.85 (93)
    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
    Exp COPYLOT CLIENT for MT4
    Vladislav Andruschenko
    4.65 (66)
    Copiadora comercial para MetaTrader 4. Ele copia negociações, posições e pedidos em forex de qualquer conta. É uma das melhores copiadoras comerciais  MT4 - MT4, MT5 - MT4 para a versão COPYLOT MT4  (ou MT4 - MT5 MT5 - MT5 para a versão COPYLOT MT5 ). Versão MT5 Descrição completa +DEMO +PDF Como comprar Como instalar    Como obter arquivos de log    Como testar e otimizar    Todos os produtos da Expforex Versão da copiadora para o terminal MetaTrader 5 ( МТ5 - МТ5, МТ4 - МТ5 ) -  Copylot Cli
    Trade copier MT4
    Alfiya Fazylova
    4.58 (33)
    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 MT4> MT4, MT4> MT5, MT5> MT4, incluindo contas "MT5 netting". Os mod
    ManHedger MT4
    Peter Mueller
    5 (1)
    THIS EA IS A SEMI-AUTO EA, IT NEEDS USER INPUT. Manual & Test Version Please TEST this product before   BUYING  and watch my video about it. Contact me for user support or bug reports, or if you want the MT5 version! MT5 Version I do not guarantee any profits or financial success using this EA. With this Expert Advisor, you can: Implement your own   Zone Recovery   strategy to capitalize on trending markets. Create   Grid   trading strategies, to profit from ranging markets. Place orders easil
    Copy Cat More Trade Copier MT4 (Cópia Gato MT4) não é apenas um simples copiador local de operações; é uma estrutura completa de gestão de risco e execução, projetada para os desafios atuais do trading. Desde desafios de prop firms até a gestão de contas pessoais, adapta-se a cada situação com uma combinação de execução robusta, proteção de capital, configuração flexível e tratamento avançado das operações. O copiador funciona tanto no modo Master (emissor) quanto no modo Slave (receptor), sincr
    Oferta Especial para Traders – 40% de desconto Advanced Trade Manager – A solução completa para um trading manual mais rápido, inteligente e seguro. Transforme o seu trading manual com o NextGen Trade Manager AI – o painel profissional no gráfico que combina a execução instantânea, o planeamento visual das operações e a gestão robusta de riscos numa ferramenta intuitiva. Execute ordens, gerencie riscos e proteja os lucros mais rapidamente do que nunca, tudo sem sair do seu gráfico. Perfeito p
    VirtualTradePad mt4 Extra
    Vladislav Andruschenko
    4.86 (59)
    Painel de negociação para negociação em 1 clique.  Trabalhando com posições e pedidos!  Negociar a partir do gráfico ou do teclado. Usando nosso painel de negociação, você pode negociar com um clique no gráfico e realizar operações de negociação 30 vezes mais rápido do que o controle MetaTrader padrão. Cálculos automáticos de parâmetros e funções que tornam a vida mais fácil para um trader e ajudam-no a conduzir suas atividades de trading com muito mais rapidez e conveniência. Dicas gráficas e i
    MT4 Professional Copy Trading System (Edição MT4) Copiador LOCAL ultra rápido, nível industrial, para profissionais e gestão multi-conta. Arquitetura LOCAL industrial Funciona no mesmo ambiente Windows (mesmo PC / mesma VPS Windows). Baixa latência, alta estabilidade, 24/7. Master / Slave / Self + Cross Copy (MT4 ↔ MT5) Master/Slave/Self-Copier. MT4→MT4, MT4→MT5, MT5→MT4, MT5→MT5. Importante: MT4↔MT5 requer as duas versões (MT4 e MT5). O que faz Replica em tempo real abertura / alterações (
    The product will copy all telegram signal to MT4   ( 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
    The News Filter
    Leolouiski Gan
    5 (25)
    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
    Trade Dashboard MT4
    Fatemeh Ameri
    4.96 (53)
    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
    Seconds Chart - uma ferramenta exclusiva para criar gráficos de segundos no MetaTrader 4 . 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 quaisquer indicadores, Expert Advisors e scripts com a mesma facilidade dos gráficos padrão. Diferente das ferramentas padrão
    Exp4 Duplicator
    Vladislav Andruschenko
    4.5 (22)
    O Expert Advisor   repete   negociações e posições um número predefinido de vezes em sua conta   MetaTrader 4   . Ele copia todas as negociações abertas manualmente ou por outro Expert Advisor. Copia posições e aumenta o lote com base nas posições! Aumenta o lote de outros EAs. As seguintes funções são suportadas: lote personalizado para negociações copiadas, Stop Loss de cópia, Take Profit, uso de stop móvel. Versão MT5 Descrição completa +DEMO +PDF Como comprar Como instalar     Como obter
    MicroScalp Signal Finder Scanner de Sinais de Scalping Smart Money Multi-Símbolo e Multi-Timeframe para MetaTrader 5 O scalping exige timing preciso e análise multicamada em múltiplos instrumentos — uma tarefa quase impossível de realizar manualmente em tempo real. Rastrear estrutura de mercado, blocos de ordens, gaps de valor justo, varreduras de liquidez e confirmações de momentum simultaneamente em vários símbolos requer automação. O MicroScalp Signal Finder (MSF) escaneia até 20 símbolos sim
    Trend Line Optimizer
    Evgenii Aksenov
    4.11 (19)
    Este é um otimizador automático de parâmetros para o indicador Trend Line PRO Com facilidade e rapidez, você selecionará os parâmetros ideais para o seu indicador favorito Trend Line PRO.  A otimização leva apenas alguns segundos. O otimizador permite que você encontre os melhores parâmetros para cada par e período: Amplitude, TP1-TP3, StopLoss, bem como os valores Para Time Filter e HTF Filter na seção selecionada do histórico (Days)  Para otimizar diferentes períodos de tempo, você precisa d
    O MT4 para Telegram Signal Provider é uma ferramenta fácil de usar e totalmente personalizável que permite o envio de sinais para o Telegram, transformando sua conta em um provedor de sinais. O formato das mensagens é totalmente personalizável! No entanto, para uso simples, você também pode optar por um modelo predefinido e habilitar ou desabilitar partes específicas da mensagem. [ Demonstração ]   [ Manual ] [ Versão MT5 ] [ Versão Discord ] [ Canal do Telegram ]  New: [ Telegram To MT5 ] Conf
    Crystal Trade Manager PRO – Sistema Avançado de Gestão de Risco e Controle de Operações para MT4 Versão Gratuita: https://www.mql5.com/en/market/product/150632 Visão Geral Crystal Trade Manager PRO (CTM) é uma ferramenta profissional de execução de ordens e gestão de risco desenvolvida para MetaTrader 4. Foi projetada para traders que necessitam de disciplina, forte proteção de capital e automação inteligente dentro do MT4. O sistema controla o risco, protege o patrimônio da conta, aplica limite
    Eezeorder 2
    Tawanda Tinarwo
    5 (2)
    NEW VERSION!  NB: IF YOU ARE USING A VERY HIGH RESOLUTION MACHINE AND THE EA DISPLAY LOOKS TOO SMALL, CONTACT ME SO I CAN HELP YOU. Open Multiple Trades on MT4 in 1 click at one price. Enter the Lot size Specify the number of trades you want to open Choose whether you want TP SL or Trailing Stop Once you are done, click Buy or Sell Open Multiple Pending Orders on MT4 in 1 click at one price. Enter the Lot size Specify the gap from the current price, where you want to place the pending order Spe
    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
    Basket EA MT4
    Juvenille Emperor Limited
    5 (5)
    Basket EA MT4 é uma poderosa ferramenta de realização de lucros e um sistema abrangente de proteção de conta, tudo combinado em uma solução simples e fácil de usar. Seu objetivo principal é oferecer controle completo sobre o lucro e perda global da sua conta, gerenciando todas as posições abertas a nível de cesta, e não individualmente. O EA oferece uma gama completa de recursos a nível de cesta, incluindo take profit, stop loss, break even e trailing stop. Esses recursos podem ser configurados
    Automate your Trendsurfer trailing stop management - day and night With this Expert Advisor for Metatrader 4 you save time, avoid mistakes and trade more relaxed - specially developed for the Trendsurfer trading system. Always the right stop loss Fully automatic Simple to use Saves you time How it works 1. download the Expert Advisor and install it in Metatrader 4 (I will give you instructions on how to do this) 2. define your stop-loss rule 3. run your computer or VPS - the Expert Advisor
    The product will copy all  Discord  signal   to MT4   ( 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 MT4. 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
    Take a Break
    Eric Emmrich
    5 (31)
    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
    This EA is fully automated , it is built based on  the method of catching the pop-up Alert event and Open Market Orders (BUY/SELL) . Download trial version here:  https://www.mql5.com/en/blogs/post/751340 ***NOTE:   It is recommended to remove the available filter settings, only install the filter for your indicator. Parameters of the EA: -------- <EA Settings> -------- Magic Number:   The identifying (magic) number of the currently selected order. Allow Open trade:   Enable/ Disable Open Trade
    Se você está a contratar sinais em website mql5.com para ganhar retornos de investimento, o tamanho de lotes no seu software MT4 recebido do sinal será limitado para reduzir riscos. Porque o tamanho de lotes de ordem é pequeno, os retornos de investimento serão muito pequeno. Isso é uma ferramenta para aumentar o tamanho do lote de ordem com objectivo de aumentar o retorno dos investimento. Esta ferramenta irá copiar automaticamente as ordens baseado as ordens originais. As ordens copiados têm t
    Short Description: FTMO Protector PRO MT4 is an EA designed to protect your funded account by managing risk and ensuring compliance with the Prop Firm's trading rules. This EA automatically monitors equity levels, closes trades when profit targets or drawdown limits are reached, and provides a visual display of key account metrics. EA w orks with all different Prop Firm service providers. Overview: FTMO Protector PRO MT4 is an Drawdown Safeguard Expert Advisor meticulously crafted for traders
    Live Forex Signals é projetado para negociação em sinais do site   https://live-forex-signals.com/en   e   https://foresignal.com/en . Live Forex Signals for MetaTrader 5  https://www.mql5.com/ru/market/product/81448 Parâmetro Nome de usuário e senha se você tiver uma assinatura para sites live-forex-signals.com/foresignal.com. então você deve preencher esses parâmetros com suas credenciais; se não houver assinatura, deixe os campos em branco; Comment Comentário sobre transações abertas Risk r
    Mais do autor
    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
    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
    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