• Visão global
  • Comentários (1)
  • Discussão (3)
  • O que há de novo

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.


                                    Produtos recomendados
                                    FX28 Trader MT5
                                    Tsvetan Tsvetanov
                                    3 (1)
                                    Apresentamos o FX28 Trader Dashboard: Seu Gerenciador de Operações Definitivo Desbloqueie todo o potencial de sua experiência de negociação com o FX28 Trader Dashboard, um gerenciador de operações abrangente e intuitivo projetado para elevar o seu trading de Forex a novos patamares. Seja você um trader experiente ou esteja começando sua jornada financeira, esta poderosa ferramenta foi desenvolvida para simplificar suas atividades comerciais e aprimorar seu processo de tomada de decisões. Recurs
                                    Overview : The Advanced News Trading Panel is a versatile tool designed for traders who rely on news-based trading strategies. This Expert Advisor (EA) provides an intuitive graphical interface that allows users to quickly set up pending orders and manage risk with ease. With the ability to automatically place Buy/Sell Stop orders based on your pre-set stop order distance from the bid/ask price, stop-loss and take-profit levels, the EA allows for precision trading during high-volatility news ev
                                    Binance Grid Pro offers an alternative to the built in Grid systems Binance Platform offers. This utility let you define a grid parameters for interact with your Binance account using an Isolated Margin account. This is, similar to Spot Grid in Binance. This is not for handle with derivatives contracts, is for handle with Spot through Isolated Margin Account. But obviosly this utility offers a different approach than built in Binance Grid to handle the Grid, which I have found useful based o
                                    The Realtime Statistics MT5  is an innovative tool designed for traders who want to keep track of their trading performance in real-time. This MetaTrader 5 Expert Advisor (EA) is packed with customizable features that allow you to monitor crucial trading statistics directly on your chart, ensuring you always have the insights you need to make informed trading decisions. Check out the Realtime Statistics MT5 User Guide Here Try out the  FREE  Realtime Statistics MT5 Demo  Here Key Features: Compr
                                    Tiger Lite
                                    Dang Cong Duong
                                    Tiger Lite recreate the history of entry and exit orders. The goal is that you can grasp their strategy how to play. CSV format support for WEB, MT4 and MT5 platforms. The sequence of steps is described in the photo. Note: Please choose the existing date and symbol on the CSV file. For MT4/5, export historical data and copy the records to excel, save it with the extension CSV. For MT4/MT5/WEB, save the name with format mt4.csv/mt5.csv/web.csv If you get the history from another source and you
                                    FREE
                                    Pending Order Grid MT5
                                    Francisco Manuel Vicente Berardo
                                    The Pending Order Grid is a multi-symbol multi-timeframe script that enables multi-strategy implementation based on pending order grids.  General Description   The Pending Order Grid allows the performing of a user-defined strategy through the creation of pending order grids. The script places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant price levels to form each grid. The beginning and finish of every grid are defined by the Start Price and St
                                    Binance é uma bolsa de criptomoedas de renome mundial! Para facilitar aos usuários do MT5 a negociação direta de Futuros Binance, o programa oferece as seguintes funções de negociação: 1. Imitar o estilo de negociação de Binance Futures e fornecer um painel de operação amigável; 2. Insira api e secret por conta própria (você precisa abrir permissão de negociação de futuros na API Binance) para obter alavancagem, saldo e outras informações; 3. Suporte limitOrder (ordem de limite), marketOr
                                    Auto News Trading  is both a trading assistant and an automatic trading bot that can trade automatically on the news. It is very easy to use and just run on the chart. In Forex trading, news is one of the important factors that move the market.   In strategy tester mode, you will be able to see only the panel, because it is impossible to call the news. You can download free   demo version   here. Note:   these demo files expire on 2023-11-15. If the demo version has expired, please send me a
                                    AO Trade
                                    Ka Lok Louis Wong
                                    O sistema de negociação AO Trade é especificamente projetado para negociação de tendências, aproveitando os horários de leilão ou de notícias como pontos de referência para comparação com outros horários de ordem específicos para antecipar tendências de mercado. **Todos os parâmetros de tempo utilizados no EA são baseados no horário do seu terminal. Diferentes corretores podem operar em fusos horários GMT diferentes, o que pode variar ainda mais devido a ajustes de Horário de Verão.** **Por f
                                    Magic EA MT5
                                    Kyra Nickaline Watson-gordon
                                    Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA
                                    Cleopatra EA MT5
                                    Nestor Alejandro Chiariello
                                    Olá comerciantes! Apresento a vocês a "Cleópatra" Cleópatra um design bonito e inteligente, com uma forma de recuperação que se adapta constantemente onde o seu poder é a versatilidade. Sua principal estratégia é ler o mercado em sua elasticidade, podemos analisar a faixa de entrada de diversas formas. Isso pode ser muito dinâmico em diferentes TF e diferentes faixas, com tratamento de consultas sobre novidades do mercado. Cleópatra tem grande poder de adaptação à recuperação do mercado, seus
                                    Drawdown Manager by Ofx
                                    Osama Essameldin Ibrahim Abdelaal
                                    In the ebb and flow of financial markets, the Drawdown Manager (by Ofx) stands out as an essential companion for traders utilizing grid and martingale strategies. This innovative tool is engineered to provide an analytical approach to managing trading drawdowns. By selectively utilizing floating and realized profits, the DDM tactically help traders control their drawdown exposure during market downturns. Its customizable settings empower traders with the flexibility to adjust operations accordi
                                    Santa Scalping MT5
                                    Morten Kruse
                                    3.33 (3)
                                    Santa Scalping is a fully automated Expert Advisor with no use of martingale. Night scalping strategy. The SMA indicator filter are used for entries. This EA can be run from very small accounts. As small as 50 EUR. General Recommendations The minimum deposit is 50 USD,  default settings reccomend for eurusd m5 gmt +2 . Please use max spread 10 if you will not have orders change it to -1. Use a broker with good execution and with a spread of 2-5 points. A very fast VPS is required, preferably w
                                    This EA is for only Deriv Synthetic indices.  Forex MT4 Version here:   https://www.mql5.com/en/market/product/89114 Forex MT5 version here:  https://www.mql5.com/en/market/product/89113 Hello traders, I believe you all know that risk and money management along with psychology are the keys to success in trading. No matter how strong one’s strategy is, without these 3 criteria they will always face losses in the long run. I have created an EA to control our human behaviors. This EA will force
                                    RSI Grid MT5
                                    Joseph Anthony Aya-ay Yutig
                                    OBTENHA OUTROS EAs DE GRAÇA!!! OBTENHA OUTROS EAs DE GRAÇA!!! OBTENHA OUTROS EAs DE GRAÇA!!! OBTENHA OUTROS EAs DE GRAÇA!!! OBTENHA OUTROS EAs DE GRAÇA!!! O RSI Grid é baseado nas condições de sobrecompra e sobrevenda do RSI e abre uma grade quando a negociação está no lado perdedor do mercado. O RSI fornece aos traders técnicos sinais sobre o momento de alta e baixa dos preços, e geralmente é plotado abaixo do gráfico do preço de um ativo. Um ativo é geralmente considerado sobrecomprado quan
                                    /   ********** **********   ********** **********   ********** **********   ********** **********   ********** **********   / Big Sales for Easter! Price is reduced > 50 % already! Grasp the chance and Enjoy it!  /   ********** **********   ********** **********   ********** **********   ********** **********   ********** **********   / This is a powerful EA that support single order strategy, martingale strategy, multiple timeframes strategy, etc with lots of useful indicators and self define
                                    Forget coding! You no longer need EAs! Any indicators (and not only) can now trade themselves anything anywhere! GRat_IndiTrade is a strategy builder for automatic trading by the signals of  ANY available indicators without limits (both standard and custom), as well as on ANY of their combinations, by candlestick patterns, without the need to write, generate or compile any code . You no longer need to be or hire a programmer to test and automate ALL your trading ideas. Just place the indicato
                                    Metatrader5 Trailing Stop Loss Program Platform Compatibility : This program is designed for the MetaTrader 5 platform. Functionality : The program scans all open Forex currency pair trades on MetaTrader 5 and adjusts their STOP LOSSES to a PROFIT position based on your specified input parameters. Parameters and Example : Example Trade : EURUSD Long (BUY) trade @ 1.0800 STOP LOSS (-50 pips) @ 1.0750 TAKE PROFIT (+50 pips) @ 1.0850 Program Settings : WhenToTrail = 20 PIPS (Pips profit amount to
                                    Overview: The TropangFX AutoMgmt is a versatile trading utility designed to enhance your averaging strategy by automatically placing take profit and stop loss orders. This utility empowers traders by integrating a risk calculator and lot-size customization, ensuring that each trade aligns with their risk management preferences and financial goals. Key Features: Automated Take Profit & Stop Loss: Automatically sets take profit and stop loss levels for each trade based on predefined criteria. Ens
                                    The King Advisor MT5
                                    Guillem Boix Martin
                                    4.62 (52)
                                    The King Advisor é um algoritmo de rede neural altamente avançado. A sua estratégia baseia-se na identificação de níveis de suporte, resistência e linhas de tendência através de um sofisticado sistema de auto-aprendizagem e de um sistema de negociação concebido com anos de experiência e trabalho.  Desenvolvido por uma equipa de comerciantes experientes. ATENÇÃO QUE HÁ UM LIMITE DE 200 EXEMPLARES --> Total de exemplares vendidos actualizados: 195 Temos uma promoção para oferecer o nosso próximo E
                                    HYT utility
                                    Sergey Batudayev
                                    5 (1)
                                    HYT (Help Your Trading) is a tool designed to help you average down your losing positions using two main techniques: Standard averaging . Hedging with subsequent opening of positions in the direction of the trend . Buy 1 and 1 get FREE This tool allows you to manage multiple positions opened in different directions, both for buying and selling. HYT automatically calculates the size of the next position , order price, direction for averaging, and closing the position with a specified take-profit
                                    EA Monolith
                                    Vasiliy Kolesov
                                    5 (1)
                                    EA Monolith EA monolith   is a fully automatic, multicurrency Expert Advisor designed for trading on the Forex market in the MT5 terminal on accounts with "netting" orders, "no hedge".  The EA has a function for closing all orders when a critical drawdown is reached, the size of which is set in the settings, which provides full protection of the deposit. This version of the Expert Advisor is configured to work on the gold spot tool. If your broker has two decimal places in quotes on the
                                    Bergland Gold MT5
                                    Matthias Bessler
                                    2.33 (3)
                                    This fully automated trading system is part of the Bergland signal. It features a highly efficient trading logic, and a money management system. Reasonable calculated stop loss and take profit levels. It is easy to install and do not require a special setfile. XAUUSD, M15 Special Promo:    If you register with my cashback link, you will get this EA for free. PM me for instructions.
                                    Trade Shot 99
                                    Ricardo Copio Bejenaru Martins
                                    Trade shot is a management tool. Automatically closes pending orders at X profit or Y loss. You define the $ you want to earn or lose per trade, the advantage in relation to take or stop loss is that here you define the money to be gained or lost and not based on points. Ideal for Scalp day trade strategies Your trades will easily be better managed based on what you want to win or lose, orders are closed automatically without worrying about managing money. Trade shot é ferramenta de gestão. Fe
                                    MilliiEa
                                    Ricardo Mccartney
                                    Introducing Milli EA: Your Path to Success in Forex Trading Are you seeking a trading solution that can propel your forex trading to new heights? Look no further than Milli EA, a groundbreaking expert advisor that I've poured months of dedication and hard work into. I take immense pride in this EA and have continually refined and backtested it to ensure it becomes an invaluable asset in achieving your trading goals. Milli EA boasts a fusion of top-tier indicators, including Support and Resistanc
                                    Bollinger Turbo
                                    Aleksandr Zakhvatkin
                                    Советник основан на популярной стратегии и использованием связки из двух индикаторов: Bollinger Bands + RSI. Добавлена функция добавления новых позиций при определенной просадке. Количество добавляемых позиций и размер просадки регулируются. Описание настроек Группа "Настройки торговли" Lot Size Размер лота Drawdown Просадка TakeProfit Тейк профит Count Счетчик доливок (не более 10) New bar control Включение явного контроля открытия нового бара (для тестера) Группа "Настройки Bol
                                    We Can Do IT MT5
                                    Lai Thi Tuyet Mai
                                    We Can Do IT MT5 is a Secure Automated Software for Generation of Daily Profits for Forex Market. The architecture is a Fully Automatic Autonomous Robot Expert capable of independently analyzing the market and making trading decisions. The Trading system is Multi-currency and is able to trade on H1 charts:  EURUSD, GBPUSD, USDJPY, SPX500, DAX30, GOLD NOT  Martingale! NOT GRID, Averaging and other dangerous strategies are NOT used!  This is a full compliance with the FIFO method !  The trading
                                    Mayari MT5
                                    Jose Lagayan
                                    Introducing the MAYARI MT5: The Trend Indicator Expert Advisor *Set Files for EURUSD available on the Comments Section *RESULTS SHOWN HERE ARE NOT OVER OPTIMIZED UNLIKE OTHER BOTS THE IS FOR SALE! ONLY REALISTIC RESULTS! *The default settings of MAYARI MT5 are optimized for EURUSD, based on rigorous back-testing over a 4-year period. For safe and effective operation, it's recommended to use the default settings with an account balance of at least $1,000 USD. Embark on a journey where technology
                                    AlwaysWin MT5
                                    Ismail Hakki Delibas
                                    EA Description : The EA is designed based on specific trend detection algorithms and strong filters.Most of the algorithms are smart and automatic. You need to adjust some limited parameters to optimize the signal engine of the EA. Thus optimizing and using EA is very simple and easy. Supported Symbols and Timeframes : All timeframes and pairs are supported by EA. The best operation of EA is on all 28 Major and Cross Pairs of Forex. The best timeframes are M15,M30,H1 EA Inputs General Opt
                                    AlgoMania Trade Manager
                                    Ehab Basheer Abdulsalam Yahia
                                    Introducing our advanced MT5 Trade Manager – an indispensable tool tailored for astute traders employing the martingale strategy and executing multiple trades on a single chart. Key Features: Effortless Lot Size Management: Streamline your trading process with intuitive and rapid lot size adjustments through simple mouse clicks. One-Click Trade Management: Close all trades or selectively close profitable ones with unparalleled ease, enhancing efficiency and saving valuable time. Comprehensive
                                    Os compradores deste produto também adquirem
                                    Trade Assistant MT5
                                    Evgeniy Kravchenko
                                    4.37 (166)
                                    Ajuda a calcular o risco por comércio, a fácil instalação de uma nova encomenda, gestão de encomendas com funções de fecho parcial, trailing stop de 7 tipos e outras funções úteis. Atenção, o aplicativo não funciona no testador de estratégia. Você pode baixar a versão Demo na página de descrição  Manual, Description, Download demo Função de linha Mostra no gráfico a linha de Abertura, Stop Loss, Take Profit. Com esta função é fácil definir uma nova ordem e ver as suas características adicion
                                    Você acha que em mercados onde o preço pode mudar em uma fração de segundo, colocar os pedidos deve ser o mais simples possível? No Metatrader, cada vez que você deseja abrir uma ordem, você deve abrir uma janela onde você insere o preço de abertura, stop loss e take profit, bem como o tamanho da negociação. Ao negociar nos mercados financeiros, a gestão de capital é essencial para manter seu depósito inicial e multiplicá-lo. Portanto, quando você deseja fazer um pedido, provavelmente se pergunt
                                    TradePanel MT5
                                    Alfiya Fazylova
                                    4.85 (115)
                                    Trade Panel é um assistente comercial multifuncional. O aplicativo contém mais de 50 funções para negociação manual e permite automatizar a maioria das ações de negociação. Antes de comprar, você pode testar a versão Demo em uma conta demo. Demonstração aqui . Instruções completas aqui . O aplicativo foi concebido como um conjunto de painéis interconectados: Painel para comércio. Projetado para realizar operações comerciais básicas: Abertura de ordens e posições pendentes. Abertura da grade de o
                                    Custom Alerts é uma ferramenta versátil de monitorização de vários mercados que identifica configurações promissoras em todas as oito principais moedas (USD, CAD, GBP, EUR, CHF, JPY, AUD e NZD), bem como GOLD (XAU), todos os 28 pares de Forex e GOLD baseados nestas moedas e até sete índices como US30, UK100, WTI, Bitcoin, etc. É totalmente personalizável. A ferramenta reúne dados dos nossos indicadores FX Power, FX Volume e IX Power e notifica-o de eventos significativos.   Antes de começar,
                                    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
                                    Levi Dane Benjamin
                                    4.83 (6)
                                    Copie os sinais de qualquer canal do qual você seja membro (incluindo privados e restritos) diretamente para o seu MT5.  Esta ferramenta foi projetada com o usuário em mente, oferecendo muitos recursos que você precisa para gerenciar e monitorar as negociações. Este produto é apresentado em uma interface gráfica fácil de usar e visualmente atraente. Personalize suas configurações e comece a usar o produto em minutos! Guia do usuário + Demo  | Versão MT4 | Versão Discord Se deseja experimentar
                                    -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
                                    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
                                    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 -------------------------------------------------------------------------------
                                    Trade Assistant 38 in 1
                                    Makarii Gubaydullin
                                    4.89 (18)
                                    Ferramenta multifuncional: 65+ funções, incluindo: calculadora de lote, Price Action, proporção R/R, gerenciamento de trade, zonas de suporte e resistência Versão Demo   |   Manual de usuário   |    Versão MT4 O utilitário não funciona no testador de estratégia: você pode baixar a versão Demo AQUI para testar o produto. Contate-me   para perguntas / ideias de melhorias / caso encontrar algum erro Os trades automáticos serão permitidos se estiverem habilitados na plataforma e na corretora Simpli
                                    YuClusters
                                    Yury Kulikov
                                    4.93 (42)
                                    Atenção: A versão demo para revisão e teste está aqui . YuClusters é um sistema profissional de análise de mercado. O trader tem oportunidades únicas para analisar o fluxo de pedidos, volumes de negociação, movimentos de preços usando vários gráficos, perfis, indicadores e objetos gráficos. O YuClusters opera com base em dados de Tempos e Negócios ou informações de ticks, dependendo do que está disponível nas cotações de um instrumento financeiro. O YuClusters permite que você crie gráficos com
                                    ClusterSecond
                                    Rafil Nurmukhametov
                                    4.78 (32)
                                    The utility allows you to build different types of graphs: Seconds chart from 1 second to 86400 seconds Tick chart from 1 tick and above The volume chart Delta chart Renko chart Range chart Demo version of the utility https://www.mql5.com/ru/channels/clustersecond Built-in indicators for volumetric analysis: daily market profile and market profile of the selected timeframe, Cluster Search Imbalance VWAP Dynamic POC, VAH, VAL the profile depth of the market vertical volume with various display op
                                    -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
                                    Este é um painel de negociação visual que ajuda você a realizar e gerenciar operações facilmente, evitando erros humanos e aprimorando sua atividade comercial. Ele combina uma interface visual fácil de usar com uma abordagem sólida de gerenciamento de riscos e posições. [ Guia de instalação | Guia de atualização | Solução de problemas | FAQ | Todos os produtos ] Surpreendentemente fácil de usar Negocie facilmente a partir do gráfico Negocie com gerenciamento preciso de riscos, sem complicações
                                    MQLplus Charting
                                    Dominik Egert
                                    3.67 (3)
                                    MQLplus Charting  Inspired by good charting solutions available on the web, this utility finally brings some neat features to MT5 to make charting fun again. Current version supports following features: Free floating charts , similar to Tradingview A sophisticated Cross-Hair , with detailed data display Multi-Chart Cross-Hair  sync function Measurement tool , showing account currency, points and period count as results Speed-Scrolling  to move fast through markets history Snail-Scrolling  to
                                    News Filter Tool
                                    Apex Software Ltd
                                    5 (1)
                                    Melhore Seu Trading com Insights de Eventos de Notícias No mundo acelerado do trading, eventos de notícias podem impactar significativamente os preços de mercado. Compreender como esses eventos influenciam os movimentos de preço é crucial para gerenciar suas operações durante períodos voláteis. A ferramenta News Tool EA foi projetada para fornecer insights sobre eventos de notícias passados e futuros, ajudando você a tomar decisões de trading mais informadas. Este EA não pode ser executado no
                                    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
                                    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
                                    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)
                                    Não existe software igual no mundo e que represente um "console" universal de negociação informando sinais para operar, entrada automatizada do mercado, configurando o Stop Loss e o Take Profit, assim como o Trailling Profit para diversas negociações em apenas uma janela aberta. O controle intuitivo do Expert Advisor em "três cliques" garante um uso abrangente de todas as suas funções em diferentes computadores, incluindo tablets. Interagindo com indicadores de sinal adicionais que marcam o gráf
                                    RiskGuard Management
                                    MONTORIO MICHELE
                                    5 (14)
                                    ATTENTION the expert does not work in strategy tester, for a trial version visit my profile. Manual RiskGuard Management   RiskGuard management was born with the idea of ​​helping traders from their initial journey to becoming expert and aware traders. Compatible with any operating system whether Mac or Windows. The operations panel is integrated into the graph giving the possibility to choose size and position between right and left, while the various buttons light up when they can be used,
                                    The product will copy all  Discord  signal   to MT5   ( which you are member  ) , also it can work as remote copier.  Easy to set up. Work with almost signal formats, support to translate other language to English Work with multi channel, multi MT5. Work with Image signal. Copy order instant, auto detect symbol. Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. How to setup and guide: Let read all details about setup and download Discord To MetaTrade
                                    The  Easy Strategy Builder (ESB)  is a " Do It Yourself " solution that allows you to create a wide range of the automated trading strategies without any line of codes. This is the world’s easiest method to automate your strategies that can be used in STP, ECN and FIFO brokers. No drag and drop is needed. Just by set conditions of your trading strategy and change settings on desired values and let it work in your account. ESB has hundreds of modules to define unlimited possibilities of strategi
                                    Comprehensive on chart trade panel with the unique ability to be controllable from mobile as well. Plus has a library of downloadable configuration, e.g. exit rules, extra panel buttons, pending order setup and more. Please see our product video. Works with all symbols not just currency pairs. Features On chart panel plus controllable from free app for Windows, iPhone and Android Built-in script engine with library of downloadable configuration, e.g. add 'Close All Trades in Profit' button, exit
                                    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
                                    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
                                    Trade Copier Pro MT5
                                    Vu Trung Kien
                                    3.67 (3)
                                    Trade Copier Pro MT5 is a tool to copy trade remotely to multiple MT4, MT5 and cTradfer 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 not be abl
                                    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
                                    Mt5 To InterativeBrokers Copier allows you to copy deals from MT5 account to Interactive Brokers. With this, you can run your EA strategy on a MT5 Demo/Real Account, then copy all the deals to Interactive Brokers account real time. Features: 1. Copy or Invert-Copy deals Realtime from MT5 to IB Account. 2. Synchronizing positions of both accounts periodicaly, in case any missing copying. 3. You can choose only Buy position or Sell position. Symbols Setup: General Format:  {MT Symbol} -> {
                                    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
                                    Mais do autor
                                    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
                                    Tick Data Record MT4
                                    Francisco Manuel Vicente Berardo
                                    The Tick Data Record is a multi-symbol multi-timeframe Expert Advisor that records tick data for later graphical representation and analysis.  General Description   The Tick Data Record offers a(n) alternative/complement to the online/offline price charts displayed through the MT4/MT5 platform. The Expert Advisor   permits   to write and save the current/history values of Time, Bid, Ask, Spread, Last and Volume to a text file (“.txt”). The idea is to copy/open the obtained register to/in a sp
                                    FREE
                                    Scientific Calculator MT4
                                    Francisco Manuel Vicente Berardo
                                    The Scientific Calculator is a script designed to compute science, engineering and mathematics expressions.   General Description   The expression to calculate must obey syntax rules and precedence order, being constituted by the following elements:   Integer and real numbers.   Mathematical operators for addition (+), subtraction (-), multiplication (*), division (/) and exponentiation (^).   Mathematical and trigonometric functions .   Curved parentheses (()) to define the precedence and
                                    FREE
                                    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
                                    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
                                    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
                                    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
                                    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
                                    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
                                    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:
                                    md hazly
                                    33
                                    md hazly 2024.10.09 18:55 
                                     

                                    O usuário não deixou nenhum comentário para sua avaliação

                                    Responder ao comentário
                                    Versão 1.6 2024.10.05
                                    Insignificant change, not requiring an update:

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

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

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