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.



    Рекомендуем также
    LineOrder Pilot is a manual trading panel for MetaTrader 4. It is designed for discretionary traders who want to prepare trades directly on the chart, adjust Stop Loss and Take Profit visually, and send market or pending orders from one compact panel. The Expert Advisor does not contain an automatic trading strategy. It executes only the trading commands selected by the user. Main features: - Compact movable trading panel - Draggable ENTRY, Stop Loss and Take Profit lines - Market tracking
    Basic Theme Builder
    Mehran Sepah Mansoor
    5 (1)
    Basic Theme Builder: Упростите Настройку Ваших Графиков Измените ваш торговый опыт с помощью индикатора   Basic Theme Builder , универсального инструмента, предназначенного для упрощения настройки внешнего вида графиков в MetaTrader 4. Этот интуитивно понятный индикатор предлагает удобную панель, которая позволяет легко переключаться между различными темами и цветовыми схемами, улучшая как визуальную привлекательность, так и функциональность вашей торговой среды.   Free MT5 version Индикатор  
    FREE
    News Scalping Executor Pro - это утилита, которая помогает торговать высоко значимые новости с огромной волатильностью. Эта утилита помогает создавать две противоположные позиции с управлением рисками и защитой прибыли. Утилита автоматически перемещает стоп приказ (далее SL), таким образом, чтобы избежать потерь в максимально возможной степени, используя для этого много различных алгоритмов. Утилита также помогает избежать торговли новостями, если спред внезапно становится очень большим. Он мож
    SpreadChartOscillator   — это индикатор, который отображает линию спреда   символа в подокне осциллятора. В параметрах есть в озможность указать другой символ, с которого будет транслироваться линия спреда . Если параметр "Symbol" оставить пустым, линия спреда   будет отображаться от текущего символа, на котором установлен индикатор. Этот инструмент идеально подходит для трейдеров, которые хотят видеть динамику спреда в формате осциллятора и использовать это для защиты от входа в рынок при больш
    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
    Помощник по торговле с Equity Security (TAwES) Этот советник для помощи в ручной торговле (советник будет активирован при открытии ручной торговли - полуавтоматический режим) - Этот советник будет запускаться при ручной торговле/первой ОТКРЫТОЙ СДЕЛКЕ - Если некоторые ручные сделки были открыты и советник активирован, то все ручные сделки будут переданы советнику отдельно. - Эта функция советника может быть мартингейлом с множителем, максимальным ордером и регулируемым расстоянием - Этот советни
    FREE
    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
    Полнофункциональная ознакомительная версия для работы на "CADCHF". Полная версия - Risk Controller Если есть активные сделки на счёте и будет запущен робот, то все они кроме CADCHF будут закрыты! Утилита для автоматического контроля сделок и убытков, связанных с переторговками или любыми другими эмоциональными действиями. Основные преимущества Ограничение суммарных потерь счета. При достижении MinimalDepo любая сделка будет закрываться. Ограничение убытков на день. Ограничение потерь в каждой
    FREE
    Overview The Sextet is an MT4 trend-alignment indicator based on a sequence of six moving-average levels. Each level is calculated from the previous one, creating a layered view of trend structure. The indicator marks conditions where the moving-average levels align in order, which can help traders observe trend direction and trend organization more clearly. Key Features Displays six moving-average levels. Uses a layered moving-average sequence. Helps visualize trend alignment and directional st
    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)
    Бесплатная версия советника  BBarsio, которая предназначена только для пары AUDCAD. Работает с фиксированным минимальным лотом! Советник работает по стратегии взвешенного скальпирования. Валютная пара: AUDCAD. Таймфрэйм: М5-М15. Стратегия работы советника: советник находит возможные точки разворота/продолжения тренда; с помощью фильтров отсеивает часть ложных сигналов; вход в сделку только одним ордером!!! выход из сделки по тейк профиту или по сигналу возможного разворота; Настройки по мол
    FREE
    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
    Aurum Trend Scout — Бесплатная LITE-версия Aurum Trend Engine Aurum Trend Scout — бесплатная версия советника Aurum Trend Engine. Торгует золотом (XAUUSD) на H1 по трендовой стратегии на основе Parabolic SAR + Bollinger Band Width Ratio, с входами BUYSTOP на пробое дневного максимума. Эта LITE-версия включает полную логику стратегии со стоп-лоссом на основе ATR. Использует фиксированный лот и не включает динамическое управление капиталом из FULL-версии. Подтверждённая производительность (реальны
    FREE
    Raven
    Dmitriy Prigodich
    5 (1)
    "Raven"   - это эксперт скальпер, не использует опасные стратегии в своей работе. Торгует на экстремумах отката, по тренду. Канальный скальпинг - это уверенность, надежность и минимальные риски. В советнике реализованы все виды стопов от процента баланса до сигнального стопа, так что вы всегда сможете контролировать свой баланс и не волноваться. Рекомендуется использовать сигнальный стоп - это оптимизирует убытки и увеличит прибыль.  По умолчанию настройки советника для инструмента EURUSD со ср
    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  ***************************************
    Индикатор Currency Strength Multimeter показывает силу, направление и ранг каждой из следующих валют: AUD CAD CHF EUR GBP JPY NZD USD Кроме того, он также показывает силу, направление и ранг каждой из следующих валютных пар: 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 Индикатор работает на любом графике и на любом таймфрейме. Данные о силе, напра
    FREE
    IceFX DrawProfit
    Norbert Mereg
    4.92 (24)
    Индикатор IceFX DrawProfit способен эффективно помочь тем трейдерам, которые хотят видеть на графике результат по всем закрытым позициям: прибыль или убыток. Установив DrawProfit на график с работающим советником, вы сможете однозначно оценить его работу по прибылям и убыткам. Основные характеристики: Рисует линии закрытых ордеров Рисует прибыль/убыток по закрытым ордерам в определенной валюте Суммирует ордера по свечам Фильтр по магическому номеру для советников Фильтр по комментарию Входные
    FREE
    Это бесплатная демо-версия, предназначенная только для USDJPY. Полная версия доступна по ссылке: https://www.mql5.com/ru/market/product/25912 В данном продукте нет входных параметров. Утилита помогает быстро открывать и закрывать ордера, включая рыночные и отложенные ордера. Утилита ускоряет и упрощает открытие ордеров. Чтобы открыть ордер, просто нажмите на кнопку. Список кнопок BUY/SELL: открыть рыночный ордер Buy или Sell. BUY STOP/BUY LIMIT/SELL STOP/SELL LIMIT: установить отложенный ордер.
    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
    Unified Local Copier (ULC) — локальный копировщик сделок Unified Local Copier — советник для локального копирования сделок в MetaTrader 4 и MetaTrader 5. Не требует внешних DLL и обеспечивает быструю и надёжную синхронизацию ордеров между терминалами Master и Slave на одном компьютере. Поддерживаются кросс-платформенные связки MT4 и MT5. Текущая версия: v1.30 (MT5 / MT4) 1. Принцип работы и объём копирования Система построена по схеме Master-Slave (ведущий — ведомый). В одном канале (Chann
    FREE
    Safety
    Sergey Ermolov
    5 (2)
    Думаю, всем известно такое правило управление капиталом, как «Сейф». Для тех, кто не в курсе, сейф предполагает закрытие половины позиции после того, как прибыль по сделке сровнялась с размером стопа. Таким образом, даже если цена разворачивается и цепляет стоп, Вы уже не потеряете деньги, т.к. точно такой же размер прибыли был получен при закрытии части позиции ранее. Советник Safety имеет всего одну настройку – лот закрытия. Оставив ее в положении 0, советник будет закрывать ровно половину сде
    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
    Советник риск-менеджер с огромным арсеналом возможностей защиты вашего депозита. Для инвесторов, которые решили передать капитал в доверительное управление. Когда у трейдера нет доступа к настройкам - нивелирует торговые риски. А также для трейдеров, которые осознали необходимость стороннего контроля за их торговлей для улучшения торговых результатов.  Для максимальных результатов - должен стоять на отдельном 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
    С этим продуктом покупают
    Local Trade Copier EA MT4
    Juvenille Emperor Limited
    4.96 (110)
    Опыт экстремально быстрого копирования сделок с помощью Local Trade Copier EA MT4 . Благодаря простой установке в течение 1 минуты этот копировщик сделок позволяет вам копировать сделки между несколькими терминалами MetaTrader на одном компьютере с Windows или на Windows VPS с крайне быстрыми скоростями копирования менее 0.5 секунды. Независимо от того, новичок вы или профессиональный трейдер, Local Trade Copier EA MT4 предлагает широкий спектр опций, чтобы настроить его под ваши конкретные пот
    Добро пожаловать в Trade Manager EA — лучший инструмент для управления рисками, предназначенный для упрощения, точности и эффективности торговли. Это не просто инструмент для размещения ордеров; это комплексное решение для удобного планирования торгов, управления позициями и усиленного контроля над рисками. Независимо от того, начинающий вы трейдер, опытный специалист или скальпер, нуждающийся в быстром исполнении, Trade Manager EA адаптируется к вашим потребностям и работает с любыми активами:
    Exp COPYLOT CLIENT for MT4
    Vladislav Andruschenko
    4.69 (65)
    Профессиональный копировщик сделок для MetaTrader 4 Быстрый, профессиональный и надежный копировщик сделок для MetaTrader 4 . COPYLOT позволяет копировать сделки Forex между терминалами MetaTrader 4 и MetaTrader 5 , обеспечивая гибкую синхронизацию для разных типов счетов и сценариев торговли. Версия COPYLOT MT4 поддерживает: MetaTrader 4 → MetaTrader 4 MetaTrader 5 Hedge → MetaTrader 4 MetaTrader 5 Netting → MetaTrader 4   Версия MT5 Полное описание + DEMO + PDF Как купить Как установить Как по
    Trade Assistant MT4
    Evgeniy Kravchenko
    4.43 (197)
    Помогает рассчитать риск на сделку, простая установка нового ордера с помощью линий, управление ордерами с функциями частичного закрытия, 7 типов трейлинг-стопа и другие полезные функции. Дополнительные материалы и инструкции Инструкция по установке   -   Инструкция к приложению   -   Пробная версия приложения для демо счета Функция Линии   - отображает на графике линию открытия, стоп-лосс, тейк-профит. С помощью этой функции легко установить новый ордер и увидеть его дополнительные характери
    Профессиональная панель для ручной торговли: весь цикл сделки в одном окне на графике, от точного входа до защиты счёта. Рассчитывайте объём строго под заданный риск, стройте сделку линиями прямо на графике с помощью RR Tool, открывайте рыночные и отложенные ордера, сетки и OCO. Сопровождение позиции панель берёт на себя: частичное закрытие до пяти уровней, шесть типов трейлинг-стопа, безубыток и Virtual SL/TP. Дневные, недельные и месячные лимиты защищают депозит и срабатывают автоматически при
    News Filter EA: Advanced Algo Trading Assistant News Filter EA is an advanced algo trading assistant designed to enhance your trading experience. By using the   News Filter EA , you can integrate a Forex economic news filter into your existing expert advisor, even if you do not have access to its source code. In addition to the news filter, you can also specify   trading days   and   hours   for your expert. The News Filter EA also includes   risk management   and   equity protection   features
    Автоматическая фиксация прибыли по достижении целевого профита EquityTargetCloser   — это утилитарный советник для MetaTrader 5, который автоматически закрывает все рыночные позиции и удаляет отложенные ордера, как только   эквити (Equity) превысит текущий баланс на заданную сумму прибыли . После закрытия всех позиций цель автоматически повышается: новый порог = новый баланс + заданная прибыль. Советник не открывает сделки, а только управляет существующими позициями, помогая надёжно фиксировать
    DrawDown Limiter MT4
    Haidar Lionel Haj Ali
    5 (8)
    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
    King Trade Copier MT4
    Mohammed Maher Al-sayed Mohammed Ahmed Saleh
    King Trade Copier MT4 – Lightning-Fast Local Trade Copier (Master + Slave in ONE file) King Trade Copier is a professional local trade copier that mirrors every trading action from one Master account to unlimited Slave accounts on the same PC or VPS — with an internal copy latency of just a few milliseconds. It was built by a real trader for daily real-money use, with one goal: whatever happens on the Master must happen on the Slave, instantly and without exceptions. Watch the demo video to s
    SmartFastTrade AI
    Muhammad Faisal Sagala
    Transform Your Trading with SmartFastTrade AI: Speed and Ease at Your Fingertips! Introduction Are you a trader struggling with slow order execution? Do you want a tool that can assist you in making quick and accurate trading decisions? If yes, then SmartFastTrade AI is the answer to all your trading needs. With its unique combination of speed, user-friendliness, and advanced features, SmartFastTrade AI will help you unlock your full trading potential. Let's delve deeper into why this innovativ
    Скачать рабочую пробную версию Copy Cat More (Копи Кэт Мор) — копировщик сделок (Trade Copier) MT4 — это не просто локальный копировщик сделок; это полноценная система управления рисками и исполнения (risk management and execution framework), созданная для современных торговых задач. От челленджей проп-фирм (prop firm) до управления личным портфелем — он адаптируется к любой ситуации благодаря сочетанию надёжного исполнения, защиты капитала, гибкой настройки и продвинутой обработки сделок. Ко
    Telegram to MT4 Multi-Channel Copier автоматически копирует торговые сигналы из ваших Telegram-каналов напрямую в MetaTrader 4. Никаких ботов, никаких браузерных расширений, никакого ручного копирования. Вы получаете сигнал в Telegram, и советник открывает сделку на вашем терминале за несколько секунд. Продукт включает два компонента: приложение для Windows, которое слушает ваши Telegram-каналы, и этот советник, который исполняет сигналы на терминале MT4. Также доступна версия для MT5. Руководст
    TradePanel MT4
    Alfiya Fazylova
    4.84 (95)
    Trade Panel — это многофункциональный торговый помощник. Приложение содержит более 50 торговых функций для ручной торговли и позволяет автоматизировать большинство торговых операций. Перед покупкой вы можете протестировать демоверсию на демо-счете. Скачать пробную версию приложения для демонстрационного аккаунта: https://www.mql5.com/ru/blogs/post/750864 . Полная инструкция здесь . Торговля. Позволяет совершать торговые операции в один клик: Открыть отложенные ордера и позиции с автоматическим р
    Master Close via Telegram can help you perform some management tasks on MT4/MT5 remotely via your Telegram by one click, easy to set up & use. Demo here (see more Master Notify   Master Control  ) ************************************************************************************ LIST OF COMMANDS: info_acc -  Get account info info_pen -   Get pending orders details info_pos -   Get positions details info_pos_sum -   Get positions summary close_pen -   Delete all pending orders close_pos_all -
    Strategy Builder offers an incredible amount of functionality. It combines a trade panel with configurable automation (covert indicators into an EA), real-time statistics (profit & draw down) plus automatic optimization of SL, TP/exit, trading hours, indicator inputs. Multiple indicators can be combined into an single alert/trade signal and can include custom indicators, even if just have ex4 file or purchased from Market. The system is easily configured via a CONFIG button and associated pop-up
    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
    MT4 к Telegram Signal Provider - это простой в использовании и полностью настраиваемый инструмент, который позволяет отправлять сигналы в Telegram, превращая ваш аккаунт в поставщика сигналов. Формат сообщений полностью настраиваем! Однако для простого использования вы также можете выбрать предопределенный шаблон и включать или отключать определенные части сообщения. [ Демо ]  [ Руководство ] [ Версия для MT5 ] [ Версия для Discord ] [ Телеграм-канал ]  New: [ Telegram To MT5 ] Настройка Шаг за
    Exp Averager
    Vladislav Andruschenko
    4.82 (22)
    Усреднитель для MetaTrader 4 — профессиональная система сопровождения сделок и управления средней ценой Профессиональный советник для тех, кто хочет не просто усреднять позиции, а грамотно управлять серией сделок, просадкой и общей точкой выхода. Этот инструмент помогает сопровождать уже открытые позиции, улучшать среднюю цену входа и выстраивать понятную логику выхода всей серии в безубыток или прибыль. Усреднитель для MT4 создан не как автономная торговая система, а как специализированный мод
    PZ Trade Pad Pro MT4
    PZ TRADING SLU
    3.67 (3)
    Это визуальная торговая панель, которая помогает вам легко размещать сделки и управлять ими, избегая человеческих ошибок и повышая вашу торговую активность. Он сочетает в себе простой в использовании визуальный интерфейс с надежным подходом к управлению рисками и положением [ Руководство по установке | Руководство по обновлению | Устранение неполадок | FAQ | Все продукты ] Удивительно простой в использовании Торгуйте легко с графика Торгуйте с точным управлением рисками, без проблем Сохранение
    TradeMirror - это советник-копировщик для платформы MT4/MT5. Руководство по использованию Нажмите на ссылку Руководство по Trademirror , чтобы посмотреть больше инструкций. Почему TradeMirror Мы понимаем важность безопасности, стабильности и конфиденциальности для финансового программного обеспечения, поэтому мы приложили максимум усилий для детального укрепления этих трех элементов: Предоставляет удобный графический интерфейс, которым легко управлять Фокус на конфиденциальности и безопасности,
    FORBEX Market Watch Trading Hours PRO NEWS  Feel free to contact me for support, installation assistance, and upgrade. Professional Market Session, Trading Schedule & Economic News Dashboard for MetaTrader 4 FORBEX Market Watch Trading Hours PRO NEWS is an advanced all-in-one MT4 dashboard designed to provide traders with real-time market session monitoring, broker trading schedules, live countdowns, intelligent voice alerts, and economic news awareness from one clean professional interface. The
    Dear valued clients, Have a good day! This application will support you to manage the risk of your account according to your settings such as automated set the stop loss, take profit, automated close the position of total loss or profit greater than the preset input. You also can set your target equity, it will close all positions when it meet the desired target. The followings are the input parameters: Equity Target To Close and Delete All Orders ($) Equity Limit To Protect (Close All) Appl
    CloseIfProfitorLoss with Trailing
    Vladislav Andruschenko
    4.87 (31)
    Close If Profit or Loss with Trailing для MetaTrader 4 — автоматическое закрытие по общей прибыли или убытку Надёжная торговая утилита для MetaTrader 4, которая автоматически закрывает позиции, когда общая прибыль или общий убыток достигает заданного уровня. Советник контролирует открытые сделки, считает плавающий результат, может использовать трейлинг прибыли и помогает закрывать позиции быстрее, чем ручная реакция трейдера. MetaTrader 4 до сих пор активно используют ручные трейдеры, скальперы
    Kalifx Trade Manager is a smart on-chart trading and risk-management panel for MetaTrader 4. It replaces manual order tickets and spreadsheet risk math with a compact, draggable panel that lets you place, size, and manage trades directly from the chart — including automatic breakeven, trailing stops, and a 3-level partial close (multi-TP) system with draggable on-chart lines. Built for discretionary traders who want the speed of a one-click panel with the discipline of automated risk rules runn
    Trade Manager Ultimate (MT4/MT5) — Профессиональное управление рисками и трейлингом Добро пожаловать в   Trade Manager Ultimate   — универсальное решение для управления рисками и трейлинг-менеджмента, созданное для того, чтобы сделать ручную торговлю интуитивной, точной и максимально контролируемой. Это не просто панель управления — это полноценный механизм для эффективного сопровождения позиций и продвинутой защиты капитала. Независимо от того, являетесь ли вы профессиональным скальпером или до
    Trade copier MT4
    Alfiya Fazylova
    4.56 (32)
    Trade Copier — это профессиональная утилита, предназначенная для копирования и синхронизации сделок между торговыми счетами. Копирование происходит от счета/терминала поставщика к счету/терминалу получателя, которые установлены на одном компьютере или vps. АКЦИЯ - Если вы уже приобрели "Trade copier MT5", вы можете получить "Trade copier MT4" бесплатно (для копирования MT4 > MT5 и MT4 < MT5). Для получения более подробной информации об условиях, пожалуйста, свяжитесь с нами через личные сообщени
    Trade Copier Global: The name speaks for itself. This copier allows you to copy orders between MT4 terminals even if they are not installed on the same computer. Features Copying trades between MT4 terminals around the world with a short delay. Automatically recognizes symbol prefixes. Can connect many Slaves to the same Master. Supports pending and market orders. Supports partial order close (with limitations, see below) Can send messages and notifications to the Slaves from the Master Several
    Копир->Удобное и быстрое взаимодействие с интерфейсом, пользователи могут использовать его сразу       ->>>> Рекомендуется использовать на компьютерах Windows или VPS Windows Функции: Разнообразные и персонализированные настройки копирования сделок: 1. Различные режимы лота могут быть установлены для различных источников сигналов. 2. Различные источники сигналов могут быть установлены для прямого и обратного копирования сделок. 3. Сигналы могут быть установлены с комментариями. 4. Следует ли ка
    Простая в управлении Торговая панель обеспечит безопасную торговлю. Вычислит объём сделки от заданного уровня Stop Loss и величины убытка. Поможет рассчитать сейф, и в ноль закрыть неверную сделку. Интуитивно понятный интерфейс делает панель удобной в управлении, освобождая внимание трейдера для принятия решения о входе в сделку. Программа сделает все расчёты за вас. Поэтому работа с помощью панели Снайпер - оптимальное решение для торговли с соблюдением Мани-менеджмента. А это главный ключ к по
    Grid Manual MT4
    Alfiya Fazylova
    4.71 (17)
    Grid Manual — это торговая панель для работы с сеточными стратегиями. Утилита универсальная, имеет гибкие настройки и понятный интерфейс. Работает с сеткой ордеров не только в сторону усреднения убытков, но и в сторону наращивания прибыли. Трейдеру не нужно создавать и сопровождать сетку ордеров, это сделает утилита. Достаточно открыть ордер и Grid manual автоматически создаст ему сетку ордеров и будет сопровождать его до самого закрытия. Полная инструкция и демо-версия здесь . Основные особенно
    Другие продукты этого автора
    SuperScalp Pro Trader EA Automated trading EA for the indicator — dual-source Fibonacci TP, per-ticket management, and advanced trailing stop. Quick start: Apply the indicator to your chart first, then attach this EA.  How to use Open your chart and select your preferred symbol and timeframe. Insert the indicator onto the chart. Attach SuperScalp Pro Trader EA to the same chart. Leave IndicatorName blank — the EA automatically detects the chart indicator instance (Mode B). To load the indicat
    Product Name AllAverages Cross EA – 36 Moving Average Crossover Strategy Short Description (one-liner) Universal MA crossover EA with 36 built-in moving average types, multi-timeframe support, ATR-based risk management, multi-level TP partial close, and trailing stop — no external indicators required. Full Description Overview AllAverages Cross EA is a fully self-contained dual moving average crossover Expert Advisor that internalizes 36 different moving average algorithms. Unlike typical MA cro
    FREE
    All Averages Cross Signal – 36 MA Types with Built-in Trade Simulator Description: All Averages Cross Signal is a powerful dual moving average crossover indicator featuring 36 different MA calculation methods and a built-in trade simulation engine. Identify golden cross and dead cross signals with any combination of moving averages, then instantly evaluate strategy performance — all without leaving the chart. 36 Moving Average Types in One Indicator Choose from 36 MA methods for both Fast and Sl
    FREE
    1. Overview — TrendFusion Pro TrendFusion Pro is a free, open-source MetaTrader 5 indicator that generates buy and sell signals only when all seven independent filters simultaneously agree. By requiring SuperTrend direction change, Triple EMA alignment, EMA proximity, RSI momentum direction, MACD divergence, wick ratio, and over-extension filters to pass at once, it delivers high-precision confluence signals with minimal false positives — suitable for both trend-following and scalping strategie
    FREE
    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
    Bullish Consecutive Signal — Consecutive Bullish Candle Buy Signal with Alerts & P&L Simulation Bullish Consecutive Signal automatically detects consecutive bullish candle patterns and marks high-probability buy entries directly on the chart. Each signal comes with an ATR-calculated Stop Loss and Take Profit level, drawn as reference lines so you can assess risk at a glance. A built-in P&L back-simulation lets you evaluate strategy performance without leaving the chart.   IMPORTANT — DEFAULT
    FREE
    Indicator Trader EA v1.0 for MetaTrader 5 Universal EA that bridges any custom indicator's signals to automated trading XAUUSD · Major Forex Pairs · Crypto | All Timeframes M1 ~ D1 Overview Indicator Trader EA is a universal Expert Advisor that automatically executes buy and sell orders based on signal buffers from any custom indicator. With a single EA, you can connect any commercial indicator (SuperScalp Pro, Trend 7Filter Pro, etc.) directly — no extra coding required. Simply configur
    FREE
    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
    FREE
    A complete copy trading EA suite that automatically replicates trades across MT4 and MT5 platforms. Supports all four combinations — MT4→MT4, MT4→MT5, MT5→MT4, and MT5→MT5 — in a single package. Uses the FILE_COMMON shared folder method for fast, reliable signal delivery within the same PC or VPS. Overview CopyTrading EA Suite is a utility package that automatically replicates trades between MetaTrader 4 and MetaTrader 5 platforms. A single Sender EA can broadcast signals to multiple Receive
    FREE
    Фильтр:
    Нет отзывов
    Ответ на отзыв