Position Manager Pro MT5

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 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_MT5.mq4 to your MetaTrader 4 Experts folder: [MT5 Data Folder] → MQL5 → Experts
    2. Restart MetaTrader 5 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 5 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

    • 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 MT5 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.

    おすすめのプロダクト
    Trailing Stop Manager v1.0 — MT5 Expert Advisor Advanced Multi-Mode Trailing Stop for MetaTrader 5 What Is It? Trailing Stop Manager automatically moves your Stop Loss to protect profits as price moves in your favor. Unlike MT5's built-in trailing stop (which only has one mode), this EA offers 4 professional trailing methods that adapt to different trading styles and market conditions. Works on ALL symbols. Attach to any chart and it manages all matching positions. *** Group support:  https://ww
    FREE
    The indicator IQuantum shows trading signals for 10 symbols in the daily chart: AUDCAD, AUDUSD, EURUSD, GBPCAD, GBPCHF, GBPUSD, NZDUSD, USDCAD, USDCHF, and USDJPY. Signals of the indicator are produced by 2 neural models which were trained independently from one another. The inputs for the neural models are normalised prices of the symbols, as well as prices of Gold, Silver and markers of the current day. Each neural model was trained in 2 ways. The Ultimate mode is an overfitted neural model
    FREE
    Basic Theme Builder: チャートカスタマイズを簡単に Basic Theme Builder インジケーターで、MetaTrader 5   のチャート外観のカスタマイズをシンプルに変革しましょう。この直感的なインジケーターは、使いやすいパネルを提供し、さまざまなテーマやカラースキームを簡単に切り替えることができます。これにより、取引環境の視覚的な魅力と機能性が向上します。 Free MT4 version Basic Theme Builder インジケーターは、MetaTrader 5 のチャートを簡単にパーソナライズしたいトレーダーに最適なツールです。シンプルなパネルインターフェースとさまざまなテーマプリセットを使用して、取引スタイルや気分に合わせてチャートの外観をすぐに調整できます。クラシックなルックからモダンな美学まで、多彩なオプションを提供する Basic Theme Builder で、視覚体験を最適化しましょう。 主な機能: 簡単なテーマ管理: 便利なパネルインターフェースを使用して、ワンクリックでチャートのテーマを素早く変更できます。 定義済みのプ
    FREE
    Basket Take-Profit Utility Lite   is a free on-chart trade management tool for MetaTrader 5 that lets you close groups of trades the moment their   combined profit target   is reached — something MetaTrader cannot do natively. All settings are controlled directly from the interactive panel on your chart. No need to detach and re-attach the EA to change your target. Features: Group trades   by: All open positions · Specific symbol · Magic number Three target types   selectable from the panel: - F
    FREE
    [ マイプロダクト ] , [ マイチャンネル ] OMG Trading Panel スマートフォンからトレードパネルを直接操作できるようになりました。MQL VPSにOMG Trading Toolをインストールすれば、パネルを24時間稼働させながら、モバイル版MetaTrader 5アプリで快適にトレードできます。 また、2つの便利な戦略「スマート・マージン・プロテクション(証拠金保護)」と「グリッド戦略」も追加しました。価格下落時に作動するアラートを設定することも可能です。 主な機能 モバイル版MT5によるリモートコントロール スマートフォンを使って、どこからでもトレードツールの操作が可能です!注文のコメント欄に特別なコマンドを入力して待機注文(予約注文)を出すだけで、ツールが自動的に指示を実行します。柔軟性と機動力を求めるトレーダーに最適です。 コマンド例: omg auto- オートモードのON/OFF切り替え omg auto on - オートモードを有効化 omg auto off - オートモードを無効化 omg profit X - 利確(TP)金額をXドルに設定
    FREE
    Introducing the ZigZag Profile — a powerful tool designed to identify high-probability pivot zones where price action frequently reverses. This indicator analyzes historical price data to pinpoint key areas where price has pivoted multiple times, providing traders with actionable insights into potential support and resistance levels. The ZigZal Profile  indicator continuously scans for zones where price has reversed direction the most, highlighting these critical areas on your chart. By focusing
    FREE
    The DD_Profit_Monitor MT5  indicator is a trading tool developed by the Dagangduit Core Team . This indicator is designed to monitor profits in real-time with the following key features: All Time Profit : Displays the total profit earned since the beginning of the trading account's usage. This feature helps traders see the overall performance of their trading activities. Daily Profit : Displays daily profits, allowing traders to monitor their daily performance more specifically. Key Features: Al
    Ruhm Regime
    Syamsurizal Dimjati
    RUHM REGIME (TF M1) This Expert Advisor (EA) is provided   FREE OF CHARGE for testing and educational purposes only . It is   NOT recommended for use on live (real) trading accounts . Codebase for sale: $100 Contact me. == Contains 2 .mqh files and 1 .mq5 file If you choose to use this EA on a real account,   all risks, losses, and consequences are entirely your own responsibility . The developer assumes no liability for any financial loss. ##   Test on XAU/GOLD | RAW Account (not suitable for
    FREE
    Logarithmic chart in new window You can use both chart as half or full window All features are active in both arithmetic and logarithmic charts Magnet in arithmetic  chart is standard metatrader magnet in logarithmic chart magnet have two modes: first mode only select high or low, if this mode is enabled, you can set how many candles will be search before and after to find the highest or lowest points second mode select the closest point of the candle to click, its choose between 4 points (High,
    FREE
    The Arbitrage365 EA is a basic script for MetaTrader that implements a triangular arbitrage strategy. It identifies and exploits price discrepancies between EURUSD, GBPUSD, and EURGBP to profit from temporary market mispricing. This EA capitalizes on the law of one price by simultaneously buying and selling currency pairs. Its advantages include speed, accuracy, scalability, consistency, cost-effectiveness, contribution to market liquidity, and portfolio diversification. However, it's a basic E
    FREE
    SuperTrend Indicator – Description & Important Notice The SuperTrend is a composite technical indicator designed to help you identify the primary trend, measure its strength, and assess signal quality. However, an indicator is only a tool —it’s never 100% accurate and cannot replace sound risk management. 1. Core Formula & Components ATR (Average True Range): measures price volatility; customize sensitivity via Periods and Multiplier . Upper/Lower Bands: derived from ATR and your chosen source p
    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.   "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_Profit = 800; // __Take Profit [point]  Stop_Loss = 650; //  __Stop L
    FREE
    Quick Close 1S は、迅速かつ整理されたトレード管理のために設計されたユーティリティです。シンプルなコントロールパネルから即座に注文を開閉し、柔軟な SL/TP 設定を適用し、バスケット目標を管理し、全体の損益をコントロールできます。精度・効率・明確な執行を重視するトレーダーに適しています。 主な機能 簡潔なトレード管理:直感的なパネルから、特定タイプまたは全ての注文を開閉可能。 柔軟な SL/TP 設定:固定またはローソク足ベースの SL/TP を、注文ごとまたは全バスケットに適用。 バスケット目標 & トレーリングストップ:ポイント単位でバスケットTPを設定し、カスタマイズ可能なトレーリングストップでポジションを維持。 グローバルリスク管理:指定した利益または損失レベル(通貨または%)に達すると全注文を自動決済。 カスタマイズ可能なインターフェース:Magic Number、スリッページ制限、クリック音を設定可能。 このユーティリティをご利用いただきありがとうございます。便利だと感じられた場合は、開発者の努力を評価するために前向きな評価をいただけると幸いです。本ツールは
    FREE
    Crimson FX
    Michael Prescott Burney
    Crimson EA emerges as a force to be reckoned with on the USDJPY M15 chart, embodying the perfect fusion of 50 meticulously crafted strategies that span across trend analysis, hedging, and scalping disciplines. This powerhouse operates beyond the confines of conventional stop-loss and take-profit mechanisms, relying instead on precise entry and exit signals generated from its strategic arsenal. Coupled with an advanced reversal function, Crimson EA offers a protective shield to safeguard invest
    FREE
    リスクベースのポジション管理機能を備えたトレードマネージャー このエキスパートアドバイザーは、MetaTrader 5チャート上でのポジションの計画、管理、コントロールを支援するために設計された、手動のトレード管理ツールです。 本製品は、取引シグナルを生成したり、独自の取引判断を行ったりすることはありません。すべてのエントリーは、ユーザーまたは他のエキスパートアドバイザーによって手動で開始されます。このツールは、ポジションサイジング、取引管理、および執行支援に特化しています。 主な機能 事前定義されたリスク量に基づく手動ポジションサイジング エントリー価格とストップロスを使用した自動ロット計算 エントリー、ストップロス、テイクプロフィットレベルを視覚的に確認できる取引プランニング パーセンテージベースの目標値を使用した部分決済管理 オープンポジションの損益分岐点設定機能 手動でオープンしたポジションとの同期 同一銘柄における複数のオープンポジションのサポート アクティブな取引に影響を与えることなく、時間枠の変更を安全に処理 重要なアクションを音声で通知するオプシ
    FREE
    TradeDock Pro (MT5) — One-Click Trade Manager Panel TradeDock Pro is a sleek and professional one-click trade panel for MetaTrader 5 designed for fast manual execution and simple trade management. Built for traders who want a clean interface, quick order placement, and essential management tools — without complicated settings or typing. Can be used on any market. KEY FEATURES One-Click BUY / SELL Lot size control on chart (0.01 – 99.99) SL toggle + SL in points TP toggle + TP in points Trailing
    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 sizes c
    Trading Co-Pilot for MetaTrader 5 Advanced Position Management for Manual Traders Trading Co-Pilot is a professional trade management assistant designed for traders who open positions manually and want precise, automated control over risk and profit handling. It does not open trades. It manages them intelligently. You focus on entries. The Co-Pilot protects and optimizes the exit. How It Works Once you open a manual position, Trading Co-Pilot automatically: • Applies Stop Loss • Sets Take Profit
    FREE
    Bonus when buying an indicator or an advisor from my list. Write to me in private messages to receive a bonus. Manual Assistant MT5 is a professional manual trading tool that will make your trading fast and comfortable. It is equipped with all the necessary functions that will allow you to open, maintain and close orders and positions with one click. It has a simple and intuitive interface and is suitable for both professionals and beginners. The panel allows you to place buy and sell orders w
    FREE
    損益分岐点レベルを自動的に設定するためのユーティリティで、指定された距離を通過するときに取引を損益分岐点に転送します。リスクを最小限に抑えることができます。トレーダーのためにプロのトレーダーによって作成されました。ユーティリティは、トレーダーが手動で、またはアドバイザーを使用して開いたすべての成行注文で機能します。魔法数で取引をフィルタリングできます。ユーティリティは、同時に任意の数の注文を処理できます。 MT4バージョン https://www.mql5.com/en/market/product/57076 ユーティリティでできること: 1ピップから仮想ブレークイーブンレベルを設定 損益分岐点の実際のレベルを設定する 各注文を個別に処理します(ブレークイーブンレベルは注文ごとに個別に設定されます) 一方向注文のバスケットで作業します(損益分岐レベルはすべての注文に共通に設定され、購入と販売は別々に設定されます) 双方向注文のバスケットを操作します(ブレークイーブンレベルはすべての注文に共通に設定されており、一緒に購入と販売を行います) テストと作業には、チャートのボタンを使
    Gap Catcher
    Mikita Kurnevich
    5 (4)
    Read more about my products 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
    BlueArmor ETH V2 Sample – FREE Version! BlueArmor ETH V2 – Sample Version is a high-performance Expert Advisor designed for ETHUSD trading on the H1 timeframe. Engineered for intraday and swing strategies, this EA combines robust backtesting optimized using ICMarkets data with adaptive risk management to cater to both assertive and conservative traders. This sample edition includes an   adjustable trailing stop loss , empowering you to lock in profits with precision and flexibility. To encour
    FREE
    MAFX Trading Manager
    Mark Anthony Noblefranca Nazarrea
    5 (1)
    MAFX Trading Manager MetaTrader 5 用 プロフェッショナル手動トレード管理パネル 製品概要 MAFX Trading Manager は、MetaTrader 5 用に設計された プロフェッショナルな手動トレード管理パネルです。 高速な注文執行と必要なトレード管理機能を、 コンパクトで使いやすいインターフェースで提供します。 本製品は、自動売買やシグナルに頼らず、 より高いコントロール性、スピード、一貫性を求める 手動トレーダー向けに設計されています。 主な特長 MT5の注文画面を開かずにワンクリックでBuy / Sell Stop Loss と Take Profit の統合管理 部分決済およびブレイクイーブン機能 チャートを妨げないコンパクトなパネル 軽量で安定したパフォーマンス スキャルピング、デイトレード、裁量取引に最適 XAUUSD(ゴールド)および BTC 向けに最適化された初期設定 継続的なメンテナンスとアップデート 主な機能 成行 Buy / Sell 実行 ロットサイズ調整 Stop Loss / Take Profit 管理 オフセッ
    FREE
    All-in-One MT5 Trading Panel EA Take full control of your trades directly from the chart using this intuitive and efficient MetaTrader 5 Expert Advisor. Built for precision, speed, and simplicity, this EA provides a fully integrated trading panel to manage your positions without navigating multiple menus. Key Features Instant Order Execution Place trades instantly with six predefined buttons: BUY 0.5 – Open a buy position with 0.5 lot BUY 1.0 – Open a buy position with 1.0 lot BUY 2.0 – Open a
    FREE
    Magic Order Manager EA v1.02 - Professional Trading Assistant Smart Position Management Tool with Auto Take Profit System Product Description Magic Order Manager is a professional-grade Expert Advisor designed to optimize trading profits through smart automation and risk control. This position management tool provides automated profit taking based on customizable rules while maintaining comprehensive risk monitoring. Key Features Intelligent Auto Take Profit Automatically closes all positions wh
    FREE
    BTC Scalper - Automated RSI Breakout Strategy for BTCUSD Unlock the power of automated trading with BTC Scalper! This expert advisor is a fully autonomous trading strategy, designed to capitalize on fast-moving BTCUSD markets. It leverages a potent combination of RSI Breakouts and two Exponential Moving Averages (EMA) to find high-probability trade entries, ensuring optimal confluence for success. Key Features: Fully Automated Trading : Set it, forget it, and let BTC Scalper handle your trades 2
    FREE
    "Are you tired of losing money on unsuccessful trades? Look no further than EA Trailing Stop! Our program is designed to help you prevent losses and control your trades efficiently. With features such as adjustable stop loss and more, you can rest assured that your trades are in good hands. Don't wait any longer to start making successful trades. Try EA Trailing Stop today!" You can use this as a starting point and tailor it to your audience and the platform you're using. This EA Trailing Stop
    FREE
    Account Risk Monitor and Drawdown Alerts Account Risk Monitor and Drawdown Alerts is a lightweight non-trading utility for MetaTrader 5 designed to help traders stay aware of account risk conditions in real time. This tool does not open, modify, or close trades. It is strictly a monitoring and alert system. What It Monitors • Daily total profit and loss • Maximum drawdown from peak equity • Margin level percentage • Current spread (in points) • Total open positions • Floating profit/loss When a
    FREE
    Profit & Loss Display - MT5 Panel On chart panel to display profit and loss per product over specified time period.  * current version only shows p/l for ea with magic not manual trades Note this is a panel, not an indicator or algorithm, it simply displays profit and loss from account history //---- Install ----// After download, attach indicator to chart from the markets folder which is in navigator window (Cntrl N) //---- Study ----// Set target profit for product per week/specified peri
    FREE
    Bundle Risk Manager Pro EA "Risk Manager Pro EA is an all-in-one trading utility that combines advanced risk management tools, ensuring full control over your trading account while protecting your capital and complying with trading regulations. By bundling Limit Positions , Concurrent Risk Capital , and the newly added Limit Profit , this EA is the ultimate solution for disciplined trading and achieving evaluation goals. Key Features: 1. Limit Positions : Enforces a maximum number of open posi
    FREE
    このプロダクトを購入した人は以下も購入しています
    Trade Assistant MT5
    Evgeniy Kravchenko
    4.42 (208)
    取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 7 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 追加の資料と説明書 インストール手順   -   アプリケーションの手順   -   デモアカウント用アプリケーションの試用版 ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、 リスク 計算 の 種類 を 選択 します :「 $ 通
    Trade Manager EAへようこそ。これは、取引をより直感的、正確、そして効率的にするために設計された究極の リスク管理ツール です。これは単なるオーダー実行ツールではなく、包括的な取引計画、ポジション管理、リスク管理のためのソリューションです。初心者から上級者、迅速な実行を必要とするスキャルパーまで、Trade Manager EAはあらゆるニーズに対応し、為替、指数、商品、暗号通貨などさまざまな市場で柔軟に対応します。 Trade Manager EAを使用すると、複雑な計算が過去のものになります。市場を分析し、エントリーポイント、ストップロス、テイクプロフィットのレベルをチャート上のラインでマークし、リスクを設定するだけで、Trade Managerが最適なポジションサイズを即座に計算し、SLとTPをピップ、ポイント、口座通貨でリアルタイムに表示します。すべての取引が簡単かつ効果的に管理されます。 主な機能: ポジションサイズ計算機 :定義されたリスクに基づいて取引サイズを瞬時に決定します。 簡単な取引計画 :エントリー、ストップロス、テイクプロフィットを設定するためのド
    Local Trade Copier EA MT5
    Juvenille Emperor Limited
    4.96 (131)
    Local Trade Copier EA MT5 による、驚くほど高速な取引コピーを体験してください。1分で簡単にセットアップできるこの取引コピー機は、同じWindowsコンピュータまたはWindows VPS上の複数のMetaTrader端末間で取引をコピーすることができ、0.5秒未満の高速コピースピードを実現します。 初心者であろうとプロのトレーダーであろうと、 Local Trade Copier EA MT5 には、あなたの特定のニーズに合わせてカスタマイズするための幅広いオプションが用意されています。これは、利益の可能性を高めたい人にとって究極のソリューションです。 今すぐ試してみて、これが市場で最も速くて簡単なトレードコピー機である理由を理解してください。 ヒント: デモアカウントで Local Trade Copier EA MT5 デモバージョンをダウンロードして試すことができます: ここ ダウンロードした無料のデモ ファイルを MT5 >> ファイル >> データ フォルダを開く >> MQL5 >> Experts フォルダに貼り付けて、ターミナルを再起動しま
    TradePanel MT5
    Alfiya Fazylova
    4.87 (149)
    Trade Panelは多機能なトレーディングアシスタントです。アプリには手動取引用の50以上のトレーディング機能が搭載されており、ほとんどの取引作業を自動化することができます。 購入前に、デモアカウントでアプリのデモ版をテストすることができます。デモアカウント用のアプリの試用版をダウンロードするには、次のリンクをご利用ください: https://www.mql5.com/en/blogs/post/750865 。 完全な手順 こちら 。 取引。 ワンクリックで取引操作を行うことができます: リスクを自動計算して指値注文やポジションを開く。 複数の注文やポジションをワンクリックで開く。 注文のグリッドを開く。 保留中の注文やポジションをグループごとに閉じる。 ポジションの方向を反転(Buyを閉じてSellを開く、またはSellを閉じてBuyを開く)。 ポジションをブロックする(不足している量のポジションを開くことでBuyとSellのポジション量を等しくする)。 すべてのポジションを部分的にワンクリックで閉じる。 すべてのポジションの利食い(Take Profit)および損切り(Sto
    ベータリリース Telegram to MT5 Signal Trader はまもなく正式なアルファ版をリリースします。いくつかの機能はまだ開発中で、小さな不具合に遭遇する可能性があります。問題が発生した場合はぜひご報告ください。皆さまのフィードバックがソフトウェア改善に役立ちます。 Telegram to MT5 Signal Trader は、 Telegram のチャンネルやグループからの取引シグナルを自動的に MetaTrader 5 にコピーする強力なツールです。 パブリックおよびプライベートの両方のチャネルに対応し、複数のシグナル提供元を複数のMT5口座に接続可能です。ソフトウェアは高速で安定し、すべての取引を細かく制御できます。 インターフェースは直感的で、ダッシュボードとチャートは見やすく設計されており、リアルタイムで動作状況をモニターできます。 必要環境 MQL の制限により、EA は Telegram と通信するためのデスクトップアプリが必要です。 インストーラーは公式の インストールガイド にあります。 主な機能 マルチプロバイダー: 複数の Telegram
    VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https://www.mql5.com/en/signals/2356404 - Farmed Hedge Yield V Copy:  https://www.mql5.com/en/signals/2357156 Contact me via private message to receive the User Manual and Setup. * Thai Lauguage Support Available Farmed Hedge Yield Farming - Professional Pair Trading Dashboard (Manual - Hybrid - Semi/Automated EA) VERSION 3 - WILD HARVEST UPDATE Trading Approac
    Copy Cat More Trade Copier MT5 (コピーキャット MT5) は、今日の取引課題に対応して設計されたローカルトレードコピーシステムと完全なリスク管理・実行フレームワークです。プロップファームのチャレンジから個人ポートフォリオ管理まで、堅牢な実行、資本保護、柔軟な設定、高度な取引処理の組み合わせで、あらゆる状況に適応します。 コピーシステムはマスター(送信側)とスレーブ(受信側)の両方のモードで動作し、成行注文と指値注文、取引修正、部分決済、両建て決済操作のリアルタイム同期を行います。デモ口座とライブ口座、取引ログインまたは投資家ログインの両方に対応し、EA、ターミナル、またはVPSが再起動してもパーシスタント取引メモリシステムを通じて復旧を保証します。複数のマスターとスレーブをユニークIDで同時に管理でき、ブローカー間の違いはプレフィックス/サフィックス調整またはカスタムシンボルマッピングを通じて自動的に処理されます。 マニュアル/設定  | Copy Cat More MT4 | チャンネル  特別機能: 設定が簡単 — わずか30秒で完了(ビデオをご覧
    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
    この製品は、ニュースタイム中にすべてのエキスパートアドバイザーと手動チャートをフィルタリングするため、急激な価格変動によるマニュアルトレードのセットアップの破壊や他のエキスパートアドバイザーによって入力された取引について心配する必要はありません。この製品には、ニュースのリリース前にオープンポジションとペンディングオーダーを処理できる完全な注文管理システムも付属しています。 The News Filter  を購入すると、将来のエキスパートアドバイザーのためにビルトインのニュースフィルターに頼る必要はなく、今後はすべてのエキスパートアドバイザーをここからフィルタリングできます。 ニュース選択 ニュースソースは、Forex Factoryの経済カレンダーから取得されます。 USD、EUR、GBP、JPY、AUD、CAD、CHF、NZD、CNYなど、任意の通貨数に基づいて選択できます。 Non-Farm(NFP)、FOMC、CPIなどのキーワード識別に基づいて選択することもできます。 影響レベルによってフィルタリングするニュースを選択することができ、低、中、高の影響範囲から選択できます。
    Exp COPYLOT CLIENT for MT5
    Vladislav Andruschenko
    3.82 (34)
    MT5のトレードコピー機は、МetaТrader5プラットフォームのトレードコピー機です 。 それは間の 外国為替取引をコピーします   任意のは 、MT5 - MT5、MT4 - MT5   COPYLOT MT5版の アカウント (またはを MT4 - MT4   MT5 - MT4   COPYLOT MT4版用) 信頼できるコピー機! MT4のバージョン 完全な説明   +DEMO +PDF 購入する方法 インストールする方法     ログファイルの取得方法     テストと最適化の方法     Expforex のすべての製品 МТ4ターミナルでトレードをコピーすることもできます(   МТ4   -   МТ4、МТ5   -   МТ4   ):   MT4のCOPYLOT CLIENT このバージョンには、端末間 МТ5   -   МТ5、МТ4   -   МТ5が含まれ ます。 ディールコピー機は、2/3/10端末間でディール/ポジションをコピーするために作成されます。 デモ口座と投資口座からのコピーがサポートされています。 プログラムは、複数の端末バインデ
    Trade copier MT5
    Alfiya Fazylova
    4.56 (39)
    Trade Copierは、取引口座間の取引をコピーして同期するように設計された専門的なユーティリティです。 コピーは、同じコンピューターまたはvps にインストールされている、サプライヤーのアカウント/端末から受信者のアカウント/端末に行われます。 購入する前に、デモ アカウントでデモ バージョンをテストできます。 デモ版 こちら 。 詳細な説明は こちら 。 主な機能と利点: MT5ネッティングアカウントを含む、MT5> MT5、MT4> MT5、MT5> MT4のコピーをサポートします。 高いコピー速度(0.5秒未満)。 ベンダーモードと受信者モードは同じ製品内に実装されています。 チャートから直接リアルタイムでコピーを制御できる、簡単で直感的なインターフェイス。 接続が切断されたり、端末が再起動されたりしても、設定と位置が失われることはありません。 コピーするシンボルを選択できます。また、受信者のシンボルを置き換えることもできます(例:EURUSD> USDJPY)。 バックコピーをサポートします。 特定の注文のみのコピーを有効にする機能。 取引開始価格の最大差と最大遅延時間を
    あなたがメンバーである任意のチャネルから(プライベートおよび制限されたものを含む)シグナルを直接あなたのMT5にコピーします。  このツールは、トレードを管理し監視するために必要な多くの機能を提供しながら、ユーザーを考慮して設計されています。 この製品は使いやすく、視覚的に魅力的なグラフィカルインターフェースで提供されています。設定をカスタマイズして、数分で製品を使用を開始できます! ユーザーガイド + デモ  | MT4版 | Discord版 デモを試してみたい場合は、ユーザーガイドにアクセスしてください。 Telegram To MT5 受信機は、ストラテジーテスターで動作しません! Telegram To MT5の特徴 複数のチャネルから一度にシグナルをコピー プライベートおよび制限されたチャネルからシグナルをコピー BotトークンまたはChat IDは必要ありません   (必要に応じて使用することができます) リスク%または固定ロットを使用して取引 特定のシンボルを除外 すべてのシグナルをコピーするか、コピーするシグナルをカスタマイズするかを選択 すべてのシグナルを認
    Ultimate Extractor - Professional Trading Analytics for MT5 *****this is the local HTML version of Ultimate Extractor. For the online version please reach out to me directly****** Ultimate Extractor transforms your MetaTrader 5 trading history into actionable insights with comprehensive analytics, interactive charts, and real-time performance tracking. What It Does Automatically analyzes your MT5 trading history across all Expert Advisors and generates detailed HTML reports with interactive vi
    Smart Stop Manager – プロレベルの精度でストップロスを自動実行 概要 Smart Stop Manager は Smart Stop ラインナップの「実行レイヤー」であり、複数ポジションを持つトレーダーのために構築された、構造化された信頼性の高い完全自動ストップロス管理システムです。すべての保有中ポジションを継続的に監視し、Smart Stop のマーケットストラクチャー・ロジックを用いて最適なストップレベルを計算し、明確で透明性のあるルールに従ってストップを自動更新します。 単一の銘柄から複数銘柄のポートフォリオ全体まで、Smart Stop Manager は各トレードに規律、安定性、そして完全なリスク可視化をもたらします。感情的判断を排除し、手作業を大幅に削減し、すべてのストップが常に市場構造に基づいた論理的なプロセスに従うことを保証します。 ハイライト マーケットストラクチャーに基づく自動ストップ配置 • Smart Stop ロジックに基づき、各オープンポジションへ最適なストップロスを自動適用します。 ポートフォリオ全体を一目で把握 • 銘柄、方向
    Seconds Chart - MetaTrader 5で秒足チャートを作成するユニークなツールです。 Seconds Chart を使用すると、秒単位のタイムフレームでチャートを構築でき、標準的な分足や時間足チャートでは得られない柔軟性と分析精度を実現します。例えば、 S15 は15秒足を表します。カスタムシンボルをサポートしているインジケーターやEAをすべて使用できます。標準的なチャートと同様に便利に操作できます。 標準的なツールとは異なり、 Seconds Chart は超短期のタイムフレームでも高い精度と遅延なく作業できるように設計されています。 Seconds Chartの利点 1秒から900秒 までのタイムフレームをサポート。 組み込みのティックデータベースにより、ヒストリカルデータを 瞬時にロード 。 リアルタイムでデータが更新され、 遅延やラグなし 。 複数の秒足チャートを同時に作成可能。 Seconds Chartが最適な用途 スキャルピング や高頻度取引。 正確なエントリーとエグジット。 短期タイムフレームでの取引戦略のテスト。 タイムフレームの設定 デフォルトの設
    Timeless Charts
    Samuel Manoel De Souza
    5 (3)
    Timeless Charts is an advanced charting solution designed for professional traders seeking for custom charts / custom timeframes , including seconds charts / seconds timeframe, renko charts / renko bars, cluster charts / footprint charts and advanced tools present in most of the popular platforms. Unlike traditional offline charts or simplistic custom indicators, this solution constructs fully custom bars with true timestamp accuracy , down to miliseconds, allowing for a powerful and precise tr
    MT5 to Telegram Signal Provider は、Telegramのチャット、チャンネル、またはグループに 指定された シグナルを送信することができる、完全にカスタマイズ可能な簡単なユーティリティです。これにより、あなたのアカウントは シグナルプロバイダー になります。 競合する製品とは異なり、DLLのインポートは使用していません。 [ デモ ] [ マニュアル ] [ MT4版 ] [ Discord版 ] [ Telegramチャンネル ]  New: [ Telegram To MT5 ] セットアップ ステップバイステップの ユーザーガイド が利用可能です。 Telegram APIの知識は必要ありません。必要な全ては開発者から提供されます。 主な特長 購読者に送信する注文の詳細をカスタマイズする機能 例えば、Bronze、Silver、Goldといった階層型のサブスクリプションモデルを作成できます。Goldサブスクリプションでは、すべてのシグナルが提供されます。 id、シンボル、またはコメントによって注文をフィルターできます 注文が実行されたチャート
    Smart Stop Scanner – マルチアセット対応の市場構造型ストップロス分析システム 概要 Smart Stop Scanner は、複数の市場にわたるストップロス構造をプロフェッショナル品質で監視するために設計されたツールです。 実際の市場構造、重要なブレイクアウト、価格アクションロジックに基づいて最も意味のあるストップゾーンを自動的に検出し、 高精細(DPI対応)で見やすい統一パネルに表示します。 Forex、ゴールド、インデックス、メタル、暗号資産など幅広い市場に対応しています。 ストップレベルの算出方法 従来型のインジケーターや任意の計算式は使用していません。 代わりに、 ブレイクアウト、より高い高値、より低い安値 といった実際の市場構造イベントを検出します。 ストップレベルはこれらの構造ポイントから直接生成されるため、より自然で信頼性が高く、 実際の市場動向に即したストップ設定が可能になります。 主なハイライト • 高精度のマルチアセット対応 Forex、メタル、ゴールド、インデックス、暗号資産など、幅広い銘柄をサポートし、桁数やティックサイズを自動処
    HINN MAGIC ENTRY – the ultimate tool for entry and position management! Place orders by selecting a level directly on the chart! full description   ::  demo-version  :: 60-sec-video-description Key features: - Market, limit, and pending orders - Automatic lot size calculation - Automatic spread and commission accounting - Unlimited partitial take-profits  - Breakeven and trailing stop-loss and take-profit  functions - Invalidation leves - Intuitive, adaptive, and customizable interface - Works
    MT5用 Stats Dashboard & Journal ULTRA 完全なトレーディングコマンドセンター:分析、自動化、ニュースインテリジェンス。 Stats Dashboard ULTRAは、Pro分析ツールの究極の進化形です。MetaTrader 5をプロフェッショナルなトレーディングステーションに変え、機関投資家レベルのパフォーマンス分析と、自動化されたニュース保護、高度な心理的指標を組み合わせます。完全なコントロールを求める裁量トレーダーやEAポートフォリオマネージャー向けに設計されています。 ULTRAバージョンの新機能 ニュースインテリジェンスエンジン: ニュースを見るだけでなく、分析します。過去のニュースイベントが保有中のトレードにどう影響したかをシミュレーションし、ポジションを保持すべきか決済すべきかを教えてくれます。 EAボットガード(自動保護): 重要度の高いニュース(High-Impact News)の際、他のExpert Advisor(EA)を自動的に一時停止し、市場が落ち着いたら再稼働させます。 真の株式ドローダウン(True Equity Drawd
    MT5のエキスパートアドバイザーリスクマネージャーは非常に重要であり、私の意見ではすべてのトレーダーにとって必要なプログラムです。 このエキスパートアドバイザーを使用すると、取引口座のリスクを管理することができます。リスクと利益の管理は、金銭的およびパーセンテージの両方で実行できます。 エキスパートアドバイザーが機能するには、それを通貨ペアチャートに添付し、許容可能なリスク値を預金通貨または現在の残高の%で設定するだけです。 [Instruction for Risk Manager parameters] アドバイザ機能 このリスクマネージャーは、リスクの管理を支援します。 -取引のために -1日あたり - 1週間 - ひと月ほど 制御することもできます 1)取引時の最大許容ロット 2)1日あたりの最大注文数 3)1日あたりの最大利益 4)エクイティを引き受ける利益を設定する それだけではありません。設定で自動設定を指定した場合、アドバイザーはデフォルトのSLとTPを設定することもできます。 アドバイザーは各イベントにアラートを添えて、注文を削除する理由を説明し
    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
    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.
    Pulsar Terminal は、 Astralys LLC の商標である Pulsar Technologies の製品です。 Pulsar TerminalはMetaTrader 5用のユーティリティアドオンです。 Expert Advisor を介してMetaTrader 5アカウントに接続される コンパニオンアプリケーション 内の実行ツールと組み合わされた ビジュアルインターフェース です。標準的なMT5パネルよりも高度なビジュアルインターフェースとワークフローを提供し、ツールの機能を最大化するためにコンパニオンアプリケーションを使用しています。Pulsar Terminalはスタンドアロンアプリケーションではなく、動作にはMetaTrader 5が必要です。EAはPulsar Terminalコンパニオンアプリケーションと localhost経由のみ で通信します。コンパニオンアプリケーションのインストーラーは、インストールガイド(MQL5ブログ記事)を通じて購入者に提供されます。 インターフェースでは注文の実行、リスク管理、取引統計の閲覧、そしてMetaTrader
    YuClusters
    Yury Kulikov
    4.93 (43)
    Attention: You can view the program operation in the free version  YuClusters DEMO .  YuClusters is a professional market analysis system. The trader has unique opportunities to analyze the flow of orders, trade volumes, price movements using various charts, profiles, indicators, and graphical objects. YuClusters operates on data based on Time&Sales or ticks information, depending on what is available in the quotes of a financial instrument. YuClusters allows you to build graphs by combining da
    Anchor: The EA Manager A coordination system for traders running multiple EAs. Anchor ensures only one EA can trade at a time, preventing conflicting positions and keeping your portfolio safer. Attach Anchor to any chart. Configure your EAs and their magic numbers. Anchor handles the rest. Built for portfolios. Built for discipline. Built for prop firms. The Problem Running multiple EAs on the same account creates risk. Two gold EAs can open opposite positions on the same candle. Three EA
    The product will copy all telegram signal to MT5 ( 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 s
    Trade Manager DashPlus
    Henry Lyubomir Wallace
    5 (13)
    DashPlus は、MetaTrader 5プラットフォーム上での取引効率と効果を向上させるために設計された高度なトレード管理ツールです。リスク計算、注文管理、高度なグリッドシステム、チャートベースのツール、パフォーマンス分析など、包括的な機能を提供します。 主な機能 1. リカバリーグリッド 逆境の市場環境下で取引を管理するための平均化および柔軟なグリッドシステムを実装します。 取引回復のための戦略的なエントリーおよびエグジットポイントを可能にします。 2. スタックグリッド 強い市場の動きの中でポジションを追加することで、有利な取引での潜在的なリターンを最大化するように設計されています。 トレンド市場で利益を得られるよう、勝ち取引を拡大します。 3. 損益(P&L)ライン チャート上に直接、潜在的な利益と損失のシナリオを視覚的に表示します。 設定を調整し、P&Lラインをドラッグして、実行前にさまざまな取引結果を評価します。 4. バスケットモード 同じシンボルでの複数ポジションの管理を簡素化し、それらを単一の集約ポジションにまとめます。 平均価格に基づいて、ストップロスやテイクプ
    Comprehensive on chart trade panel with the unique ability to be controllable from mobile as well. Plus has a library of downloadable configuration, e.g. exit rules, extra panel buttons, pending order setup and more. Please see our product video. Works with all symbols not just currency pairs. Features On chart panel plus controllable from free app for Windows, iPhone and Android Built-in script engine with library of downloadable configuration, e.g. add 'Close All Trades in Profit' button, exit
    DrawDown Limiter
    Haidar Lionel Haj Ali
    5 (20)
    Drawdown Limiter EA You are in the right place if you were searching for Drawdown control, Drawdown limiter, Balance protection, Equity Protection or Daily Drawdown Limit related to Prop Firm, FTMO, or Funded account trading, or if you want to protect your trading account. Have you suffered from controlling your drawdown when trading funded accounts? This EA is meant for you. Prop firms usually set a rule called “Trader Daily Drawdown”, and if it is not respected, you are disqualified.  I am an
    作者のその他のプロダクト
    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
    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
    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
    フィルタ:
    レビューなし
    レビューに返信