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.



    Prodotti consigliati
    Basic Theme Builder
    Mehran Sepah Mansoor
    5 (1)
    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 4 .   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 MT5
    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 è un indicatore che visualizza la spread line del simbolo nella sottofinestra dell'oscillatore. Nei parametri è possibile specificare un altro simbolo da cui verrà trasmessa la spread line. Se il parametro "Symbol" viene lasciato vuoto, la spread line verrà visualizzata dal simbolo corrente su cui è impostato l'indicatore. Questo strumento è ideale per i trader che desiderano vedere la dinamica dello spread nel formato dell'oscillatore e utilizzarlo per proteggersi dall'in
    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
    Auto Breakeven MT4
    Volodymyr Hrybachov
    A utility for automatically setting breakeven levels, transfers trades to breakeven   when passing a given distance   . Allows you to minimize risks. Created by a professional trader for traders.       Utility       works with any market orders opened manually by a trader or using advisors. Can filter trades by magic number. The utility can work with any number of orders simultaneously. MT5 version https://www.mql5.com/ru/market/product/57077 WHAT THE UTILITY CAN DO: install virtulnoe levels   b
    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  ***************************************
    VIEW THE CURRENCY STRENGTH AND PAIR STRENGTH FOR "X" BARS IN A GIVEN TIMEFRAME. The Currency Strength Multimeter indicator shows the strength, direction and rank of each of the following currencies: AUD CAD CHF EUR GBP JPY NZD USD Furthermore, it also shows the strength, direction and rank of each of the following currency pairs: AUDCAD AUDCHF AUDJPY AUDNZD AUDUSD CADCHF CADJPY CHFJPY EURAUD EURCAD EURCHF EURGBP EURJPY EURNZD EURUSD GBPAUD GBPCAD GBPCHF GBPJPY GBPNZD GBPUSD NZDCAD NZDCHF NZDJPY
    FREE
    IceFX DrawProfit
    Norbert Mereg
    4.92 (24)
    IceFX DrawProfit indicator can efficiently help those traders who want to see on the chart all closed positions output: profit or loss. If you set DrawProfit on your chart managed by an Expert Advisor (EA), you will clearly see its performance by its profits & losses. Main Features: Draws closed order lines Draws profit/loss of closed orders in currency Sums orders by candles MagicNumber filter for EAs Comment filter Input parameters: ShowProfitLabels : show profit of orders with a label Profi
    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
    EquityStop UAP
    Eliseo Palmieri
    Descrizione: EquityStop UAP è la soluzione progettata per ottimizzare la gestione delle tue operazioni forex in modo sicuro ed efficiente. Il nostro software offre un livello superiore di controllo e protezione per ogni trade. *Caratteristiche Principali:* 1.  **Protezione sull'Equity:** Preserva il tuo capitale con la nostra avanzata funzione di Equity Stop, che applica una barriera di sicurezza automatica per limitare le perdite. 2. **Trailing Stop Percentuale:** Massimizza i tuoi profit
    FREE
    Safety
    Sergey Ermolov
    5 (2)
    Penso che tutti conoscano una regola di gestione del denaro come "Sicuro". Per coloro che non lo sanno, safe comporta la chiusura di metà della posizione dopo che i profitti dell'operazione sono stati livellati alla dimensione del piede. Quindi, anche se il prezzo si gira e si blocca, non perderai più denaro, perché esattamente lo stesso margine di profitto è stato ottenuto quando una parte della posizione è stata chiusa in precedenza. Safety Advisor ha solo un'impostazione: il lotto di chiusu
    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
    Auto Chart Alert MT4
    Young Ho Seo
    5 (1)
    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
    Gli utenti di questo prodotto hanno anche acquistato
    Local Trade Copier EA MT4
    Juvenille Emperor Limited
    4.96 (109)
    Sperimenta una copia di trading eccezionalmente veloce con il Local Trade Copier EA MT4 . 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 MT4 offre una vasta gamma di opzioni per personalizzarlo alle tue esigenze specifiche.
    Trade Assistant MT4
    Evgeniy Kravchenko
    4.42 (193)
    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 characteris
    Forex Trade Manager MT4
    InvestSoft
    4.98 (433)
    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
    TradePanel MT4
    Alfiya Fazylova
    4.85 (93)
    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
    Exp COPYLOT CLIENT for MT4
    Vladislav Andruschenko
    4.65 (66)
    Copiatore commerciale per MetaTrader 4.       Copia le operazioni, le posizioni e gli ordini forex da qualsiasi conto. È uno dei migliori copiatori commerciali       MT4 - MT4, MT5 - MT4       per il       COPYLOT MT4       versione (o       MT4 - MT5 MT5 - MT5       per il       COPYLOT MT5       versione). Versione MT5 Descrizione completa   +DEMO +PDF Come comprare Come installare     Come ottenere i file di registro     Come testare e ottimizzare     Tutti i prodotti di Expforex Versione
    Trade copier MT4
    Alfiya Fazylova
    4.58 (33)
    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. Prima di acquistare, puoi testare la versione demo su un account demo. Versione demo qui . Istruzioni complete qui . Funzionalità e vantaggi principali: Supporta la copia degli ordini: MT4> MT4, MT4> MT5, MT5> MT4, inclusi i conti di compensaz
    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 (Copia Gatto MT4) non è solo un semplice copiatore locale di operazioni; è un quadro completo di gestione del rischio ed esecuzione, progettato per le sfide del trading moderno. Dai challenge delle prop firm alla gestione dei conti personali, si adatta a ogni situazione grazie a una combinazione di esecuzione robusta, protezione del capitale, configurazione flessibile e gestione avanzata delle operazioni. Il copiatore funziona sia in modalità Master (mittente) che
    Speciale Trading – SCONTO DEL 40% Advanced Trade Manager – La soluzione completa definitiva per un trading manuale più veloce, intelligente e sicuro. Trasforma il tuo trading manuale con NextGen Trade Manager AI, il pannello professionale su grafico che combina esecuzione istantanea, pianificazione visiva delle operazioni e una potente gestione del rischio in un unico strumento intuitivo. Esegui ordini, gestisci il rischio e proteggi i profitti più velocemente che mai, il tutto senza uscire d
    VirtualTradePad mt4 Extra
    Vladislav Andruschenko
    4.86 (59)
    Pannello di trading per il trading in 1 clic.   Lavorare con posizioni e ordini!   Trading dal grafico o dalla tastiera. Utilizzando il nostro pannello di trading, puoi fare trading con un clic dal grafico ed eseguire operazioni di trading 30 volte più velocemente rispetto al controllo MetaTrader standard. Calcoli automatici di parametri e funzioni che semplificano la vita di un trader e lo aiutano a condurre le proprie attività di trading in modo molto più rapido e conveniente. Suggerimenti gra
    MT4 Professional Copy Trading System (Edizione MT4) Copiador di trading LOCAL ultra veloce e di livello industriale, progettato per trader professionisti, fornitori di segnali e gestione multi-account. Architettura LOCAL industriale Funziona nello stesso ambiente Windows (stesso PC / stessa Windows VPS), con bassa latenza, alta stabilità e operatività 24/7. Master / Slave / Self + Cross Copy (MT4 ↔ MT5) Supporta modalità Master, Slave e Self-Copier. MT4→MT4, MT4→MT5, MT5→MT4, MT5→MT5. Import
    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)
    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
    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 - uno strumento unico per creare grafici in secondi su MetaTrader 4 . 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, expert advisor e script. È facile utilizzarli proprio come nei grafici standard. A differenza degli strumenti s
    Exp4 Duplicator
    Vladislav Andruschenko
    4.5 (22)
    L'Expert Advisor   ripete   operazioni e posizioni un numero prestabilito di volte sul tuo conto   MetaTrader 4   . Copia tutte le operazioni aperte manualmente o da un altro Expert Advisor. Copia le posizioni e aumenta il lotto dalle posizioni! Aumenta il numero di altri EA. Sono supportate le seguenti funzioni: lotto personalizzato per operazioni copiate, copia di Stop Loss, Take Profit, utilizzo di trailing stop. Versione MT5 Descrizione completa +DEMO +PDF Come comprare Come installare  
    MicroScalp Signal Finder Scanner di Segnali di Scalping Smart Money Multi-Simbolo e Multi-Timeframe per MetaTrader 5 Lo scalping richiede un timing preciso e un'analisi multilivello su diversi strumenti — un compito quasi impossibile da svolgere manualmente in tempo reale. Monitorare simultaneamente struttura di mercato, order block, fair value gap, sweep di liquidità e conferme di momentum su più simboli richiede automazione. MicroScalp Signal Finder (MSF) scansiona fino a 20 simboli contempora
    Trend Line Optimizer
    Evgenii Aksenov
    4.11 (19)
    Questo è un ottimizzatore automatico dei parametri per l'indicatore Trend Line PRO Facilmente e rapidamente si selezionerà i parametri ottimali per il vostro indicatore preferito Trend Line PRO.  L'ottimizzazione richiede solo pochi secondi. L'ottimizzatore consente di trovare i migliori parametri per ogni coppia e periodo: Ampiezza, TP1-TP3, StopLoss, nonché i valori per Filtro tempo e filtro HTF nella sezione cronologia selezionata (Giorni)  Per ottimizzare tempi diversi, è necessario un div
    Il MT4 to Telegram Signal Provider è uno strumento facile da usare e completamente personalizzabile che consente l'invio di segnali a Telegram, trasformando il tuo account in un fornitore di segnali. Il formato dei messaggi è completamente personalizzabile! Tuttavia, per un uso semplice, puoi anche optare per un modello predefinito e abilitare o disabilitare parti specifiche del messaggio. [ Dimostrativo ]  [ Manuale ] [ Versione MT5 ] [ Versione Discord ] [ Canale Telegram ]  New: [ Telegram To
    Crystal Trade Manager PRO – Sistema Avanzato di Gestione del Rischio e Controllo delle Operazioni per MT4 Versione Gratuita: https://www.mql5.com/en/market/product/150632 Panoramica Crystal Trade Manager PRO (CTM) è uno strumento professionale progettato per la gestione del rischio, il controllo delle operazioni e l’automazione avanzata su MetaTrader 4. È ideato per i trader che richiedono un'esecuzione disciplinata, una forte protezione del capitale e un sistema di controllo affidabile. Il sist
    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: Il tuo esperto di protezione del conto completo per un trading senza preoccupazioni Se stai cercando funzionalità come protezione del conto, protezione del capitale proprio, protezione del portafoglio, protezione multi-strategia, protezione dei profitti, raccolta dei profitti, sicurezza del trading, programmi di controllo del rischio, controllo automatico del rischio, liquidazione automatica, liquidazione condizionale, liquidazione programmata, liquidazione dinamica, trailin
    Basket EA MT4
    Juvenille Emperor Limited
    5 (5)
    Basket EA MT4 è un potente strumento per la presa di profitto e un sistema completo di protezione del conto, tutto in una soluzione semplice e intuitiva. Il suo scopo principale è quello di offrire un controllo totale sul profitto e la perdita complessiva del conto, gestendo tutte le posizioni aperte a livello di "cestino" (basket) e non singolarmente. L’EA offre una serie completa di funzionalità a livello di basket, come take profit, stop loss, break even e trailing stop. Questi possono essere
    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
    Alert Msg to Market Order
    Nguyen Quoc Hung
    5 (4)
    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
    If you are hiring the signal at website mql5.com to earn investment profits, the lot size on your MT4 software received from the signal will be limited to reduce risk. Because the lot size is too small, investment profits will be very small. This is a tool to increase the lot size of the order. This tool will automatically copy the order from the original order. The copied order will have the lot multiplier according to the parameters you declare. All the process of opening and closing the order
    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 è progettato per il trading sui segnali del sito   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 Parametri Username e Password se si dispone di un abbonamento ai siti live-forex-signals.com/foresignal.com. quindi dovresti compilare questi parametri con le tue credenziali; se non c'è abbonamento, lascia i campi vuoti; Comment Commento sulle offerte sbloccabili Risk rischio
    Altri dall’autore
    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:
    Nessuna recensione
    Rispondi alla recensione