• 미리보기
  • 리뷰 (1)
  • 코멘트 (3)
  • 새 소식

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 / Buy Stop) or subtracted (Buy Limit / 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 effective 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 MT5
                                    Tsvetan Tsvetanov
                                    3 (1)
                                    FX28 Trader Dashboard 소개 - 귀하의 궁극적인 트레이드 매니저 FX28 Trader Dashboard는 외환 거래를 새로운 차원으로 끌어올릴 수 있는 포괄적이고 직관적인 트레이드 매니저로 귀하의 거래 경험의 전체 잠재력을 발휘합니다. 귀하가 경험이 풍부한 트레이더이든, 금융 여정을 시작한 지 얼마 안 된 초보자이든, 이 강력한 도구는 귀하의 거래 활동을 효율적으로 정리하고 의사 결정 과정을 향상시키기 위해 개발되었습니다. 주요 특징: 사용자 친화적 인터페이스: 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 o
                                    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
                                    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 ev
                                    Tiger Lite
                                    Dang Cong Duong
                                    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 you
                                    FREE
                                    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 St
                                    Cleopatra EA MT5
                                    Nestor Alejandro Chiariello
                                    안녕하세요 트레이더스입니다! 당신에게 '클레오파트라'를 선물합니다 클레오파트라는 아름답고 지적인 디자인과 그 힘이 다재다능한 곳에 지속적으로 적응하는 회복 형태를 갖추고 있습니다. 주요 전략은 시장의 탄력성을 읽는 것입니다. 진입 범위를 다양한 방식으로 분석할 수 있습니다. 이는 시장 뉴스에 대한 쿼리를 처리하면서 다양한 TF 및 다양한 범위에서 매우 역동적일 수 있습니다. 클레오파트라는 시장 회복에 적응할 수 있는 강력한 힘을 가지고 있으며, 그 패턴은 고정되어 있지 않습니다. 또한 우리는 백분율 또는 변동 여부에 관계없이 propfirm 또는 MFF 계정의 규칙에 따라 작업할 수 있는 다양한 유형의 보호 기능을 보유하고 있습니다. Forex든 다른 기호든 모든 기호에 적응하고 지지와 저항을 기반으로 범위 시간을 효과적으로 제어할 수 있으며 전체 전략을 반대로 작동하도록 할 수도 있고 역학이 사용자에 맞게 적응된다는 점에 유의해야 합니다. 중요: 이 전문가는 A
                                    Binance is a world-renowned cryptocurrency exchange! In order to facilitate MT5 users to directly trade Binance Futures, the program provides the following trading functions: 1. Imitate the trading style of Binance Futures and provide a friendly operation panel; 2. Enter api and secret by yourself (you need to open futures trading permission in Binance api) to get leverage, balance and other information; 3. Support limitOrder (limit order), marketOrder (market order), stopLimit (limit sto
                                    Auto News Trading  is both a trading assistant and an automatic trading bot that can trade automatically on the news. It is very easy to use and just run on the chart. In Forex trading, news is one of the important factors that move the market.   In strategy tester mode, you will be able to see only the panel, because it is impossible to call the news. You can download free   demo version   here. Note:   these demo files expire on 2023-11-15. If the demo version has expired, please send me a
                                    AO Trade
                                    Ka Lok Louis Wong
                                    AO Trade 시스템은 경매 또는 뉴스 시간을 기준으로 하여 다른 특정 주문 시간과 비교하여 시장 트렌드를 예측하기 위해 특별히 설계되었습니다. **EA에서 사용하는 모든 시간 매개 변수는 귀하의 터미널 시간을 기반으로 합니다. 다양한 브로커들은 서로 다른 GMT 시간대에서 작동할 수 있으며, 여름 시간 조정으로 인해 더욱 다양할 수 있습니다.** **구현하기 전에 귀하의 터미널에 맞는 시간 설정을 주의 깊게 확인하십시오.** 권장 설정: M1 시간대에서 사용 HK50 / DE40 / ustec / UK100 시간 체크 중에는 특정 체크 시간 분(1.2 체크 시간 분) 후에 가격 확인이 발생한다는 것을 알 수 있습니다. 이 설계는 의도적으로 이루어졌으며, 참조중인 바(bar)가 완료되도록하고, 주문 시간과의 정확한 비교를 위해 개방, 고점, 저점 및 종가 값을 활용할 수 있도록 합니다. 설정 -----------------1 타이머-------------------
                                    Magic EA MT5
                                    Kyra Nickaline Watson-gordon
                                    Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA
                                    Drawdown Manager by Ofx
                                    Osama Essameldin Ibrahim Abdelaal
                                    In the ebb and flow of financial markets, the Drawdown Manager (by Ofx) stands out as an essential companion for traders utilizing grid and martingale strategies. This innovative tool is engineered to provide an analytical approach to managing trading drawdowns. By selectively utilizing floating and realized profits, the DDM tactically help traders control their drawdown exposure during market downturns. Its customizable settings empower traders with the flexibility to adjust operations accordi
                                    Santa Scalping MT5
                                    Morten Kruse
                                    3.33 (3)
                                    Santa Scalping is a fully automated Expert Advisor with no use of martingale. Night scalping strategy. The SMA indicator filter are used for entries. This EA can be run from very small accounts. As small as 50 EUR. General Recommendations The minimum deposit is 50 USD,  default settings reccomend for eurusd m5 gmt +2 . Please use max spread 10 if you will not have orders change it to -1. Use a broker with good execution and with a spread of 2-5 points. A very fast VPS is required, preferably w
                                    This EA is for only Deriv Synthetic indices.  Forex MT4 Version here:   https://www.mql5.com/en/market/product/89114 Forex MT5 version here:  https://www.mql5.com/en/market/product/89113 Hello traders, I believe you all know that risk and money management along with psychology are the keys to success in trading. No matter how strong one’s strategy is, without these 3 criteria they will always face losses in the long run. I have created an EA to control our human behaviors. This EA will force
                                    RSI Grid MT5
                                    Joseph Anthony Aya-ay Yutig
                                    다른 EA를 무료로 받으세요!!! 다른 EA를 무료로 받으세요!!! 다른 EA를 무료로 받으세요!!! 다른 EA를 무료로 받으세요!!! 다른 EA를 무료로 받으세요!!! RSI Grid는 RSI 과매수 및 과매도 조건을 기반으로 하며 거래가 시장에서 손해를 보는 쪽에 있을 때 그리드를 엽니다. RSI는 기술 거래자들에게 강세 및 약세 가격 모멘텀에 대한 신호를 제공하며 종종 자산 가격 그래프 아래에 표시됩니다. 자산은 일반적으로 RSI가 70% 이상일 때 과매수 상태로 간주되고 30% 미만일 때 과매도 상태로 간주됩니다. 매개변수: 시간 필터 월요일 화요일 수요일 목요일 금요일 토요일 일요일 시작 시간 종료 시간 RSI 설정 RSI 기간 과매수 과매도 타임프레임 자산 관리 오토로트 최대 부지 이익을 취하다 그리드 크기 승수 후행 옵션 후행 정지 후행 단계 트레일 오프셋
                                    /   ********** **********   ********** **********   ********** **********   ********** **********   ********** **********   / Big Sales for Easter! Price is reduced > 50 % already! Grasp the chance and Enjoy it!  /   ********** **********   ********** **********   ********** **********   ********** **********   ********** **********   / This is a powerful EA that support single order strategy, martingale strategy, multiple timeframes strategy, etc with lots of useful indicators and self define
                                    Forget coding! You no longer need EAs! Any indicators (and not only) can now trade themselves anything anywhere! GRat_IndiTrade is a strategy builder for automatic trading by the signals of  ANY available indicators without limits (both standard and custom), as well as on ANY of their combinations, by candlestick patterns, without the need to write, generate or compile any code . You no longer need to be or hire a programmer to test and automate ALL your trading ideas. Just place the indicato
                                    Metatrader5 Trailing Stop Loss Program Platform Compatibility : This program is designed for the MetaTrader 5 platform. Functionality : The program scans all open Forex currency pair trades on MetaTrader 5 and adjusts their STOP LOSSES to a PROFIT position based on your specified input parameters. Parameters and Example : Example Trade : EURUSD Long (BUY) trade @ 1.0800 STOP LOSS (-50 pips) @ 1.0750 TAKE PROFIT (+50 pips) @ 1.0850 Program Settings : WhenToTrail = 20 PIPS (Pips profit amount to
                                    G Trade Broker Check
                                    Hamidreza Sadkhosravi
                                    G Trade Broker Check – Instantly Evaluate Broker Performance Across Multiple Accounts and Leverage Settings Take your trading to the next level by analyzing your broker’s performance in real time! With G Trade Broker Check , traders can effortlessly track their broker’s behavior over the past 24 hours on any symbol added to the Market Watch in MT5. Whether you’re comparing multiple brokers, testing different account types, or analyzing varying leverage setups, this powerful Expert Advisor pro
                                    FREE
                                    Overview: The TropangFX AutoMgmt is a versatile trading utility designed to enhance your averaging strategy by automatically placing take profit and stop loss orders. This utility empowers traders by integrating a risk calculator and lot-size customization, ensuring that each trade aligns with their risk management preferences and financial goals. Key Features: Automated Take Profit & Stop Loss: Automatically sets take profit and stop loss levels for each trade based on predefined criteria. Ens
                                    The King Advisor MT5
                                    Guillem Boix Martin
                                    4.55 (53)
                                    킹 어드바이저는 고도로 발전된 신경망 알고리즘입니다. 이 전략은 정교한 자가 학습 시스템과 수년간의 경험과 작업으로 고안된 트레이딩 시스템을 통해 지지선, 저항선, 추세선을 식별하는 것을 기반으로 합니다. 숙련된 트레이더로 구성된 팀이 개발했습니다. 예시 200개로 제한됩니다 --> 업데이트된 총 판매 부수: 195  개 다음 EA를 제공하는 프로모션이 진행 중입니다. 받으시려면 구매 후 문의해 주세요. 이 프로모션은 기간 한정으로 제공됩니다. 킹 어드바이저는 체결을 제어할 수 있습니다. 거래를 하기 전에 로봇은 거래 쌍에 대한 유동성 흡수량을 평가하여 슬리피지를 최소화하고 최상의 조건에서 거래가 체결되도록 합니다. 킹 어드바이저는 리스크 관리가 매우 우수하여 주문을 제어합니다. 이 전문 어드바이저는 최악의 시장 상황에서 엄격한 테스트를 거쳐 다양한 시장 시나리오에 적응할 수 있는 능력을 입증했습니다. 또한 전문가는 다음 데이터를 사용하여 99.9 %의 모델링 품질로 20 년 이상
                                    HYT utility
                                    Sergey Batudayev
                                    5 (1)
                                    HYT (Help Your Trading) is a tool designed to help you average down your losing positions using two main techniques: Standard averaging . Hedging with subsequent opening of positions in the direction of the trend . Buy 1 and 1 get FREE This tool allows you to manage multiple positions opened in different directions, both for buying and selling. HYT automatically calculates the size of the next position , order price, direction for averaging, and closing the position with a specified take-profit
                                    EA Monolith
                                    Vasiliy Kolesov
                                    5 (1)
                                    EA Monolith EA monolith   is a fully automatic, multicurrency Expert Advisor designed for trading on the Forex market in the MT5 terminal on accounts with "netting" orders, "no hedge".  The EA has a function for closing all orders when a critical drawdown is reached, the size of which is set in the settings, which provides full protection of the deposit. This version of the Expert Advisor is configured to work on the gold spot tool. If your broker has two decimal places in quotes on the
                                    Bergland Gold MT5
                                    Matthias Bessler
                                    2.33 (3)
                                    This fully automated trading system is part of the Bergland signal. It features a highly efficient trading logic, and a money management system. Reasonable calculated stop loss and take profit levels. It is easy to install and do not require a special setfile. XAUUSD, M15 Special Promo:    If you register with my cashback link, you will get this EA for free. PM me for instructions.
                                    News Trade EA MT5
                                    Konstantin Kulikov
                                    4.5 (10)
                                    제가 몇 년 동안 사용하고 있는 유용한 로봇을 소개드립니다. 반자동뿐만 아니라 자동 모드로도 사용할 수 있습니다. 본 프로그램에는 경제 캘린더의 뉴스별로 유연한 거래 설정이 포함되어 있습니다. 전략 테스터에서 확인할 수 없습니다. 진짜 작업뿐입니다. 터미널 설정에서 허용된 URL 목록에 뉴스 사이트를 추가해야 합니다. 서비스>설정 > 조언자>를 클릭합니다. "다음 URL에 대해 WebRequest 허용:" 확인란을 선택합니다. 다음을 추가합니다 (공백 삭제): https://  nfs.faireconomy.media 자동 모드 시 기본 설정 관리: https://www.mql5.com/ko/signals/1447007 . 동일한 결과를 얻으려면 임의 기간 (기간이 얼마정도인지 상관 없음)의 GBPUSD 차트에 전문가를 첨부하십시오. 이 전문가를 위해 고유 설정 세트를 만들 때 블로그의 모든 매개변수에 대한 설명을 참조하십시오: https://www.mql5.com/en/
                                    MilliiEa
                                    Ricardo Mccartney
                                    Introducing Milli EA: Your Path to Success in Forex Trading Are you seeking a trading solution that can propel your forex trading to new heights? Look no further than Milli EA, a groundbreaking expert advisor that I've poured months of dedication and hard work into. I take immense pride in this EA and have continually refined and backtested it to ensure it becomes an invaluable asset in achieving your trading goals. Milli EA boasts a fusion of top-tier indicators, including Support and Resistanc
                                    Hamster Scalping mt5
                                    Ramil Minniakhmetov
                                    4.7 (194)
                                    Hamster Scalping은 마틴게일을 사용하지 않는 완전 자동화된 거래 고문입니다. 야간 스캘핑 전략. RSI 표시기와 ATR 필터는 입력으로 사용됩니다. 고문은 헤징 계정 유형이 필요합니다. 실제 작업 및 기타 개발 모니터링은 여기에서 찾을 수 있습니다. https://www.mql5.com/en/users/mechanic/seller 일반 권장 사항 최소 예치금 $100, 최소 스프레드의 ECN 계정 사용, 기본 설정은 eurusd M5 gmt + 3입니다. 입력 매개변수 EA는 4자리 및 5자리 따옴표 모두에서 작동합니다. 입력 매개변수에서 5자에 대해 포인트로 값을 표시하면 자동으로 모든 것을 4자로 다시 계산합니다. NewCycle - 모드가 켜져 있으면 고문이 멈추지 않고 작동하고, 모드가 꺼져 있으면 일련의 거래가 완료된 후 고문이 새 주문을 열지 않습니다. 기간 표시기1 - 첫 번째 표시기의 기간. 상위 레벨 - 고문이 판매를 시작하는 첫
                                    Bollinger Turbo
                                    Aleksandr Zakhvatkin
                                    Советник основан на популярной стратегии и использованием связки из двух индикаторов: Bollinger Bands + RSI. Добавлена функция добавления новых позиций при определенной просадке. Количество добавляемых позиций и размер просадки регулируются. Описание настроек Группа "Настройки торговли" Lot Size Размер лота Drawdown Просадка TakeProfit Тейк профит Count Счетчик доливок (не более 10) New bar control Включение явного контроля открытия нового бара (для тестера) Группа "Настройки Bol
                                    We Can Do IT MT5
                                    Lai Thi Tuyet Mai
                                    We Can Do IT MT5 is a Secure Automated Software for Generation of Daily Profits for Forex Market. The architecture is a Fully Automatic Autonomous Robot Expert capable of independently analyzing the market and making trading decisions. The Trading system is Multi-currency and is able to trade on H1 charts:  EURUSD, GBPUSD, USDJPY, SPX500, DAX30, GOLD NOT  Martingale! NOT GRID, Averaging and other dangerous strategies are NOT used!  This is a full compliance with the FIFO method !  The trading
                                    Mayari MT5
                                    Jose Lagayan
                                    Introducing the MAYARI MT5: The Trend Indicator Expert Advisor *Set Files for EURUSD available on the Comments Section *RESULTS SHOWN HERE ARE NOT OVER OPTIMIZED UNLIKE OTHER BOTS THE IS FOR SALE! ONLY REALISTIC RESULTS! *The default settings of MAYARI MT5 are optimized for EURUSD, based on rigorous back-testing over a 4-year period. For safe and effective operation, it's recommended to use the default settings with an account balance of at least $1,000 USD. Embark on a journey where technology
                                    이 제품의 구매자들이 또한 구매함
                                    Trade Assistant MT5
                                    Evgeniy Kravchenko
                                    4.37 (166)
                                    거래당 위험 계산, 라인을 사용한 손쉬운 신규 주문, 부분 청산 기능을 통한 주문 관리, 7가지 유형의 트레일링 스탑 및 기타 유용한 기능을 제공합니다. 주의, 응용 프로그램은 전략 테스터에서 작동하지 않습니다. 설명 페이지에서 데모 버전을 다운로드할 수 있습니다.  Manual, Description, Download demo 라인 기능       - 차트에 개시선, 손절매, 차익실현을 표시합니다. 이 기능을 사용하면 새로운 주문을 쉽게 하고 개봉 전에 추가 특성을 볼 수 있습니다. 위기 관리       -       위험 계산 기능은 설정된 위험과 손절매 주문의 크기를 고려하여 새 주문의 볼륨을 계산합니다. 이를 통해 손절매 크기를 설정하고 동시에 설정된 위험을 존중할 수 있습니다. 로트 계산 버튼 - 위험 계산을 활성화/비활성화합니다. 필요한 위험 값은 위험 필드에 0에서 100 사이의 백분율 또는 예금 통화로 설정됩니다. 설정 탭에서 위험 계산 옵션을 선택합니다.
                                    Trade Manager EA에 오신 것을 환영합니다. 이 도구는 거래를 보다 직관적이고 정확하며 효율적으로 만들기 위해 설계된 궁극적인 리스크 관리 도구 입니다. 단순한 주문 실행 도구가 아닌, 원활한 거래 계획, 포지션 관리 및 리스크 제어를 위한 종합 솔루션입니다. 초보자부터 고급 트레이더, 빠른 실행이 필요한 스캘퍼에 이르기까지 Trade Manager EA는 외환, 지수, 상품, 암호화폐 등 다양한 시장에서 유연성을 제공합니다. Trade Manager EA를 사용하면 복잡한 계산은 이제 과거의 일이 됩니다. 시장을 분석하고 진입, 손절 및 익절 수준을 차트의 수평선으로 표시한 후 리스크를 설정하면, Trade Manager가 이상적인 포지션 크기를 즉시 계산하고 SL 및 TP 값을 실시간으로 표시합니다. 모든 거래가 간편하게 관리됩니다. 주요 기능: 포지션 크기 계산기 : 정의된 리스크에 따라 거래 크기를 즉시 결정합니다. 간단한 거래 계획 : 진입, 손절, 익절을 위한
                                    TradePanel MT5
                                    Alfiya Fazylova
                                    4.85 (115)
                                    Trade Panel은 다기능 거래 보조원입니다. 이 애플리케이션에는 수동 거래를 위한 50개 이상의 기능이 포함되어 있으며 대부분의 거래 작업을 자동화할 수 있습니다. 구매하기 전에 데모 계정에서 데모 버전을 테스트할 수 있습니다. 데모는 여기 에서 확인하세요. 전체 지침은 여기 에서 확인하세요. 거래 . 한 번의 클릭으로 기본적인 거래 작업을 수행할 수 있습니다: 보류 주문 및 포지션 열기 주문 그리드 열기 보류 주문 및 포지션을 마감합니다. 포지션 전환(매수를 청산하여 매도를 개시하거나 매도를 청산하여 매수를 개시). 포지션 고정(반대 포지션을 열어 SELL과 BUY 포지션의 볼륨을 동일하게 만듭니다). 모든 포지션을 부분 청산합니다. 모든 포지션의 이익실현 및/또는 손절매를 공통 수준으로 설정합니다. 모든 포지션의 손절매를 손익 분기점 수준으로 설정합니다. 주문 및 포지션을 열 때 다음을 수행할 수 있습니다. 설정된 위험에 따라 거래량 자동 계산을 사용합니다. 한 번의 클릭으
                                    Telegram To MT5 Receiver
                                    Levi Dane Benjamin
                                    4.86 (7)
                                    가입한 모든 채널에서 (개인 및 제한된 채널 포함) 시그널을 바로 MT5로 복사합니다.   이 도구는 사용자를 고려하여 설계되었으며 거래를 관리하고 모니터하는 데 필요한 많은 기능을 제공합니다. 이 제품은 사용하기 쉽고 시각적으로 매력적인 그래픽 인터페이스로 제공됩니다. 설정을 사용자 정의하고 제품을 몇 분 안에 사용할 수 있습니다! 사용자 가이드 + 데모  | MT4 버전 | 디스코드 버전 데모를 시도하려면 사용자 가이드로 이동하십시오. Telegram To MT5 수신기는 전략 테스터에서 작동하지 않습니다! Telegram To MT5 특징 여러 채널에서 동시에 신호를 복사합니다. 개인 및 제한된 채널에서 신호를 복사합니다. Bot 토큰이나 채팅 ID가 필요하지 않습니다.   (원하는 경우에는 사용할 수 있습니다) 위험 % 또는 고정된 로트로 거래합니다. 특정 심볼을 제외합니다. 모든 신호를 복사할지 또는 복사할 신호를 사용자 정의할지 선택할 수 있습니다. 모든 신호
                                    사용자 지정 알림은 8가지 주요 통화(USD, CAD, GBP, EUR, CHF, JPY, AUD, NZD)와 금(XAU), 이러한 통화를 기준으로 하는 28개의 모든 외환 및 금 쌍, US30, UK100, WTI, 비트코인 등 최대 7개 지수에 걸쳐 유망한 설정을 식별하는 다목적 멀티마켓 모니터링 도구입니다. 완전히 사용자 정의할 수 있습니다. 이 도구는 FX 파워, FX 볼륨, IX 파워 지표에서 데이터를 수집하여 중요한 이벤트를 알려줍니다.   시작하기 전에 이 멀티 마켓 스캐너가 제공하는 모든 옵션을 활용하려면 터미널에 사용 중인 보조지표가 이미 설치되어 있어야 합니다. 기능 및 다양한 알림 옵션에 대한 자세한 내용은 -> 사용자 지정 알림 FAQ에서 확인하세요.                                                                                                        사용자 지정 알림은
                                    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
                                    -25% discount ($199 -> $149) Advanced trading tool: One click smart orders that execute under your conditions Developed by trader for trading community:  position size calculator (lot size), open position after price action, strategy builder, set and forget trading, mobile notifications... Risk Management -  Risk percentage position size calculator, gain percentage, target risk reward ratio, spread and commissions are included in calculations 7 Advanced order types  - Set and forget trading w
                                    Trading Chaos Expert
                                    Gennadiy Stanilevych
                                    5 (10)
                                    This software has no equals in the world and represents a universal trade "console" covering trading signals, automated market entry, setting of Stop Loss and Take Profit, as well as Trailing Profit for multiple trades at the same time in a single open window. Intuitive control of the Expert Advisor in "three clicks" ensures a comprehensive use of all its functions on different computers, including tablets PCs. Interacting with additional signal indicators that mark the chart to give a real mark
                                    Binance Future용 Mt5 봇(전문가) 시스템은 Binance Future 시장에서 실행됩니다. 이를 자신의 코드에 쉽게 통합하여 작업을 자동화할 수 있습니다. 수동 조작 패널을 사용할 수 있습니다. 헤지 모드 호환. 모든 작업은 화면에서 수동으로 수행할 수 있습니다. 많은 암호화폐를 동시에 제어하는 가장 효과적인 방법입니다. 화면은 바이낸스 화면이 있는 템플릿 형식입니다. 링크에서 템플릿 파일을 다운로드할 수 있습니다. https://drive.google.com/file/d/1WHqGhym0QIK31l7kwfit9_tXb7YbqSuT/view?usp=sharing 이 프로그램은 설치가 필요합니다. https://www.mql5.com/tr/market/product/68694 https://www.mql5.com/tr/market/product/73887 매개변수 API 키 = 바이낸스 API 키 비밀 키 =
                                    Trade Assistant 38 in 1
                                    Makarii Gubaydullin
                                    4.89 (18)
                                    다기능 도구: 로트 계산기, 가격 조치, R/R 비율, 무역 관리자, 공급 및 수요 영역을 포함한 65개 이상의 기능 데모 버전   |   사용자 매뉴얼   |   MT5 버전 이 유틸리티는 전략 테스터에서 작동하지 않습니다.   여기에서 데모   버전을 다운로드하여 제품을 테스트할 수 있습니다. Contact me   질문/개선 아이디어가 있는 경우/버그가 발견된 경우   저에게 연락 하십시오. 거래 프로세스를 간소화, 가속화 및 자동화하십시오. 이 대시보드로 표준 터미널 기능을 확장하십시오. 유틸리티는 외환, 주식, 지수, 암호화폐 등 모든 거래 수단에서 작동합니다. 1. 새로운 거래 열기 : 로트/리스크/RR 계산: 1. Lot 계산기 (리스크 규모에 따른 거래량 계산) 2. 리스크 계산기 (로트 규모에 따른 리스크 금액) 3. 위험/보상 비율(RR) 4. 주문에 대한 활성화 트리거 + StopLimit 구매 / StopLimit 판매 5. 가상 SL / TP 레벨
                                    Set price targets, and leave everything else to HINN Lazy Trader! This tool is designed for automatic position sizing from specified levels to designated targets. Using a VPS is recommended (*). The demo version   limited in functionality, be sure to watch this video before using -->  https://youtu.be/geLQ6dUzAr8 A community for users, product discussion, update news, and first line of support are organized in a free Discord: https://discord.gg/zFhEZc7QDQ Use Webmoney For payments in cryptocu
                                    Hedge Ninja
                                    Robert Mathias Bernt Larsson
                                    3 (2)
                                    Make sure to join our Discord community over at www.Robertsfx.com , you can also buy the EA at robertsfx.com WIN NO MATTER IN WHICH DIRECTION THE PRICE MOVES This robot wins no matter in which direction the price moves by following changing direction depending on in which direction price moves. This is the most free way of trading to this date. So you win no matter which direction it moves (when price moves to either of the red lines as seen on the screenshot, it wins with the profit target yo
                                    RiskGuard Management
                                    MONTORIO MICHELE
                                    5 (14)
                                    ATTENTION the expert does not work in strategy tester, for a trial version visit my profile. Manual RiskGuard Management   RiskGuard management was born with the idea of ​​helping traders from their initial journey to becoming expert and aware traders. Compatible with any operating system whether Mac or Windows. The operations panel is integrated into the graph giving the possibility to choose size and position between right and left, while the various buttons light up when they can be used,
                                    The product will copy all  Discord  signal   to MT5   ( which you are member  ) , also it can work as remote copier.  Easy to set up. Work with almost signal formats, support to translate other language to English Work with multi channel, multi MT5. Work with Image signal. Copy order instant, auto detect symbol. Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. How to setup and guide: Let read all details about setup and download Discord To MetaTrade
                                    The  Easy Strategy Builder (ESB)  is a " Do It Yourself " solution that allows you to create a wide range of the automated trading strategies without any line of codes. This is the world’s easiest method to automate your strategies that can be used in STP, ECN and FIFO brokers. No drag and drop is needed. Just by set conditions of your trading strategy and change settings on desired values and let it work in your account. ESB has hundreds of modules to define unlimited possibilities of strategi
                                    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
                                    -25% discount ($149 -> $111) Everything for chart Technical Analysis indicator mt5 in one tool Draw your supply demand zone with rectangle and support resistance with trendline and get alerts to mobile phone or email alert -  Risk reward indicator mt5 Video tutorials, manuals, DEMO download   here .   Find contacts on my   profile . 1.   Extended rectangles and trendlines Object will be extended to the right edge of the chart when price will draw new candles on chart. This is rectangle extend
                                    YuClusters
                                    Yury Kulikov
                                    4.93 (42)
                                    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
                                    Mentfx Mmanage mt5
                                    Anton Jere Calmes
                                    4.25 (8)
                                    The added video will showcase all functionality, effectiveness, and uses of the trade manager. Drag and Drop Trade Manager. Draw your entry and have the tool calculate the rest. Advanced targeting and close portions of a trade directly available in tool (manage trades while you sleep). Market order or limit order on either side with factored spread. Just draw the entry, the tool does the rest. Hotkey setup to make it simple. Draw where you want to enter, and the stop loss, the tool calculates al
                                    Effortlessly calculate lot sizes and manage trades to save time and avoid costly errors The Trade Pad Pro EA is a tool for the Metatrader Platform that aims to help traders manage their trades more efficiently and effectively. It has a user-friendly visual interface that allows users to easily place and manage an unlimited number of trades, helping to avoid human errors and enhance their trading activity. One of the key features of the Trade Pad Pro EA is its focus on risk and position managem
                                    Adam FTMO MT5
                                    Vyacheslav Izvarin
                                    5 (2)
                                    ADAM EA Special Version for FTMO Please use ShowInfo= false for backtesting ! Our 1st EA created using ChatGPT technology Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Tested on EURUSD and GBPUSD only  Use 15MIN Time Frame Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday For Prop Firms MUST use special Protector  https://www.mql5.com/en/market/product/94362 -------------------------------------------------------------------------------
                                    ClusterSecond
                                    Rafil Nurmukhametov
                                    4.78 (32)
                                    The utility allows you to build different types of graphs: Seconds chart from 1 second to 86400 seconds Tick chart from 1 tick and above The volume chart Delta chart Renko chart Range chart Demo version of the utility https://www.mql5.com/ru/channels/clustersecond Built-in indicators for volumetric analysis: daily market profile and market profile of the selected timeframe, Cluster Search Imbalance VWAP Dynamic POC, VAH, VAL the profile depth of the market vertical volume with various display op
                                    회원인 모든 채널에서 신호를 복사하세요 ( 봇 토큰이나 관리자 권한이 필요하지 않음  MT5로 직접 이동합니다. 사용자를 고려하여 설계되었으며 필요한 많은 기능을 제공합니다 이 제품은 사용하기 쉽고 시각적으로 매력적인 그래픽 인터페이스로 제공됩니다. 설정을 사용자 정의하고 제품을 몇 분 안에 사용을 시작하세요! 사용자 가이드 + 데모  | MT4 버전 | 텔레그램 버전 데모를 시도하려면 사용자 가이드로 이동하십시오. Discord   에서 MT5로는 전략 테스터에서 작동하지 않습니다. Discord   에서 MT5로의 기능 회원인 모든 채널에서 복사합니다. 봇 토큰이나 채팅 ID가 필요하지 않습니다 위험 % 또는 고정 로트를 사용하여 거래하세요 특정 심볼 제외 모든 신호를 복사하거나 복사할 신호를 사용자 정의하세요 모든 신호를 인식하도록 단어 및 구를 구성합니다 (기본 설정은 99%의 신호 제공 업체에 작동해야 함) 원하는 경우 시간 및 날짜 설정을 구성하여 신호를 복사
                                    News Filter Tool
                                    Apex Software Ltd
                                    5 (1)
                                    뉴스 이벤트 인사이트로 거래를 강화하세요 빠르게 변화하는 거래 세계에서 뉴스 이벤트는 시장 가격에 큰 영향을 미칠 수 있습니다. 이러한 이벤트가 가격 변동에 미치는 영향을 이해하는 것은 변동성이 큰 시기에 거래를 관리하는 데 중요합니다. News Tool EA는 과거 및 향후 뉴스 이벤트에 대한 통찰력을 제공하여 정보에 기반한 거래 결정을 내릴 수 있도록 설계되었습니다. 이 EA는 전략 테스터에서 실행할 수 없습니다. 사용자 가이드 주요 기능: 과거 뉴스 영향 분석 과거 특정 뉴스 이벤트에 대한 가격 움직임이 어떻게 반응했는지 이해하세요. 이벤트가 주로 강세 또는 약세 추세를 따르는지 분석하고, 조정 가능한 시간 프레임을 통해 평균 가격 영향을 포인트 또는 퍼센트로 확인할 수 있습니다. 시각적 그래프를 통해 뉴스 이벤트와 가격 반응을 함께 관찰하여 시장에 대한 더 깊은 통찰을 얻을 수 있습니다. 실시간 뉴스 통합 MT5에서 직접 다가오는 뉴스 이벤트에 대한 실시간 업데이트를
                                    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
                                    Click and Go Trade Manager, the ultimate solution for seamless trading execution. With a simple click on the chart, you can effortlessly define your stop loss, entry price, and target levels. No more hassle of inputting values manually - it's made incredibly intuitive and easy. Embedded risk management is a key feature of our Trade Manager. We understand the importance of protecting your investments, which is why the Click and Go Trade Manager incorporates risk management. When placing orders, y
                                    MQLplus Charting
                                    Dominik Egert
                                    3.67 (3)
                                    MQLplus Charting  Inspired by good charting solutions available on the web, this utility finally brings some neat features to MT5 to make charting fun again. Current version supports following features: Free floating charts , similar to Tradingview A sophisticated Cross-Hair , with detailed data display Multi-Chart Cross-Hair  sync function Measurement tool , showing account currency, points and period count as results Speed-Scrolling  to move fast through markets history Snail-Scrolling  to
                                    EmoGuardian
                                    Samuel Bandi Roccatello
                                    5 (1)
                                    EmoGuardian을 사용하여 거래 계정에 고급 위험 한도를 부과하여 과잉 거래, FOMO 및 강박적인 행동을 피하십시오. 포지션에 손절매  를 자동으로 추가하고, EA 손실을 관리하고, EA를 자동으로 로드/언로드합니다.  포지션당, 거래당, 시간 범위별, 일별로 위험을 제한합니다. 위험 관리 옵션은 거래자가 계정을 날려버리게 만드는 감정과 강박적인 행동을 구체적으로 다루기 위해 개발되었습니다. 주의: 이것은 유틸리티이므로 전략 테스터에서는 작동하지 않습니다. EmoGuardian은 Netting 계정에서 작동하지 않습니다(대부분의 거래 계정은 헤징 계정임). 매뉴얼 및 데모 버전 주의: 이것은 유틸리티이므로 전략 테스터에서는 작동하지 않습니다. EmoGuardian은 Netting 계정에서 작동하지 않습니다(대부분의 거래 계정은 헤징 계정임). 독특한 기능:  계좌 잔액의 백분율 또는 핍 단위로 포지션에 손절매를 자동으로 추가합니다.  위험 한도에 도달하면 EA를 종료
                                    Online Accounts Manager MT5
                                    Kyra Nickaline Watson-gordon
                                    5 (1)
                                    OneClick Online Account Manager is a powerful utility that helps you to manage all your accounts from a centralized panel. It is suitable for all single account traders and specially for multiple accounts traders. The utility help you to : Monitor status of all accounts on a private web page. Some information such as account connection status, account profit, DD, Balance, Equity, Margin Level, Number of positions and orders, Daily and Weekly profit/loss and also overall summation of all these
                                    There is Demo version of this panel Dashboard Symphonie Trader System MT5 Demo in my product list, please try it out to get familiar with all functionalities for free. Free version: LINK MT4 version: LINK  This system basically utilizes Symphonie Indicator Set (Extreme, Emotion, Trend, and Sentiment) as the core indicators to generate trading signal mainly on time-frame M15. The signal will be further filtered and trimmed by 1) M5 and M15 Stochastic; 2) EMA5 and PA To facilitate you to understan
                                    제작자의 제품 더 보기
                                    Multiple Position Opening MT5
                                    Francisco Manuel Vicente Berardo
                                    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
                                    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
                                    Multiple Position Opening MT4
                                    Francisco Manuel Vicente Berardo
                                    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
                                    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 sp
                                    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
                                    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 p
                                    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 contai
                                    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 p
                                    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 p
                                    FREE
                                    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
                                    Environment State Info Print MT5
                                    Francisco Manuel Vicente Berardo
                                    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 th
                                    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 p
                                    FREE
                                    Environment State Info Print MT4
                                    Francisco Manuel Vicente Berardo
                                    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 b
                                    FREE
                                    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 St
                                    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 simultaneousl
                                    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
                                    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 St
                                    필터:
                                    md hazly
                                    33
                                    md hazly 2024.10.09 18:55 
                                     

                                    사용자가 평가에 대한 코멘트를 남기지 않았습니다

                                    리뷰 답변
                                    버전 1.6 2024.10.05
                                    Insignificant change, not requiring an update:

                                    - Edition of the brief text description at the EA’s properties window.
                                    버전 1.5 2024.08.28
                                    Minor change, still requiring an update:

                                    - Improvement of the function added in the 1.3 version (2024.07.16).
                                    버전 1.4 2024.08.01
                                    Minor change, nevertheless, requiring an update:

                                    - Second correction of the formulas used to calculate the Stop Loss and Take Profit prices when sending a pending order (replacement of the quote used as “reference” in each calculation, Ask price instead of Bid price, and vice versa).
                                    버전 1.3 2024.07.16
                                    Minor change, however, requiring an update:

                                    - Function added to deal with the account change and terminal closure during the Expert Advisor’s operation, two actions that result in the EA’s global variables resetting.
                                    버전 1.2 2024.06.28
                                    Minor change, but requiring an update:

                                    - Correction of the formulas used to calculate the Stop Loss and Take Profit prices when sending a pending order (previously, both values had a deviation equal to the current spread).
                                    버전 1.1 2024.06.02
                                    Minor change, not requiring an update:

                                    - Link addition at the EA’s properties window to visit the product page.