• 미리보기
  • 리뷰
  • 코멘트
  • 새 소식

Pending Order Grid EA MT5

Pending Order Grid is a multi-symbol multi-timeframe Expert Advisor that enables multi-strategy implementation based on pending order grids. The EA offers multi-option through input parameters to configure the pending orders. 

General Description 

Pending Order Grid allows the performing of a user-defined strategy through the creation of one or more grids of pending orders. 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 multiple grids, with different features, to exist simultaneouslyit's just needed to attach the EA at 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, occurring between the pending order’s placing and its triggering. 

    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 market price for placing a Stop Loss at a position opening (pips). 
        • Take Profit: Distance from the market price for placing a Take Profit at a position opening (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 (to which the EA is attached) after a(n) (re)initialization of the EA, in the description of a chart object after the creation of a horizontal/vertical line at one of the grid’s limits or after the placing of a pending order, and in the Trade/History tab of the Toolbox window after the placing of 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 is obtained from a mathematical expression, inserted in the Optimization Criterion input parameter, which is calculated after the testing is over. 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 Optimization Criterion input parameter, is presented in the Journal / Optimization Results tab 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. 

                                    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). 

                                    The Expert Advisor rechecks the validity of the grid’s limits in the price and time current context every time one of the input parameters is changed: Start Price, Start Time, Stop Price, Stop Time or Type. 

                                    Conclusion 

                                    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.


                                    추천 제품
                                    New way to trade winning
                                    Ricardo Copio Bejenaru Martins
                                    VIDEO  https://youtu.be/qDMbdJU8wWA Close your trades when you have X$ in profit or Y$ in loss. Closing all trades automatically and pending orders. Use your strategy and start being a winner You can have more information about my robot at video Feche todas as suas ordens instantaneamente no lucro ganhe muito dinheiro fazendo scalper de uma forma que nunca viu! o robo fecha todas as ordens quando atingir o lucro em $$$ e apaga as ordens pendetes! Veja o video é tudo automatico CLOSE YOUR TRADE I
                                    CAP Moving Average Pro EA  trades using the Moving Averages Indicator. It offers many customizable Moving Averages trading scenarios and flexible position management settings, plus many useful features like customizable trading sessions, a martingale and inverse martingale mode. [   Installation Guide  |  Update Guide  |  Submit Your Problem  |  FAQ  |  All Products  ] Before buy Pro version? You can buy alternation pro version, our powerfull EA,   CAP Strategy Builder EA .  This is strategy b
                                    Welcome to Smart Moringa  Smart Moringa is a smart trading robot that uses safe grid algorithm to grow small accounts. It is an out standing robot that employs both institutional and retails interests to find an average preferable trading conditions as to avoid trading stunt. This product has been tested thoroughly under the variety of different market  conditions. However, we recommend to test too, to find the usage conditions as per user's trading style. We understand that trading styles diffe
                                    Risk Manager for MT5
                                    Sergey Batudayev
                                    4.42 (12)
                                    MT5의 Expert Advisor Risk Manager는 매우 중요하며 제 생각에는 모든 거래자에게 필요한 프로그램입니다. 이 Expert Advisor를 사용하면 거래 계정의 위험을 제어할 수 있습니다. 위험 및 이익 통제는 금전적 측면과 백분율 측면에서 모두 수행될 수 있습니다. Expert Advisor가 작동하려면 통화 쌍 차트에 첨부하고 예금 통화 또는 현재 잔액의 %로 허용되는 위험 값을 설정하기만 하면 됩니다. PROMO BUY 1 GET 2 FREE -   https://www.mql5.com/en/blogs/post/754725 어드바이저 기능 이 위험 관리자는 위험을 제어하는 ​​데 도움이 됩니다. - 거래를 위해 - 하루 - 일주일 동안 - 한 달 동안 당신은 또한 제어할 수 있습니다 1) 거래 시 최대 허용 랏 2) 1일 최대 주문 수 3) 하루 최대 수익 4) 지분 인수 이익 설정 그게 다가 아닙니다. 설정에서 자동 설정을
                                    Risk Manager m5
                                    Maryna Shulzhenko
                                    Risk Manager at a Glance: A Revolutionary Robot with a Unique Trading System Risk Manager is a revolutionary robot. With its unique trading system using sentiment analysis and machine learning, Risk Manager is a game changer when it comes to executing trades. You can work on any hourly period, any currency pair and on the server of any broker. Risk Manager is a trading robot that uses its own algorithm to make trading decisions. Different approaches to analyzing input information are used, wh
                                    Stability Pro MT5
                                    Profalgo Limited
                                    5 (3)
                                    출시 프로모션: 990 $ 대신 단 34 9 $! 이 프로모션 가격으로 몇 장만 남았습니다! 저희 프로모션 블로그   에서 "   Ultimate EA 콤보 패키지 "   를 꼭 확인해 보세요   !   JOIN PUBLIC GROUP:   Click here 실시간 결과 위험도 낮음 실시간 결과 고위험 STABILITY PRO에 오신 것을 환영합니다   . 시장에서 가장 발전되고 안정적이며 위험이 낮은 그리드 시스템 중 하나입니다! 이 EA는 사용하는 외환쌍의 전체 사용 내역에 대해 스트레스 테스트를 거쳤습니다. 이러한 스트레스 테스트 동안 EA는 아래 스크린샷에서 볼 수 있듯이 2007년부터 오늘까지 매달 수익을 올렸습니다. EA는 고정된 거리에서 그리드 거래를 추가하지 않지만 시장 움직임을 분석하여 그리드 위치를 결정하는 고급 SVG 알고리즘(스마트 변수 그리드)을 사용합니다. 나는 이 EA에 대해 좋은 위험/보상 비율과 강력한 복구 요소를 얻기 위해 많은 노력을
                                    Impuls Pro
                                    Sergey Batudayev
                                    EA의 전략은 스윙 트레이딩을 기반으로 하며 iPump 지표에 의해 계산된 날카로운 충동 이후의 항목이 있습니다. 앞서 언급했듯이 EA는 자동 지원으로 수동 거래를 열 수 있습니다. - 하락추세의 경우 ↓ 가격 조정 후 거래에 진입하고 자산이 과매수 영역에 들어가 추세를 따라 매도합니다. - 상승 추세 ↑의 경우 가격 조정 후 거래에 진입하고 자산이 과매도 영역에 빠지면 추세를 따라 매수합니다. 선택한 자산에서 거래할 때 고문은 추세를 고려하고 현재 추세에 따라 거래를 엽니다. 수익성이 없는 거래는 중지와 평균을 사용하여 마감할 수 있습니다. 두 번째 옵션은 확실히 더 수익성이 높지만 더 위험합니다. 장점 다양한 TF에 대한 레벨 분석을 위한 내장 레벨 표시기 차트에서 수동으로 평균화 수준을 선택하는 기능 많은 피라미드형 주문을 열어 이익을 배가할 수 있는 능력(주문 수는 스스로 제어할 수 있음) iPump 표시기의 역 신호를 기반으로 TP in% 설정에 대한 추가 기준 "손"
                                    CAP Gold Albatross EA MT5
                                    MEETALGO LLC
                                    2.36 (11)
                                    MeetAlgo Gold Albatross EA MT4  is a pure mathematical scalper that trades tick data aggressively. It implements a simple and universal trading strategy which can be applied to any instrument. Key Advantages Fully automated trading 24/5. No need in a large initial deposit. Always uses Stop Loss to protect capital. Position trailing stop is used. Both a fixed lot and a free margin percentage are used. Ability to set time limitations for the EA operation. Trading Requirements Caution is advis
                                    FREE
                                    Impulse Hunter MT5
                                    Viktor Ternovskyi
                                    Wrote for yourself a good expert for profitable trading, which can help you to increase your deposit. He can track all or selected trading instruments of your broker for sharp price hikes. Stocks are best suited for tracking and trading as more trendy instruments than Forex, and are more predictable in their movements, especially on strong positive or negative news. For example, the Tesla stocks increased 60 percent in two weeks after the split was announced (screenshot with chart attached), and
                                    VVX Xerath XT
                                    Artem Minchuk
                                    3 (7)
                                    Dear users, I would like to introduce you to my new trading advisor VVX Xerath XT. The VVX Xerath XT advisor operates on the platform of the iconic SSX Titan TT advisor, yet unlike it, it operates on lower timeframes of M15 and uses other indicators to generate trades, while also trading on two currency pairs, XAUUSD and USDJPY, which provides us with a slight diversification across pairs. My focus has been on creating an advisor that would use the best indicators combined, albeit with differen
                                    Technical Master MT5
                                    Agus Santoso
                                    5 (1)
                                    MT4 버전 : https://www.mql5.com/en/market/product/104716 MT5 버전 : https://www.mql5.com/en/market/product/104718 정교한 기술 분석과 강력한 위험 관리 전략의 통합을 통해 거래 결정을 최적화하도록 설계된 강력한 도구인 "Technical Master" Expert Advisor를 소개합니다. 이 전문 조언자는 MetaTrader에 내장된 지표 중 하나와 사용자 정의 가능한 위험 매개변수를 활용하여 다양한 금융 시장에서 거래 성과를 향상시킵니다. 주요 특징들: 기술 분석 통합: "기술 마스터" 전문 자문가는 고급 기술 분석 방법론을 활용하여 시장 동향을 해석하고 잠재적인 진입 및 퇴출 지점을 식별하며 거래 신호를 생성합니다. 이는 MetaTrader의 광범위한 내장 지표 라이브러리와 원활하게 통합되어 거래자가 이동 평균, 상대 강도 지수(RSI), 스토캐스틱 오실레이터 또는 거래 전략
                                    MeetAlgo RSI Trade EA Pro MT4 trades using the RSI Indicator. It offers many customizable RSI trading scenarios and flexible position management settings, plus many useful features like customizable trading sessions, a martingale and inverse martingale mode. [ Installation Guide  |  Update Guide  |  Submit Your Problem  |  FAQ  |  All Products  ] Before buy Pro version? You can buy alternation pro version, our powerfull EA,   CAP Strategy Builder EA .  This is strategy builder EA. It product h
                                    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
                                    Forex Daily Scalping EA is a professional scalping advisor for daily work on the FOREX currency market. In trading, along with experience, traders usually come to understand that the levels of accumulation of stop orders, price and time play a significant role in the market. Recommend ECN broker with LOW SPREAD: IC Market , Exness, NordFX , FXPRIMUS , Alpari , FXTM PARAMETERS: PRICE - the price distance to be covered in the allotted time period; TIME - time allotted in seconds; HL_PERIOD -
                                    The 7TH Diver
                                    Michael Reuben Msidada
                                    PEACE OF MIND WHEN TRADING PROP ACCOUNTS The 7th Diver EA, a revolutionary Metatrader 5 Expert Advisor designed to transform your trading journey. As a trader seeking reliability, precision, and versatility, The 7th Diver stands out as your strategic companion. Let's explore the key features that set this EA apart from the rest. Key Features : 1. Simultaneous Trading on All Pairs: Trade on all 28 pairs simultaneously, maximizing opportunities and spreading risk for a diversified and robust
                                    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
                                    Exp Tick Hamster MT5
                                    Vladislav Andruschenko
                                    3.75 (16)
                                    MetaTrader 5의 모든 거래 기호에 대한 모든 매개변수를 자동으로 최적화하는 전문가입니다. T rading EA 설정없이! 진드기   햄스터   - 이것은   고문을 설정하고 싶지 않은 초보자와 사용자를 위한 자동 거래 전문가입니다! 이 거래 고문의 거래 전략은   7년 동안 테스트되었습니다. 초보자를 위해 특별히 설계된 자동매매 전문가를 통해 그 어느 때보다 쉽게 거래할 수 있습니다. 어드바이저를 설정하는 번거로움과 작별하고 스트레스 없는 트레이딩을 시작하세요. 지금 바로 시작하여 성공적인 트레이딩을 위한 첫걸음을 내딛으세요. MT4 버전 전체 설명   +DEMO +PDF 구입 방법 설치하는 방법     로그 파일을 얻는 방법     테스트 및 최적화 방법     Expforex의 모든 제품 어떻게 작동합니까? 다운로드; 차트에 설치하십시오. 고문은 자동으로 거래됩니다. 리뷰를 남겨주세요. 전문가를 설정하는 방법? 아무것도 사용자 정의할 필요가 없습니다! 우리
                                    ---  Last 5 copies left free. Next there will be  a price 30$ --- DRAGON SWING EA (for EUR/USD 20 minutes) NO MARTINGALES NO CUMULATE ORDERS NO PARTIAL CLOSURES OR HEDGING NO CONFUSIONAL PARAMETERS, MULTI-CHARTS OR MULTI TIMEFRAME NOT OVER-FIT OR COMPLICATED AND RISKY STATEGIES THAT CRASH AFTER FEW DAYS This is a healty, simple, durable and solid Expert Advisor. Suitable and simple to use also for beginners with little capital. DESCRIPTION: The strategy of this expert advisor is to operat
                                    PROMO: ONLY 10 LEFT AT $90! Next price:        $199 Price will be kept high to limit number of users for this strategy. This EA starts trading at the open of   London (UK) Session . It is based on analysis of advanced statistical distributions combined with short to medium term reversal patterns which have mean-reversion attributes. The EA includes several smart features and allows you to trade with a fixed or automatic lot size. The EA is not sensitive to spreads but can be backtested on bo
                                    Channel scalper EA MT5
                                    Aleksei Moshkin
                                    5 (2)
                                    Channel scalper EA The EA trades in the SMA channel based on price change rate and volatility. Trading starts 1 hour before rollover and 1 hour after rollover, from 23:00 to 01:00. Trading settings from 23:00 to 01:00 are suitable for brokers using GMT+2 in winter and GMT+3 in summer. If your broker uses GMT-0, the trading start time must be set between 20:00 and 22:00. The EA does not use dangerous strategies, all trading orders are protected by a stop loss. Currency pairs for trading eurusd,
                                    CAP Moving Average EA MT5
                                    MEETALGO LLC
                                    4.29 (14)
                                    CAP Moving Average EA MT5  trades using the Moving Averages Indicator. It offers many customizable Moving Averages trading scenarios and flexible position management settings, plus many useful features like customizable trading sessions, a martingale and inverse martingale mode. [   Installation Guide  |  Update Guide  |  Submit Your Problem  |  FAQ  |  All Products  ] Functions Easy to use and customizable Moving Average setting. Customizable indicator settings Built-in money management Grid
                                    FREE
                                    MultiNinja
                                    carl_carl101
                                    Let me introduce my new grid expert advisor MultiNinja ,  a fully automatic Expert Advisor for   Scalping mainly on the EURUSD. The expert advisor is based on several strategies that scalp the market carefully. The grids can be modified for your specific risk and pairs that you want to trade with! (please make sure to backtest before testing on other pairs than EURUSD ) My robot is made for every type of market, any account size and  highly customizable to suit your trading needs! The get the
                                    Forex Factory News EA mt5
                                    Aleksei Moshkin
                                    4 (1)
                                    This Expert Advisor trades news on any timeframe. The news are downloaded from the Forex Factory website. Make sure to add the URL to the terminal settings. The EA is launched on a single chart and defines all necessary pairs for trading on its own. The robot works with pending orders setting two Buy stop and Sell stop orders before a news release. It determines the time zones of the calendar and terminal automatically. Make sure to add the time.is URL to the terminal settings. The EA can be tes
                                    Asunder XT
                                    Michael Prescott Burney
                                    Introducing Asunder XT: The Ultimate Forex Trading System for the EURUSD H1 Chart  SLASHED PRICES ON THE NEXT 5 COPIES ONLY!!! THESE WILL GO QUICKLY!!!  ONLY 50 COPIES WILL BE SOLD BEFORE ITS MADE EXCLUSIVE TO THE 50 BUYERS ONLY!!! GET YOURS NOW!!! SET FILES ARE LOCATED IN THE COMMENTS SECTION OF THE MARKET LISTING!! In the fast-paced world of forex trading, the Asunder XT stands as a beacon of innovation and success. Designed specifically for the EURUSD H1 chart, this powerful Expert Advisor em
                                    Smart Scalper SG
                                    Aleksandr Parshukov
                                    Скальпирующий алгоритм полностью автоматической торговли на FORTS для фьючерсов Сбербанка и Газпрома Московской биржи. Рабочий таймфрейм 5 минут. Алгоритм анализирует: 1) Импульсное изменение цены в моменте и на истории сопряженных активов. 2) Глубину рынка на наличие повышенных объемов в стакане. 3) Роботизированные и айсберг заявки в стакане. 4) Потенциальные ценовые и фрактальные уровни. 5) Историю на хорошо отработавшие паттерны прайс экшен. В случае когда алгоритму удалось выбрать подходя
                                    Gold ID
                                    Sugianto
                                    2.5 (2)
                                    GOLD ID, no martingale, grid yes, and has automatic cutloss if the trend change to protect account equity! Setfile   SET UP Symbol :   XAUUSD/GOLD/Gold Timeframe :   M15 Test Period:   2020-2023 Type of account :   Standard, Pro, Classic, ECN, RAW, Hedging, Leverage 1:500 Settings : Default Minimum/Recommended Deposit : 500$/1000$ Can work with other EAs : GOLD ID can work properly with other EA in the same account Expert input: 1. Manage Open Positions Trade Buy : All
                                    Hamster Scalping mt5
                                    Ramil Minniakhmetov
                                    4.65 (195)
                                    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 - 첫 번째 표시기의 기간. 상위 레벨 - 고문이 판매를 시작하는 첫
                                    NasDaq Killer
                                    Nam Hoai Khau
                                    1 (1)
                                    Are you tired of struggling in the world of trading? I've been trading for over 5 years, and it took me quite some time to achieve consistency. Right now, I'm successfully using this trading robot to generate passive income with my funded account on FTMO. I understand how frustrating it can be when proprietary firms profit from your setbacks. This trading bot can be your ticket to success by helping you meet the requirements of most prop firms. However, please keep in mind that I currently run
                                    D Gold Miner MT5
                                    Ahmad Farhan Nursyafak
                                    Hello gold miners, how is your day? After several development processes, we are finally confident in launching our latest forex robot specifically designed for the gold market. We have optimized this forex robot for various gold market conditions. The initial settings we provide are recommended for you , so you just need to use them as they are. D Gold Miner also includes settings for take profit , stop loss , and trailing stop to secure all order positions . We also provide settings for the num
                                    Corrado
                                    Andriy Sydoruk
                                    The Expert Advisor  Corrado     works with ticks on both netting and hedging account types. The internal algorithm uses a tick (not a bar) as a unit for analysis. The product works with 5-digit quotes. Requotes are critical. A broker with the minimum execution delay is required.  The Expert Advisor does not use history stored in the database. It downloads history data online creating its own database stored in the internal memory. After the restart, the database is deleted and should be download
                                    이 제품의 구매자들이 또한 구매함
                                    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/2NE8COr9-Bk 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
                                    가격이 순식간에 변할 수 있는 시장에서 주문은 가능한 한 간단해야 한다고 생각하십니까? Metatrader에서는 주문을 열 때마다 시작 가격, 손절매 및 이익실현 및 거래 규모를 입력하는 창을 열어야 합니다. 금융 시장 거래에서 자본 관리는 초기 예금을 유지하고 곱하기 위해 필수적입니다. 따라서 주문을 하고 싶을 때 얼마나 큰 거래를 열어야 하는지 궁금할 것입니다. 이 단일 거래에서 위험을 감수해야 하는 예치금의 비율은 얼마입니까? 이 거래에서 얼마나 많은 이익을 얻을 수 있으며 위험 대비 이익 비율은 얼마입니까? 거래 규모를 설정하기 전에 거래 규모가 어떻게 되어야 하는지에 대한 질문에 대한 답을 얻기 위해 필요한 계산을 수행합니다. 이 모든 작업을 자동으로 수행하는 도구가 있다고 상상해 보십시오. 차트를 열고 시장 분석을 하고 진입점, 방어점(손절매) 및 목표(이익 실현)를 수평선으로 표시하고 마지막에 위험 수준을 정의합니다. 이 거래에서 감당할 수 있는 가용 자본의 %로, 이
                                    TradePanel MT5
                                    Alfiya Fazylova
                                    4.86 (115)
                                    Trade Panel은 다기능 거래 보조원입니다. 이 애플리케이션에는 수동 거래를 위한 50개 이상의 기능이 포함되어 있으며 대부분의 거래 작업을 자동화할 수 있습니다. 구매하기 전에 데모 계정에서 데모 버전을 테스트할 수 있습니다. 데모는 여기 에서 확인하세요. 전체 지침은 여기 에서 확인하세요. 거래 . 한 번의 클릭으로 기본적인 거래 작업을 수행할 수 있습니다: 보류 주문 및 포지션 열기 보류 주문 및 포지션을 마감합니다. 포지션 전환(매수를 청산하여 매도를 개시하거나 매도를 청산하여 매수를 개시). 포지션 고정(반대 포지션을 열어 SELL과 BUY 포지션의 볼륨을 동일하게 만듭니다). 모든 포지션을 부분 청산합니다. 모든 포지션의 이익실현 및/또는 손절매를 공통 수준으로 설정합니다. 모든 포지션의 손절매를 손익 분기점 수준으로 설정합니다. 주문 및 포지션을 열 때 다음을 수행할 수 있습니다. 설정된 위험에 따라 거래량 자동 계산을 사용합니다. 한 번의 클릭으로 여러 주문을 열
                                    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 버전 | 디스코드 버전 데모를 시도하려면 사용자 가이드로 이동하십시오. Telegram To MT5 수신기는 전략 테스터에서 작동하지 않습니다! Telegram To MT5 특징 여러 채널에서 동시에 신호를 복사합니다. 개인 및 제한된 채널에서 신호를 복사합니다. Bot 토큰이나 채팅 ID가 필요하지 않습니다.   (원하는 경우에는 사용할 수 있습니다) 위험 % 또는 고정된 로트로 거래합니다. 특정 심볼을 제외합니다. 모든 신호를 복사할지 또는 복사할 신호를 사용자 정의할지 선택할 수 있습니다. 모든 신호
                                    Trade Assistant 38 in 1
                                    Makarii Gubaydullin
                                    4.88 (16)
                                    다기능 도구: 로트 계산기, 가격 조치, R/R 비율, 무역 관리자, 공급 및 수요 영역을 포함한 65개 이상의 기능 데모 버전   |   사용자 매뉴얼   |   MT5 버전 이 유틸리티는 전략 테스터에서 작동하지 않습니다.   여기에서 데모   버전을 다운로드하여 제품을 테스트할 수 있습니다. Contact me   질문/개선 아이디어가 있는 경우/버그가 발견된 경우   저에게 연락 하십시오. 거래 프로세스를 간소화, 가속화 및 자동화하십시오. 이 대시보드로 표준 터미널 기능을 확장하십시오. 유틸리티는 외환, 주식, 지수, 암호화폐 등 모든 거래 수단에서 작동합니다. 1. 새로운 거래 열기 : 로트/리스크/RR 계산: 1. Lot 계산기 (리스크 규모에 따른 거래량 계산) 2. 리스크 계산기 (로트 규모에 따른 리스크 금액) 3. 위험/보상 비율(RR) 4. 주문에 대한 활성화 트리거 + StopLimit 구매 / StopLimit 판매 5. 가상 SL / TP 레벨
                                    Pro Arbitrage EA   trades based on Arbitrage Strategy. The strategy is like a scalping technology but on three cross currency pairs at the same time. Each trade basket involves three pairs (all open at the same time) and they will close at once when any desired profit reaches. The strategy has no SL technically because all opened currencies are hedged. SL can happen if high slippages on order execution on the broker side. So the strategy is one of the safest ones in the world. Using the EA : U
                                    News Trade EA MT5
                                    Konstantin Kulikov
                                    4.55 (11)
                                    제가 몇 년 동안 사용하고 있는 유용한 로봇을 소개드립니다. 반자동뿐만 아니라 자동 모드로도 사용할 수 있습니다. 본 프로그램에는 경제 캘린더의 뉴스별로 유연한 거래 설정이 포함되어 있습니다. 전략 테스터에서 확인할 수 없습니다. 진짜 작업뿐입니다. 터미널 설정에서 허용된 URL 목록에 뉴스 사이트를 추가해야 합니다. 서비스>설정 > 조언자>를 클릭합니다. "다음 URL에 대해 WebRequest 허용:" 확인란을 선택합니다. 다음을 추가합니다 (공백 삭제): https://  nfs.faireconomy.media 자동 모드 시 기본 설정 관리: https://www.mql5.com/ko/signals/1447007 . 동일한 결과를 얻으려면 임의 기간 (기간이 얼마정도인지 상관 없음)의 GBPUSD 차트에 전문가를 첨부하십시오. 이 전문가를 위해 고유 설정 세트를 만들 때 블로그의 모든 매개변수에 대한 설명을 참조하십시오: https://www.mql5.com/en/
                                    RiskGuard Management
                                    MONTORIO MICHELE
                                    5 (4)
                                    ATTENTION the expert does not work in strategy tester, for a trial version visit my profile. " Launch offer : throughout the month of June, purchase our product for only 100 USD instead of 150 USD!" Manual RiskGuard Management   RiskGuard management was born with the idea of ​​helping traders from their initial journey to becoming expert and aware traders. Written completely with native MetaTrader 5 functions without any use of external libraries, it is perfectly compatible with any operatin
                                    -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 (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
                                    -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
                                    이 Expert Advisor는 비용이 많이 드는 손실을 방지하고 거래 규칙을 준수하기 위해 거래 계좌의 자산을 지속적으로 모니터링합니다. 특정 규칙을 위반하면 EA는 경고하고 모든 거래를 닫고 경우에 따라 모든 보류 중인 주문을 삭제합니다. 선택적으로 모든 차트를 닫아 계정에서 작동하는 모든 EA를 제거할 수도 있습니다. 이 EA는 FTMO 챌린지 또는 PZ 챌린지와 같은 소품 거래 챌린지에 특히 유용합니다. [ 설치 가이드 | 업데이트 가이드 | 문제 해결 | 자주하는 질문 | 모든 제품 ] 다음 기능이 구현되며 마음대로 활성화 또는 비활성화할 수 있습니다. 자기자본 최대 손실(Trailing Equity Drawdown) 일일 자기자본 최대 손실 자기자본이익 목표 주식 후행 정지 기타 이점은 다음과 같습니다. 사용하기 쉬운 죽은 소품 거래 회사 및 거래자에게 유용 모든 종류의 경고를 구현합니다. 터미널에 보고 기술적 인 정보: 최대 자기자본과 일일 자기자본을
                                    Local Trade Copier EA 는 외부 소스에서 거래 신호를 실행해야 하거나 MAM 또는 PAMM 계정 없이 동시에 여러 계정을 관리해야 하는 개인 거래자 또는 계정 관리자를 위한 솔루션입니다. 최대 8개의 마스터 계정에서 무제한 슬레이브 계정으로 복사합니다. [ 설치 가이드 | 업데이트 가이드 | 문제 해결 | 자주하는 질문 | 모든 제품 ] 100% 자체 호스팅 설치 및 사용이 간편함 설치 프로그램, 구성 파일, 서버, 메모리 파이프 또는 DLL이 사용되지 않음 EA를 영원히 사용하기 위한 1000번의 활성화 로컬 실행, 네트워크 대기 시간 없음 필요한 모든 기능을 구현합니다. 최대 8개의 마스터 계정 및 무제한 슬레이브 계정 모든 브로커 및 DD/NDD/ECN/STP 실행과 함께 작동 다른 계정 통화를 사용하는 계정에서 작동 라이브 계정과 데모 계정 간에 구분 없이 작동 마스터 및 슬레이브 계정에서 기호 이름의 접미사 지원 매직 넘버 및 주문 댓글로
                                    Bots Builder Pro MT5
                                    Andrey Barinov
                                    4.75 (4)
                                    This is exactly what the name says. Visual strategy builder . One of a kind. Turn your trading strategies and ideas into Expert Advisors without writing single line of code. Generate mql source code files with a few clicks and get your fully functional Expert Advisors, which are ready for live execution, strategy tester and cloud optimization. There are very few options for those who have no programming skills and can not create their trading solutions in the MQL language. Now, with Bots Build
                                    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
                                    Trade Assistant GS mt5
                                    Vasiliy Strukov
                                    5 (13)
                                    거래 패널은 주문 관리로 제한됩니다. 버튼을 사용하여 열거나 사용자가 열 수 있습니다. 컬렉션에서 간단하고 편리합니다. 모든 구매자를 보완합니다. Gold Stuff 표시기와 함께 사용하는 것이 좋습니다. 단일 주문으로 거래를 설정하고 거리가 있는 그리드를 구축하십시오. 표준 그리드를 만들려면 10000과 같이 큰 거리를 설정하기만 하면 됩니다. 실시간 결과는 여기에서 볼 수 있습니다. 설정 및 개인 보너스를 받으려면 구매 후 즉시 저에게 연락하십시오!   설정 새 시리즈 열기 - 새 주문 시리즈의 온/오프 시작. Lot miltiplier - 다음 주문에 대한 로트 승수. TP - 핍으로 이익을 얻습니다. SL - 손절매, 첫 주문부터 핍 단위. 트레일 시작 - 트레일링 스톱 활성화. 트레일 스텝 - 트레일링 스톱을 활성화할 때 가격으로부터의 거리. DD 감소 알고리즘 - 수익이 있는 마지막 주문이 손실이 있는 첫 번째 주문 시리즈와 마감될 때 손실 감소 알고리즘입
                                    Mentfx Mmanage mt5
                                    Anton Jere Calmes
                                    4.43 (7)
                                    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
                                    ManHedger MT5
                                    Peter Mueller
                                    5 (3)
                                    THIS EA IS A SEMI-AUTO EA, IT NEEDS USER INPUT. Manual & Test Version Please DON'T BUY this product before testing or watching my video about it. Contact me for user support & advices! MT4 Version  With this Expert Advisor, you can: Implement your own Zone Recovery strategy to capitalize on trending markets. Create Grid trading strategies, to profit from ranging markets. Place orders easily and clearly. Display your trades/strategies on the chart. Display your Take Profits/Stop Losses as a perc
                                    Ultimate Trailing Stop EA MT5
                                    BLAKE STEVEN RODGER
                                    4.57 (7)
                                    This EA Utility allows you to manage (with advanced filtering) unlimited open orders (manual or EA) with 16 trailing stop methods: fixed, percent, ATR Exit, Chandelier Exit, Moving Average, Candle High Low Exit, Bollinger Bands, Parabolic, Envelope, Fractal, Ichimoku Kijun-Sen, Alligator, Exit After X Minutes or Bars, RSI and Stochastic. The trailing stop can be either real or virtual, and you can exit fully or with a partial close percent on touch or bar close.  Moreover, you can add (overri
                                    회원인 모든 채널에서 신호를 복사하세요 ( 봇 토큰이나 관리자 권한이 필요하지 않음  MT5로 직접 이동합니다. 사용자를 고려하여 설계되었으며 필요한 많은 기능을 제공합니다 이 제품은 사용하기 쉽고 시각적으로 매력적인 그래픽 인터페이스로 제공됩니다. 설정을 사용자 정의하고 제품을 몇 분 안에 사용을 시작하세요! 사용자 가이드 + 데모  | MT4 버전 | 텔레그램 버전 데모를 시도하려면 사용자 가이드로 이동하십시오. Discord   에서 MT5로는 전략 테스터에서 작동하지 않습니다. Discord   에서 MT5로의 기능 회원인 모든 채널에서 복사합니다. 봇 토큰이나 채팅 ID가 필요하지 않습니다 위험 % 또는 고정 로트를 사용하여 거래하세요 특정 심볼 제외 모든 신호를 복사하거나 복사할 신호를 사용자 정의하세요 모든 신호를 인식하도록 단어 및 구를 구성합니다 (기본 설정은 99%의 신호 제공 업체에 작동해야 함) 원하는 경우 시간 및 날짜 설정을 구성하여 신호를 복사
                                    FREE SIGNAL CHANEL:  https://t.me/redfox_daily_forex_signals Time saving and fast execution Whether you’re traveling or sleeping, always know that Telegram To MT5 performs the trades for you. In other words, Our   Telegram MT5 Signal Trader  will analyze the trading signals you receive on your selected Telegram channels and execute them to your Telegram to MT5 account. Reduce The Risk Telegram To Mt5   defines the whole experience of copying signals from   Telegram signal copier to MT5 pl
                                    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
                                    Binance Quotes Updater
                                    Andrey Khatimlianskii
                                    5 (1)
                                    This service is designed to stream online cryptocurrency quotes   from the Binance exchange to your MetaTrader 5 terminal. You will find it perfectly suitable if you want to see the quotes of cryptocurrencies in real time — in the Market watch window and on the MetaTrader 5 charts. After running the service, you will have fully featured and automatically updated  cryptocurrency charts in your MetaTrader 5. You can apply templates, color schemes, technical indicators and any non-trading tools to
                                    가격 조치 도구 키트 EA는 주로 스캘퍼를 위해 설계되었지만 모든 시간대에 사용하여 정지 수준에 따라 올바르게 계산된 로트 크기로 시장에 빠르게 진입할 수 있습니다. 주문) 그런 다음 시장이 움직일 때 스탑을 조정하고 이익을 얻습니다. 사용할 모든 기능, 설정 및 모범 사례 전략의 전체 목록을 보려면 여기를 클릭하십시오.   https://www.mql5.com/en/blogs/post/748072 위험 기반 진입 빠른 주문 버튼을 사용하면 계정의 위험 비율을 기반으로 포지션을 잡을 수 있습니다. 선택한 위험과 손절매까지의 거리를 기반으로 로트 크기를 자동으로 계산합니다. 따라서 브로커가 0.01 로트 크기 사용을 허용하는지 확인해야 합니다. 0.10 또는 1.00 로트 증분을 사용해야 하는 경우 작동하지 않습니다. 빠른 거래 실행 버튼 차트에 빠른 거래 실행 버튼을 배치하여 즉시 거래를 자동으로 열거나 닫거나 조정할 수 있습니다. 일반 진입 버튼뿐만 아니라 모든 포지션
                                    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
                                    Grammy MT5
                                    Andrey Khatimlianskii
                                    5 (1)
                                    Grammy  — is: Instant messages to your Telegram on any  trade events , Commands to  control all your terminals  from one Telegram chat, Price alerts  (crossing horizontal or trend lines), Daily, weekly and monthly  reports . You can't test this utility in the Strategy Tester. Please, contact me to get your free demo version. Why is Grammy better : Fully customizable  messages templates , Emoji  and "smart" substitution to the messages, Commands  to control all your terminals from Te
                                    Binance Trade Manager
                                    Andrey Khatimlianskii
                                    5 (2)
                                    Binance Trade Manager — is an utility that allows you to transmit trade orders from your MetaTrader 5 to the Binance exchange. It will suite you if you want to use your favorite MetaTrader 5, getting all the benefits of trading cryptocurrencies directly on the exchange (low commission, high liquidity, absolute transparency, etc.) Binance Trade Manager can work in two modes: copying trades from a demo-account , which your MetaTrader 5 is connected to (cryptocurrencies must be available on this ac
                                    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
                                    Trader Evolution
                                    Siarhei Vashchylka
                                    5 (3)
                                    " Trader Evolution " - A utility designed for traders who use wave and technical analysis in their work. One tab of the utility is capable of money management and opening orders, and the other can help in making Elliott wave and technical analysis. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Trading in a few clicks. Immediate and pending orders are available in the panel 2. Money management. The program automatically selects the appropriate lot size 3. Simpli
                                    제작자의 제품 더 보기
                                    Scientific Calculator MT5
                                    Francisco Manuel Vicente Berardo
                                    Scientific Calculator is a script designed to compute expressions of science, engineering and mathematics.   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
                                    Scientific Calculator MT4
                                    Francisco Manuel Vicente Berardo
                                    Scientific Calculator is a script designed to compute expressions of science, engineering and mathematics.   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 c
                                    FREE
                                    Tick Data Record MT4
                                    Francisco Manuel Vicente Berardo
                                    Tick Data Record is a multi-symbol multi-timeframe Expert Advisor that records tick data for later graphical representation and analysis.  General Description   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 spreadshee
                                    Environment State Info Print MT4
                                    Francisco Manuel Vicente Berardo
                                    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
                                    Double Trailing Stop MT4
                                    Francisco Manuel Vicente Berardo
                                    Double Trailing Stop is a multi-symbol multi-timeframe Expert Advisor that allows the Stop Loss and Take Profit trailing of positions. The EA offers multi-option through input parameters to configure the positions' stop orders.  General Description   The Expert Advisor’s main purpose is to secure profit and minimize losses with the opened positions. Double Trailing Stop places stop orders (Stop Loss or Take Profit) at the Trailing Stop distance from the market price when the symbol's quote re
                                    Position Selective Close MT4
                                    Francisco Manuel Vicente Berardo
                                    Position Selective Close is a multi-symbol multi-timeframe script used to close simultaneously various positions. The script offers multi-option through input parameters to define the positions to close.  General Description   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, relat
                                    Order Selective Delete MT4
                                    Francisco Manuel Vicente Berardo
                                    Order Selective Delete is a multi-symbol multi-timeframe   script used to   delete   simultaneously various pending orders. The script offers multi-option   through input parameters to define the pending orders to   delete.  General Description   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
                                    Multiple Position Opening MT4
                                    Francisco Manuel Vicente Berardo
                                    Multiple Position Opening   is a multi-symbol multi- timeframe   script used to open simultaneously various positions . The   script   offers multi- option   through   input parameters   to   configure the positions.   Risk Management   The volume used to open each of the positions 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 reduce
                                    Pending Order Grid MT4
                                    Francisco Manuel Vicente Berardo
                                    Pending Order Grid is a multi-symbol multi- timeframe   script that enables multi-strategy implementation based on pending order grids. The script offers multi- option   through input parameters to configure the pending orders.   General Description   Pending Order Grid allows the execution of a user-defined strategy through the creation of one or more grids of pending orders. The script places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant price
                                    Pending Order Grid EA MT4
                                    Francisco Manuel Vicente Berardo
                                    Pending Order Grid is a multi-symbol multi-timeframe Expert Advisor that enables multi-strategy implementation based on pending order grids. The EA offers multi-option through input parameters to configure the pending orders.  General Description   Pending Order Grid allows the performing of a user-defined strategy through the creation of one or more grids of pending orders. The Expert Advisor places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant
                                    Tick Data Record MT5
                                    Francisco Manuel Vicente Berardo
                                    Tick Data Record is a multi-symbol multi- timeframe Expert Advisor that records tick data for later graphical representation and analysis .   General Description  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 spreadsheet, r
                                    Environment State Info Print MT5
                                    Francisco Manuel Vicente Berardo
                                    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 p
                                    Double Trailing Stop MT5
                                    Francisco Manuel Vicente Berardo
                                    Double Trailing Stop is a multi-symbol multi-timeframe Expert Advisor that allows the Stop Loss and Take Profit trailing of positions. The EA offers multi-option through input parameters to configure the positions' stop orders.  General Description   The Expert Advisor’s main purpose is to secure profit and minimize losses with the opened positions. Double Trailing Stop places stop orders (Stop Loss or Take Profit) at the Trailing Stop distance from the market price when the symbol's quote re
                                    Position Selective Close MT5
                                    Francisco Manuel Vicente Berardo
                                    Position Selective Close is a multi-symbol multi-timeframe script used to close simultaneously various positions. The script offers multi-option through input parameters to define the positions to close.  General Description   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, relat
                                    Order Selective Delete MT5
                                    Francisco Manuel Vicente Berardo
                                    Order Selective Delete is a multi-symbol multi-timeframe   script used to   delete   simultaneously various pending orders. The script offers multi-option   through input parameters to define the pending orders to   delete.  General Description   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
                                    Multiple Position Opening MT5
                                    Francisco Manuel Vicente Berardo
                                    Multiple Position Opening   is a multi-symbol multi- timeframe   script used to open simultaneously various positions . The   script   offers multi- option   through   input parameters   to   configure the positions.   Risk Management   The volume used to open each of the positions 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 reduce
                                    Pending Order Grid MT5
                                    Francisco Manuel Vicente Berardo
                                    Pending Order Grid is a multi-symbol multi- timeframe script that enables multi-strategy implementation based on pending order grids. The script offers multi- option through input parameters to configure the pending orders.   General Description   Pending Order Grid allows the execution of a user-defined strategy through the creation of one or more grids of pending orders. The script places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant price lev
                                    필터:
                                    리뷰 없음
                                    리뷰 답변
                                    버전 1.1 2024.06.02
                                    Minor change, not requiring an update:

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