Pending Order Grid EA MT5

The Pending Order Grid is a multi-symbol multi-timeframe Expert Advisor that enables multi-strategy implementation based on pending order grids. 

General Description 

The Pending Order Grid allows the performing of a user-defined strategy through the creation of pending order grids. The Expert Advisor places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant price levels to form each grid. The user might set up different grids to exist simultaneously – it's only needed to attach the EA on multiple chart windows of the intended symbol(s). 

The start and stop of a grid might be chosen between two modes: price or time. Depending on the selected modes, the trading robot only starts placing pending orders when the current price is "near" the first target price (Start Price) or the Start Time is reached and stops placing when the last target price exceeds the Stop Price or the Stop Time is reached, where Start Price, Start Time, Stop Price and Stop Time are input parameters. 

A pending order placing is regulated by a price interval, whose limits are at the Stop Level and Stop Level + Extra Level distances from the order’s target price, where Extra Level is an input parameter. Every time new quotes are available, and the symbol's price is at this interval, the pending order is placed. The target price of the next order is simply given by the previous one added (Sell Limit or Buy Stop) or subtracted (Buy Limit or Sell Stop) with the Price Level input parameter. 

An exception to the previous procedure is when the grid’s first pending order is triggered by the Start Time. In this case, the trading robot tries immediately placing the order at the Stop Level distance. In case of rejection by the trade server, it will add 1 pip to the previous distance and try again for the order placing. This procedure will be repeated until the Stop Level + Extra Level distance is reached. 

The maximum number of simultaneous pending orders placed by the EA is given by the expression: 

  • Ceil ( (Stop Level + Extra Level) / Price Level ), for Price Level > 0, 

