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 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  ***************************************
    通貨強度マルチメーターインジケーターは、以下の各通貨の強度、方向、ランクを示します。 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 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)
    私は誰もが"安全"のようなお金の管理のルールを知っていると思います。 気づいていない人のために、金庫は取引の利益がストップの大きさに等しい後にポジションの半分を閉じることを前提としています。 したがって、価格が逆転してストップをキャッチしたとしても、ポジションの一部を以前に閉じたときにまったく同じ量の利益が得られたため、お金を失うことはありません。 Safety Expert Advisorには、決算ロットという設定が1つしかありません。 ポジション0のままにすると、アドバイザーはトランザクションのちょうど半分を閉じます。 Expert Advisorをインストールすると、expert Advisorによって利益の一部が固定される場所のグラフに赤い破線が表示されます。 アドバイザーがトランザクションの一部を別のレベルで閉じるようにする場合は、この行を別の場所に安全に移動できます。 同じ通貨ペアで複数の取引を開いている場合は、マウスカーソルでEAをチャートにドラッグし、安全に閉じたい注文開始レベルの近くにeaをドロップする必要があります。 Expert Advisorは注文チケッ
    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
    このプロダクトを購入した人は以下も購入しています
    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 >> ファイル >> データ フォルダを開く >> MQL4 >> Experts フォルダに貼り付けて、ターミナルを再起動しま
    Trade Assistant MT4
    Evgeniy Kravchenko
    4.42 (193)
    取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 7 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 追加の資料と説明書 インストール手順 - アプリケーションの手順 - デモアカウント用アプリケーションの試用版 ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、 リスク 計算 の 種類 を 選択 します :「 $ 通貨」、「 % 残
    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のポジション量を等しくする)。 すべてのポジションを部分的にワンクリックで閉じる。 すべてのポジションの利食い(Take Profit)および損切り(Sto
    Exp COPYLOT CLIENT for MT4
    Vladislav Andruschenko
    4.65 (66)
    MetaTrader4のコピー機を取引します。     それは任意の口座からの外国為替取引、ポジション、注文をコピーします。 それは最高の貿易コピー機の1つです     MT4 - MT4、MT5 - MT4     のために     COPYLOT MT4     バージョン(または     MT4 - MT5  MT5 - MT5     のために     COPYLOT MT5     バージョン)。 MT5のバージョン 完全な説明   +DEMO +PDF 購入する方法 インストールする方法     ログファイルの取得方法     テストと最適化の方法     Expforex のすべての製品 のコピー機 バージョン       MetaTrader 5 ターミナル(   МТ5 - МТ5、МТ4 - МТ5   )-   コピーロットクライアントMT5 独自のコピーアルゴリズムにより、すべての取引がマスターアカウントからクライアントアカウントに正確にコピーされます。 また、動作速度が速いことでも知られています。タフなエラー処理。 強力な機能セット。 プログラムは、複数
    Trade copier MT4
    Alfiya Fazylova
    4.58 (33)
    Trade Copierは、取引口座間の取引をコピーして同期するように設計された専門的なユーティリティです。 コピーは、同じコンピューターまたはvps にインストールされている、サプライヤーのアカウント/端末から受信者のアカウント/端末に行われます。 購入する前に、デモ アカウントでデモ バージョンをテストできます。 デモ版 こちら 。 詳細な説明は こちら 。 主な機能と利点: MT5ネッティングアカウントを含む、MT4> MT4、MT4> MT5、MT5> MT4のコピーをサポートします。 高いコピー速度(0.5秒未満)。 ベンダーモードと受信者モードは同じ製品内に実装されています。 チャートから直接リアルタイムでコピーを制御できる、簡単で直感的なインターフェイス。 接続が切断されたり、端末が再起動されたりしても、設定と位置が失われることはありません。 コピーするシンボルを選択できます。また、受信者のシンボルを置き換えることもできます(例:EURUSD> USDJPY)。 バックコピーをサポートします。 特定の注文のみのコピーを有効にする機能。 取引開始価格の最大差と最大遅延時間を
    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ファームのチャレンジから個人の資産管理まで、強力な実行力、資金保護、柔軟な設定、高度な取引処理を組み合わせ、あらゆる状況に適応します。 このコピーツールは Master(送信側) と Slave(受信側) の両モードで動作し、成行注文や指値注文のリアルタイム同期、取引修正、部分決済、Close By 操作をサポートします。デモ口座・リアル口座の両方に対応し、取引用パスワードまたは投資家パスワードでも利用可能です。Persistent Trade Memory 技術により、EA・ターミナル・VPS が再起動しても復元可能です。複数の Master と Slave を同時に管理でき、ブローカー間の違いはプレフィックス/サフィックスの自動調整やシンボルマッピングで処理されます。 マニュアル/設定: Copy Cat Trading Copier マニュアル Copy Cat Mo
    トレーディングスペシャル – 40%オフ Advanced Trade Manager – より速く、よりスマートに、より安全に手動取引を行うための究極のオールインワンソリューション。 NextGen Trade Manager AIで手動取引を変革しましょう。これは、即時執行、視覚的な取引プランニング、そして強力なリスク管理を1つの直感的なツールに統合した、プロフェッショナルなオンチャートパネルです。チャートを離れることなく、注文執行、リスク管理、そして利益確保をかつてないほど迅速に行うことができます。取引の精度と効率性を高めたいすべてのトレーダーに最適です。 MT4ストラテジーテスターでリスクなしでテスト デモ版をダウンロードして、ペーパートレード機能をご利用ください。本番運用前に、安全なシミュレーション環境で執行の練習、リスク管理ルールのテスト、そして戦略の改良を行うのに最適な方法です。 完全なユーザーマニュアルとステップバイステップガイドについては、 https://www.mql5.com/en/blogs/post/764217 をご覧ください。 主なメリット:
    VirtualTradePad mt4 Extra
    Vladislav Andruschenko
    4.86 (59)
    ワンクリックで取引できるトレーディングパネル。ポジションと注文の操作!チャートまたはキーボードから取引。 手動取引用の取引パネル。チャート(チャートウィンドウ)またはキーボードから取引できます。開閉、リバース、ロックポジションと注文を処理する МetaТrader4のメインオーダーのトレーディングコントロールパネル:売買、売却、売却、売却、売却、閉じる、削除、修正、トレーリングストップ、ストップロス、takeproft MT5のバージョン 完全な説明   +DEMO +PDF 購入する方法 インストールする方法     ログファイルの取得方法     テストと最適化の方法     Expforex のすべての製品 シンボルウィンドウからの取引とキーボードからの取引! あなたはMetaTrader 4ターミナル - バーチャルコントロールパネルVirtualTradePadのためのユニークなプラグインを持っています。 Description on English 注意!  ストラテジーテスターの 取引方法を学びたい場合は、無料の TesterPad ユーティリティをチェックしてくだ
    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  を購入すると、将来のエキスパートアドバイザーのためにビルトインのニュースフィルターに頼る必要はなく、今後はすべてのエキスパートアドバイザーをここからフィルタリングできます。 ニュース選択 ニュースソースは、Forex Factoryの経済カレンダーから取得されます。 USD、EUR、GBP、JPY、AUD、CAD、CHF、NZD、CNYなど、任意の通貨数に基づいて選択できます。 Non-Farm(NFP)、FOMC、CPIなどのキーワード識別に基づいて選択することもできます。 影響レベルによってフィルタリングするニュースを選択することができ、低、中、高の影響範囲から選択できます。
    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秒足を表します。あらゆるインジケーター、エキスパートアドバイザー、スクリプトを利用可能で、標準的なチャートと同様に便利に操作できます。 標準的なツールとは異なり、 Seconds Chart は超短期のタイムフレームでも高い精度と遅延なく作業できるように設計されています。 Seconds Chartの利点 1秒から900秒 までのタイムフレームをサポート。 瞬時の読み込み MT5ターミナルからのティックデータベースのインポートにより、過去データを即時利用可能。 MT5ターミナルで「 Tick Database 」ユーティリティを最初に起動する必要があります。 リアルタイムでデータが更新され、 遅延やラグなし 。 複数の秒足チャートを同時に作成可能。 Seconds Chartが最適な用途 スキャルピング
    Exp4 Duplicator
    Vladislav Andruschenko
    4.5 (22)
    Expert Advisor は 、アカウントMetaTrader 4で 取引を繰り返し、ポジションを設定するか、事前に設定された回数だけシグナルを送信します。 手動または別のエキスパートアドバイザーによって開かれたすべての取引をコピーします。 ポジションをコピーし、ポジションに基づいてロットを増やします! 他のEAの多くを増やします。 次の機能がサポートされています:コピーされた取引のカスタムロット、ストップロスのコピー、テイクプロフィット、トレーリングストップの使用。 MT5のバージョン 完全な説明 +DEMO +PDF 購入する方法 インストールする方法     ログファイルの取得方法     テストと最適化の方法     Expforex のすべての製品 リンク MetaTraderのトレードコピー機はこちらから入手できます:   COPYLOT 注意 注:これは、端末間の取引用のコピー機ではありません。 ストラテジーテスターでエキスパートアドバイザーをテストし、ビジュアルモードでEAPADPROツールバーと取引することができます! EAを1つの通貨ペアにインストールす
    MicroScalp Signal Finder マルチシンボル・マルチタイムフレーム スマートマネー スキャルピングシグナルスキャナー (MetaTrader 5) スキャルピングには、複数の銘柄にわたる精密なタイミングと多層的な分析が必要です。市場構造、オーダーブロック、フェアバリューギャップ、流動性スイープ、モメンタム確認を同時に追跡することは、手動ではほぼ不可能な作業です。 MicroScalp Signal Finder(MSF)は、5つのタイムフレーム(H4-H1-M15-M5-M1)にわたって最大20銘柄を同時スキャンし、厳格な5層スマートマネーコンセプト分析を適用します。トレンド、構造、関心ポイント、モメンタム、エントリーパターンがすべて一致した場合にのみ、正確なエントリー、ストップロス、3段階のテイクプロフィットレベルを含むスコア付きシグナルを生成します。 手動作業なしで機関レベルの分析を求めるFX、暗号通貨、指数のスキャルパー向けに設計されています。各シグナルにはコンフルエンススコア(0-18)が付与され、最も確率の高いセットアップに集中できます。 詳細はこちら:
    これは、トレンドラインPROインジケーターの自動パラメータオプティマイザです 簡単かつ迅速に、あなたのお気に入りのトレンドラインプロインジケーターに最適なパラメータを選択します。 最適化には数秒しかかかりません。 オプティマイザでは、振幅、TP1-TP3、StopLoss、および選択した履歴セクション(日)の時間フィルタとHTFフィルタの値など、各ペアと期間に最適なパラメータを見つ 異なる時間枠を最適化するには、異なる範囲の履歴が必要です: M5-M15計算範囲パラメータ(日)=60(三ヶ月)を設定します。 M30-H1計算範囲パラメータ(日)=120(6ヶ月)を設定します。 H4パラメータの計算範囲(日数)を設定する=240(1年) D1-W1パラメータ計算範囲(日)=720(三年)を設定します。 MN1パラメータ計算範囲(日)=1200(五年)を設定します。 最適化後、パラメータはmql4>Files>T R E N D Lineoptimizedsettingsフォルダ内の既製のセットファイルに自動的に保存されます オプティマイザユーティリティの使用方法: 最適化
    MT4 to Telegram Signal Provider は使いやすく、完全にカスタマイズ可能なツールで、Telegramに信号を送信し、あなたのアカウントを信号提供者に変えることができます。 メッセージのフォーマットは 完全にカスタマイズ可能です! しかし、簡単な使用のために、あらかじめ定義されたテンプレートを選択し、メッセージの特定の部分を有効または無効にすることもできます。 [ デモ ]   [ マニュアル ] [ MT5バージョン ] [ Discordバージョン ] [ Telegramチャンネル ]  New: [ Telegram To MT5 ] セットアップ ステップバイステップの ユーザーガイド が利用可能です。 Telegram APIの知識は必要ありません。開発者が必要なものをすべて提供します。 主要機能 購読者に送信される注文の詳細をカスタマイズする機能 例えばブロンズ、シルバー、ゴールドなど、階層型のサブスクリプションモデルを作成できます。ゴールドサブスクリプションでは、すべての信号が得られますなど。 ID、シンボル、またはコメントによる注文のフ
    Crystal Trade Manager PRO – MT4向け 高度リスク管理・トレードコントロールシステム 無料版: https://www.mql5.com/en/market/product/150632 概要 Crystal Trade Manager PRO(CTM)は、MetaTrader 4 のために設計された、プロフェッショナル向けのリスク管理および取引管理ユーティリティです。 厳密な執行、強力な資金保護、高度な自動化を必要とするトレーダーのために構築されています。 本システムは、リスク管理、エクイティ保護、日次制限、SL/TP の自動設定を行い、プロレベルの高速ワンクリック取引パネルを提供します。 Prop Firm チャレンジ、デイトレード、スキャルピング、資金運用者に最適です。 MT5版も利用可能です。 主な特徴 1. 高度なリスク・ドローダウン保護 日次ドローダウン上限を 1%〜70% の範囲で設定可能。 上限超過時、 全てのポジションを即時クローズ 。 オプションで 全ての保留注文(Pending Orders)を自動削除 。 日次ロックアウトモード:翌日
    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 MT5 Demo.
    Basket EA MT4
    Juvenille Emperor Limited
    5 (5)
    Basket EA MT4 は、強力な利益収穫ツールであり、包括的な口座保護システムがシンプルで使いやすい形で統合されたソリューションです。その主な目的は、すべてのポジションを個別管理ではなく“バスケットレベル”で一括管理することで、口座全体の損益を完全にコントロールすることにあります。EAは、テイクプロフィット、ストップロス、ブレイクイーブン、トレーリングストップといったバスケットレベルの機能を備えており、これらを口座残高の%/口座通貨の固定額/管理対象取引の平均ポイントといった形で設定できます。この柔軟性により、トレーダーは個々のリスクと利益戦略を自分に合わせてカスタマイズできます。さらに、 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
    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
    投資利益がもうかるように、mql5.comというウエブサイトでシグナルを借りている場合、リスクを避ける為に、このシグナルから貰ったMT4ソフトでのロットサイズは制限される。注文サイズは小さすぎるので投資利益も少なくなる。 これは投資利益増加の為に注文サイズを増やす工具である。この工具をもってオリジンル注文から注文を自動的にコピーされる。コピー注文のサイズはは乗数サイズであり、テクニカル指標に応じる。注文開閉プロセスはすべてオリジナル注文に基づき、自動的に実施される。又、損失止め価値及び利益取り価値も自動的にコピーされる。 例えば サイズを3倍増やしたい場合 オリジナル注文(シグナル提供者からもらった):0.01ロット コピー注文(工具で作られたコピー注文):0.02ロット ロット乗数でテクニカル指標設定:2 注文ロットの合計:: 0.01 + 0.01 * 2(ロット乗数)=0.03 ロット そうすると、ロット注文サイズは0.01 から 0.03に増えた。 留意 この工具は一つパソコン/Vps、一つウィンドウズ及び一つチャート/一つ口座しか設定されない。また、工具はすべての通貨コード
    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の場合、値ロットが使用されます 取引のためのロット固定ボリューム UseTakeProfitは、サイトから利益を取る使用します 当サイトからのご利用停止のご案内 F r e c h encysignalupdateinminute顧問のサイトへの訪問頻度を指定します MaximumSpreadFo
    作者のその他のプロダクト
    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
    フィルタ:
    レビューなし
    レビューに返信