• Panoramica
  • Recensioni
  • Commenti (3)
  • Novità

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.


                                    Prodotti consigliati
                                    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)
                                    Expert Advisor Risk Manager per MT5 è un programma molto importante e secondo me necessario per ogni trader. Con questo Expert Advisor sarai in grado di controllare il rischio nel tuo conto di trading. Il controllo del rischio e del profitto può essere effettuato sia in termini monetari che in termini percentuali. Affinché l'Expert Advisor funzioni, è sufficiente allegarlo al grafico della coppia di valute e impostare i valori di rischio accettabili nella valuta del deposito o in % del sald
                                    Stability Pro MT5
                                    Profalgo Limited
                                    5 (3)
                                    PROMOZIONE LANCIO: SOLO 34 9 $ invece di 990$! Sono rimaste solo poche copie a questo prezzo promozionale! Assicurati di dare un'occhiata al nostro "   Pacchetto combinato EA definitivo   " nel nostro   blog promozionale   !   JOIN PUBLIC GROUP:   Click here Risultati in tempo reale a basso rischio Risultati dal vivo ad alto rischio Benvenuti in STABILITY PRO   : uno dei sistemi di rete più avanzati, stabili e a basso rischio sul mercato! Questo EA è stato sottoposto a stress test sull'in
                                    Impuls Pro
                                    Sergey Batudayev
                                    La strategia di EA si basa sullo Swing trading , con entrate dopo forti impulsi calcolate dall'indicatore iPump. Come accennato in precedenza, l'EA ha la capacità di aprire operazioni manuali con supporto automatico. - per un trend ribassista ↓ entriamo in un trade dopo un rialzo correttivo del prezzo, l'asset cade nella zona di ipercomprato, vendiamo lungo il trend. - per un trend rialzista ↑, entriamo in un'operazione dopo un calo correttivo del prezzo, l'asset cade nella zona di ipervenduto,
                                    Trivia Euraud M30
                                    Fabriel Henrique Dosta Silva
                                    Descrição do produto O Trivia M30 EURAUD é um robô de negociação desenvolvido para operar no par de moedas EUR/AUD, utilizando o gráfico de 30 minutos (M30). Este Expert Advisor (EA) foi projetado com o objetivo de explorar oportunidades de mercado por meio de estratégias robustas e personalizáveis, focando tanto na otimização quanto na proteção do capital. Equipado com diversos indicadores técnicos e filtros de notícias, o Trivia M30 EURAUD oferece uma solução ajustável para traders que busca
                                    RaptorFPS
                                    Andriy Sydoruk
                                    The Expert Advisor 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. This bot is a development project CoreFPS . Make sure to set parameters:  HourLimit = -1 and MinLimit = -1. The Expert Advisor does not use history stored in the database. It downloads history data online creating its own database st
                                    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
                                    Technical Master MT5
                                    Agus Santoso
                                    5 (1)
                                    Versione MT4: https://www.mql5.com/en/market/product/104716 Versione MT5: https://www.mql5.com/en/market/product/104718 Presentiamo l'Expert Advisor "Technical Master", un potente strumento progettato per ottimizzare le decisioni di trading attraverso l'integrazione di sofisticate analisi tecniche e solide strategie di gestione del rischio. Questo consulente esperto sfrutta uno degli indicatori integrati di MetaTrader, insieme a parametri di rischio personalizzabili, per migliorare le prest
                                    CoreFPS
                                    Andriy Sydoruk
                                    3.67 (6)
                                    The Expert Advisor 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 downloaded again. The
                                    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  | How to Get All Robot Free ] Functions Easy to use and customizable RSI setting. Customizable indicator settings Built-in money management Grid tradin
                                    SolarTrade Suite Financial Robot: LaunchPad Market Expert - progettato per aprire le negoziazioni! Questo è un robot di trading che utilizza speciali algoritmi innovativi e avanzati per calcolare i suoi valori, il tuo assistente nel mondo dei mercati finanziari. Utilizza il nostro set di indicatori della serie SolarTrade Suite per scegliere meglio il momento in cui lanciare questo robot. Dai un'occhiata agli altri nostri prodotti della serie SolarTrade Suite in fondo alla descrizione. Vuo
                                    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.59 (17)
                                    Esperto con ottimizzazione automatica di tutti i parametri per qualsiasi simbolo di trading per MetaTrader 5. Trading EA senza impostazioni! Tic Tac   Hamster   - Questo è un   esperto di trading automatizzato per neofiti e utenti che non vogliono creare un consulente! La strategia di trading di questo consulente di trading è stata testata per   7 anni. Fare trading è più facile che mai con il nostro esperto di trading automatico, progettato appositamente per i principianti. Dite addio alla secc
                                    --- Ultime 5 copie rimaste free. Dopo ci sarà un prezzo di 30$ --- DRAGON SWING EA (per EUR/USD 20 minuti)  NO MARTINGALA NO ORDINI CUMULATI NO CHIUSURE PARZIALI O HEDGING NO PARAMETRI CONFUSIONALI, MULTI-CHART O MULTI TIMEFRAME NO OVERFITTING O STRATEGIE COMPLICATE E RISCHIOSE CHE CRASHANO DOPO QUALCHE GIORNO Questo è un Expert Advisor sano, semplice, durevole e solido. Adatto e semplice da usare anche per i nuovi trader con poco capitale. DESCRIZIONE: La strategia di questo EA è quella
                                    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
                                    GTX Scalper
                                    Vladimir Mametov
                                    4.64 (42)
                                    Automated, highly accurate trading advisor for trading the EURUSD currency pair.  Advisor signals are formed by reversal points based on overbought and oversold zones. The advisor has 16 strategies with open input parameters, which makes it possible to optimize the advisor for working with different brokers. Profitable orders are closed using Trailing, but it is also possible to use Take Profit. To close unprofitable orders, it is possible to use Stop Loss or the recovery function. The recovery
                                    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
                                    Hipercube goldzilla
                                    Adrian Lara Carrasco
                                    Benvenuti a HiperCube GoldZilla Questo EA è stato sviluppato per ottenere risultati a lungo e medio termine, utilizzando livelli di breakout facili ma semplici. Nessun lettore di cronologia L'azione dei prezzi è la base della strategia Trada livelli critici e non fare troppi scambi (aprire troppi scambi) Stoploss in percentuale e rischio calcolato in percentuale del conto AutoCompund automaticamente Lungo termine e stabile negli anni Trada 1 timeframe contemporaneamente: H1 Prop Firm Ready! Cha
                                    GreenFx
                                    Van Hung Tran
                                    GreenFx Auto Trading Gold and Forex Default setting for gold trading on a 5-minute time frame. Minimum Balance for EA: 2,000 USD for trading XAUUSD, Recomment 5.000$  Please test with Cent account before using with USD account. EA can close orders before important economic news through API connection.  Message the author directly at MQL5 for support in setting up transactions for Forex currency pairs.
                                    Thanos BETA
                                    Omega J Msigwa
                                    5 (3)
                                    Panoramica    Thanos EA BETA è un bot di trading avanzato che sfrutta tecnologie all'avanguardia di intelligenza artificiale e apprendimento automatico, progettato specificamente per applicazioni di trading. Dotato di algoritmi moderni di intelligenza artificiale e apprendimento profondo, questo EA offre capacità predittive superiori, superando molti modelli esistenti nel settore. Questa versione beta gratuita è un ambiente di sviluppo in cui integro continuamente nuove funzionalità ed esperi
                                    FREE
                                    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
                                    Smart Scalper SG
                                    Aleksandr Parshukov
                                    Скальпирующий алгоритм полностью автоматической торговли на FORTS для фьючерсов Сбербанка и Газпрома Московской биржи. Рабочий таймфрейм 5 минут. Алгоритм анализирует: 1) Импульсное изменение цены в моменте и на истории сопряженных активов. 2) Глубину рынка на наличие повышенных объемов в стакане. 3) Роботизированные и айсберг заявки в стакане. 4) Потенциальные ценовые и фрактальные уровни. 5) Историю на хорошо отработавшие паттерны прайс экшен. В случае когда алгоритму удалось выбрать подходя
                                    Gli utenti di questo prodotto hanno anche acquistato
                                    Trade Assistant MT5
                                    Evgeniy Kravchenko
                                    4.38 (164)
                                    It helps to calculate the risk per trade, the easy installation of a new order, order management with partial closing functions, trailing stop of 7 types and other useful functions. Attention, the application does not work in the strategy tester. Manual, Description, Download demo Line function -   shows on the chart the Opening line, Stop Loss, Take Profit. With this function it is easy to set a new order and see its additional characteristics before opening.   Risk management  - The risk
                                    Forex Trade Manager MT5
                                    InvestSoft
                                    4.97 (439)
                                    Do you think that in markets where the price can change in a split second, placing orders should be as simple as possible? In Metatrader, each time you want to open an order, you have to open a window where you enter the opening price, stop loss and take profit, as well as the trade size. In trading the financial markets, capital management is essential to maintain your initial deposit and multiply it. So, when you want to place an order, you probably wonder how big a trade you should open? Wha
                                    TradePanel MT5
                                    Alfiya Fazylova
                                    4.85 (114)
                                    Trade Panel è un assistente commerciale multifunzionale. L'applicazione contiene più di 50 funzioni per il trading manuale e ti consente di automatizzare la maggior parte delle azioni di trading. Prima dell'acquisto, puoi testare la versione Demo su un account demo. Demo qui . Istruzioni complete qui . Commercio. Ti consente di eseguire operazioni di trading di base in un clic: Apertura di ordini e posizioni pendenti. Apertura di una griglia di ordini. Chiusura di ordini e posizioni pendenti. In
                                    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
                                    Telegram To MT5 Receiver
                                    DaneTrades Ltd
                                    4.33 (6)
                                    Copia i segnali da qualsiasi canale di cui sei membro (compresi quelli privati e ristretti) direttamente sul tuo MT5.  Questo strumento è stato progettato con l'utente in mente offrendo molte funzionalità necessarie per gestire e monitorare gli scambi. Questo prodotto è presentato in un'interfaccia grafica facile da usare e visivamente accattivante. Personalizza le tue impostazioni e inizia ad utilizzare il prodotto in pochi minuti! Guida per l'utente + Demo  | Versione MT4 | Versione Discord
                                    Trade Assistant 38 in 1
                                    Makarii Gubaydullin
                                    4.89 (18)
                                    Questo è uno strumento multifunzionale: ha più da 65 funzioni, tra cui possiamo citare alcuni come: calcolatrice della dimensione del Lot, azione sui prezzi, rapporto R/R, gestore commerciale, zone di domanda e offerta Versione demo   |   Manuale d'uso   |   MT4 L'utilità non funziona nel tester di strategia: puoi scaricare   la versione demo QUI   per testare il prodotto. Se hai qualsiasi domanda / idea di miglioramento o anche nel caso di trovare un bug, ti prego di   contattarmi   appena p
                                    -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
                                    YuClusters
                                    Yury Kulikov
                                    4.93 (41)
                                    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
                                    HINN Lazy Trader
                                    Georg Vahi
                                    5 (1)
                                    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
                                    News Filter Tool
                                    Apex Software Ltd
                                    5 (1)
                                    Migliora il tuo trading con le intuizioni sugli eventi di notizie Nel mondo frenetico del trading, gli eventi di notizie possono influenzare significativamente i prezzi di mercato. Comprendere come questi eventi influenzano i movimenti dei prezzi è fondamentale per gestire le tue operazioni durante periodi volatili. Il News Tool EA è progettato per fornire approfondimenti sugli eventi di notizie sia storici che futuri, aiutandoti a prendere decisioni di trading informate. Questo EA non può ess
                                    -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
                                    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
                                    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
                                    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
                                    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
                                    The best trend line auto trading expert advisor/utility. One or more trend lines of different timeframes in the same direction are easily placed on a chart to auto trade within a strong trading opportunity.   1.    AUTO TRADING / MANUAL TRADING Trendscout can place orders for you automatically. You have to enable “Auto trading” and also check the “Enable live trading” box at the parameter window. When price crosses the trend lines for the first time two massages are sent to your mobile phone or
                                    Easy Strategy Builder 5
                                    Gheis Mohammadi
                                    5 (4)
                                    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
                                    Attention: this is a multicurrency EA, which trades by several pairs from one chart!  Therefore, in order to avoid duplicate trades, it is necessary to attach EA only to one chart, ---> all trading in all pairs is conducted only from one chart! we can trade simultaneously in three different pairs, as by default (EURUSD + GBPUSD + AUDUSD), which take into account the correlation when entering the market for all three; we can trade only EURUSD (or any currency pair) and at the same time take into
                                    Ultimate Trailing Stop EA MT5
                                    BLAKE STEVEN RODGER
                                    4.5 (6)
                                    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
                                    Hedge Ninja
                                    Robert Mathias Bernt Larsson
                                    5 (1)
                                    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
                                    Hotkeys for Streamdeck
                                    Manuel Michiels
                                    5 (1)
                                    MT5-StreamDeck offers the possibility to use a certain number of pre-programmed Hot-keys with a clearly defined role. So by the push of a button you can open a trade with a pre-defined lot size, stoploss and take profit. Close all your trades, close the ones in profit, or in loss, set Break-even or set a trailing stop. All this with a Hot key button. See the feature list for all the actions that can take place at the push of a button. Ideal for Quick Scalping or day trading with set risk manage
                                    Ultimate MT5 to Telegram (UMT) sends controlled trades (via symbol, magic, comment) to your telegram channel. It sends open and closed trades, including pending orders and TP/SL modifications, along with chart screenshots, to any telegram channel. Additionally, you can send trade reports of open trades and summary profit/pip reports for day, week, or month. You can customize the design of the trade actions or reports with variables and emoticons.  A beautiful panel allows you to visualize all
                                    RiskGuard Management
                                    MONTORIO MICHELE
                                    5 (13)
                                    ATTENZIONE l'expert non funziona in strategy tester, per una versione di prova visita il mio profilo. Manuale per il Download del journal automatico visita il mio profilo RiskGuard Management   RiskGuard management nasce con l’idea di aiutare i trader dal proprio percorso iniziale fino ad essere dei trader esperti e consapevoli. Compatibile con qualsiasi sistema operativo che sia Mac o Windows. Il pannello per le operazioni è integrato nel grafico dando la possibilità di scegliere dimensioni e
                                    Riskless Pyramid Mt5
                                    Snapdragon Systems Ltd
                                    3.5 (2)
                                    Introduction This powerful MT4 trade mangement EA offers a way potentially to aggressively multiply trade profits in a riskfree manner. Once a trade has been entered with a defined stoploss and take profit target then the EA will add three pyramid add-on trades in order to increase the overall level of profit. The user sets the total combined profit target to be gained if everything works out. This can be specified either as a multiple of the original trade profit or as a total dollar amount. Fo
                                    Trade Copy is an EA-shaped tool that replicates the trades done on a Meta Trader 5 to all Meta Traders 5 opened on same computer. Is useful if you want to trade more than once account yours or if you want to work with third party account management. Demo version:  https://www.mql5.com/pt/market/product/40906 MT4 version:  https://www.mql5.com/pt/market/product/40902/ Configurations: MAIN OPTIONS Idiom - change to English or Portuguese. Copy trades from - specify if the trades will be copied fro
                                    Automate your trading with any custom indicator Would you like to automate your trading using a custom indicator of your choice? This EA trades using almost any custom indicator. It offers fully customizable settings, flexible position management, customizable trading sessions and weekdays, an inverse mode and a martingale mode. All the robot needs from you are two inputs: The filename of the indicator to trade The signal buffer or the buy/sell buffers to call That's it! The signal buffer or t
                                    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
                                    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
                                    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 -------------------------------------------------------------------------------
                                    Copia i segnali da qualsiasi canale di cui sei membro ( senza la necessità di un token bot o autorizzazioni di amministratore ) direttamente sul tuo MT5. È stato progettato con l'utente in mente, offrendo molte delle funzionalità di cui hai bisogno Questo prodotto è presentato in un'interfaccia grafica facile da usare e visivamente attraente. Personalizza le tue impostazioni e inizia a utilizzare il prodotto in pochi minuti! Guida dell'utente + Demo  | Versione MT4 | Versione Telegram Se desi
                                    Altri dall’autore
                                    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 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
                                    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
                                    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
                                    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
                                    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
                                    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
                                    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
                                    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
                                    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
                                    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
                                    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
                                    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
                                    Filtro:
                                    Nessuna recensione
                                    Rispondi alla recensione
                                    Versione 1.6 2024.10.05
                                    Insignificant change, not requiring an update:

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

                                    - Improvement of the function added in the 1.3 version (2024.07.16).
                                    Versione 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).
                                    Versione 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.
                                    Versione 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).
                                    Versione 1.1 2024.06.02
                                    Minor change, not requiring an update:

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