where Ceil represents the usual maths function. The expression may take the following values: 

  • 1 for Price Level ≥ Stop Level + Extra Level, 
  • 2 for (Stop Level + Extra Level)/2 ≤ Price Level < Stop Level + Extra Level, 
  • 3/more for Price Level < (Stop Level + Extra Level)/2. 

    Risk Management 

    The volume used to place a pending order is chosen between a fixed and a variable lot size, available through the Volume and Free Margin % input parameters, respectively. If there isn't enough money in the account for the chosen volume, a request for placing the order is still sent to the trade server. The purpose is to allow the corresponding position opening if the free margin increases enough until the target price is reached. This increase could be due to an account deposit or position profit between the placing and triggering of the pending order. 

    Input Parameters 

    PENDING ORDER GRID 

    • Start Price: Price used to define the grid’s start. 
    • Start Time: Time used to define the grid’s start. 
    • Stop Price: Price used to define the grid’s stop. 
    • Stop Time: Time used to define the grid’s stop. 
    • Price Level: Distance used between pending orders of the same type (pips). 
    • Extra Level: Distance from the Stop Level, which in turn is a distance from the target price, both represent the limits of price interval where the symbol's price needs to be for the pending order's placing (pips). 

        PENDING ORDER PLACING 

        • Magic Number: Expert Advisor’s identifier. 
        • Type: Pending order type used to form the grid. 
        • Volume: Lot size per deal (lots). 
        • Free Margin %: Percentage of account free margin used to calculate the lot size of the current deal (%). 
        • Stop Loss: Distance from the pending order's target price for placing a Stop Loss (pips). 
        • Take Profit: Distance from the pending order's target price for placing a Take Profit (pips). 
        • Deviation: Maximum allowed slippage from the requested price (pips). 
        • Fill Policy: Volume execution policy. 
        • Expiration Type: Order validity mode. 
        • Expiration Time: Order validity period (used only with the ORDER_TIME_SPECIFIED validity mode). 
        • Comment: Text message displayed in the chart window after a(n) (re)initialization of the EA, in the Objects list after creating a horizontal/vertical line (at each of the grid’s limits) or placing a pending order, and in the Trade or History tabs of the Toolbox window after placing a pending order (it only allows 31 characters). 

          POSITION MODIFYING 

          • Trailing Stop – SL: Distance from the market price for placing a Stop Loss after a favourable price movement (pips). 
          • Trailing Start – SL: Distance from the position’s opening price that must be reached for the “Trailing Stop – SL” function’s activation (pips). 
          • Trailing Step – SL: Distance from the price where the previous Stop Loss modification occurred that must be reached before the placing of a new Stop Loss (pips). 
          • Trailing Stop – TP: Distance from the market price for placing a Take Profit after an unfavourable price movement (pips). 
          • Trailing Start – TP: Distance from the position’s opening price that must be reached for the “Trailing Stop – TP” function’s activation (pips). 
          • Trailing Step – TP: Distance from the price where the previous Take Profit modification occurred that must be reached before the placing of a new Take Profit (pips). 

              OPTIMIZATION CRITERION 

              • Math Expression: Mathematical expression used to calculate a custom statistic parameter to sort the optimization results (see the Optimization Criterion section below). 

              Some of the available parameters accept values that lead to particular options. 

              • Start Price or Stop Price: A null/negative value means the parameter’s inactive function. 
              • Start Time or Stop Time: A value before the current time means the parameter’s inactive function. 
              • Price Level: A null value means that the target price is constant for all pending orders. 
              • Extra Level: A null value means that the symbol’s price needs to be exactly at the Stop Level distance from the target price for the pending order's placing. 
              • Volume: A value lower than the minimum allowed volume by the broker is converted in this last. A value higher than the maximum available volume by the free margin is converted in this last. 
              • Free Margin %: A value whose volume doesn’t reach the minimum allowed volume by the broker is converted in this last. A value whose volume exceeds the maximum available volume by the free margin is converted in this last. 
              • Stop Loss, Take Profit, Trailing Stop – SL or Trailing Stop – TP: A null value means the parameter’s inactive function. Any value between 0 and the Stop Level is converted in this last. 
              • Trailing Start – SL or Trailing Start – TP: A null value means the “Trailing Stop – SL” or “Trailing Stop – TP” function’s immediate activation, respectively. 
              • Trailing Start – SL: The spread value means the “Trailing Stop – SL” function’s activation at breakeven, although such hasn't been guaranteed. The spread + “Trailing Stop – SL” values mean the “Trailing Stop – SL” function’s activation in a profit where breakeven has been guaranteed. 
              • Trailing Step – SL or Trailing Step – TP: A null value means the “Trailing Stop – SL” or “Trailing Stop – TP” function’s continuous operation, respectively. 

                The input parameters that define the limits of the grid must obey a few rules. 

                • Both the start and stop of the grid must be selected, each chosen between a price or time. 
                • Any combination between the start and stop of the grid can be used: Start Price + Stop Price, Start Price + Stop Time, Start Time + Stop Price and Start Time + Stop Time
                • The Start Price cannot exceed the Stop Price in the Sell Limit or Buy Stop orders grid. 
                • The Stop Price cannot exceed the Start Price in the Buy Limit or Sell Stop orders grid. 
                • The Start Time cannot exceed the Stop Time in any pending order grid. 

                    Optimization Criterion 

                    The Expert Advisor allows the creation and use of a new statistical parameter (besides available ones) to sort the optimization results. This custom statistic parameter results from a mathematical expression calculated after the testing. The expression must obey syntax rules and precedence order, being constituted by the following elements: 

                    • Integer and real numbers. 
                    • Statistic parameters
                    • Mathematical operators for addition (+), subtraction (-), multiplication (*), division (/) and exponentiation (^). 
                    • Mathematical and trigonometric functions
                    • Curved parentheses (()) to define the precedence and contain the function’s argument(s). 
                    • Full stop (.) as decimal point and comma (,) as function’s arguments separator. 

                      The statistical parameters are used by writing the respective identifier initial(s) after the term “STAT”. In case there are two identifiers with the same initial(s), it must also be added “1” or “2”, depending on the order in which both appear in the list. For instance, “STAT_PROFIT” and “STAT_MAX_CONLOSS_TRADES” would be “P” and “MCT2”, respectively. List of identifiers, without “STAT_”, whose initial(s) require “1” or “2”: 

                      CONPROFITMAX (C1), CONPROFITMAX_TRADES (CT1), MAX_CONWINS (MC1), MAX_CONPROFIT_TRADES (MCT1), CONLOSSMAX (C2), CONLOSSMAX_TRADES (CT2), MAX_CONLOSSES (MC2), MAX_CONLOSS_TRADES (MCT2), EQUITYDD_PERCENT (EP1), EXPECTED_PAYOFF (EP2), LOSS_TRADES (LT1), LONG_TRADES (LT2). 

                      The mathematical/trigonometric functions are used by writing the respective name after “Math” and one or two arguments inside parentheses, separated by a comma in this last case. For instance, “MathLog10()” and “MathPow()” would be “Log10(argument)” and “Pow(argument1,argument2)”, respectively. List of names that correspond to the available functions: 

                      Abs, Arccos, Arcsin, Arctan, Arctan2, Ceil, Cos, Exp, Floor, Log, Log10, Max, Min, Mod, Pow, Rand, Round, Sin, Sqrt, Tan, Expm1, Log1p, Arccosh, Arcsinh, Arctanh, Cosh, Sinh, Tanh. 

                      Note: “MathRand()” is only executed with “GetTickCount()” as the argument of “MathSrand()”, it’s used without anything inside parentheses – simply writing “Rand()”. 

                      Additionally, the expression has the following properties: 

                      • The scientific, engineering and E notations are allowed. 
                      • The multiplication needs to be explicitly indicated (through the respective symbol). 
                      • The system is case-insensitive. 
                      • The space ( ) is allowed and doesn’t affect the expression’s calculation. 
                      • The input expression is limited to 233 characters. 

                        Examples of a number representation using various notations: “0.0000325” (decimal), “3.25*10^-5” (scientific), “32.5*10^-6” (engineering) and “32.5E-6” (E). 

                        IMPORTANT! The EA doesn’t verify if the input expression fulfils all the requirements, namely if it obeys syntax/standard rules, hence, any infringement of these leads to an unreliable result. 

                        Displayed Information 

                        The Expert Advisor possesses a vast number of messages to inform the user about errors and conditions changes that might occur during its operation. The messages are shown through the Alert function (by a pop-up window), its content includes: 

                        1. The warning that an input parameter has been incorrectly set. 
                        2. The info that the account doesn't have enough money for the chosen volume (see the Risk Management section above). 
                        3. The info that the number of permitted orders by the broker has been reached. 
                        4. The previous and current value of the symbol’s Stop Level when this is updated. 
                        5. The Trade Server Return Codes description. 
                        6. The symbol’s quotes (immediately) before the trade request’s formation, followed by the symbol’s quotes (immediately) after the trade server’s decision. 
                        7. The Runtime Errors description. 
                        8. The standard function in the include file where the runtime error was detected (only relevant to the programmer). 
                        9. The Uninitialization Reason Codes description. 

                                    Note: Some elements of the list are displayed simultaneously (in the same text line): 5, 6 and 7; 7 and 8. 

                                    During the EA’s operation, the messages displayed are grouped by kind of occurrence (related to each list’s element, except the 1, 6 and 8) and counted. Immediately before the EA’s unloading, a final message containing those groups with the respective counts (if these were > 0) is presented. 

                                    Following the EA's (re)initialization, two reference lines are displayed in the chart at the grid’s limits (start and stop). Each line is horizontal/vertical when the grid’s limit is the price/time, respectively. Both lines are blue/red when the grid’s pending order type is Buy/Sell, respectively. Tip: Place the mouse pointer over one of those lines to see its object name ("Buy/Sell Limit/Stop – Start/Stop Price/Time"). Note: The properties of a graphical object can be edited in the Objects list. 

                                    After the EA’s testing/optimization, the result of the mathematical expression, inserted in the Math Expression input parameter, is presented in the Journal/Optimization Results tabs of the Strategy Tester window, respectively. After the EA’s testing, the values of the available statistic parameters are also presented in the Journal tab. 

                                    Observations 

                                    In some cases, the quoting session might start before or end later than the corresponding trading session (with a five-minute difference, for instance). During the time interval when the quoting session is open, but the trading session is still/already closed, the Expert Advisor initiates/continues to process the available ticks, respectively. If the present conditions satisfy the EA's trading criteria, a trade request is formed and sent to the server. However, it won’t succeed, and an error message is displayed: “Trade request sending failed; Market is closed. 

                                    During high activity periods, the trade server’s decision on whether a trade request is executed or rejected may suffer significant delays. Some data used in the request sent to the server might become incorrect, leading to the order’s rejection. When the server is evaluating a request and the symbol's quotes are updated, three cases might occur: 

                                    1. Pending order placing – the pending order’s target price becomes an incorrect distance. 
                                    2. Position opening/modifying – the position's Stop Loss or Take Profit intended level becomes an incorrect distance. 
                                    3. Position modifying – the position's Stop Loss or Take Profit previous level takes to its closing. 

                                    The symbol’s quotes mentioned in the sixth element of the list in the Displayed Information section are especially useful here (since firsts usually differ from lasts). A careful analysis of these quotes, knowing the implication that certain quote changes have on the request’s evaluation, permits understanding the reason when these cases occur. To avoid the request’s rejection by the trade server due to “invalid stops” (cases 1 and 2), the prices/levels used should exceed the symbol’s Stop Level by a few pips. 

                                    The Start Price, Start Time, Stop Price, Stop Time or Type input parameters have a special status in the program. Every time one is changed, two things happen: the EA ends up the current grid and verifies the conditions to create a new one. Then, if all start/stop values pass this checking, the EA begins a new grid. But, if at least one fails, the EA doesn’t go forward with the new grid and terminates its operation. 

                                    A Buy/Sell position is opened at the Ask/Bid price and closed at the Bid/Ask price. Since the position’s stop orders (Stop Loss and Take Profit) are triggered at this last price, in a pending order, they are calculated from the order's target price -/+ the current spread (Ask - Bid), respectively. 

                                    When placing a pending order, the validity period can’t be less than 1 minute. During a grid creation, the Expert Advisor doesn’t place pending orders if the current time exceeds the Expiration Time minus 1 minute (when the validity period is previously selected). 

                                    Conclusion 

                                    The Pending Order Grid is a helpful and efficient tool regarding the automatic creation of pending order grids, especially when the grids consist of a significant number of orders, enabling a simple and intuitive setting of the grids to form.


                                    おすすめのプロダクト
                                    FX28 Trader Dashboardをご紹介します - あなたの究極のトレードマネージャー FX28 Trader Dashboardは、あなたの外国為替(Forex)取引を新たな高みに押し上げるために設計された包括的で直感的なトレードマネージャーです。経験豊富なトレーダーでも、まだ金融の旅を始めたばかりの方でも、この強力なツールは取引活動を効率化し、意思決定プロセスを向上させるために開発されました。 主な特徴: ユーザーフレンドリーなインターフェース: FX28 Trader Dashboardは、あらゆるレベルのトレーダーに適したユーザーフレンドリーなインターフェースを備えています。さまざまな機能やツールを簡単にナビゲートし、わずか数クリックでトレードを完全にコントロールできます。 リアルタイムマーケットデータ: リアルタイムのマーケットデータフィードで先を見越してください。通貨ペア、トレンド、マーケットの変動に関する最新の情報を提供し、情報を元に自信を持ってトレードを実行できます。 高度なトレードアナリティクス: FX28 Trader Dashboardでは、高度なアナ
                                    Binance Grid Pro offers an alternative to the built in Grid systems Binance Platform offers. This utility let you define a grid parameters for interact with your Binance account using an Isolated Margin account. This is, similar to Spot Grid in Binance. This is not for handle with derivatives contracts, is for handle with Spot through Isolated Margin Account. But obviosly this utility offers a different approach than built in Binance Grid to handle the Grid, which I have found useful based on
                                    Remote Trade Copier is an advanced tool designed for efficiently copying trades between accounts in both local and remote modes. It allows for lightning-fast order replication from a master account to a slave account. In local mode, trades are copied instantly, while in remote mode, the copying process takes less than 1 second. MT4 Version (Only Local) MT5 Version (Only Local) MT4 Full Version (Local & Remote) Local mode refers to both MetaTrader platforms being installed on the same system,
                                    Money Mind BTC
                                    Antonio Simon Del Vecchio
                                    4.77 (22)
                                    Money Mind BTC — BTCUSD H1(v13.00) グローバルリスク管理と適応型動作を備えた自動売買システム Money Mind BTC 13.00 は、BTCUSD 取引のために設計されたエキスパートアドバイザーです。完全なリスクコントロールと自動適応ロジックを備え、安定した動作、柔軟な設定、そして市場状況に応じて動作を調整するグローバル管理構造を兼ね備えています。 主な特徴 シンボル:BTCUSD 推奨タイムフレーム:H1 感度調整可能な内部フィルター 適応距離による段階的エントリー 取引方向の設定(買いのみ、売りのみ、または両方) 固定・算術・幾何ロットモード 残高割合によるグローバルテイクプロフィットおよびストップロス 口座残高の増加に応じた自動ロットスケーリング 最大ポジション数の制限 新規ポジション前の内部リスク検証 バージョン 13.00 の新機能 新しいエントリー感度構造(レベル 1〜5) 市場状況に応じた動的なポジション間距離 システム応答を調整する新パラメータ EscalaVelocidad 資金と証拠金の検証を改善 最適化のためのマルチオブジェ
                                    The Realtime Statistics MT5  is an innovative tool designed for traders who want to keep track of their trading performance in real-time. This MetaTrader 5 Expert Advisor (EA) is packed with customizable features that allow you to monitor crucial trading statistics directly on your chart, ensuring you always have the insights you need to make informed trading decisions. Check out the Realtime Statistics MT5 User Guide Here Try out the  FREE  Realtime Statistics MT5 Demo  Here Key Features: Compr
                                    Quant Panel
                                    Kevin Craig E Gittins
                                    Quant Panel Pro The Ultimate Multi-EA Performance Dashboard for Quantitative Traders Stop juggling multiple charts or external tools to monitor your algorithmic strategies! Quant Panel Pro delivers institutional-grade portfolio monitoring in one sleek, professional interface. Key Features Quantitative Analytics at Your Fingertips Real-time P&L aggregation   across all Expert Advisors Statistical win rate analysis   with trade frequency metrics Advanced drawdown tracking   (realized & unrealized
                                    Binance Copier allows to seamlessly and easily copy trades between MT5 and Binance Futures! The tool's main feature is to replicate trades and all available orders between MetaTrader 5 and Binance that can be applied to both Expert Advisors and manually opened ones. Key Features: Bidirectional Copying - MT5 → Binance (Master Mode): Copy your MT5 trades to Binance - Binance → MT5 (Slave Mode): Mirror Binance positions in MT5 - Real-time synchronization with configurable delays Complete Trade M
                                    Overview : The Advanced News Trading Panel is a versatile tool designed for traders who rely on news-based trading strategies. This Expert Advisor (EA) provides an intuitive graphical interface that allows users to quickly set up pending orders and manage risk with ease. With the ability to automatically place Buy/Sell Stop orders based on your pre-set stop order distance from the bid/ask price, stop-loss and take-profit levels, the EA allows for precision trading during high-volatility news eve
                                    Sharp Edge
                                    Md Wakiluzzaman Raz
                                    Sharp Edge EA Sharp Edge EA is an automated trading system developed specifically for the XAUUSD (Gold) market. The EA utilizes a pure price action strategy, focusing on market structure and volatility patterns rather than traditional lagging indicators. It is designed to adapt to the current liquidity and price behavior of the precious metals market. Trading Strategy The core logic of Sharp Edge EA is based on structural price analysis. The algorithm identifies key levels and momentum shifts t
                                    Tiger Lite recreate the history of entry and exit orders. The goal is that you can grasp their strategy how to play. CSV format support for WEB, MT4 and MT5 platforms. The sequence of steps is described in the photo. Note: Please choose the existing date and symbol on the CSV file. For MT4/5, export historical data and copy the records to excel, save it with the extension CSV. For MT4/MT5/WEB, save the name with format mt4.csv/mt5.csv/web.csv If you get the history from another source and your
                                    FREE
                                    NanoTrade Pro NanoTrade Pro   is a state-of-the-art automated trading advisor designed to optimize your trading strategy in the fast-paced financial markets. Leveraging advanced algorithms and real-time data analysis, NanoTrade Pro automates the scalping process, enabling traders to capitalize on small price movements with remarkable precision and efficiency. Basically, the advisor does not use any risk systems with increasing volume or increasing the number of open orders. Before buying, be s
                                    Pending Order Grid MT5
                                    Francisco Manuel Vicente Berardo
                                    The Pending Order Grid is a multi-symbol multi-timeframe script that enables multi-strategy implementation based on pending order grids.  General Description   The Pending Order Grid allows the performing of a user-defined strategy through the creation of pending order grids. The script places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant price levels to form each grid. The beginning and finish of every grid are defined by the Start Price and Sto
                                    QFT Scalp Gold is a XAUUSD scalping Robot designed for the M1 timeframe.  The trading system is designed to identify high probability market action and  capitalize on such information.  The trouble with most scalping systems is the general lack of a credible response when the market makes very large moves against a huge number of open trades, often relying on very low reward to risk ratio.  QFT Scalp Gold solves this problem with a unique recovery system that uses the unfavorable market  mov
                                    Equity Tracker MT5 Equity Tracker MT5 は、MetaTrader 5 用のモニタリング型エキスパートアドバイザーで、取引活動、口座状況、および技術的な状態を通知メッセージとして報告します。 このエキスパートアドバイザーは取引ロジックとは独立して動作し、注文の執行や取引管理には一切影響しません。 本製品は取引の新規発注、変更、決済を行いません。 監視および通知機能のみを提供します。 目的 Equity Tracker MT5 は、取引ターミナルを常に監視することなく、取引口座の状況を把握したいトレーダー向けに設計されています。あらゆる取引戦略や他のエキスパートアドバイザーと併用できます。 口座レベルのモニタリング 取引活動の通知 技術的状態の把握 口座およびリスク状況のモニタリング エキスパートアドバイザーは口座パラメータを継続的に評価し、事前に定義された条件が満たされた場合に変更を通知します。 有効証拠金(Equity)およびドローダウン水準の通知 証拠金維持率のモニタリング ユーザー定義のアラート閾値 ハートビート機能とターミナルの状態 ハートビー
                                    ️ Equity Protector EA – Auto SL & Trailing Stop for MT5 Protect your capital. Automate your risk. Maximize your control. The Equity Protector EA is a powerful risk management tool designed for Meta Trader 5 traders who prioritize capital preservation and smart trade automation. Whether you're a scalper, swing trader, or long-term investor, this EA ensures your account stays protected while optimizing trade exits with precision. Key Benefits Drawdown Shield Automatically monitors your accoun
                                    Introducing the   Elite Chart Navigator   — your ultimate MetaTrader 5 Expert Advisor designed to revolutionize multi-symbol trading with seamless chart navigation and superior usability. Product Overview The   Elite Chart Navigator EA   is a sophisticated trading utility enabling rapid switching between multiple trading pairs through an intuitive on-chart button interface. Built for professional traders managing numerous instruments, this EA dramatically improves workflow efficiency, ensuring
                                    CRIFLOW Trade Protector PRO (Multi-Symbol) The smart manager for your manual trading. CRIFLOW Trade Protector PRO is an Expert Advisor designed to turn your manual trading into a professional system, fully automating position management. Does not open operations. Don’t change your strategy. Manage your trades in a precise and disciplined way. ⸻ MULTI-SYMBOL MANAGEMENT A single installation is enough. The EA is able to simultaneously manage: • Forex (EURUSD, GBPUSD, etc.
                                    Features 1️⃣ Flexible Grid Order Configuration Set price levels and spacing between orders. Customize order sizes and maximum number of positions for better risk control. 2️⃣ Hedge and Netting Modes Hedge Mode : Allows simultaneous long and short positions , ideal for advanced strategies. Netting Mode : Consolidates positions for easier balance management. 3️⃣ Supported Order Types Limit Orders : Buy and sell at predetermined prices. Market Orders : Instant execution. Integrated Take-Profit : Wi
                                    Binanceは世界的に有名な暗号通貨取引所です! MT5ユーザーがBinanceFuturesを直接取引できるようにするために、このプログラムは次の取引機能を提供します。 1. Binance Futuresの取引スタイルを模倣し、フレンドリーな操作パネルを提供します。 2.レバレッジ、バランス、その他の情報を取得するには、自分でapiとsecretを入力します(Binance apiで先物取引の許可を開く必要があります)。 3. limitOrder(指値注文)、marketOrder(成行注文)、stopLimit(ストップ利益の制限とストップロス注文)、stopMarket(マーケットストップ利益とストップロス注文)をサポートします。 4.成行注文の場合、最大オープンポジションとコスト情報は最新の価格に基づいて計算できます。 5.すべての注文のリストを表示したり、注文をキャンセルしたりできます。 6.すべてのポジションのリストを表示でき、成行注文に従ってポジションを空にすることができます。 7. Deepin情報の自動表示のサポート(Deepin Websock
                                    StopAndTake
                                    Oleksandr Kashyrnyi
                                    5 (1)
                                    製品名: StopAndTake — シンプルで高速・正確なSL/TP管理スクリプト 製品説明: StopAndTake は、ポジション管理においてスピード、正確性、信頼性を重視するトレーダーのために設計された軽量で直感的なスクリプトです。このツールを使用することで、選択したチャート上のすべてのポジションに対して、**ストップロス(SL) と テイクプロフィット(TP)**のレベルを瞬時に更新することができます。操作は非常に簡単です。 メリットと利点: シンプルさ: 初心者にもわかりやすいミニマルなインターフェース。 超高速: すべての操作が数秒で完了します。 高精度: SL/TPのレベルをミリ単位の精度で設定。 簡単操作: スクリプトをチャートにドラッグするだけで、自動的に作業を完了。 信頼性: 変更を加える前にすべてのデータを検証し、エラーや意図しない動作を防ぎます。 主な機能: 自動SL/TP調整: 現在のシンボルのすべてのポジションに対してレベルを瞬時に更新。 多様なトレードタイプに対応: BUYとSELLの両方のポジションを管理。 シンプルなロジック: BUYポジションではS
                                    FREE
                                    Range Breakout EA – Catch the Moves in the Asian Session! Hey there! Our Range Breakout EA is built to help you take advantage of those early moves in the Asian session. Here’s how it works: during a specific time window, it marks the highest and lowest points to create a range. Then, it sets up buy and sell limit orders just outside that range, so you’re ready to catch a breakout in either direction! :) For safety, the stop loss goes at the opposite end of the range, but you can customize it i
                                    AO Trade
                                    Ka Lok Louis Wong
                                    AOトレードシステムは、市場のトレンドを利用したトレードに特化しており、競売やニュースの時間を参照ポイントとして、他の特定の注文時間と比較し、市場のトレンドを予測します。 **EAで使用されるすべての時間パラメータは、あなたの端末の時間を基にしています。異なるブローカーは異なるGMTのタイムゾーンで動作する場合があり、夏時間の調整によりさらに変化する可能性があります。** **実装前に、端末に合わせて時間設定を十分に確認してください。** 推奨設定: M1タイムフレームで使用する HK50 / DE40 / ustec / UK100 時間のチェック中には、特定のチェック時間の分後に価格のチェックが行われることに気付くでしょう(1.2チェック時間の分)。この設計は意図的であり、参照されているバーが完了することを許可し、オープン、ハイ、ロー、およびクローズの値が注文時間と正確に比較できるようにします。 設定 -----------------1 タイマー------------------- 1.1 チェック時間の時間(HH) -- 価格を記録するために使用されるタイムスタンプ
                                    Master Manager
                                    Medina Cortez Edison Armando
                                    MASTER MANAGER Risk management of open operations (Does not perform automatic operations) and structural analysis. "Stop chasing prices; let the Master Manager identify institutional zones for you and surgically manage the risk of the trades you enter." ️ System Features 1. Structural Analysis: Identification of Swings and Balance of Sights with confluence. 2. Liquidity (FVG): Imbalance zones with 50% mitigation and dynamic extension. 3. Visual Management: Draggable and fixed partial
                                    XAU Precision Flow EA is a professional-grade trading system designed specifically for XAUUSD (Gold) . It applies a multi-layered confirmation framework using higher-timeframe market structure, momentum alignment, and trend continuation behavior. This ensures that every trade is taken with directional bias already established , significantly reducing noise and false entries that are common in lower-timeframe gold trading. Monitor Live Signal :  https://www.mql5.com/en/signals/2357926 The EA focu
                                    Pro Trade Utility for MetaTrader 5 Pro Trade Utility is a professional manual trading assistant designed for traders who want precision, speed and clarity — without automated strategies. This tool does not trade automatically . It helps you execute and manage trades correctly with proper risk control. Key Features  Risk & Position Management Risk-based automatic lot size calculation Risk shown clearly in account currency Adjustable Stop Loss (points) Fixed Risk:Reward display  Trade Executio
                                    HFT  ZONE MOMENTUM RECOVERY EA_Name ค่า: HFT MTRADER ใช้สำหรับระบุชื่อของ EA เพื่อให้ง่ายต่อการจัดการหรือตรวจสอบในประวัติการเทรด (History) Lot_fix ค่า: 0.02 ใช้กำหนดขนาดของล็อตคงที่ (Fixed Lot Size) ที่ EA จะเปิดในแต่ละคำสั่งเทรด โดยไม่ขึ้นอยู่กับเงื่อนไขอื่น ๆ Lots_X ค่า: 1.5 ตัวคูณล็อต (Lot Multiplier) ซึ่งมักใช้ในการเพิ่มขนาดล็อตในลักษณะการ Martingale หรือ Hedging โดยเมื่อขาดทุนหรือเปิดคำสั่งถัดไป ระบบจะเพิ่มล็อตตามค่าที่กำหนดไว้ High_Low_end_candle ค่า: 10 จำนวนแท่งเทียนที่ใช้ในการคำนวณระ
                                    Range Brain AI - Neural Network Range Trading Expert Advisor AI-powered range breakout Expert Advisor using volume-based neural networks to identify and trade pre-market consolidation ranges on US30. Trading Strategy Range Brain AI is a volume-based neural network Expert Advisor designed specifically for trading the Dow Jones 30 (US30) during optimal market conditions. The EA identifies consolidation ranges during specified time windows and executes breakout trades when price breaches these lev
                                    Welcome to Smart Algo Trade Panel Manager MT5 - the ultimate   risk management tool designed to make trading more effective based on user needs.  It is a comprehensive solution for seamless trade planning, position management, and enhanced control over risk. It does not matter weather you a beginner or an advanced trader, or a scalper needing rapid executions, SmartAlgo Trade Panel  adapts to your needs offering flexibility across all markets of your choice. You can put SL, Lot and TP of choice
                                    NAS100 NY Open Breakout NAS100 NY Open Breakout es un Asesor Experto diseñado para operar de forma automática el índice NASDAQ 100 durante uno de los momentos más líquidos y decisivos del día: la apertura de la sesión de Nueva York . El sistema se basa en la detección de rupturas reales de precio en los primeros minutos posteriores a la apertura, combinando gestión de riesgo estricta y control avanzado de la posición. Características principales Operativa automática enfocada exclusivamente en
                                    BlackBox XAU — ゴールド向け先進型エキスパートアドバイザー 概要 BlackBox XAU は、ゴールド市場で利益を狙いながら、ドローダウンを厳格に管理するために丁寧に設計されたトレーディングシステムです。市場のすべての値動きを追いかけるのではなく、規律あるルールベースのアプローチを採用し、ボラティリティに適応しながら 高確率のトレード機会 のみを抽出します。 EA はリアルタイムで市場状況を継続的に評価し、質の低いシグナルを排除して、リスクとリワードのバランスが明確に有利になったタイミングを辛抱強く待ちます。条件が揃うと、精密なエントリーと動的に調整される保護機能を伴ってトレードを実行します。 この慎重な設計により、BlackBox はチャートを大量のエントリーで埋め尽くすことはなく、 量より質 を重視します。統計的に優位性のあるセットアップに集中することで、トレーダーにとって 安定した収益性、管理されたドローダウン、リスク調整後の一貫したリターン へとつながります。 仕組み BlackBox の中核は、市場のボラティリティとトレンドの変化を継続的に監視し、 リスクを大
                                    このプロダクトを購入した人は以下も購入しています
                                    Trade Assistant MT5
                                    Evgeniy Kravchenko
                                    4.42 (207)
                                    取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 7 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 追加の資料と説明書 インストール手順   -   アプリケーションの手順   -   デモアカウント用アプリケーションの試用版 ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、 リスク 計算 の 種類 を 選択 します :「 $ 通
                                    Trade Manager EAへようこそ。これは、取引をより直感的、正確、そして効率的にするために設計された究極の リスク管理ツール です。これは単なるオーダー実行ツールではなく、包括的な取引計画、ポジション管理、リスク管理のためのソリューションです。初心者から上級者、迅速な実行を必要とするスキャルパーまで、Trade Manager EAはあらゆるニーズに対応し、為替、指数、商品、暗号通貨などさまざまな市場で柔軟に対応します。 Trade Manager EAを使用すると、複雑な計算が過去のものになります。市場を分析し、エントリーポイント、ストップロス、テイクプロフィットのレベルをチャート上のラインでマークし、リスクを設定するだけで、Trade Managerが最適なポジションサイズを即座に計算し、SLとTPをピップ、ポイント、口座通貨でリアルタイムに表示します。すべての取引が簡単かつ効果的に管理されます。 主な機能: ポジションサイズ計算機 :定義されたリスクに基づいて取引サイズを瞬時に決定します。 簡単な取引計画 :エントリー、ストップロス、テイクプロフィットを設定するためのド
                                    ベータリリース Telegram to MT5 Signal Trader はまもなく正式なアルファ版をリリースします。いくつかの機能はまだ開発中で、小さな不具合に遭遇する可能性があります。問題が発生した場合はぜひご報告ください。皆さまのフィードバックがソフトウェア改善に役立ちます。 Telegram to MT5 Signal Trader は、 Telegram のチャンネルやグループからの取引シグナルを自動的に MetaTrader 5 にコピーする強力なツールです。 パブリックおよびプライベートの両方のチャネルに対応し、複数のシグナル提供元を複数のMT5口座に接続可能です。ソフトウェアは高速で安定し、すべての取引を細かく制御できます。 インターフェースは直感的で、ダッシュボードとチャートは見やすく設計されており、リアルタイムで動作状況をモニターできます。 必要環境 MQL の制限により、EA は Telegram と通信するためのデスクトップアプリが必要です。 インストーラーは公式の インストールガイド にあります。 主な機能 マルチプロバイダー: 複数の Telegram
                                    The core idea: using the user interface, you configure the parameters the chart must meet before entering a position (or positions), choose which entry models to use, and set the rules for when trading and planning should end. Lazy Trader  handles the rest: it  takes over all the routine chart watching and execution! full description  :: 3 key videos [1] ->  [2]   ->  [3] What can it do? - Understands Larry Williams market structure - Understands swing market structure by Michael Huddleston
                                    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
                                    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
                                    あなたがメンバーである任意のチャネルから(プライベートおよび制限されたものを含む)シグナルを直接あなたのMT5にコピーします。  このツールは、トレードを管理し監視するために必要な多くの機能を提供しながら、ユーザーを考慮して設計されています。 この製品は使いやすく、視覚的に魅力的なグラフィカルインターフェースで提供されています。設定をカスタマイズして、数分で製品を使用を開始できます! ユーザーガイド + デモ  | MT4版 | Discord版 デモを試してみたい場合は、ユーザーガイドにアクセスしてください。 Telegram To MT5 受信機は、ストラテジーテスターで動作しません! Telegram To MT5の特徴 複数のチャネルから一度にシグナルをコピー プライベートおよび制限されたチャネルからシグナルをコピー BotトークンまたはChat IDは必要ありません   (必要に応じて使用することができます) リスク%または固定ロットを使用して取引 特定のシンボルを除外 すべてのシグナルをコピーするか、コピーするシグナルをカスタマイズするかを選択 すべてのシグナルを認
                                    Footprint Chart Pro — Professional OrderFlow EA for MetaTrader 5 Version 6.34 | Professional tool for real traders | Institutional-Grade Visualization DEMO USERS - PLEASE SELECT EVERY TICK / REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROLLED OVER PERIOD.
                                    ManHedger MT5
                                    Peter Mueller
                                    4.83 (6)
                                    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. The price of the ManHedger will increase to 250$ after 20 copies sold. Contact me for user support or bug reports or if you want the MT4 version! MT4 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 s
                                    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
                                    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
                                    TradeMirror は、MT4/MT5プラットフォーム向けに開発されたローカル注文同期ツールで、リアルタイム取引をサポートします。 製品の特長 金融ソフトウェアにおけるセキュリティ・安定性・プライバシー保護の高基準に準拠し、以下の3つの核心領域を最適化しました: 直感的なグラフィカルインターフェースで操作が容易 金融シナリオにおける機密データ分離のための強化されたプライバシー保護 ミリ秒単位の注文同期で信号遅延ゼロを実現 MT4/MT5完全互換、多様な取引環境にシームレス対応 システム監視機能とメール通知による取引安定性管理 主要機能 本製品には以下のプロフェッショナルコピー機能を搭載: 複数アカウント並列接続 リアルタイムメール通知 ロットサイズカスタマイズ 信号フィルタリング機構 逆方向コピーモード テイクプロフィット/ストップロス再設定 無料デモ手順 購入前に以下の手順で全機能を体験可能: ページ内の「無料デモ」ボタンをクリック 「MetaTrader 4/5インストール済み」を確認 ブラウザでMT4/MT5クライアントを起動 プラットフォーム内「エキスパートアドバイザー/マ
                                    Prop Guardian Risk Manager MT5 – Daily and Overall Drawdown Protection for Prop Firm Traders Prop Guardian Risk Manager is a professional risk-control utility for MetaTrader 5, created for traders who operate under prop firm rules. It does not open trades and does not implement any trading strategy. Instead, it runs in the background, monitors your account risk and can automatically block trading or close exposure when your own limits are reached. Use it as a safety layer on top of your manual t
                                    Patrex pro
                                    Chioma Obunadike
                                    5 (1)
                                    Patrex Pro: Maximize Your Trading Potential Patrex Pro is an advanced trading bot designed to help traders optimize their trading strategies and maximize their potential returns. With its cutting-edge technology and user-friendly interface, Patrex Pro is the ultimate tool for traders seeking to elevate their trading game. Get MT4 Version Key Features: 1. Position Hedging: Patrex Pro allows users to hedge their positions based on their individual risk tolerance and market analysis. 2. Advanced R
                                    MT5-StreamDeck offers the possibility to use a certain number of pre-programmed Hot-keys with a clearly defined role. So by the push of a button you can open a trade with a pre-defined lot size, stoploss and take profit. Close all your trades, close the ones in profit, or in loss, set Break-even or set a trailing stop. All this with a Hot key button. See the feature list for all the actions that can take place at the push of a button. Ideal for Quick Scalping or day trading with set risk managem
                                    ************************************************ *********************************************** GoldMine Train は、ゴールドのトレンド取引戦略 EA です。 オペレーターは主要なトレンドの方向を決定し、トレインに指示を出します。 トレインはその方向で継続的に売買します。ロット数は、アカウント残高と事前設定されたレバレッジ比率によって異なります。 オペレーターがトレンドの方向を変更すると、トレインは停止し、利益を固定します。 ユーザーはチャート上のボタンを使用してトレンドの方向を簡単に選択できます。 ************************************************ ***********************************************
                                    Custom Alerts AIO:マルチマーケット監視を一括で実現 — 設定不要ですぐに使えるインテリジェントツール 概要 Custom Alerts AIO は、追加のインジケーター設定が不要で、インストール後すぐに利用できる高機能マーケットスキャナーです。FX Power、FX Volume、FX Dynamic、FX Levels、IX Power を内部にすべて統合し、主要なすべての資産クラス(為替、金属、指数、暗号資産)を一括監視できます。MetaTrader の仕様により、株式は個別のシンボルとして追加可能ですが、一般的には利用頻度は低めです。 1. なぜ Custom Alerts AIO を選ぶべきか 追加ライセンス不要 • 必要なすべての Stein Investments インジケーターが内蔵されており、すぐに使用可能です。 • チャートに表示されるグラフィックは省略されており、アラート生成に特化した構成です。 市場を広範囲にカバー • 為替、金属、暗号資産、株価指数に対応(株式は手動追加可能)。 • シンボル名を入力する必要はなく、プロパティで資産クラス
                                    EASY Insight AIO – スマートで手間いらずな取引のオールインワンソリューション 概要 数秒で市場全体——FX、ゴールド、暗号資産、指数、さらには株式まで——を、手作業のチャート確認や複雑なセットアップ・インジケーター導入なしにスキャンできたらどうでしょうか? EASY Insight AIO はAIトレードのための究極のプラグ&プレイ型エクスポートツールです。市場全体のスナップショットを、クリーンなCSVファイルで一括出力。ChatGPT、Claude、Gemini、Perplexityなど、さまざまなAIプラットフォームで即座に解析できます。 ウィンドウの切り替えやグラフのごちゃごちゃしたオーバーレイはもう不要。自動エクスポートされる純粋で構造化されたインサイトだけで、無駄なチャート監視に悩まされず、スマートなデータ主導の判断に集中できます。 なぜEASY Insight AIOなのか? 本当のオールインワン • セットアップ不要、インジケーターのインストール不要、チャートへのオーバーレイ不要。インストールして起動し、エクスポートするだけです。 マルチアセット対
                                    Unlimited Trade Copier Pro MT5 is a tool to copy trade remotely to multiple MT4, MT5 and cTrader accounts at different computers/locations over internet. This is an ideal solution for you if you are a signal provider and want to copy your trades to other receivers globally on your own rules. One provider can copy trades to multiple receivers and one receiver can get trade from multiple providers as well. The provider can even set the subscription expiry for each receiver, so that receiver will n
                                    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
                                    これは視覚的な取引パネルであり、取引を簡単に配置および管理し、人為的エラーを回避し、取引活動を強化するのに役立ちます。使いやすい視覚的なインターフェースと、健全なリスクおよび位置管理アプローチを組み合わせています。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 驚くほど使いやすい チャートから簡単に取引 正確なリスク管理との取引、手間のかからない 資本の保存が最優先事項です 気をつけずに利益を上げましょう できるだけ早くリスクのない取引をお楽しみください 開かれているすべての取引の自動トレーリングストップ 最初のストップロスは、取引が行われるとすぐに配置されます EAは、取引を行った後に次のタスクを実行します。 最初のストップロス/テイクプロフィットは自動的に配置されます できるだけ早くフリーライドにロックします(オプション) ストップロスを初めて損益分岐点に移動します(オプション) 停止するまで、希望の方法を使用してストップロスを追跡します その他のクールな機能は次のとおりです。 優れたターミナルアクティビティレポート
                                    Local Trade Copier EA は、MAMまたはPAMMアカウントを必要とせずに、外部ソースからのトレードシグナルを実行する必要がある、または同時に複数のアカウントを管理する必要がある個々のトレーダーまたはアカウントマネージャー向けのソリューションです。最大8つのマスターアカウントから無制限のスレーブアカウントにコピーします [ インストールガイド | アップデートガイド | トラブルシューティング | FAQ | すべての製品 ] 100%セルフホスト インストールと使用が簡単 インストーラー、構成ファイル、サーバー、メモリパイプ、DLLは使用されていません EAを永久に使用するための1000回のアクティベーション ローカル実行、ネットワーク遅延なし それはあなたがこれまでに必要とするすべての機能を実装します: 最大8つのマスターアカウントと無制限のスレーブアカウント すべてのブローカーおよびDD / NDD / ECN / STP実行で動作します 異なる口座通貨の口座で動作します ライブアカウントとデモアカウントの間で区別なく機能します マスターアカウントとスレーブア
                                    This Expert Advisor is applicable to plot wave charts as per the NeoWave  method (Neely Extension of Wave Theory).  NeoWave is a scientific, objective and revolutionary style of Elliott Wave Theory that was invented by Glenn Neely in 1990 in the “Mastering Elliott Wave” book. To start analyzing with this method, we need a particular chart called the Wave Chart or Cash Data chart . This is the first step for a good wave analysis. To draw this chart, Highs and Lows should be plotted in the order t
                                    PortfolioLab Pro – MT5向け先進マルチEAポートフォリオ監視&リスク分析ツール PortfolioLab Proは、MetaTrader 5で複数のExpert Advisors(EA)を同時に運用するトレーダー向けの究極のリアルタイムコントロールセンターです。 基本的なエクイティチャートだけで盲目的に飛ぶのはもうやめましょう。PortfolioLab Proは隠れたリスクを明らかにし、自然なヘッジを発見し、ポートフォリオの真の頑健性を定量化します——ドローダウンで数ヶ月の成果が吹き飛ぶ前に。 他とは一線を画す主な機能: インタラクティブ相関ヒートマップ(Correlation Heatmap) — どの戦略が一緒に動いているか(赤=高リスク)、または互いに相殺しているか(緑=自然ヘッジ)を瞬時に把握。任意のセルをクリックすると、正確なヘッジペア一覧、相関係数、銘柄詳細が表示されます。 レーダーチャートスコアリング(0–10スケール) — 一目で全体の健全性を評価。標準化された指標:Profit Factor、Expectancy、Sharpe、Sortino、R
                                    Modern Trading HUB | MT5 Refined The aesthetic and functional evolution of MetaTrader 5. FULL LIST OF SCREENSHOTS :  https://deliberate-bronze-wiwwprz0fj.edgeone.app/ DETAILED DOCUMENTATION :  https://devoted-amethyst-zrbhosohlp.edgeone.app/ Advanced Visuals Account balance & Quick History Detailed statement (Period Selection) Hot streak tracking Collapsible/Configurable UI Sizing of different buttons Configurable settings Quick history of last X trades , profit, number of trades, commission, t
                                    Dhokiyas Market Screener
                                    Dhokiyas Money Map Investment Consultants - FZCO
                                    Dhokiya's Market Screener ユーザーガイド MetaTrader 5 用 マルチシンボル分析パネル ワンクリック取引対応 総合テクニカル分析ツール 公式アップデートチャンネル 参加 : Dhokiyas サポート 直接メッセージ : Contact 1. 本製品について Dhokiya's Market Screener は MetaTrader 5 用のマルチシンボルテクニカル分析ツールです。 複数の通貨や銘柄を同時にスキャンし、複数のテクニカル条件に基づいた方向とスコアを表示します。 本製品は市場全体を素早く把握し、効率的な分析を行うために設計されています。 2. 重要事項 本製品は利益を保証するものではありません。 取引にはリスクが伴います。適切な資金管理を行ってください。 シグナルはテクニカル指標およびプラットフォームの市場データに基づいています。 結果はブローカー条件、スプレッド、約定環境、銘柄仕様により異なります。 3. インストール方法 MetaTrader 5 を開きます。 必要に応じて MetaEditor でファイルをコンパイルし
                                    Tick Charts
                                    Vasily Kravtsov
                                    4 (1)
                                    **** New version - 1.66 **** Bug fixes, small improvements. A Tick Chart app. It lets you create real-time tick charts, based on number of ticks per candle. You can choose the amount of ticks per candle, and the amount of ticks to load. Supports showing trade history and trade levels.   When you add this EA to an instrument it automatically generates a custom symbol with the _Tick added to the name. The tick chart should open automatically. Make sure the timeframe of the tick chart is set to M
                                    The Expert Advisor will help you forward all alert from  MetaTrader 5 to Telegram channel/ group.  All alert must save to folder <Data folder>MQL5\Files\Alerts\ , text file with format *.txt and screenshot with format *.gif or *.png. Parameters: - Telegram Bot Token: - create bot on Telegram and get token. - Telegram Chat ID:  - input your Telegram user ID,  group / channel ID - Forward Alert: - default true, to forward alert. - Send message as caption of Screenshot: - default false, set true t
                                    Features   With MT5 to Interactive Brokers(IB) Trader, you can: 1. Load chart data from IB to MT5, and Analyze with all standard or customer Indicators. 2. Place Orders to IB Account Directly in MT5. 3. Make your Own EAs upon IB Securities by only making minus changes of the trading function. Usage 1) Installation Copy the "Mt5ToIBTraderEn.ex4" and sample files to [MT5 Data Folder]->MQL5->Experts.  2)  MT5 Settings Add the IP Address to the MT5 Allowed URLs in 'Tools->Options->Expert Adviso
                                    作者のその他のプロダクト
                                    Pending Order Grid MT5
                                    Francisco Manuel Vicente Berardo
                                    The Pending Order Grid is a multi-symbol multi-timeframe script that enables multi-strategy implementation based on pending order grids.  General Description   The Pending Order Grid allows the performing of a user-defined strategy through the creation of pending order grids. The script places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant price levels to form each grid. The beginning and finish of every grid are defined by the Start Price and Sto
                                    Double Trailing Stop MT5
                                    Francisco Manuel Vicente Berardo
                                    The Double Trailing Stop is a multi-symbol multi-timeframe Expert Advisor that allows the Stop Loss and Take Profit trailing of positions.  General Description   The Double Trailing Stop’s purpose is to secure profit and minimize losses of the opened positions. The Expert Advisor places stop orders (Stop Loss or Take Profit) at the Trailing Stop distance from the market price when the symbol's quote reaches/overcomes the Trailing Start distance from the position’s opening price (a single-time
                                    Tick Data Record MT5
                                    Francisco Manuel Vicente Berardo
                                    The Tick Data Record is a multi-symbol multi-timeframe Expert Advisor that records tick data for later graphical representation and analysis.  General Description  The Tick Data Record offers a(n) alternative/complement to the online/offline price charts displayed through the MT4/MT5 platform. The Expert Advisor permits to write and save the current/history values of Time, Bid, Ask, Spread, Last and Volume to a text file (“.txt”). The idea is to copy/open the obtained register to/in a spreadshe
                                    FREE
                                    Scientific Calculator MT5
                                    Francisco Manuel Vicente Berardo
                                    The Scientific Calculator is a script designed to compute science, engineering and mathematics expressions.  General Description   The expression to calculate must obey syntax rules and precedence order, being constituted by the following elements:   Integer and real numbers.  Mathematical operators for addition (+), subtraction (-), multiplication (*), division (/) and exponentiation (^).  Mathematical and trigonometric functions .  Curved parentheses (()) to define the precedence and contain
                                    FREE
                                    Tick Data Record MT4
                                    Francisco Manuel Vicente Berardo
                                    The Tick Data Record is a multi-symbol multi-timeframe Expert Advisor that records tick data for later graphical representation and analysis.  General Description   The Tick Data Record offers a(n) alternative/complement to the online/offline price charts displayed through the MT4/MT5 platform. The Expert Advisor   permits   to write and save the current/history values of Time, Bid, Ask, Spread, Last and Volume to a text file (“.txt”). The idea is to copy/open the obtained register to/in a spr
                                    FREE
                                    Scientific Calculator MT4
                                    Francisco Manuel Vicente Berardo
                                    The Scientific Calculator is a script designed to compute science, engineering and mathematics expressions.   General Description   The expression to calculate must obey syntax rules and precedence order, being constituted by the following elements:   Integer and real numbers.   Mathematical operators for addition (+), subtraction (-), multiplication (*), division (/) and exponentiation (^).   Mathematical and trigonometric functions .   Curved parentheses (()) to define the precedence and co
                                    FREE
                                    The Environment State Info Print is a script to display the constants that describe the current runtime environment of a MQL5 program.  General Description   The constants are divided into four groups in the   Environment State section of the MQL5 documentation and each group is divided into enumerations/subgroups (with designations  “Integer”, “Double” or “String”). The script displays constants in two ways: a single constant or all group constants. The constants are obtained by selecting the
                                    FREE
                                    Order Selective Delete MT5
                                    Francisco Manuel Vicente Berardo
                                    The Order Selective Delete is a multi-symbol multi-timeframe script used to delete simultaneously various pending orders.  General Description   The Order Selective Delete   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   three pending order features (symbol, magic   number   and type) are used. The modes, available through the Selection Mode input parameter, relate to the features, available through the “Select by Feature” and “Feature” input pa
                                    FREE
                                    Position Selective Close MT5
                                    Francisco Manuel Vicente Berardo
                                    The Position Selective Close is a multi-symbol multi-timeframe script used to close simultaneously various positions.  General Description   The Position Selective Close   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   four position features (symbol, magic number,   type   and profit) are used. The modes, available through the Selection Mode input parameter, relate to the features, available through the “Select by Feature” and “Feature” input pa
                                    FREE
                                    The Environment State Info Print is a script to display the constants that describe the current runtime environment of a MQL4 program.  General Description   The constants are divided into four groups in the Environment State section of the MQL4  documentation and each group is divided into enumerations/subgroups (with designations “ Market Info”, “Integer”, “Double” or “String”). The script displays constants in two ways: a single constant or all group constants. The constants are obtained by
                                    FREE
                                    Position Selective Close MT4
                                    Francisco Manuel Vicente Berardo
                                    The Position Selective Close is a multi-symbol multi-timeframe script used to close simultaneously various positions.  General Description   The Position Selective Close   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   four position features (symbol, magic number,   type   and profit) are used. The modes, available through the Selection Mode input parameter, relate to the features, available through the “Select by Feature” and “Feature” input pa
                                    FREE
                                    Order Selective Delete MT4
                                    Francisco Manuel Vicente Berardo
                                    The Order Selective Delete is a multi-symbol multi-timeframe script used to delete simultaneously various pending orders.  General Description   The Order Selective Delete   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   three pending order features (symbol, magic   number   and type) are used. The modes, available through the Selection Mode input parameter, relate to the features, available through the “Select by Feature” and “Feature” input pa
                                    FREE
                                    Double Trailing Stop MT4
                                    Francisco Manuel Vicente Berardo
                                    The Double Trailing Stop is a multi-symbol multi-timeframe Expert Advisor that allows the Stop Loss and Take Profit trailing of positions.  General Description   The Double Trailing Stop’s purpose is to secure profit and minimize losses of the opened positions. The Expert Advisor places stop orders (Stop Loss or Take Profit) at the Trailing Stop distance from the market price when the symbol's quote reaches/overcomes the Trailing Start distance from the position’s opening price (a single-time
                                    The Multiple Position Opening is a multi-symbol multi-timeframe script used to open simultaneously various positions.  Risk Management   The volume used to open a position is chosen between a fixed and a variable lot size, available through the Volume and Free Margin % input parameters, respectively. If there isn't enough money in the account for the chosen volume, this is reduced to the highest possible value (corresponding to free margin). If this reduction leads to a correct volume (if the
                                    Pending Order Grid MT4
                                    Francisco Manuel Vicente Berardo
                                    The Pending Order Grid is a multi-symbol multi-timeframe script that enables multi-strategy implementation based on pending order grids.  General Description   The Pending Order Grid allows the performing of a user-defined strategy through the creation of pending order grids. The script places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant price levels to form each grid. The beginning and finish of every grid are defined by the Start Price and Sto
                                    Pending Order Grid EA MT4
                                    Francisco Manuel Vicente Berardo
                                    The Pending Order Grid is a multi-symbol multi-timeframe Expert Advisor that enables multi-strategy implementation based on pending order grids.  General Description   The Pending Order Grid allows the performing of a user-defined strategy through the creation of pending order grids. The Expert Advisor places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant price levels to form each grid. The user might set up different grids to exist simultaneously
                                    Multiple Position Opening MT5
                                    Francisco Manuel Vicente Berardo
                                    1 (1)
                                    The Multiple Position Opening is a multi-symbol multi-timeframe script used to open simultaneously various positions.  Risk Management   The volume used to open a position is chosen between a fixed and a variable lot size, available through the Volume and Free Margin % input parameters, respectively. If there isn't enough money in the account for the chosen volume, this is reduced to the highest possible value (corresponding to free margin). If this reduction leads to a correct volume (if the
                                    フィルタ:
                                    md hazly
                                    33
                                    md hazly 2024.10.09 18:55 
                                     

                                    ユーザーは評価に対して何もコメントを残しませんでした

                                    レビューに返信