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.



    Önerilen ürünler
    Basic Theme Builder
    Mehran Sepah Mansoor
    5 (1)
    Basic Theme Builder: Grafik Özelleştirmeyi Kolaylaştırın Ticaret deneyiminizi   Basic Theme Builder   göstergesi ile dönüştürün; MetaTrader 4'te grafik görünümünüzü basit bir panel aracılığıyla kişiselleştirmenizi sağlayan çok yönlü bir araçtır. Bu sezgisel gösterge, çeşitli temalar ve renk şemaları arasında zahmetsizce geçiş yapmanıza olanak tanır ve ticaret ortamınızın görsel çekiciliğini ve işlevselliğini artırır.    Free MT5 version Basic Theme Builder   göstergesi, MetaTrader 4 grafiklerin
    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, osilatörün alt penceresinde sembolün yayılma çizgisini görüntüleyen bir göstergedir. Parametrelerde, yayılma çizgisinin yayınlanacağı başka bir sembol belirtmek mümkündür. "Sembol" parametresi boş bırakılırsa, yayılma çizgisi, göstergenin ayarlandığı mevcut sembolden görüntülenecektir. Bu araç, spread dinamiklerini osilatör formatında görmek ve spread büyük olduğunda kendilerini piyasaya girmekten korumak için kullanmak isteyen tüccarlar için idealdir.
    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
    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 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
    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)
    Sanırım herkes böyle bir para yönetimi kuralını «Kasa» olarak biliyor. Bilmeyenler için kasa, işlemdeki kazançlar ayak büyüklüğüyle eşitlendikten sonra pozisyonun yarısını kapatmayı varsayar. Böylece, fiyat açılıp dursa bile, artık para kaybetmeyeceksiniz, çünkü pozisyonun bir kısmı daha önce kapandığında tam olarak aynı miktarda kar elde edildi. Güvenlik Danışmanının yalnızca bir ayarı vardır – kapanış lotu. Onu 0 konumunda bırakarak, danışman anlaşmanın tam yarısını kapatacaktır. Danışmanın
    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
    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
    Bu ürünün alıcıları ayrıca şunları da satın alıyor
    Local Trade Copier EA MT4
    Juvenille Emperor Limited
    4.96 (109)
    Local Trade Copier EA MT4 ile olağanüstü hızlı işlem kopyalama deneyimi yaşayın. Kolay 1 dakikalık kurulumuyla bu işlem kopyalayıcısı, aynı Windows bilgisayarda veya Windows VPS'te birden fazla MetaTrader terminali arasında işlemleri kopyalamanıza olanak tanır ve 0.5 saniyenin altındaki şimşek hızında kopyalama hızları sunar. Başlangıç seviyesinde veya profesyonel bir tüccar olsanız da, Local Trade Copier EA MT4 , spesifik ihtiyaçlarınıza göre özelleştirmek için geniş bir seçenek yelpazesi sunar
    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
    Trade Manager EA’ye hoş geldiniz! Ticaretin daha sezgisel, hassas ve verimli hale gelmesi için tasarlanmış nihai risk yönetim aracı ile tanışın. Bu sadece bir emir verme aracı değil; ticaret planlaması, pozisyon yönetimi ve risk kontrolü için kapsamlı bir çözüm. İster yeni başlayan bir yatırımcı olun, ister deneyimli bir trader ya da hızlı emir gerektiren bir scalper, Trade Manager EA ihtiyaçlarınıza uyum sağlar ve forex, endeksler, emtialar ve kripto paralar dahil tüm piyasalarda esneklik sunar
    TradePanel MT4
    Alfiya Fazylova
    4.85 (93)
    Trade Panel, çok işlevli bir ticaret asistanıdır. Uygulama, manuel ticaret için 50'den fazla ticaret fonksiyonu içerir ve çoğu ticaret görevini otomatikleştirmeyi mümkün kılar. Satın almadan önce demo hesapta demo sürümü test edebilirsiniz. Demo hesap için uygulamanın deneme sürümünü indirin: https://www.mql5.com/en/blogs/post/750865 . Talimatların tamamı buraya . Ticaret. Tek tıklamayla ticaret işlemleri yapmayı sağlar: Risk otomatik hesaplaması ile bekleyen emirleri ve pozisyonları açmak. Bird
    Exp COPYLOT CLIENT for MT4
    Vladislav Andruschenko
    4.65 (66)
    MetaTrader 4 için ticaret fotokopisi.       Herhangi bir hesaptan forex işlemlerini, pozisyonlarını, emirlerini kopyalar. En iyi ticari fotokopi makinelerinden biridir.       MT4 - MT4, MT5 - MT4       için       KOPYLOT MT4       sürüm (veya       MT4 - MT5 MT5 - MT5       için       KOPYLOT MT5       sürüm). MT5 sürümü Tam tanım   +DEMO +PDF Nasıl alınır Nasıl kurulur     Günlük Dosyaları nasıl alınır?     Nasıl Test Edilir ve Optimize Edilir     Expforex'in tüm ürünleri için fotokopi   sür
    Trade copier MT4
    Alfiya Fazylova
    4.58 (33)
    Trade Copier, ticaret hesapları arasındaki işlemleri kopyalamak ve senkronize etmek için tasarlanmış profesyonel bir yardımcı programdır. Kopyalama, tedarikçinin hesabından/terminalinden alıcının aynı bilgisayarda veya vps'de kurulu olan hesabına/terminaline gerçekleşir. Satın almadan önce demo sürümünü bir demo hesabında test edebilirsiniz. Demo versiyonu burada . Tüm talimatlar burada . Ana işlevler ve avantajlar: Emirlerin kopyalanmasını destekler: МТ4> МТ4, МТ4> МТ5, МТ5> МТ4. Emirlerin kopy
    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 (Kopyacı MT4) sadece basit bir yerel trade kopyalayıcı değildir; günümüzün alım satım zorlukları için tasarlanmış eksiksiz bir risk yönetimi ve yürütme çerçevesidir. Prop firm sınavlarından kişisel hesap yönetimine kadar, güçlü yürütme, sermaye koruması, esnek yapılandırma ve gelişmiş işlem yönetimi ile her duruma uyum sağlar. Kopyalayıcı hem Master (gönderici) hem de Slave (alıcı) modlarında çalışır ve piyasa emirleri ile bekleyen emirlerin gerçek zamanlı senkroni
    Özel İşlem İndirimi – %40 İndirim Gelişmiş İşlem Yöneticisi – Daha Hızlı, Daha Akıllı ve Daha Güvenli Manuel İşlemler İçin Nihai Hepsi Bir Arada Çözüm. Anında işlem yürütme, görsel işlem planlama ve güçlü risk yönetimini tek bir sezgisel araçta birleştiren profesyonel grafik paneli olan NextGen Trade Manager AI ile manuel işlemlerinizi dönüştürün. Emirleri yürütün, riski yönetin ve kârlarınızı koruyun, hem de grafiğinizden ayrılmadan. Hassasiyetlerini ve verimliliklerini artırmak isteyen tüm
    VirtualTradePad mt4 Extra
    Vladislav Andruschenko
    4.86 (59)
    1 tıklama ile ticaret için Ticaret Paneli.   Pozisyonlar ve emirlerle çalışmak!   Grafikten veya klavyeden alım satım. Alım satım panelimizi kullanarak, grafikten tek bir tıklamayla alım satım yapabilir ve alım satım işlemlerini standart MetaTrader kontrolünden 30 kat daha hızlı gerçekleştirebilirsiniz. Bir tüccar için hayatı kolaylaştıran ve bir tüccarın ticaret faaliyetlerini çok daha hızlı ve daha rahat gerçekleştirmesine yardımcı olan parametrelerin ve işlevlerin otomatik hesaplamaları. Graf
    MT4 Professional Copy Trading System (MT4 Sürümü) Endüstriyel seviye, ultra hızlı LOCAL Trade Copier . Profesyoneller ve çoklu hesap yönetimi için. Endüstriyel LOCAL Mimari Aynı Windows ortamında çalışır (aynı PC / aynı Windows VPS). Düşük gecikme, yüksek stabilite, 7/24. Master / Slave / Self + Cross Copy (MT4 ↔ MT5) Master/Slave/Self-Copier destekli. MT4→MT4, MT4→MT5, MT5→MT4, MT5→MT5. Önemli: MT4↔MT5 için MT4 ve MT5 sürümleri birlikte gerekir. Ne yapar Master işlemlerini anlık kopyalar:
    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
    Bu ürün, haber saatlerinde tüm uzman danışmanları ve manüel grafikleri filtreler, böylece manüel ticaret kurulumlarınızı veya diğer uzman danışmanlar tarafından girilen işlemleri yok edebilecek ani fiyat dalgalanmaları konusunda endişelenmenize gerek kalmaz. Bu ürün, herhangi bir haber yayınlanmadan önce açık pozisyonlarınızı ve bekleyen emirlerinizi yönetebilen tam bir sipariş yönetim sistemi ile birlikte gelir. The News Filter'ı satın aldığınızda, gelecekteki uzman danışmanlar için yerleşik ha
    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 - MetaTrader 4 için saniye bazlı grafikler oluşturmanıza olanak sağlayan eşsiz bir araçtır. Seconds Chart sayesinde saniye cinsinden zaman dilimleriyle grafik oluşturabilir, standart dakika veya saatlik grafiklerde mümkün olmayan esneklik ve analiz hassasiyetine ulaşabilirsiniz. Örneğin, S15 zaman dilimi 15 saniyelik mum çubuklarını ifade eder. Tüm indikatörleri, uzman danışmanları ve komut dosyalarını standart grafiklerde olduğu gibi kolaylıkla kullanabilirsiniz. Standart araçları
    Exp4 Duplicator
    Vladislav Andruschenko
    4.5 (22)
    Uzman Danışman   , MetaTrader 4   hesabınızda işlemleri ve pozisyonları tekrarlar   veya önceden belirlenmiş sayıda verir. Manuel olarak veya başka bir Uzman Danışman tarafından açılan tüm fırsatları kopyalar. Pozisyonları kopyalar ve pozisyonlara göre lotu artırır! Diğer EA'ların çoğunu artırır. Aşağıdaki işlevler desteklenir: kopyalanan işlemler için özel lot, Zarar Durdurma kopyalama, Kâr Al, takip eden durdurma kullanımı. MT5 sürümü Tam tanım +DEMO +PDF Nasıl alınır Nasıl kurulur     Gün
    MicroScalp Signal Finder Multi-Sembol, Multi-Zaman Dilimi Smart Money Scalping Sinyal Tarayici - MetaTrader 5 Scalping, birden fazla enstrumanda hassas zamanlama ve cok katmanli analiz gerektirir — bu, gercek zamanli olarak manuel yapilmasi neredeyse imkansiz bir gorevdir. Piyasa yapisini, order block'lari, fair value gap'leri, likidite taramalarini ve momentum onaylarini birden fazla sembolde ayni anda takip etmek otomasyon gerektirir. MicroScalp Signal Finder (MSF), bes zaman diliminde (H4-H1-
    Bu, Trend Line PRO göstergesi için otomatik parametre iyileştiricisidir En sevdiğiniz Trend Line PRO göstergesi için en uygun parametreleri kolayca ve hızlı bir şekilde seçeceksiniz.  Optimizasyon sadece birkaç saniye sürer. İyileştirici, her bir çift ve periyot için en iyi parametreleri bulmanızı sağlar: Amplitude, TP1-TP3, StopLoss ve seçilen tarih bölümünde (Days) Time Filter ve HTF Filter için değerler  Farklı zaman dilimlerini optimize etmek için farklı geçmiş aralıklarına ihtiyacınız var
    MT4 to Telegram Signal Provider , Telegram'a sinyal göndermeyi sağlayan ve hesabınızı bir sinyal sağlayıcısına dönüştüren kullanımı kolay ve tamamen özelleştirilebilir bir araçtır. Mesajların formatı tamamen özelleştirilebilir! Ancak basit kullanım için, önceden tanımlanmış bir şablonu seçebilir ve mesajın belirli kısımlarını etkinleştirebilir veya devre dışı bırakabilirsiniz. [ Demo ]  [ Kullanım Kılavuzu ] [ MT5 Sürümü ] [ Discord Sürümü ] [ Telegram Kanalı ]  New: [ Telegram To MT5 ] Kurulum
    Crystal Trade Manager PRO – MT4 İçin Gelişmiş Risk Yönetimi ve İşlem Kontrol Sistemi Ücretsiz Sürüm: https://www.mql5.com/en/market/product/150632 Genel Bakış Crystal Trade Manager PRO (CTM), MetaTrader 4 için geliştirilmiş profesyonel bir işlem yürütme ve risk yönetimi aracıdır. Disiplinli işlem yürütme, güçlü sermaye koruması ve MT4 içinde akıllı otomasyon isteyen trader’lar için tasarlanmıştır. Sistem; riski yönetir, equity’yi korur, günlük sınırları uygular, SL/TP’yi otomatik ayarlar ve prof
    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: Endişesiz İşlem İçin Kapsamlı Hesap Koruma Uzmanınız Hesap koruması, öz sermaye koruması, portföy koruması, çoklu strateji koruması, kar koruması, kar toplama, işlem güvenliği, risk kontrol programları, otomatik risk kontrolü, otomatik tasfiye, koşullu tasfiye, planlı tasfiye, dinamik tasfiye, iz süren stop loss, tek tıklamayla kapatma, tek tıklamayla tasfiye ve tek tıklamayla geri yükleme gibi özellikler arıyorsanız, Equity Protect Pro ihtiyacınız olan programdır. Kurulumu
    Basket EA MT4
    Juvenille Emperor Limited
    5 (5)
    Basket EA MT4 , güçlü bir kâr alma aracı ve kapsamlı bir hesap koruma sistemini basit ve kullanımı kolay bir çözümde birleştirir. Ana amacı, tüm açık pozisyonları tek tek değil, bir sepet (basket) olarak yöneterek, hesabınızın toplam kâr ve zararını tamamen kontrol altında tutmaktır. EA; sepet düzeyinde take profit, stop loss, break even ve trailing stop gibi özellikler sunar. Bunlar, bakiye yüzdesi, sabit bir para birimi değeri ya da yönetilen işlemlerin ortalama pip hedefi olarak ayarlanabili
    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
    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
    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 site sinyalleri üzerinden işlem yapmak için tasarlanmıştır   https://live-forex-signals.com/en   ve  https://foresignal.com/en   . Live Forex Signals for MetaTrader 5  https://www.mql5.com/ru/market/product/81448 Ayarlar Web sitelerine aboneliğiniz varsa Username ve Password live-forex-signals.com/foresignal.com . o zaman bu seçenekleri kimlik bilgilerinizle doldurmalısınız; Abonelik yoksa alanları boş bırakın; Comment açılan anlaşmalara ilişkin yorum Risk = 0 ise, ticaret i
    Yazarın diğer ürünleri
    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
    Filtrele:
    Değerlendirme yok
    Değerlendirmeye yanıt