• Обзор
  • Отзывы
  • Обсуждение
  • Что нового

Pending Order Grid EA MT4

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

General Description 

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

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

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

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

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

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

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

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

    Risk Management 

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

    Input Parameters 

    PENDING ORDER GRID 

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

        PENDING ORDER PLACING 

        • Magic Number: Expert Advisor’s identifier. 
        • Type: Pending order type used to form the grid. 
        • Volume: Lot size per deal (lots). 
        • Free Margin %: Percentage of account free margin used to calculate the lot size of the current deal (%). 
        • Stop Loss: Distance from the market price for placing a Stop Loss at a position opening (pips). 
        • Take Profit: Distance from the market price for placing a Take Profit at a position opening (pips). 
        • Deviation: Maximum allowed slippage from the requested price (pips). 
        • Expiration Time: Order validity period. 
        • Comment: Text message displayed in the chart window (to which the EA is attached) after a(n) (re)initialization of the EA, in the description of a chart object after the creation of a horizontal/vertical line at one of the grid’s limits or after the placing of a pending order, and in the Trade / Account History tab of the Terminal window after the placing of a pending order (it only allows 31 characters). 

          POSITION MODIFYING 

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

              OPTIMIZATION CRITERION 

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

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

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

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

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

                    Optimization Criterion 

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

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

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

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

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

                      Abs, Arccos, Arcsin, Arctan, Ceil, Cos, Exp, Floor, Log, Log10, Max, Min, Mod, Pow, Rand, Round, Sin, Sqrt, Tan. 

                      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 511 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 and 6; 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") and description (the Comment input parameter). Note: The properties of a graphical object can be edited in the Objects list. 

                                    After the EA’s testing/optimization, the result of the mathematical expression, inserted in the Optimization Criterion input parameter, is presented in the Journal / Optimization Results tab of the 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: “market is closed”. 

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

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

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

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

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

                                    Conclusion 

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


                                    Рекомендуем также
                                    IT DOESN'T WORK CORRECTLY IN THE TESTER, IT'S MADE TO PASS TESTS ON mq5!!! It is better to test the advisor on a demo account! The advisor is always in the black. Does not use old indicators, developed using GPT, which eliminates errors in operation. Suitable for use on all instruments.Shows positive dynamics.GPT calculation confirmed the expert's work.At long distances, a grid is used, which brings a good profit. During long movements, the profit comes in parts from the main budget.
                                    Советник не может быть протестирован в тестере стратегий МТ4! Только на МТ5 так что ставьте его на демо счет и тестируйте в реальном времени или скачайте такую же в ерсию для МТ5. Советник торгует по инструментам с высокой корреляцией. При этом он страхует (хэджирует) каждую сделку за счет другого инструмента. Принцип страховки заключается в том, что по одному инструменту мы покупаем, а по противоположному продаем. Так как пары с положительной корреляцией всегда следуют в одном направлении то
                                    Fxdolarix - автоматический робот скальпер для GBPUSD M5. Был протестирован на реальном счету в течении 3 месяцев. Робот использует стратегию скальпинга, ориентированную на краткосрочное движение цены внутри дня. Основной акцент детается на выявление моментов краткосрочной волатильности и выоспроизведении быстрых сделок. Робот использует в своей работе такие индикаторы как: iMACD, iMA, iStochastic. С помощью этих индикаторов робот выявляет направление тренда, а с помощью активности тикового движе
                                    Risk Manager for MT4
                                    Sergey Batudayev
                                    4.56 (9)
                                    Советник Риск Менеджер для МТ4, очень важная и по моему мнению необходимая программа для каждого трейдера. С помощью данного советника вы сможете контролировать  риск на вашем торговом счету. Контроль риска и прибыли может осуществляться как в  денежном $ эквиваленте так и в % процентном. Для работы советника просто прикрепите его на график валютной пары и выставите значения допустимого риска в валюте депозита или в % от текущего баланса.   Version for MT5 -  https://www.mql5.com/en/market/prod
                                    XMaya Scalp ZR Series - это полностью автоматический эксперт, предназначенный для трейдеров. XMaya Scalp ZR Series - торговый робот, торгующий по мультивалютной скальпинг-стратегии. Советник торгует на любом таймфрейме, может работать на любых парах, но не подходит для использования на XAU/GOLD . Система готова к использованию после простой настройки и оптимизации по тейк-профиту, стоп-лоссу и трейлингу. Пользовательские переменные OrderCmt - комментарий к ордерам Magic - магическое число для
                                    Взгляд на Risk Manager : революционный робот с уникальной торговой системой Risk Manager — это революционный робот. Благодаря своей уникальной торговой системе, использующей анализ настроений и машинное обучение, Risk Manager меняет правила игры, когда дело доходит до совершения сделок. Можно работать на любом часовом периоде, любой валютной паре и на сервере любого брокера.  Risk Manager — это торговый робот, который использует собственный алгоритм для принятия торговых решений. Используются
                                    CAP Ichimoku EA MT4 Pro  trades using the Ichimoku Kinko Hyo Indicator. It offers many customizable Ichimoku 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  |  All Products  ] Before buy Pro version? You can buy alternation pro version, our powerfull EA,   CAP Strategy Builder EA .  This is strategy builder EA. It p
                                    ABCMarketsControl
                                    Svetlana Dzikovskaya
                                    Утилита ABCMarketsControl.ex4 контролирует уже открытые сделки по любому торговому символу, а именно переводит сделки в состояние отсутствия убытка при достижении ценой заданного значения, а также, при дальнейшем движении цены в прибыльном направлении, смещает приказы Stop Loss и Take Profit вслед за ценой. Удобно использовать при торговле на среднем и длинном сроках, а также при торговле на новостях. Параметры, выставленные по умолчанию, оптимальны, но лучше для каждого торгового символа подобр
                                    PROMO: SPEND MORE TIME WITH YOUR FAMILY. ENJOY LIFE… DO NOTHING. We would like to share our coding skills to fellow traders and most especially to people from all walks of life to have the opportunity to trade or invest using auto-trading way to provide other source of income while letting the robot and your money works for you.  Recommendations: Timeframe:   H1 (Any Timeframe) Supported currency pairs:   EURUSD , EURCHF,   USDCAD, AUDCAD, EURAUD and many more except *** JPY*** Pairs ...
                                    ЗАПУСК ПРОМО: ВСЕГО 34 9 $ вместо 990$! По акции осталось всего несколько экземпляров! Обязательно ознакомьтесь с нашим «   Комбо-пакетом Ultimate EA   » в нашем   промо-блоге   !   JOIN PUBLIC GROUP:   Click here Живые результаты с низким риском Живые результаты с высоким риском Добро пожаловать в STABILITY PRO   : одну из самых передовых, стабильных и безопасных сетевых систем на рынке! Этот советник прошел стресс-тестирование на всей доступной истории валютных пар, которые он используе
                                    Miner Pro EA is a fully automatic Expert Advisor. It can actually outsmart a market by placing BUY and SELL orders when the requirements are met. It uses an advanced technology to place orders in the right time with the right lot. This robot is designed for beginners yet expert traders: Most of the inner parameters are hidden from user so that even a beginner will not mess up.  All Parameters are optimized for the EUR/USD pair. Recommend ECN broker: ICMarket , Tickmill  Parameters Lots         
                                    Fx Ilan Pluss Советник Fx Ilan Pluss -это аналог советника, с добавлением множества дополнительных логик и возможностей для торговли, с оставленными настройками советника . Советник торгует по системе Мартингейл с увеличением последующих лотов в серии ордеров, с целью их усреднения. Первый ордер робот выставляет по сигналам встроенного индикатора. Так же советник имеет возможность прекращать торговлю в зависимости от новостей. FX Ilan Plus можно использовать либо на одном графике, либо на двух г
                                    Impuls Pro MT4
                                    Sergey Batudayev
                                    5 (3)
                                    Стратегия советника строиться на  Swing трейдинге , со входами после резких импульсов,    вычисляемых индикатором iPump. Как ранее упоминалось, в советнике есть возможность открытие ручных сделок с автоматическим сопровождением Для нисходящего тренда   ↓ мы входим в сделку   после коррекционного роста цены, актив попадет в зону перекупленности, мы продаем по тренду. Для восходящего тренда ↑мы входим в сделку после коррекционного падения цены, актив попадет в зону перепроданности, мы покупаем по
                                    ATR Robot PRO
                                    Vladimir Gribachev
                                    3 (2)
                                    Расширенная версия советника ATR Robot . Советник построен на базе многофункционального шаблона и предназначен для работы внутри торгового дня со всеми основными валютными парами на любом таймфрейме. Стратегия основана на анализе поведения цены внутри средней дневной волатильности за заданный период. Советник имеет большой функционал - он может быть настроен под любой стиль торговли, что делает его не просто торговым роботом а многофункциональным гибким конструктором. Применяет невидимые для бро
                                    Робот скальпер. Настройки по умолчанию для GBPUSD, период М5. Робот открывает каждый день от 10 до 50 торговых сделок. ТейкПрофит устанавливается физический, а СтопЛосс указывается как % от депозита. Так же робот сопровождает сделки с помощью ТрейлингСтопа. Соотношение сделок закрытых по ТейкПрофиту и СтопЛоссу примерно 90/10. Так же робот хорошо отрабатывает разные новостные события и при выходе важных новостей, если цена идет не в сторону технического прогноза, робот хорошо страхуется и старае
                                    News Trapper EA
                                    Noha Mohamed Fathy Younes Badr
                                    5 (7)
                                    Hi, all.  News trapper EA It is an expert for trading news very safe expert  put Settings interest rate only or high impact news for Automated Trading on the news of the economic calendar. It shows stable trading during last 10  years. EA doesn't use dangerous technologies like martingale, grid. The Expert is very simple to use. The program contains flexible settings In the terminal settings, you need to add the news site to the list of allowed URLs. Click Tools >Options > Expert Advisors. Che
                                    Программа Binary Options Copier Remote позволяет копировать сделки по бинарным опционам между разными счетами MetaTrader 4, установленных на разных компьютерах. Это идеальное решение для провайдеров сигналов, которые хотят поделиться своей торговлей с другими трейдерами по всему миру. Провайдер может выдать до 10 бесплатных лицензий на получение сигналов. Это означает, что 10 пользователей могут копировать сигналы провайдера, используя бесплатный продукт Binary Options Receiver Free . Начиная с
                                    Black Spider
                                    Vladimir Gribachev
                                    Безындикаторный сеточный советник. Первая сделка открывается когда волатильность превышает значение ATR. Если свеча медвежья и TrendDirection=1 - покупка, если TrendDirection=2 - продажа. Советник работает по ценам открытия нового бара, сделано это для того, чтобы результаты тестирования/оптимизации были максимально приближены к реальной торговле. Применяет невидимые для брокера динамические уровни установки новых ордеров, стоп-лосса, тейк-профита и трейлинг-стопа, значения которых могут рассч
                                    Karla Two is a fully automated Expert Advisor that operates on advanced Neural Network. It requires very little setup and no supervision afterwards. Once attached to EURJPY H1 chart it will automatically trades following symbols: EURJPY, AUDUSD, EURAUD, AUDJPY and AUDNZD Being an Artificial Intelligence you can most certainly say that it has a brain on its own. Having said that it can spot and determine the right entry points in a matter of milliseconds. All the supporting tools it uses like - t
                                    Best Forex 15TF Scalper MT4
                                    Bruno Alexandre Azevedo Dantas
                                    MT4 VERSION: Hi everyone, I had make that product for try help you get another lever without so hard work and painful... This work on most EUR pairs, maked that for EURUSD but work one anothers, becouse the simple strategie is just follow some nicelh indicators that i use for trade... and is my strategie in a program ... i don't advise start with less that -1000 and more than 0.01 but you can find too how work the tool and how you can work with that so , i will let there a group of telegram f
                                    Dear users, I would like to introduce you to my new trading advisor VVX Xerath XT. The VVX Xerath XT advisor operates on the platform of the iconic SSX Titan TT advisor, yet unlike it, it operates on lower timeframes of M15 and uses other indicators to generate trades, while also trading on two currency pairs, XAUUSD and USDJPY, which provides us with a slight diversification across pairs. My focus has been on creating an advisor that would use the best indicators combined, albeit with differen
                                    Версия MT4: https://www.mql5.com/en/market/product/104716. Версия MT5: https://www.mql5.com/en/market/product/104718 Представляем советник «Technical Master», мощный инструмент, предназначенный для оптимизации торговых решений посредством интеграции сложного технического анализа и надежных стратегий управления рисками. Этот экспертный советник использует один из встроенных индикаторов MetaTrader в сочетании с настраиваемыми параметрами риска для повышения эффективности торговли на различных
                                    Полностью автоматический советник, разработанный для рынка форекс. - Количество знаков в котировках определяется автоматически. - Работает со стандартными счетами и ECN счетами. - Таймфрейм на графике не имеет значения. Он задается в настройках. - Можно использовать как динамический лот так и фиксированный. - Фильтр спреда не разрешает советнику открывать ордера при большом его значении. - Советник всегда выставляет Take Profit на всех своих открытых ордерах. - Контроль просадки позволяет указ
                                    Hamster Original (Very Fast, Easy Setup, More Power!) You can check live Hamster Original trading  on  Telegram_Channel The  Hamster Original  is a Trading Robot with no use of Classic martingale. Schedule scalping Options. it uses some Indicators as a filter to maximize Correct entries. Recommendations :  Lot = 0.01. ( if autolot enabled  Allow (initial Lot) per (xx)USD  = 50 ). Balance  = 100 USD. Pair = EURUSD. TimeFrame = 5Min. Broker = Trusted Brokers Inputs descriptions :  Initial L
                                    Frigate
                                    Vladimir Gribachev
                                    Стратегия построена на моем шаблоне и основана на индикаторах AO и AC. Покупает при двух зеленых AO и AC, продает при двух красных AO и AC. Советник адаптирован для 4-, 5-значных котировок. Для работы рекомендую использовать его на VPS-сервере. Перед установкой на реальный торговый счет я рекомендую проверить параметры на котировках 99.90% как минимум за последний год. Если вам понадобится моя помощь, то пишите в личку. Преимущества шаблона эксперта Можно совмещать разные возможности шаблона для
                                    CSV Trader
                                    Aleksandar Petrinic
                                    CSV Trader reads CSV files and executes the orders written in. When you need to send orders to mt4 using different platforms or softwares you can easily set them to write their orders to CSV file and then use this EA to execute them in MT4. Many time I read in Freelance section that people needed a CSV trade executor and now I coded a generic one that can fits all your need. Pay attention: if you are in live/demo you should put your CSV files in " MQL4\Files\CSV_Orders\ " , when you backtest it
                                    Triangular EA Free MT4
                                    Kyra Nickaline Watson-gordon
                                    Note: MT4 Backtest cannot test EAs that trades with several symbols simultaneously. For backtest use MT5 versions download here . Note : Free version can be used for trading on Demo Accounts. Important : This is Arbitrage EA and may not work on all accounts. It is recommended to follow the testing process described on product screenshots. Strategy : EA will place trades based on Triangular Arbitrage strategy. Triangular arbitrage (also referred to as cross currency arbitrage or three-
                                    FREE
                                    ADX Smart
                                    Anton Karabeinikov
                                    Советник на базе индикатора ADX. Для PRO.ECN счетов,но подходит и для ECN.Есть мартингейл. Советник открывает сделки с фильтрами по WPR  и ATR.  ind_name="=======ADX=======";  Sdelok                                     =4;                 // Количество сделок Magic                                       =2021;            //Магик  Lots                                        =0.1                // Лот MaximumRisk                           =5                   //Риск DeltaCur                     
                                    Success Forex
                                    Mr Teerawoot Aonlamool
                                    Way  to success  EA EA used to trade gold, try to get up to 10000 points of chart drag Trade according to trends, use up to 5 indicators to set values. It is a Martingale system. Fixed when the first lot lost by multiplying not over There is a trailing system. Stop comes when there is a profit. Max drawdown only 24.18% Testing Through the Crisis of War Within 6 months the profit reaches 128.74%
                                    WONNFX iEQ EA MT4 automatic advisor/scalper. Intraday trading. The advisor does not use grids, martingale or other dangerous strategies. All trades are opened and closed during the trading day Each trade is opened with a take profit and stop loss. Trades are also accompanied by a trailing stop. Recommendations: Symbol:   GBPJPY, USDCAD, AUDUSD  (mod1/2/3) Timeframe:   M1 Requirements: The minimum deposit is from 100 dollars in 0.01 lot. 1:100/500. Broker with low spreads, up to 20 pips per
                                    С этим продуктом покупают
                                    Trade Assistant MT4
                                    Evgeniy Kravchenko
                                    4.45 (183)
                                    Помогает рассчитать риск на сделку, простая установка нового ордера с помощью линий, управление ордерами с функциями частичного закрытия, 7 типов трейлинг-стопа и другие полезные функции. Внимание приложение не работает в тестере стратегий.  Инструкция, Описание, Скачать демо Функция Линии   - отображает на графике линию открытия, стоп-лосс, тейк-профит. С помощью этой функции легко установить новый ордер и увидеть его дополнительные характеристики перед открытием. Управление риском   -  
                                    Считаете ли вы, что на рынках, где цена может измениться за доли секунды, размещение ордеров должно быть максимально упрощено? Если вы хотите создать ордер в Metatrader, вы должны открыть окно, в котором надо ввести цену открытия, stop loss и take profit, а также размер сделки. В торговле на финансовых рынках управление капиталом необходимо для сохранения и приумножения первоначального депозита. Итак, когда вы хотите разместить ордер, вы, вероятно, задаетесь вопросом, насколько крупную сделку в
                                    The product will copy all telegram signal to MT4   ( 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
                                    Unlimited Trade Copier Pro - это мощный инструмент для удаленного копирования сделок между несколькими счетами MetaTrader 4/MetaTrader 5, расположенными удаленно друг от друга, по сети интернет. Это идеальное решение для провайдеров сигналов, которые хотят поделиться своей торговлей с другими трейдерами по всему миру. Один поставщик может копировать сделки на неограниченное количество счетов-получателей, а один получатель также может копировать сделки неограниченного количества провайдеров. Пост
                                    Копируйте сигналы из любого канала, участником которого вы являетесь (в том числе частного и ограниченного), прямо на свой MT4. Этот инструмент был разработан с учетом потребностей пользователей и предлагает множество функций, необходимых для управления и мониторинга сделок. Этот продукт представлен в простом в использовании и визуально привлекательном графическом интерфейсе. Настройте свои параметры и начните использовать продукт в течение нескольких минут! Руководство пользователя + Демо  |
                                    TradePanel MT4
                                    Alfiya Fazylova
                                    4.91 (88)
                                    Trade Panel — это многофункциональный торговый помощник. Приложение содержит более 50 функций для ручной торговли, и позволяет автоматизировать большую часть торговых действий. Перед покупкой вы можете протестировать Демоверсию на демо-счете. Демоверсия здесь . Полная инструкция здесь . Торговля. Позволяет совершать основные торговые операции в один клик: Открытие отложенных ордеров и позиций. Закрытие отложенных ордеров и позиций. Переворот позиций (закрыть BUY открыть SELL или закрыть SELL отк
                                    TakePropips TradePad Pro
                                    Eric John Pajarillaga Aldana
                                    5 (4)
                                    TakePropips TradePad Pro включает в себя мощный торговый менеджер, измеритель силы валюты, инструменты отчетности по счетам, инструменты управления рисками и многое другое! Это один из самых продвинутых торговых менеджеров и торговых помощников, с которыми вы когда-либо сталкивались! Это идеальное решение для трейдеров, которым нужен более эффективный способ управления торговыми транзакциями. Вы можете скачать руководство пользователя в нашем блоге:   https://www.mql5.com/en/blogs/post/751180
                                    Mentfx Mmanage
                                    Anton Jere Calmes
                                    5 (16)
                                    The added video will show you the full functionality, effectiveness, and simplicity of this 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 c
                                    Ultimate Trailing Stop EA
                                    BLAKE STEVEN RODGER
                                    4.33 (15)
                                    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 (overr
                                    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
                                    Pro Arbitrage EA   trades based on Arbitrage Strategy. The strategy is like a scalping technology but on three cross currency pairs at the same time. Each trade basket involves three pairs (all open at the same time) and they will close at once when any desired profit reaches. The strategy has no SL technically because all opened currencies are hedged. SL can happen if high slippages on order execution on the broker side. So the strategy is one of the safest ones in the world. MT4 Limitation :
                                    Click and Go Trade Manager
                                    Victor Christiaanse
                                    5 (11)
                                    Click and Go Trade Manager, the ultimate solution for seamless trading execution. With a simple click on the chart, you can effortlessly define your stop loss, entry price, and target levels. No more hassle of inputting values manually - it's made incredibly intuitive and easy. Embedded risk management is a key feature of our Trade Manager. We understand the importance of protecting your investments, which is why the Click and Go Trade Manager incorporates risk management. When placing orders,
                                    Riskless Pyramid
                                    Snapdragon Systems Ltd
                                    5 (1)
                                    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 Assistant Pro 36 in 1
                                    Makarii Gubaydullin
                                    4.95 (20)
                                    Многофункциональная утилита: более 65 функций в едином интерфейсе, включая: калькулятор лота, индикатор Price Action, менеджер ордеров, рассчет R/R Демо веpсия  | Инструкция  | Версия для MT5 Утилита не работает в тестере стратегий: вы можете скачать   демо версию ЗДЕСЬ , чтобы протестировать продукт перед покупкой. Напишите мне  если есть вопросы / идеи по улучшению / в случае найденного бага Упроситите и сделайте вашу торговлю быстрее, при этом расширяя стандартные возможности терминала.
                                    -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
                                    ADAM EA Special Version for FTMO  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/94887 Signal using ADAM  https://www.mql5.com/en/signals/2190554 --------------------------------------------------------------
                                    Averaging Helper
                                    Sergey Batudayev
                                    5 (2)
                                    Averaging Helper - Это некий разруливатель поможет вам усреднить открытые вами ранее убыточные позиции с помощью двух техник: стандартного усреднения хеджирования с последующим открытием позиций по тренду Утилита имеет возможность разрулить сразу несколько позиций открытых в разных направлениях как на бай так и на селл. К примеру вы открыли 1 позицию на селл и вторую на бай, и они обе в минусе, или одна в минусе а одна в плюсе но недостаточном и вы бы хотели усреднить две эти позиции что-бы зак
                                    RedFox Copier Pro
                                    Rui Manh Tien
                                    4.75 (12)
                                    FREE SIGNAL CHANEL:  https://t.me/redfox_daily_forex_signals Time saving and fast execution Whether you’re traveling or sleeping, always know that Telegram To Mt4 performs the trades for you. In other words, Our   Telegram MT4 Signal Trader  will analyze the trading signals you receive on your selected Telegram channels and execute them to your Telegram to MT4 account. Reduce The Risk Telegram To Mt4   defines the whole experience of copying signals from   Telegram signal copier to mt4  p
                                    News Trader Pro
                                    Vu Trung Kien
                                    4.41 (17)
                                    News Trader Pro - это уникальный робот, который позволяет торговать по новостям. Он загружает все новости с нескольких популярных сайтов Forex. Вы можете выбрать любую новость и заранее задать стратегию торговли. News Trader Pro начнет торговать в соответствии с выбранной стратегией автоматически, как только выйдет новость. Выход новости дает возможность заработать, поскольку изменения в цене в этот момент могут быть значительными. С появлением данного инструмента торговать по новостям стало про
                                    It contains four major utilities:  ZeroRisk   Trade Pad  to open and manage trades,  ZeroRisk Manual Trader , a ssistant for manual traders to control the trading plan and prop firm rules, ZeroRisk Algo Trader , assistant for algo traders to control and monitor EAs and ZeroRisk Telegram Signal Provider  to send manual or EA signal to telegram. This assistant supports news filter from top 3 trusted news website ( Investing.com, Daily FX ,  Forex Factory ) and auto GMT offset from  Worldtimeserve
                                    True Points PRO EA
                                    Evgenii Aksenov
                                    5 (1)
                                    Создан для автоматической торговли сигналов индикатора  True Points PRO   Советник имеет активную торговую панель и показывает основные параметры индикатора и советника  True Points PRO EA имеет два типа ордера. Оба ордера открываются по сигналам индикатора   True Points PRO . Отличие в том что первый ордер имеет возможность закрываться по заданному Take Profit уровню или по сигналу индикатора Второй ордер закрывается только по сигналу индикатора. Вы можете установить Trailing  и StopLoss для к
                                    KopirMT4 (CopierMT4) - копировщик сделок для терминала MetaTrader 4, копирует (синхронизирует, дублирует) сделки с любых счетов (copier, copy dealers). Поддержка копирования: MT4 <-> MT4, MT4 -> MT5 Hedge, MT5 Hedge -> MT4 Чат поддержки:  https://www.mql5.com/ru/messages/01c3f341a058d901 Почему именно наш продукт? Копировщик обладает высокой скоростью работы и не зависит от тиков. Скорость копирования - менее 0.5 сек. Сделки копируются с высокой точностью, режим "скальпера" позволяет копиров
                                    MT4 Alert Signal Trader  is an EA that helps you trade MT4 Alert popup. Some indicators can provide signals by showing an alert popup containing signal texts. This EA will read and trade these signal texts. The alert texts should contain at least 2 elements:  (1) a symbol text   (ex: "EURUSD") and  (2) a command type   (ex: "Buy", "Sell", "Close") that trigger EA's trading activities. Some other contents that may have or not are open price, stop loss, take profit values... The EA needs an aweso
                                    -25% discount ($149 -> $111) Everything for chart Technical Analysis indicator mt4 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 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 extender or
                                    The product will copy all  Discord  signal   to MT4   ( 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 MT4. 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
                                    * ОСНОВНЫЕ ХАРАКТЕРИСТИКИ: Отправляйте свои сигналы на МНОГИЕ КАНАЛЫ: каналы Multi-Telegram, электронную почту и отправляйте push-уведомления на мобильный терминал. Сканирование заказов очень быстро: сканирование в считанные секунды, а не в тиках Отправка информации обо всех типах заказов: открытие (включая отложенные ордера), отмена, закрытие (в том числе% частичного закрытия), запуск и изменение ордеров ФИЛЬТР отправления заказов по: типам заказов (ожидающим, сработавшим, измененным, закрыт
                                    The Expert Advisor will help you forward all pop-up alert with screenshot from  MetaTrader 4 to Telegram channel/ group, also forward all notifications to Telegram. Parameters  -  Telegram Bot Token - create bot on Telegram and get token.  -  Telegram Chat ID  - input your Telegram user ID,  group / channel ID  -  Forward Alert - default true, to forward alert.  -  Send message as caption of Screenshot - default false, set true to send message below Screenshot  How to setup and guide  - Telegram
                                    MT4 to Discord
                                    Trinh Dat
                                    4.29 (7)
                                    The Expert Advisor will send notifications via Discord when orders are opened/modified/closed on your MetaTrader 4 account. - Send message and screenshot to Discord group/channel.  - Easy to customize message.  - Support custom message for all languages - Support full Emoji.  - Send report Daily, Weekly, Monthly ( must show all history of orders ) Parameters - Discord url Webhook - create webhook on your Discord channel. - Magic number filter - default all, or input magic number to notify with
                                    Dynamic Fibonacci Grid Dashboard ( DFG-360 ) - многофункциональное торговое приложение, предназначенное для работы в основном на рынке Форекс. Эта программа объединяет несколько модулей и инструментов в одну полную торговую систему. Уникальный интерфейс приложения оптимизирован для активной дневной торговли, скальпинга, торговли на новостях, торговли по краткосрочному тренду, а также торговли против тренда и при помощи сетки. Основные характеристики Расширенный мультитаймфреймовый и мультирыно
                                    Prop Firm Equity Protector safe guard your hard earned prop firm account from balance or equity downdraw. It can be used for live/personal account too. It will close all positions if drawdown hit the preset level or percentage. It can be set to close other EA in the same MT4 terminal too.  This utility is not need to use conjuction with  HFT Prop Firm EA (Green Man),   HFT Prop Firm EA has it build-in equity protector and also it has ultra low drawdown. Setting: Prop Firm Account Size Drawdown
                                    Другие продукты этого автора
                                    Scientific Calculator MT5
                                    Francisco Manuel Vicente Berardo
                                    Scientific Calculator is a script designed to compute expressions of science, engineering and mathematics.   General Description   The expression to calculate must obey syntax rules and precedence order, being constituted by the following elements:   Integer and real numbers.  Mathematical operators for addition (+), subtraction (-), multiplication (*), division (/) and exponentiation (^).  Mathematical and trigonometric functions .  Curved parentheses (()) to define the precedence and contai
                                    FREE
                                    Scientific Calculator MT4
                                    Francisco Manuel Vicente Berardo
                                    Scientific Calculator is a script designed to compute expressions of science, engineering and mathematics.   General Description   The expression to calculate must obey syntax rules and precedence order, being constituted by the following elements:   Integer and real numbers.   Mathematical operators for addition (+), subtraction (-), multiplication (*), division (/) and exponentiation (^).   Mathematical and trigonometric functions .   Curved parentheses (()) to define the precedence and c
                                    FREE
                                    Tick Data Record MT4
                                    Francisco Manuel Vicente Berardo
                                    Tick Data Record is a multi-symbol multi-timeframe Expert Advisor that records tick data for later graphical representation and analysis.  General Description   Tick Data Record offers a(n) alternative/complement to the online/offline price charts displayed through the MT4/MT5 platform. The Expert Advisor   permits   to write and save the current/history values of Time, Bid, Ask, Spread, Last and Volume to a text file (“.txt”). The idea is to copy/open the obtained register to/in a spreadshee
                                    Environment State Info Print MT4
                                    Francisco Manuel Vicente Berardo
                                    Environment State Info Print is a script to display the constants that describe the current runtime environment of a MQL4  program.   General Description   The constants are divided into four groups in the Environment State section of the MQL4  documentation and each group is divided into enumerations/subgroups (with designations “ Market Info”, “Integer”, “Double” or “String”). The script displays constants in two ways: a single constant or all group constants. The constants are obtained by
                                    Double Trailing Stop MT4
                                    Francisco Manuel Vicente Berardo
                                    Double Trailing Stop is a multi-symbol multi-timeframe Expert Advisor that allows the Stop Loss and Take Profit trailing of positions. The EA offers multi-option through input parameters to configure the positions' stop orders.  General Description   The Expert Advisor’s main purpose is to secure profit and minimize losses with the opened positions. Double Trailing Stop places stop orders (Stop Loss or Take Profit) at the Trailing Stop distance from the market price when the symbol's quote re
                                    Position Selective Close MT4
                                    Francisco Manuel Vicente Berardo
                                    Position Selective Close is a multi-symbol multi-timeframe script used to close simultaneously various positions. The script offers multi-option through input parameters to define the positions to close.  General Description   Position Selective Close   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   four position features (symbol, magic number,   type   and profit) are used. The modes, available through the Selection Mode input parameter, relat
                                    Order Selective Delete MT4
                                    Francisco Manuel Vicente Berardo
                                    Order Selective Delete is a multi-symbol multi-timeframe   script used to   delete   simultaneously various pending orders. The script offers multi-option   through input parameters to define the pending orders to   delete.  General Description   Order Selective Delete   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   three pending order features (symbol, magic   number   and type) are used. The modes, available through the Selection Mode input
                                    Multiple Position Opening MT4
                                    Francisco Manuel Vicente Berardo
                                    Multiple Position Opening   is a multi-symbol multi- timeframe   script used to open simultaneously various positions . The   script   offers multi- option   through   input parameters   to   configure the positions.   Risk Management   The volume used to open each of the positions is chosen between a fixed and a variable lot size, available through the Volume and Free Margin % input parameters, respectively. If there   isn't   enough money in the account for the chosen volume, this is reduce
                                    Pending Order Grid MT4
                                    Francisco Manuel Vicente Berardo
                                    Pending Order Grid is a multi-symbol multi- timeframe   script that enables multi-strategy implementation based on pending order grids. The script offers multi- option   through input parameters to configure the pending orders.   General Description   Pending Order Grid allows the execution of a user-defined strategy through the creation of one or more grids of pending orders. The script places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant price
                                    Tick Data Record MT5
                                    Francisco Manuel Vicente Berardo
                                    Tick Data Record is a multi-symbol multi- timeframe Expert Advisor that records tick data for later graphical representation and analysis .   General Description  Tick Data Record offers a(n) alternative/complement to the online/offline price charts displayed through the MT4/MT5 platform. The Expert Advisor permits to write and save the current/history values of Time, Bid, Ask, Spread, Last and Volume to a text file (“.txt”). The idea is to copy/open the obtained register to/in a spreadsheet, r
                                    Environment State Info Print MT5
                                    Francisco Manuel Vicente Berardo
                                    Environment State Info Print is a script to display the constants that describe the current runtime environment of a MQL5 program.   General Description   The constants are divided into four groups in the   Environment State section of the MQL5 documentation and each group is divided into enumerations/subgroups (with designations  “Integer”, “Double” or “String”). The script displays constants in two ways: a single constant or all group constants. The constants are obtained by selecting the p
                                    Double Trailing Stop MT5
                                    Francisco Manuel Vicente Berardo
                                    Double Trailing Stop is a multi-symbol multi-timeframe Expert Advisor that allows the Stop Loss and Take Profit trailing of positions. The EA offers multi-option through input parameters to configure the positions' stop orders.  General Description   The Expert Advisor’s main purpose is to secure profit and minimize losses with the opened positions. Double Trailing Stop places stop orders (Stop Loss or Take Profit) at the Trailing Stop distance from the market price when the symbol's quote re
                                    Position Selective Close MT5
                                    Francisco Manuel Vicente Berardo
                                    Position Selective Close is a multi-symbol multi-timeframe script used to close simultaneously various positions. The script offers multi-option through input parameters to define the positions to close.  General Description   Position Selective Close   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   four position features (symbol, magic number,   type   and profit) are used. The modes, available through the Selection Mode input parameter, relat
                                    Order Selective Delete MT5
                                    Francisco Manuel Vicente Berardo
                                    Order Selective Delete is a multi-symbol multi-timeframe   script used to   delete   simultaneously various pending orders. The script offers multi-option   through input parameters to define the pending orders to   delete.  General Description   Order Selective Delete   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   three pending order features (symbol, magic   number   and type) are used. The modes, available through the Selection Mode input
                                    Multiple Position Opening MT5
                                    Francisco Manuel Vicente Berardo
                                    Multiple Position Opening   is a multi-symbol multi- timeframe   script used to open simultaneously various positions . The   script   offers multi- option   through   input parameters   to   configure the positions.   Risk Management   The volume used to open each of the positions is chosen between a fixed and a variable lot size, available through the Volume and Free Margin % input parameters, respectively. If there   isn't   enough money in the account for the chosen volume, this is reduce
                                    Pending Order Grid MT5
                                    Francisco Manuel Vicente Berardo
                                    Pending Order Grid is a multi-symbol multi- timeframe script that enables multi-strategy implementation based on pending order grids. The script offers multi- option through input parameters to configure the pending orders.   General Description   Pending Order Grid allows the execution of a user-defined strategy through the creation of one or more grids of pending orders. The script places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant price lev
                                    Pending Order Grid EA MT5
                                    Francisco Manuel Vicente Berardo
                                    Pending Order Grid is a multi-symbol multi-timeframe Expert Advisor that enables multi-strategy implementation based on pending order grids. The EA offers multi-option through input parameters to configure the pending orders.  General Description   Pending Order Grid allows the performing of a user-defined strategy through the creation of one or more grids of pending orders. The Expert Advisor places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant
                                    Фильтр:
                                    Нет отзывов
                                    Ответ на отзыв
                                    Версия 1.1 2024.06.02
                                    Minor change, not requiring an update:

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