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.



    추천 제품
    Basic Theme Builder
    Mehran Sepah Mansoor
    5 (1)
    Basic Theme Builder: 차트 맞춤화를 간편하게 Basic Theme Builder   지표로 거래 경험을 혁신하세요. 이 다용도 도구는 MetaTrader 4 에서 차트의 외관을 간편하게 사용자 맞춤화할 수 있도록 설계된 직관적인 패널을 제공합니다. 다양한 테마와 색상 스킴을 간단히 전환하여 거래 환경의 시각적 매력과 기능성을 향상시킬 수 있습니다.   Free MT5 version Basic Theme Builder   지표는 MetaTrader 4 차트를 손쉽게 개인화하려는 거래자에게 최적의 도구입니다. 간단한 패널 인터페이스와 다양한 테마 프리셋을 통해 거래 스타일이나 기분에 맞게 차트의 외관을 빠르게 조정할 수 있습니다. 클래식한 룩부터 현대적인 미학까지, Basic Theme Builder는 시각적 경험을 향상시키고 집중력을 높이는 데 도움이 되는 다양한 옵션을 제공합니다. 오늘 이 실용적이고 사용하기 쉬운 지표로 거래 환경을 최적화하세요. 주요 기능: 간편
    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 is an indicator that displays the spread line of a symbol in the subwindow of the oscillator. In the parameters it is possible to specify another symbol from which the spread line will be broadcast. If the "Symbol" parameter is left empty, the spread line will be displayed from the current symbol on which the indicator is set. This tool is ideal for traders who want to see the spread dynamics in the oscillator format and use it to protect themselves from entering the market
    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
    손익분기점을 자동으로 설정하는 유틸리티로, 주어진 거리를 지나갈 때 거래를 손익분기점으로 전환합니다. 위험을 최소화할 수 있습니다. 상인을 위해 전문 상인이 만들었습니다. 유틸리티는 거래자가 수동으로 또는 고문을 사용하여 개설한 모든 시장 주문과 함께 작동합니다. 매직 넘버로 거래를 필터링할 수 있습니다. 유틸리티는 동시에 원하는 수의 주문을 처리할 수 있습니다. MT5 버전 https://www.mql5.com/ru/market/product/57077 유틸리티가 할 수 있는 일: 1핍에서 가상 손익분기점 설정 실제 수준의 손익분기점 설정 각 주문에 대해 개별적으로 작업(손익분기 수준은 각 주문에 대해 별도로 설정됨) 단방향 주문 바구니로 작업(손익분기 수준은 모든 주문에 대해 공통으로 설정되고 별도로 구매 및 판매) 양방향 주문 바스켓으로 작업(손익분기 수준은 모든 주문에 대해 공통으로 설정되며, 함께 구매 및 판매) 테스트 및 작업을 위해 차트의 버튼을 사용할 수 있습니
    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  ***************************************
    Currency Strength Multimeter
    Sameer Shariff
    4.57 (7)
    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
    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)
    나는 모두가"안전"과 같은 돈 관리 규칙을 알고 있다고 생각합니다. 인식하지 못하는 사람들을 위해,금고는 거래에 대한 이익이 정지의 크기를 같게 한 후 위치의 절반을 마감한다고 가정합니다. 따라서,가격이 반전하고 정지를 잡는다 할지라도,이전에 위치의 일부를 닫을 때 정확히 같은 양의 이익을 받았기 때문에 돈을 잃지 않을 것입니다. 안전 전문가 고문은 단 하나의 설정,즉 폐쇄 로트 만 있습니다. 위치 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
    Risk manager x2 free
    Andrii Malakhov
    5 (1)
    Советник риск-менеджер с огромным арсеналом возможностей защиты вашего депозита. Для инвесторов, которые решили передать капитал в доверительное управление. Когда у трейдера нет доступа к настройкам - нивелирует торговые риски. А также для трейдеров, которые осознали необходимость стороннего контроля за их торговлей для улучшения торговых результатов.  Для максимальных результатов - должен стоять на отдельном VPS сервере и у трейдера не должно быть возможности менять настройки в торговый период.
    FREE
    Introduction Auto Chart Alert is a convenient tool to set alert for your trading in your chart. With Auto Chart Alert, you can set the alert line in one click in your desired location in your chart. You can even set alert over the sloped lines in your chart. Auto Chart Alert is a great tool when you have to watch out importnat support and resistance levels for your trading. You can receive the sound alert, email and push notification when the price hit the alert line at you desired location. Au
    FREE
    功能 勾选需要显示的内容,(当前版本包括当前K线倒计时,市场信息)并显示到图表右下角。 显示格式参数 fontsize 字体大小 c 颜色 font  字体类型 自定义显示的内容 参数 Symbol candle time left SPREAD DIGITS STOPLEVEL LOTSIZE LOTSIZE TICKSIZE SWAPLONG SWAPSHORT STARTING EXPIRATION TRADEALLOWED MINLOT LOTSTEP MAXLOT SWAPTYPE PROFITCALCMODE MARGINCALCMODE MARGININIT MARGINMAINTENANCE MARGINHEDGED MARGINREQUIRED FREEZELEVEL CLOSEBY_ALLOWED
    FREE
    AQ RiskOptimizer
    HIT HYPERTECH INNOVATIONS LTD
    5 (1)
    Risk Optimizer is the absolute solution for applying risk management on your account. Bad risk management is the main reason that causes traders to lose money. Risk Optimizer calculates and suggests the correct lot size for each position according to your personal, customized risk profile. You can give directly your preferred risk as percentage (%) for each position or you can trust our algorithms to calculate and optimize according to your risk category selection. But it is not only that! Selec
    FREE
    Simple setting Attach Magic SL TP Trailing to single fresh chart and to manage all orders please set SL TP 0 for other Expert advisor . This is Free, if you found this useful please give feedback and 5 STAR (if you need more function on this please feel free do DM) Chart Selection :- if select all chart then EA will manage all chart or if select single chart then EA will manage current chart only Choose Trailing Method :- you can select trailing method how you want to trail Choose SL & TP M
    FREE
    이 제품의 구매자들이 또한 구매함
    Local Trade Copier EA MT4
    Juvenille Emperor Limited
    4.96 (109)
    Local Trade Copier EA MT4 를 사용하여 매우 빠른 거래 복사 경험을 해보세요. 1분 안에 간편하게 설정할 수 있으며, 이 거래 복사기를 사용하면 Windows 컴퓨터 또는 Windows VPS에서 여러 개의 MetaTrader 터미널 간에 거래를 0.5초 미만의 초고속 복사 속도로 복사할 수 있습니다. 초보자든 전문가든 Local Trade Copier EA MT4 는 다양한 옵션을 제공하여 사용자의 특정 요구에 맞게 맞춤 설정할 수 있습니다. 이는 수익 잠재력을 높이려는 모든 사람을 위한 최고의 솔루션입니다. 지금 사용해보시고 이것이 왜 시장에서 가장 빠르고 쉬운 무역용 복사기인지 알아보세요! 팁: 여기 에서 데모 계정에서 Local Trade Copier EA MT4 데모 버전을 다운로드하여 사용해 볼 수 있습니다. 다운로드한 무료 데모 파일을 MT4 >> File >> Open Data Folder >> MQL4 >> Experts 폴더에 붙여넣고 터미널
    Trade Assistant MT4
    Evgeniy Kravchenko
    4.42 (193)
    거래당 위험 계산, 라인을 사용한 손쉬운 신규 주문, 부분 청산 기능을 통한 주문 관리, 7가지 유형의 트레일링 스탑 및 기타 유용한 기능을 제공합니다. 추가 자료 및 지침 설치 지침 - 애플리케이션 지침 - 데모 계정용 애플리케이션 평가판 라인 기능       - 차트에 개시선, 손절매, 차익실현을 표시합니다. 이 기능을 사용하면 새로운 주문을 쉽게 하고 개봉 전에 추가 특성을 볼 수 있습니다. 위기 관리       -       위험 계산 기능은 설정된 위험과 손절매 주문의 크기를 고려하여 새 주문의 볼륨을 계산합니다. 이를 통해 손절매 크기를 설정하고 동시에 설정된 위험을 존중할 수 있습니다. 로트 계산 버튼 - 위험 계산을 활성화/비활성화합니다. 필요한 위험 값은 위험 필드에 0에서 100 사이의 백분율 또는 예금 통화로 설정됩니다. 설정 탭에서 위험 계산 옵션을 선택합니다. $ 통화, % 잔액, % 지분, % 자유 마진, % 사용자 정의, % AB 이전 일, % AB
    Trade Manager EA에 오신 것을 환영합니다. 이 도구는 거래를 보다 직관적이고 정확하며 효율적으로 만들기 위해 설계된 궁극적인 리스크 관리 도구 입니다. 단순한 주문 실행 도구가 아닌, 원활한 거래 계획, 포지션 관리 및 리스크 제어를 위한 종합 솔루션입니다. 초보자부터 고급 트레이더, 빠른 실행이 필요한 스캘퍼에 이르기까지 Trade Manager EA는 외환, 지수, 상품, 암호화폐 등 다양한 시장에서 유연성을 제공합니다. Trade Manager EA를 사용하면 복잡한 계산은 이제 과거의 일이 됩니다. 시장을 분석하고 진입, 손절 및 익절 수준을 차트의 수평선으로 표시한 후 리스크를 설정하면, Trade Manager가 이상적인 포지션 크기를 즉시 계산하고 SL 및 TP 값을 실시간으로 표시합니다. 모든 거래가 간편하게 관리됩니다. 주요 기능: 포지션 크기 계산기 : 정의된 리스크에 따라 거래 크기를 즉시 결정합니다. 간단한 거래 계획 : 진입, 손절, 익절을 위한
    TradePanel MT4
    Alfiya Fazylova
    4.85 (93)
    Trade Panel은 다기능 거래 도우미입니다. 이 애플리케이션에는 50개 이상의 수동 거래 기능이 포함되어 있으며 대부분의 거래 작업을 자동화할 수 있습니다. 구매하기 전에 데모 계정에서 데모 버전을 테스트할 수 있습니다. 데모 계정용 애플리케이션 체험판 다운로드: https://www.mql5.com/en/blogs/post/750865 . 전체 지침 여기 . 거래. 한 번의 클릭으로 거래를 수행할 수 있습니다: 리스크 자동 계산과 함께 예약 주문 및 포지션 열기. 한 번의 클릭으로 여러 주문 및 포지션 열기. 주문 그리드 열기. 예약 주문 및 포지션을 그룹별로 닫기. 포지션 방향 전환 (Buy 닫기 > Sell 열기, Sell 닫기 > Buy 열기). 포지션 잠금 (부족한 포지션을 열어 Buy와 Sell 포지션의 수량을 동일하게 만들기). 모든 포지션 한 번의 클릭으로 부분적으로 닫기. 모든 포지션의 테이크 프로핏과 스톱로스를 같은 가격 수준에 설정. 모든 포지션의 스톱로스를
    Exp COPYLOT CLIENT for MT4
    Vladislav Andruschenko
    4.65 (66)
    MetaTrader 4용 트레이드 복사기.       모든 계정의 외환 거래, 포지션, 주문을 복사합니다. 그것은 최고의 무역 복사기 중 하나입니다       MT4 - MT4, MT5 - MT4       위해       카피롯 MT4       버전(또는       MT4 -  MT5   MT5 - MT5       위해       카피롯 MT5       버전). MT5 버전 전체 설명   +DEMO +PDF 구입 방법 설치하는 방법     로그 파일을 얻는 방법     테스트 및 최적화 방법     Expforex의 모든 제품 복사기   버전         MetaTrader 5   터미널 (   МТ5 - МТ5, МТ4 - МТ5   ) -   Copylot Client MT5 고유한 복사 알고리즘은 마스터 계정에서 고객 계정으로 모든 거래를 정확하게 복사합니다. 이 제품은 또한 높은 작동 속도에서 높은 오류 처리로 유명합니다. 강력한 기능 세트. 프로그램은 여러 터
    Trade copier MT4
    Alfiya Fazylova
    4.58 (33)
    Trade Copier는 거래 계정 간의 거래를 복사하고 동기화하도록 설계된 전문 유틸리티입니다. 복사는 공급자의 계정/단말기에서 동일한 컴퓨터 또는 vps에 설치된 수신자의 계정/단말기로 발생합니다. 구매하기 전에 데모 계정에서 데모 버전을 테스트할 수 있습니다. 데모 버전 여기 . 전체 지침 여기 . 주요 기능 및 이점: 복사기는 "МТ4> МТ4", "МТ4> МТ5", "МТ5> МТ4" 복사를 지원합니다. 복사기는 데모 계정 > 실 계정, 실 계정 > 데모 계정, 데모 계정 > 데모 계정 및 실제 계정 > 실 계정 복사를 지원합니다. 복사기는 읽기 전용 암호가 적용된 투자자 계정에서 복사를 지원합니다. 하나의 공급자 터미널은 여러 수신 터미널로 트랜잭션을 보낼 수 있고 하나의 수신 터미널은 여러 공급자 터미널에서 트랜잭션을 수신할 수 있습니다. 복사기는 귀하 또는 귀하의 고문이 거래하는 동일한 터미널에서 작동할 수 있습니다. 높은 복사 속도(0.5초 미만). 복사기에는 간편
    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 (복사 고양이 MT4) 는 단순한 로컬 트레이드 카피어가 아니라, 오늘날의 거래 환경을 위해 설계된 완전한 리스크 관리 및 실행 프레임워크입니다. Prop Firm 챌린지부터 개인 계좌 관리까지, 강력한 실행력, 자본 보호, 유연한 설정, 고급 거래 처리 기능을 통해 모든 상황에 적응합니다. 이 카피어는 Master(송신자) 와 Slave(수신자) 모드 모두에서 작동하며, 실시간으로 시장가/지정가 주문, 거래 수정, 부분 청산, Close By 작업을 동기화합니다. 데모 및 실계좌 모두 호환되며, 거래용 비밀번호 또는 투자자 비밀번호로도 사용할 수 있습니다. Persistent Trade Memory 기술을 통해 EA, 터미널, VPS가 재시작되더라도 거래가 복원됩니다. 여러 Master와 Slave를 동시에 관리할 수 있으며, 브로커 간 차이는 접두사/접미사 자동 감지 또는 심볼 매핑으로 처리됩니다. 매뉴얼/설정: Copy C
    특별 할인 – 40% 할인 고급 거래 관리자 – 더 빠르고, 더 스마트하고, 더 안전한 수동 거래를 위한 최고의 올인원 솔루션 차트엔드 거래 관리자 AI로 수동 거래를 혁신하세요. 즉각적인 주문 실행, 시각적인 거래 계획, 강력한 위험 관리 기능을 하나의 직관적인 도구에 통합한 전문가급 차트 패널입니다. 차트를 벗어나지 않고도 그 어느 때보다 빠르게 주문을 실행하고, 위험을 관리하고, 수익을 보호할 수 있습니다. 정확성과 효율성을 높이고자 하는 모든 트레이더에게 적합합니다. MT4 전략 테스터에서 위험 부담 없이 테스트해 보세요 데모 버전을 다운로드하여 모의 거래 기능을 사용해 보세요. 실제 거래에 들어가기 전에 안전한 시뮬레이션 환경에서 주문 실행 연습, 위험 관리 규칙 테스트, 전략 개선을 할 수 있습니다. 자세한 사용자 설명서 및 단계별 가이드는 다음 링크를 참조하세요. https://www.mql5.com/en/blogs/post/764217 주요 장점: 빠른 거래
    VirtualTradePad mt4 Extra
    Vladislav Andruschenko
    4.86 (59)
    한 번의 클릭으로 거래할 수 있는 거래 패널.   위치 및 주문 작업!   차트 또는 키보드에서 거래. 거래 패널을 사용하면 차트에서 클릭 한 번으로 거래하고 표준 MetaTrader 컨트롤보다 30배 빠르게 거래 작업을 수행할 수 있습니다. 거래자의 삶을 더 쉽게 만들고 거래자가 훨씬 빠르고 편리하게 거래 활동을 수행할 수 있도록 도와주는 매개변수 및 기능의 자동 계산. 차트의 무역 거래에 대한 그래픽 팁 및 전체 정보. MT5 버전 전체 설명   +DEMO +PDF 구입 방법 설치하는 방법     로그 파일을 얻는 방법     테스트 및 최적화 방법     Expforex의 모든 제품 열기 및 닫기, 반전 및 잠금, 부분 닫기/오토로트. 가상/실제 손절매/이익 실현/후행 정지/손익분기점, 주문 그리드 .... MetaТrader 4   의 주요 요청 거래 제어판   : 구매, 판매, 구매 중지, 구매 제한, 판매 중지, 판매 제한, 닫기, 삭제, 수정, 후행 중지, 손절매,
    MT4 Professional Copy Trading System (MT4 버전) 산업급 초고속 LOCAL 트레이드 코피어 . 프로 트레이더/시그널 제공자/멀티계정 운영용. 산업급 LOCAL 아키텍처 동일 Windows 환경(같은 PC/같은 Windows VPS)에서 동작. 저지연, 높은 동기화, 24/7 무감시 운용. Master / Slave / Self + Cross Copy (MT4 ↔ MT5) Master/Slave/Self-Copier 지원. MT4→MT4, MT4→MT5, MT5→MT4, MT5→MT5. 중요: MT4↔MT5 크로스 카피는 MT4+MT5 두 버전 필요. 동작 방식 Master의 오픈/수정(SL/TP)/청산을 실시간 복제. 브로커 접두/접미 심볼 차이 자동 매핑. 핵심 판매 포인트 초고속 복제, 유연한 로트(고정/배수/Balance·Equity 비율), 심볼 매핑, 선택형 리스크 보호, 장기 안정(로그/정합성 체크).
    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)
    이 제품은 뉴스 시간 동안 모든 전문가 어드바이저 및 수동 차트를 필터링하여 수동 거래 설정이나 다른 전문가 어드바이저가 입력한 거래가 파괴될 수 있는 급격한 가격 상승으로부터 걱정하지 않아도 됩니다. 이 제품은 또한 뉴스 발표 전에 열린 포지션과 대기 주문을 처리할 수 있는 완전한 주문 관리 시스템이 함께 제공됩니다. The News Filter  를 구매하면 더 이상 내장 뉴스 필터에 의존할 필요가 없으며 이제부터 모든 전문가 어드바이저를 여기서 필터링할 수 있습니다. 뉴스 선택 뉴스 소스는 Forex Factory의 경제 캘린더에서 얻어집니다. USD, EUR, GBP, JPY, AUD, CAD, CHF, NZD 및 CNY와 같은 어떤 통화 기준으로 선택할 수 있습니다. Non-Farm (NFP), FOMC, CPI 등과 같은 키워드 식별을 기준으로 선택할 수도 있습니다. 저, 중, 고 영향을 가지는 뉴스를 필터링할 수 있도록 선택할 수 있습니다. 차트와 관련된 뉴스만 선택하
    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 - MetaTrader 4에서 초 단위 차트를 생성하는 독특한 도구입니다. Seconds Chart 를 사용하면 초 단위로 설정된 타임프레임으로 차트를 작성할 수 있어, 표준 분 또는 시간 단위 차트에서는 불가능한 유연성과 정밀한 분석이 가능합니다. 예를 들어, S15 타임프레임은 15초 동안의 캔들로 구성된 차트를 의미합니다. 모든 인디케이터, 전문가 자문(EA), 스크립트를 사용할 수 있으며, 표준 차트와 동일한 편리함으로 작업할 수 있습니다. 표준 도구와 달리, Seconds Chart 는 초고속 타임프레임에서도 높은 정확도와 지연 없이 작업할 수 있도록 지원합니다. Seconds Chart의 장점 1초부터 900초까지 의 타임프레임 지원. 즉시 로딩 MT5 터미널의 틱 데이터베이스 가져오기로 역사적 데이터를 빠르게 불러옵니다. MT5 터미널에서 Tick Database 유틸리티를 먼저 실행해야 틱 데이터베이스를 가져올 수 있습니다. 실시간 데이터 업데
    Exp4 Duplicator
    Vladislav Andruschenko
    4.5 (22)
    Expert Advisor   는   귀하의 계정 MetaTrader 4   에서 사전 설정된 횟수만큼 거래 및 포지션을 반복하거나 신호를 보냅니다. 수동으로 또는 다른 Expert Advisor에 의해 열린 모든 거래를 복사합니다. 포지션을 복사하고 포지션을 기준으로 로트를 증가시킵니다! 다른 EA의 수를 늘립니다. 다음 기능이 지원됩니다: 복사된 거래에 대한 사용자 지정 로트, 손절매 복사, 이익 실현, 후행 정지 사용. MT5 버전 전체 설명 +DEMO +PDF 구입 방법 설치하는 방법     로그 파일을 얻는 방법     테스트 및 최적화 방법     Expforex의 모든 제품 연결 MetaTrader용 무역 복사기는 여기에서 사용할 수 있습니다:   COPYLOT 주목 참고: 터미널 간 거래를 위한 복사기가 아닙니다. 전략 테스터에서 Expert Advisor를 테스트하고 비주얼 모드에서 EAPADPRO 도구 모음과 거래할 수 있습니다! 1개의 통화 쌍에 EA를 설
    MicroScalp Signal Finder 멀티심볼, 멀티타임프레임 스마트머니 스캘핑 시그널 스캐너 (MetaTrader 5) 스캘핑은 여러 종목에 걸친 정밀한 타이밍과 다층 분석이 필요합니다. 시장 구조, 오더블록, 페어밸류갭, 유동성 스윕, 모멘텀 확인을 여러 심볼에서 동시에 추적하는 것은 수동으로는 거의 불가능한 작업입니다. MicroScalp Signal Finder(MSF)는 5개 타임프레임(H4-H1-M15-M5-M1)에 걸쳐 최대 20개 심볼을 동시에 스캔하며, 엄격한 5단계 스마트머니 컨셉트 분석을 적용합니다. 추세, 구조, 관심 포인트, 모멘텀, 진입 패턴이 모두 일치할 때만 정확한 진입가, 손절가, 3단계 익절가를 포함한 점수화된 시그널을 생성합니다. 수동 작업 없이 기관급 분석을 원하는 외환, 암호화폐, 지수 스캘퍼를 위해 설계되었습니다. 각 시그널에는 컨플루언스 점수(0-18)가 부여되어 가장 높은 확률의 셋업에 집중할 수 있습니다. 자세히 보기:   상세 가
    Trend Line Optimizer
    Evgenii Aksenov
    4.11 (19)
    이 추세선 프로 표시기에 대한 자동 매개 변수 최적화 프로그램입니다 쉽고 빠르게 당신은 당신의 마음에 드는 추세선 프로 표시기에 대한 최적의 매개 변수를 선택합니다. 최적화에는 몇 초 밖에 걸리지 않습니다. 최적화할 수 있는 최고의 매개변수에 대한 각 쌍고기간:진폭,TP1-TP3,stoploss 에뿐만 아니라,값은 시간을 필터 및 카테고에 필터가 역사를 선택 섹션(일) 다른 시간대를 최적화하려면 다른 범위의 히스토리가 필요합니다: M5-M15 계산 범위 매개 변수 설정(일)=60(3 개월) M30-H1 계산 범위 매개 변수 설정(일)=120(6 개월) H4 매개 변수 계산 범위 설정(일)=240(1 년) D1-W1 매개 변수 계산 범위 설정(일)=720(3 년) Mn1 매개 변수 계산 범위 설정(일)=1200(5 년) 최적화 후 매개 변수는 폴더의 기성품 세트 파일에 자동으로 저장됩니다.MQL4>Files>trendlineoptimizedsettings 최적화 유틸리티 사용
    MT4 to Telegram Signal Provider 는 사용하기 쉽고 완전히 사용자 정의가 가능한 도구로, 텔레그램으로 신호를 보내어 계정을 신호 제공자로 변환할 수 있습니다. 메시지 형식은 완전히 사용자 정의가 가능합니다! 그러나 간단한 사용을 위해 미리 정의된 템플릿을 선택하고 메시지의 특정 부분을 활성화하거나 비활성화할 수도 있습니다. [ 데모 ]  [ 매뉴얼 ] [ MT5 버전 ] [ 디스코드 버전 ] [ 텔레그램 채널 ]  New: [ Telegram To MT5 ] 설정 단계별 사용자 가이드 가 제공됩니다. 텔레그램 API에 대한 지식이 필요 없으며, 개발자가 필요한 모든 것을 제공합니다. 주요 기능 구독자에게 보낸 주문 세부 정보를 사용자 정의할 수 있는 기능 예를 들어 브론즈, 실버, 골드와 같은 계층 구독 모델을 만들 수 있습니다. 골드 구독은 모든 신호 등을 받게 됩니다. ID, 심볼 또는 코멘트별 주문 필터링 주문이 실행된 차트의 스크린샷을 포함 보낸
    Crystal Trade Manager PRO – MT4 고급 리스크 및 트레이드 관리 시스템 무료 버전: https://www.mql5.com/en/market/product/150632 개요 Crystal Trade Manager PRO(CTM)는 MetaTrader 4를 위한 전문급 거래 실행 및 리스크 관리 유틸리티입니다. 엄격한 실행, 견고한 자본 보호, 그리고 똑똑한 자동화를 필요로 하는 트레이더를 위해 설계되었습니다. 본 시스템은 계좌 리스크를 관리하고, 자본(EQ)을 보호하며, 일일 제한을 적용하고, SL/TP를 자동으로 설정하며, 전문급 기능을 갖춘 초고속 원클릭 트레이딩 패널을 제공합니다. Prop Firm 챌린지, 데이트레이딩, 스캘핑, 포트폴리오 매니저에게 최적화되어 있습니다. MT5 버전도 제공됩니다. 주요 기능 1. 고급 리스크 및 드로우다운 보호 기능 하루 드로우다운을 1%~70% 범위에서 설정 가능 설정한 한도를 초과할 경우 모든 포지션 즉시 종료 조건
    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: 안심 거래를 위한 종합 계좌 보호 전문가 계좌 보호, 자산 보호, 포트폴리오 보호, 다중 전략 보호, 수익 보호, 수익 확보, 거래 보안, 위험 관리 프로그램, 자동 위험 관리, 자동 청산, 조건부 청산, 예약 청산, 동적 청산, 추적 손절매, 원클릭 종료, 원클릭 청산, 원클릭 복원 등의 기능을 찾고 있다면 Equity Protect Pro가 바로 필요한 프로그램입니다. 설정이 간편하고 사전 설정된 조건이 충족되면 모든 차트를 닫을 수 있으며 신호 구독 취소도 지원합니다(이는 모든 거래 프로그램도 중지됨을 의미합니다). 이 시점에서 새로운 주문이 생성되지 않으며 최종적으로 모든 주문이 종료되어 예상치 못한 손실을 효과적으로 방지하고 안심하고 거래할 수 있습니다. Equity Protect Pro Demo Version for yo u to test   Equity Protect Pro MT4 Demo.ex4 Equity Protect Pro M
    Basket EA MT4
    Juvenille Emperor Limited
    5 (5)
    Basket EA MT4 는 강력한 수익 실현 도구이자 종합적인 계좌 보호 시스템을 하나의 간편하고 사용하기 쉬운 솔루션으로 결합한 제품입니다. 이 EA의 핵심 목적은 계좌 내 모든 개별 포지션을 묶음(Basket) 단위로 관리하여, 계좌 전체의 손익을 완전히 통제할 수 있도록 하는 것입니다. Take Profit, Stop Loss, Break Even(손익분기점), Trailing Stop과 같은 묶음(purpose) 수준의 기능을 제공하며, 이를 계좌 잔고의 퍼센트, 고정 통화 금액 또는 해당 거래들의 평균 포인트로 설정할 수 있습니다. 이러한 유연성은 트레이더가 자신만의 리스크 및 수익 전략을 맞춤 설정할 수 있도록 해줍니다. 또한 Basket EA MT4 는 Magic Number, 심볼, 또는 댓글 등을 기반으로 특정 거래를 관리 대상에서 제외하거나 포함시키는 지능형 거래 필터링을 지원합니다. 이를 통해 원하는 거래만 EA의 관리 대상이 되도록 보장할 수 있습니다. 추가
    Automate your Trendsurfer trailing stop management - day and night With this Expert Advisor for Metatrader 4 you save time, avoid mistakes and trade more relaxed - specially developed for the Trendsurfer trading system. Always the right stop loss Fully automatic Simple to use Saves you time How it works 1. download the Expert Advisor and install it in Metatrader 4 (I will give you instructions on how to do this) 2. define your stop-loss rule 3. run your computer or VPS - the Expert Advisor
    The product will copy all  Discord  signal   to MT4   ( which you are member  ) , also it can work as remote copier.  Easy to set up. Work with almost signal formats, support to translate other language to English Work with multi channel, multi MT4. Work with Image signal. Copy order instant, auto detect symbol. Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. How to setup and guide: Let read all details about setup and download Discord To MetaTrader
    Take a Break
    Eric Emmrich
    5 (31)
    News filter, equity guard & session control for all your EAs — one tool, full protection Take a Break has evolved from a basic news filter into a comprehensive account protection solution . It pauses your other Expert Advisors during news events or based on custom filters. When trading resumes, it automatically restores your entire chart setup , including all EA settings. Why traders choose Take a Break One news filter for all your EAs — no more relying on individual built-in filters that may o
    This EA is fully automated , it is built based on  the method of catching the pop-up Alert event and Open Market Orders (BUY/SELL) . Download trial version here:  https://www.mql5.com/en/blogs/post/751340 ***NOTE:   It is recommended to remove the available filter settings, only install the filter for your indicator. Parameters of the EA: -------- <EA Settings> -------- Magic Number:   The identifying (magic) number of the currently selected order. Allow Open trade:   Enable/ Disable Open Trade
    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 사이트 신호에 거래를 위해 설계   https://live-forex-signals.com/en   그리고  https://foresignal.com/en   . Live Forex Signals for MetaTrader 5  https://www.mql5.com/ru/market/product/81448 매개 변수 사용자 이름 및 암호는 사이트에 가입 한 경우 live-forex-signals.com/foresignal.com 구독이 없으면 필드를 비워 둡니다; 댓글 개설 된 거래에 대한 댓글 위험 위험 거래에 대한 예금의 백분율로,위험=0 인 경우,다음 값 많이 사용됩니다 거래에 대한 많은 고정 볼륨 사이트에서 이익을 가져 가라 웹 사이트에서 정지 손실을 사용 빈도신호업데이트고문의 사이트 방문 빈도 분 최대 스프레드무역에 허용되는 최대 스프레드를 거래합니다.스프레드가 더 높으면 보류 중인 주문 세트가 취소됩니다 사용트레일링 사용 후행 정지
    제작자의 제품 더 보기
    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
    필터:
    리뷰 없음
    리뷰 답변