• Aperçu
  • Avis
  • Commentaires
  • Nouveautés

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.


                                    Produits recommandés
                                    Always a plus
                                    Aleksandr Nadein
                                    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.
                                    The Expert Advisor cannot be tested in the MT4 Strategy Tester! Only on MT5, so put it on a demo account and test it in real time or download the same version for MT5. The Expert Advisor trades on instruments with a high correlation. At the same time, it insures (hedges) each transaction is made at the expense of another instrument. The principle of insurance is that we buy one instrument, and sell the opposite one. Since pairs with a positive correlation always follow in the same direction, t
                                    Fxdolarix
                                    Andrey Kozak
                                    Fxdolarix est un robot scalper automatique pour GBPUSD M5. A été testé sur un compte réel pendant 3 mois. Le robot utilise une stratégie de scalping axée sur les mouvements de prix intrajournaliers à court terme. L'accent principal est mis sur l'identification des moments de volatilité à court terme et l'exécution de transactions rapides. Le robot utilise des indicateurs tels que : iMACD, iMA, iStochastic. À l'aide de ces indicateurs, le robot identifie la direction de la tendance et, avec l'ai
                                    Risk Manager for MT4
                                    Sergey Batudayev
                                    4.56 (9)
                                    Expert Advisor Risk Manager pour MT4 est un programme très important et, à mon avis, nécessaire pour chaque commerçant. Avec cet Expert Advisor, vous pourrez contrôler le risque de votre compte de trading. Le contrôle des risques et des bénéfices peut être effectué à la fois en termes monétaires et en termes de pourcentage. Pour que l'Expert Advisor fonctionne, attachez-le simplement au tableau des paires de devises et définissez les valeurs de risque acceptables dans la devise du dépôt ou
                                    XMaya Scalp ZR Series
                                    Samsul Anwar
                                    2.6 (5)
                                    XMaya Scalp ZR Series is a fully automated Expert Advisor designed for Traders. XMaya Scalp ZR Series is a robot trader with multi-currency scalper Expert Advisor. This robot trades on any Time Frame, Can be use on all pairs but not for use on XAU/GOLD . The system is ready-to-use with the setup is simple, with simple optimization on Take Profit, Stop Loss, and Trailing. User-Defined Variables OrderCmt - used for comments Magic - Magic Number to identify the order's mode for the EA. TargetProf
                                    Risk Manager m4
                                    Maryna Shulzhenko
                                    Risk Manager   at a Glance: A Revolutionary Robot with a Unique Trading System Risk Manager is a revolutionary robot. With its unique trading system using sentiment analysis and machine learning, Risk Manager is a game changer when it comes to executing trades. You can work on any hourly period, any currency pair and on the server of any broker. Risk Manager is a trading robot that uses its own algorithm to make trading decisions. Different approaches to analyzing input information are used,
                                    CAP Ichimoku EA Pro
                                    MEETALGO LLC
                                    3 (4)
                                    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 utility manages already opened trades on any symbol by moving them to a breakeven when the price reaches a certain level. Besides, if the price goes further in favorable direction, the utility moves Stop Loss and Take Profit accordingly. The utility is most convenient for use on medium and long terms, as well as when trading on news. The parameters set by default are optimal, but it is better to select them individually for each trading symbol according to personal experien
                                    TropangFX v1
                                    Jordanilo Sarili
                                    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 ...
                                    Stability Pro MT4
                                    Profalgo Limited
                                    PROMO DE LANCEMENT : SEULEMENT 34 9 $ au lieu de 990$ ! Il ne reste que quelques exemplaires à ce prix promo ! N'oubliez pas de consulter notre "   Pack combo Ultimate EA   " sur notre   blog promotionnel   !   JOIN PUBLIC GROUP:   Click here Résultats en direct à faible risque Résultats en direct à haut risque Bienvenue chez STABILITY PRO  : l'un des systèmes de réseau les plus avancés, stables et à faible risque du marché ! Cette EA a été soumise à des tests de résistance sur l'historiq
                                    Minner Pro EA
                                    Lai Thi Tuyet Mai
                                    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
                                    Denis Kudryashov
                                    Fx Ilan Pluss Советник Fx Ilan Pluss -это аналог советника, с добавлением множества дополнительных логик и возможностей для торговли, с оставленными настройками советника . Советник торгует по системе Мартингейл с увеличением последующих лотов в серии ордеров, с целью их усреднения. Первый ордер робот выставляет по сигналам встроенного индикатора. Так же советник имеет возможность прекращать торговлю в зависимости от новостей. FX Ilan Plus можно использовать либо на одном графике, либо на двух г
                                    Impuls Pro MT4
                                    Sergey Batudayev
                                    5 (3)
                                    La stratégie de l'EA est basée sur le Swing trading , avec des entrées après des impulsions brutales calculées par l'indicateur iPump. Comme mentionné précédemment, l'EA a la capacité d'ouvrir des transactions manuelles avec un support automatique. - pour une tendance baissière ↓ on entre dans un trade après une hausse corrective du prix, l'actif tombe dans la zone de surachat, on vend le long de la tendance. - pour une tendance haussière ↑, on entre dans un trade après une baisse corrective du
                                    ATR Robot PRO
                                    Vladimir Gribachev
                                    3 (2)
                                    This is an expanded version of ATR Robot . The EA is based on a multifunctional template and is designed for intraday trading with all major currency pairs on any timeframe. The strategy is based on analysis of price action within the daily volatility range for a given period. The EA has a vast set of features - it can be configured for any trading style, which makes it not just a trading robot, but a multifunctional flexible designer. The EA applies order placement levels, stop loss, take profi
                                    Lucky Bro
                                    Andrey Kozak
                                    Scalpeur robot. Paramètres par défaut pour GBPUSD, période M5. Le robot ouvre de 10 à 50 transactions commerciales chaque jour. TakeProfit est défini physiquement et StopLoss est indiqué en % du dépôt. Le robot accompagne également les transactions à l'aide d'un Trailing Stop. Le ratio de transactions clôturées par Take Profit et Stop Loss est d'environ 90/10. Le robot fonctionne également bien lors de divers événements d'actualité, et lorsque des nouvelles importantes apparaissent, si le prix
                                    News Trapper EA
                                    Noha Mohamed Fathy Younes Badr
                                    5 (7)
                                    News trapper EA un expert unique fait pour le trading de news Il a été développé en utilisant des années d'expérience dans le trading en direct {entièrement automatique}  très important Le programme contient des paramètres flexibles pour le trading sur les nouvelles du calendrier économique. Il ne peut pas être vérifié dans le testeur de stratégie. Uniquement du vrai travail. Dans les paramètres du terminal, vous devez ajouter le site d'actualités à la liste des URL autorisées. Cliquez sur Ou
                                    Binary Options Copier Remote is an EA that allows to copy binary options trades between MT4 accounts at different computers. This is an ideal solution for signal provider, who want to share his trade with the others globally on his own rules. Provider can give free bonus license to 10 receivers. That means those 10 receivers can copy from provider by using Binary Options Receiver Free (no cost). From 11th one, receiver have to buy Binary Options Receiver Pro (paid version) in order to copy from
                                    Black Spider
                                    Vladimir Gribachev
                                    This non-indicator grid advisor. The first deal open when the volatility exceeds the ATR value. If the bear candle and TrendDirection = 1 - buy, if TrendDirection = 2 - sell. The EA works by a new bar open prices, so that test/optimization results are as close to real trading as possible. The EA applies dynamic order placement levels, stop loss, take profit and trailing stop levels invisible for brokers. Their values can be calculated in pips, money, as a % of the balance or volatility (ATR).  
                                    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
                                    VVX Xerath XT MT4
                                    Artem Minchuk
                                    2.8 (5)
                                    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
                                    Version MT4 : https://www.mql5.com/en/market/product/104716 Version MT5 : https://www.mql5.com/en/market/product/104718 Présentation de l'Expert Advisor « Technical Master », un outil puissant conçu pour optimiser les décisions de trading grâce à l'intégration d'analyses techniques sophistiquées et de stratégies de gestion des risques robustes. Ce conseiller expert exploite l'un des indicateurs intégrés de MetaTrader, associé à des paramètres de risque personnalisables, pour améliorer les p
                                    Silver Plus EA
                                    Sergey Belov
                                    5 (1)
                                    Fully automatic expert adviser developed for the forex market. - The number of characters in quotes is determined automatically. - Works with standard accounts and ECN accounts. - The timeframe of the chart does not matter. This parameter is defined in the settings. - You can use a dynamic lot or a fixed lot. - The spread filter does not allow the Expert Advisor to open orders at a large value. - Expert advisor always set TakeProfit on all of its open orders. - Drawdown control allows you to spe
                                    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
                                    The strategy is based on my template and is based on the AO and AC indicators. It buys at two green AO and AC, sells at two red AO and AC. The EA has been adapted for four- and five-digit quotes. VPS server is recommended. Before installing on a real trading account, it is recommended to test the parameters on 99.90% quotes at least for the last year. If you need any help, send me a private message. Advantages of the EA template It is possible to combine different capabilities of the template to
                                    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
                                    Expert Advisor based on the ADX indicator. For PRO. ECN accounts,but also suitable for ECN.There is a martingale. The EA opens trades with WPR and ATR filters. ind_name="=======ADX======="; Sdelok =4; / / number of transactions Magic =2021; / / Magic Lots =0.1 / / Lot MaximumRisk =5 //The Risk DeltaCur =1000; / / Take Profit StopLoss =0; //Stop loss period = 26; //ADX period lineUpUp = 30; / /upper border of the corridor lineUp = 25; / / lower border of the corrido
                                    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
                                    Les acheteurs de ce produit ont également acheté
                                    Trade Assistant MT4
                                    Evgeniy Kravchenko
                                    4.45 (183)
                                    It helps to calculate the risk per trade, the easy installation of a new order, order management with partial closing functions, trailing stop of 7 types and other useful functions. Attention, the application does not work in the strategy tester. Manual, Description, Download demo Line function -   shows on the chart the Opening line, Stop Loss, Take Profit. With this function it is easy to set a new order and see its additional characteristics before opening.   Risk management  - The risk
                                    Do you think that in markets where the price can change in a split second, placing orders should be as simple as possible? In Metatrader, each time you want to open an order, you have to open a window where you enter the opening price, stop loss and take profit, as well as the trade size. In trading the financial markets, capital management is essential to maintain your initial deposit and multiply it. So, when you want to place an order, you probably wonder how big a trade you should open? Wha
                                    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 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 not b
                                    Telegram To MT4 Receiver
                                    DaneTrades Ltd
                                    4.33 (3)
                                    Copiez les signaux de n'importe quel canal dont vous êtes membre (y compris privé et restreint) directement sur votre MT4.  Cet outil a été conçu en pensant à l'utilisateur tout en offrant de nombreuses fonctionnalités dont vous avez besoin pour gérer et surveiller les transactions. Ce produit est présenté dans une interface graphique conviviale et visuellement attrayante. Personnalisez vos paramètres et commencez à utiliser le produit en quelques minutes ! Guide de l'utilisateur + Démo  | Ve
                                    TradePanel MT4
                                    Alfiya Fazylova
                                    4.91 (88)
                                    Trade Panel est un assistant commercial multifonctionnel. L'application contient plus de 50 fonctions de trading manuel et vous permet d'automatiser la plupart des actions de trading. Avant d'acheter, vous pouvez tester la version Démo sur un compte démo. Démo ici . Instructions complètes ici . Commerce . Vous permet d'effectuer des opérations de trading de base en un clic : Ouvrir les ordres et positions en attente. Clôturez les ordres et les positions en attente. Inversion de positions (fermer
                                    TakePropips TradePad Pro
                                    Eric John Pajarillaga Aldana
                                    5 (4)
                                    TakePropips TradePad Pro comprend un puissant gestionnaire de transactions, un indicateur de force monétaire, des outils de reporting de compte, des outils de gestion des risques, et bien plus encore ! C'est l'un des gestionnaires de trading forex et des assistants commerciaux les plus avancés que vous n'aurez jamais rencontrés! C'est la solution parfaite pour les commerçants qui veulent un moyen plus efficace de gérer les transactions commerciales. Vous pouvez télécharger le manuel d'utilisatio
                                    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)
                                    Outil multifonctionnel : plus de 65 fonctions, dont : calcul de lot, price action, facteur R/R, gestionnaire des trades, zones d'offre et de demande Version de démonstration   |   Manuel de l'Utilisateur   |    MT5 L'utilitaire ne fonctionne pas dans le testeur de stratégie : vous pouvez télécharger la   version de démonstration ICI   pour tester le produit. Contactez-moi pour toutes questions / idées d'amélioration / en cas de bug trouvé Simplifiez, accélérez et automatisez votre processus d
                                    -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 for FTMO 40
                                    Vyacheslav Izvarin
                                    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 - This sort of trading helper instrument will help you average out your previously unprofitable positions using two techniques: standard averaging hedging with the subsequent opening of positions according to the trend The utility has the ability to sort out several open positions in different directions at once, both for buy and for sell. For example, you opened 1 position for a sell and the second for a buy, and they are both unprofit, or one is in the unprofit and one is in
                                    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 is a unique robot that allows you to trade the news by your predefined strategy. It loads every piece of news from several popular Forex websites. You can choose any news and preset the strategy to trade it, and then News Trader Pro will trade that news by selected strategy automatically when the news comes. News release gives opportunity to have pips since the price usually has big move at that time. Now, with this tool, trading news becomes easier, more flexible and more exciti
                                    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)
                                    The EA created to trading of   True Point PRO  indicator signals automatically:  True Points EA has an active trading panel and shows the main parameters of the indicator and the Expert Advisor. True Points PRO EA has two types of orders. Both orders are opened on the signals of the True Points PRO indicator. The difference is that the first order can be closed at the specified Take Profit level or at the indicator signal. The second order is closed only on the signal of the indicator. You can
                                    KopirMT4 Copy trades for MT4
                                    Alexandr Gavrilin
                                    4.52 (71)
                                    The adviser has been withdrawn from sale /    Советник снят с продажи  KopirMT4 (CopierMT4) - transaction copier for the MetaTrader 4 terminal, copies (synchronizes, duplicates) transactions from any accounts (copier, copy dealers).  Supports copying: MT4 <-> MT4, MT4 -> MT5 Hedge, MT5 Hedge -> MT4 Support:  https://www.mql5.com/ru/messages/01c3f341a058d901 Why exactly our product? The copier has a high speed and is not dependent on ticks. Copy speed - less than 0.5 sec. Transactions are c
                                    MT4 Alert Signal Trader
                                    Nguyen Van Anh
                                    3.8 (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
                                    EA send order’s information in MT4 to Telegram channels MT4 Telegram Signal Provider EA is The Best MT4 to Telegram Utility on the Market  for anyone who wants to become a Professional Telegram Signal Provider SIMPLE, but  POWERFUL  and PROFESSIONAL It will send the  Signals and Reports  to your Telegram channels , base on your orders in Metatrader 4 program Want to send your signals to many platforms like Facebook, Twitter, Blogger, Wordpress...? No problem , let use  IFTTT to connect your Tel
                                    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
                                    The Dynamic Fibonacci Grid Dashboard ( DFG-360 ) is a multi functional trading app designed for work primarily in the Forex market. The app combines several modules and tools into one complete trading system. The unique interface of the app is optimized for active day trading, scalping, news trading, short term trend following as well as counter trend and grid trading. Main features Advanced Multi Time Frame and Multi Market analysis. Quick and efficient position management. Semi-Automated tra
                                    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
                                    Plus de l'auteur
                                    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
                                    Filtrer:
                                    Aucun avis
                                    Répondre à l'avis
                                    Version 1.1 2024.06.02
                                    Minor change, not requiring an update:

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