• Übersicht
  • Bewertungen (1)
  • Diskussion (3)
  • Neue Funktionen

Pending Order Grid EA MT5

The Pending Order Grid is a multi-symbol multi-timeframe Expert Advisor that enables multi-strategy implementation based on pending order grids. 

General Description 

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

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

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

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

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

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

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

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

    Risk Management 

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

    Input Parameters 

    PENDING ORDER GRID 

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

        PENDING ORDER PLACING 

        • Magic Number: Expert Advisor’s identifier. 
        • Type: Pending order type used to form the grid. 
        • Volume: Lot size per deal (lots). 
        • Free Margin %: Percentage of account free margin used to calculate the lot size of the current deal (%). 
        • Stop Loss: Distance from the pending order's target price for placing a Stop Loss (pips). 
        • Take Profit: Distance from the pending order's target price for placing a Take Profit (pips). 
        • Deviation: Maximum allowed slippage from the requested price (pips). 
        • Fill Policy: Volume execution policy. 
        • Expiration Type: Order validity mode. 
        • Expiration Time: Order validity period (used only with the ORDER_TIME_SPECIFIED validity mode). 
        • Comment: Text message displayed in the chart window after a(n) (re)initialization of the EA, in the Objects list after creating a horizontal/vertical line (at each of the grid’s limits) or placing a pending order, and in the Trade or History tabs of the Toolbox window after placing a pending order (it only allows 31 characters). 

          POSITION MODIFYING 

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

              OPTIMIZATION CRITERION 

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

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

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

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

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

                    Optimization Criterion 

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

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

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

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

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

                      Abs, Arccos, Arcsin, Arctan, Arctan2, Ceil, Cos, Exp, Floor, Log, Log10, Max, Min, Mod, Pow, Rand, Round, Sin, Sqrt, Tan, Expm1, Log1p, Arccosh, Arcsinh, Arctanh, Cosh, Sinh, Tanh. 

                      Note: “MathRand()” is only executed with “GetTickCount()” as the argument of “MathSrand()”, it’s used without anything inside parentheses – simply writing “Rand()”. 

                      Additionally, the expression has the following properties: 

                      • The scientific, engineering and E notations are allowed. 
                      • The multiplication needs to be explicitly indicated (through the respective symbol). 
                      • The system is case-insensitive. 
                      • The space ( ) is allowed and doesn’t affect the expression’s calculation. 
                      • The input expression is limited to 233 characters. 

                        Examples of a number representation using various notations: “0.0000325” (decimal), “3.25*10^-5” (scientific), “32.5*10^-6” (engineering) and “32.5E-6” (E). 

                        IMPORTANT! The EA doesn’t verify if the input expression fulfils all the requirements, namely if it obeys syntax/standard rules, hence, any infringement of these leads to an unreliable result. 

                        Displayed Information 

                        The Expert Advisor possesses a vast number of messages to inform the user about errors and conditions changes that might occur during its operation. The messages are shown through the Alert function (by a pop-up window), its content includes: 

                        1. The warning that an input parameter has been incorrectly set. 
                        2. The info that the account doesn't have enough money for the chosen volume (see the Risk Management section above). 
                        3. The info that the number of permitted orders by the broker has been reached. 
                        4. The previous and current value of the symbol’s Stop Level when this is updated. 
                        5. The Trade Server Return Codes description. 
                        6. The symbol’s quotes (immediately) before the trade request’s formation, followed by the symbol’s quotes (immediately) after the trade server’s decision. 
                        7. The Runtime Errors description. 
                        8. The standard function in the include file where the runtime error was detected (only relevant to the programmer). 
                        9. The Uninitialization Reason Codes description. 

                                    Note: Some elements of the list are displayed simultaneously (in the same text line): 5, 6 and 7; 7 and 8. 

                                    During the EA’s operation, the messages displayed are grouped by kind of occurrence (related to each list’s element, except the 1, 6 and 8) and counted. Immediately before the EA’s unloading, a final message containing those groups with the respective counts (if these were > 0) is presented. 

                                    Following the EA's (re)initialization, two reference lines are displayed in the chart at the grid’s limits (start and stop). Each line is horizontal/vertical when the grid’s limit is the price/time, respectively. Both lines are blue/red when the grid’s pending order type is Buy/Sell, respectively. Tip: Place the mouse pointer over one of those lines to see its object name ("Buy/Sell Limit/Stop – Start/Stop Price/Time"). Note: The properties of a graphical object can be edited in the Objects list. 

                                    After the EA’s testing/optimization, the result of the mathematical expression, inserted in the Math Expression input parameter, is presented in the Journal / Optimization Results tabs of the Strategy Tester window, respectively. After the EA’s testing, the values of the available statistic parameters are also presented in the Journal tab. 

                                    Observations 

                                    In some cases, the quoting session might start before or end later than the corresponding trading session (with a five-minute difference, for instance). During the time interval when the quoting session is open, but the trading session is still/already closed, the Expert Advisor initiates/continues to process the available ticks, respectively. If the present conditions satisfy the EA's trading criteria, a trade request is formed and sent to the server. However, it won’t succeed, and an error message is displayed: “Trade request sending failed; Market is closed. 

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

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

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

                                    The Start Price, Start Time, Stop Price, Stop Time or Type input parameters have a special status in the program. Every time one is changed, two things happen: the EA ends up the current grid and verifies the conditions to create a new one. Then, if all start/stop values pass this checking, the EA begins a new grid. But, if at least one fails, the EA doesn’t go forward with the new grid and terminates its operation. 

                                    A Buy/Sell position is opened at the Ask/Bid price and closed at the Bid/Ask price. Since the position’s stop orders (Stop Loss and Take Profit) are triggered at this last price, in a pending order, they are calculated from the order's target price -/+ the current spread (Ask - Bid), respectively. 

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

                                    Conclusion 

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


                                    Empfohlene Produkte
                                    FX28 Trader MT5
                                    Tsvetan Tsvetanov
                                    3 (1)
                                    Vorstellung des FX28 Trader Dashboards – Ihr ultimativer Handelsmanager Entdecken Sie das volle Potenzial Ihrer Handelserfahrung mit dem FX28 Trader Dashboard, einem umfassenden und intuitiven Handelsmanager, der entwickelt wurde, um Ihren Forex-Handel auf ein neues Niveau zu heben. Ob Sie ein erfahrener Trader sind oder gerade erst Ihre finanzielle Reise beginnen – dieses leistungsstarke Tool ist darauf ausgerichtet, Ihre Handelsaktivitäten zu optimieren und Ihren Entscheidungsprozess zu verbe
                                    Binance Grid Pro offers an alternative to the built in Grid systems Binance Platform offers. This utility let you define a grid parameters for interact with your Binance account using an Isolated Margin account. This is, similar to Spot Grid in Binance. This is not for handle with derivatives contracts, is for handle with Spot through Isolated Margin Account. But obviosly this utility offers a different approach than built in Binance Grid to handle the Grid, which I have found useful based o
                                    The Realtime Statistics MT5  is an innovative tool designed for traders who want to keep track of their trading performance in real-time. This MetaTrader 5 Expert Advisor (EA) is packed with customizable features that allow you to monitor crucial trading statistics directly on your chart, ensuring you always have the insights you need to make informed trading decisions. Check out the Realtime Statistics MT5 User Guide Here Try out the  FREE  Realtime Statistics MT5 Demo  Here Key Features: Compr
                                    Overview : The Advanced News Trading Panel is a versatile tool designed for traders who rely on news-based trading strategies. This Expert Advisor (EA) provides an intuitive graphical interface that allows users to quickly set up pending orders and manage risk with ease. With the ability to automatically place Buy/Sell Stop orders based on your pre-set stop order distance from the bid/ask price, stop-loss and take-profit levels, the EA allows for precision trading during high-volatility news ev
                                    Tiger Lite
                                    Dang Cong Duong
                                    Tiger Lite recreate the history of entry and exit orders. The goal is that you can grasp their strategy how to play. CSV format support for WEB, MT4 and MT5 platforms. The sequence of steps is described in the photo. Note: Please choose the existing date and symbol on the CSV file. For MT4/5, export historical data and copy the records to excel, save it with the extension CSV. For MT4/MT5/WEB, save the name with format mt4.csv/mt5.csv/web.csv If you get the history from another source and you
                                    FREE
                                    Pending Order Grid MT5
                                    Francisco Manuel Vicente Berardo
                                    The Pending Order Grid is a multi-symbol multi-timeframe script that enables multi-strategy implementation based on pending order grids.  General Description   The Pending Order Grid allows the performing of a user-defined strategy through the creation of pending order grids. The script places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant price levels to form each grid. The beginning and finish of every grid are defined by the Start Price and St
                                    Cleopatra EA MT5
                                    Nestor Alejandro Chiariello
                                    Hallo Trader! Ich präsentiere euch die „Cleopatra“ Cleopatra hat ein schönes und intelligentes Design mit einer Erholungsform, die sich ständig anpasst, wobei ihre Stärke in der Vielseitigkeit liegt. Seine Hauptstrategie besteht darin, den Markt in seiner Elastizität zu lesen, wir können den Einstiegsbereich auf verschiedene Weise analysieren. Dies kann bei verschiedenen TF und verschiedenen Bereichen sehr dynamisch sein, mit der Bearbeitung von Abfragen zu Marktnachrichten. Cleopatra hat ein
                                    Binance ist eine weltbekannte Kryptowährungsbörse! Um MT5-Benutzern den direkten Handel mit Binance-Futures zu erleichtern, bietet das Programm die folgenden Handelsfunktionen: 1. Imitieren Sie den Handelsstil von Binance Futures und stellen Sie ein benutzerfreundliches Bedienfeld bereit; 2. Geben Sie die API und das Geheimnis selbst ein (Sie müssen die Erlaubnis für den Futures-Handel in der Binance-API öffnen), um Hebelwirkung, Guthaben und andere Informationen zu erhalten; 3. Unterstüt
                                    Auto News Trading  is both a trading assistant and an automatic trading bot that can trade automatically on the news. It is very easy to use and just run on the chart. In Forex trading, news is one of the important factors that move the market.   In strategy tester mode, you will be able to see only the panel, because it is impossible to call the news. You can download free   demo version   here. Note:   these demo files expire on 2023-11-15. If the demo version has expired, please send me a
                                    AO Trade
                                    Ka Lok Louis Wong
                                    Das AO Trade-System ist speziell auf den Trendhandel zugeschnitten und nutzt Auktions- oder Nachrichtenzeiten als Referenzpunkte, um sie mit anderen spezifischen Bestellzeiten zu vergleichen und Markttrends vorherzusagen. **Alle Zeitparameter, die im EA verwendet werden, basieren auf Ihrer Terminalzeit. Unterschiedliche Broker können in verschiedenen GMT-Zeitzonen arbeiten, was sich aufgrund von Anpassungen an die Sommerzeit weiter unterscheiden kann.** **Bitte stellen Sie sicher, dass die Ze
                                    Magic EA MT5
                                    Kyra Nickaline Watson-gordon
                                    Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA
                                    Drawdown Manager by Ofx
                                    Osama Essameldin Ibrahim Abdelaal
                                    In the ebb and flow of financial markets, the Drawdown Manager (by Ofx) stands out as an essential companion for traders utilizing grid and martingale strategies. This innovative tool is engineered to provide an analytical approach to managing trading drawdowns. By selectively utilizing floating and realized profits, the DDM tactically help traders control their drawdown exposure during market downturns. Its customizable settings empower traders with the flexibility to adjust operations accordi
                                    Santa Scalping MT5
                                    Morten Kruse
                                    3.33 (3)
                                    Santa Scalping is a fully automated Expert Advisor with no use of martingale. Night scalping strategy. The SMA indicator filter are used for entries. This EA can be run from very small accounts. As small as 50 EUR. General Recommendations The minimum deposit is 50 USD,  default settings reccomend for eurusd m5 gmt +2 . Please use max spread 10 if you will not have orders change it to -1. Use a broker with good execution and with a spread of 2-5 points. A very fast VPS is required, preferably w
                                    This EA is for only Deriv Synthetic indices.  Forex MT4 Version here:   https://www.mql5.com/en/market/product/89114 Forex MT5 version here:  https://www.mql5.com/en/market/product/89113 Hello traders, I believe you all know that risk and money management along with psychology are the keys to success in trading. No matter how strong one’s strategy is, without these 3 criteria they will always face losses in the long run. I have created an EA to control our human behaviors. This EA will force
                                    RSI Grid MT5
                                    Joseph Anthony Aya-ay Yutig
                                    HOL DIR ANDERE EAs KOSTENLOS!!! HOL DIR ANDERE EAs KOSTENLOS!!! HOL DIR ANDERE EAs KOSTENLOS!!! HOL DIR ANDERE EAs KOSTENLOS!!! HOL DIR ANDERE EAs KOSTENLOS!!! RSI Grid basiert auf den überkauften und überverkauften Bedingungen des RSI und öffnet ein Grid, wenn der Trade auf der Verliererseite des Marktes steht. Der RSI liefert technischen Händlern Signale über bullisches und rückläufiges Preismomentum und wird oft unter dem Diagramm des Preises eines Vermögenswerts dargestellt. Ein Vermögens
                                    /   ********** **********   ********** **********   ********** **********   ********** **********   ********** **********   / Big Sales for Easter! Price is reduced > 50 % already! Grasp the chance and Enjoy it!  /   ********** **********   ********** **********   ********** **********   ********** **********   ********** **********   / This is a powerful EA that support single order strategy, martingale strategy, multiple timeframes strategy, etc with lots of useful indicators and self define
                                    Forget coding! You no longer need EAs! Any indicators (and not only) can now trade themselves anything anywhere! GRat_IndiTrade is a strategy builder for automatic trading by the signals of  ANY available indicators without limits (both standard and custom), as well as on ANY of their combinations, by candlestick patterns, without the need to write, generate or compile any code . You no longer need to be or hire a programmer to test and automate ALL your trading ideas. Just place the indicato
                                    Metatrader5 Trailing Stop Loss Program Platform Compatibility : This program is designed for the MetaTrader 5 platform. Functionality : The program scans all open Forex currency pair trades on MetaTrader 5 and adjusts their STOP LOSSES to a PROFIT position based on your specified input parameters. Parameters and Example : Example Trade : EURUSD Long (BUY) trade @ 1.0800 STOP LOSS (-50 pips) @ 1.0750 TAKE PROFIT (+50 pips) @ 1.0850 Program Settings : WhenToTrail = 20 PIPS (Pips profit amount to
                                    G Trade Broker Check
                                    Hamidreza Sadkhosravi
                                    G Trade Broker Check – Instantly Evaluate Broker Performance Across Multiple Accounts and Leverage Settings Take your trading to the next level by analyzing your broker’s performance in real time! With G Trade Broker Check , traders can effortlessly track their broker’s behavior over the past 24 hours on any symbol added to the Market Watch in MT5. Whether you’re comparing multiple brokers, testing different account types, or analyzing varying leverage setups, this powerful Expert Advisor pro
                                    FREE
                                    Overview: The TropangFX AutoMgmt is a versatile trading utility designed to enhance your averaging strategy by automatically placing take profit and stop loss orders. This utility empowers traders by integrating a risk calculator and lot-size customization, ensuring that each trade aligns with their risk management preferences and financial goals. Key Features: Automated Take Profit & Stop Loss: Automatically sets take profit and stop loss levels for each trade based on predefined criteria. Ens
                                    The King Advisor MT5
                                    Guillem Boix Martin
                                    4.55 (53)
                                    The King Advisor ist ein hochentwickelter neuronaler Netzwerkalgorithmus.  Seine Strategie basiert auf der Identifizierung von Unterstützungsniveaus, Widerständen und Trendlinien durch ein ausgeklügeltes selbstlernendes System und ein Handelssystem , das mit jahrelanger Erfahrung und Arbeit entwickelt wurde.  Entwickelt von einem Team aus erfahrenen Händlern. BITTE BEACHTEN SIE, dass es eine Begrenzung von 200 Exemplaren geben wird --> Insgesamt verkaufte Exemplare aktualisiert: 195 Wir haben ei
                                    HYT utility
                                    Sergey Batudayev
                                    5 (1)
                                    HYT (Help Your Trading) is a tool designed to help you average down your losing positions using two main techniques: Standard averaging . Hedging with subsequent opening of positions in the direction of the trend . Buy 1 and 1 get FREE This tool allows you to manage multiple positions opened in different directions, both for buying and selling. HYT automatically calculates the size of the next position , order price, direction for averaging, and closing the position with a specified take-profit
                                    EA Monolith
                                    Vasiliy Kolesov
                                    5 (1)
                                    EA Monolith EA monolith   is a fully automatic, multicurrency Expert Advisor designed for trading on the Forex market in the MT5 terminal on accounts with "netting" orders, "no hedge".  The EA has a function for closing all orders when a critical drawdown is reached, the size of which is set in the settings, which provides full protection of the deposit. This version of the Expert Advisor is configured to work on the gold spot tool. If your broker has two decimal places in quotes on the
                                    Bergland Gold MT5
                                    Matthias Bessler
                                    2.33 (3)
                                    This fully automated trading system is part of the Bergland signal. It features a highly efficient trading logic, and a money management system. Reasonable calculated stop loss and take profit levels. It is easy to install and do not require a special setfile. XAUUSD, M15 Special Promo:    If you register with my cashback link, you will get this EA for free. PM me for instructions.
                                    News Trade EA MT5
                                    Konstantin Kulikov
                                    4.5 (10)
                                    Ich stelle einen nützlichen Roboter vor, den ich selbst seit mehreren Jahren benutze. Er kann sowohl im halbautomatischen als auch im vollautomatischen Modus verwendet werden. Das Programm enthält flexible Handelseinstellungen mit den Nachrichten des Wirtschaftskalenders. Es kann im Strategietester nicht überprüft werden. Es ist nur echte Arbeit. In den Terminaleinstellungen müssen Sie die Nachrichtenseite zur Liste der zulässigen URLs hinzufügen. Klicken Sie auf Dienstleistungen > Einstellun
                                    MilliiEa
                                    Ricardo Mccartney
                                    Introducing Milli EA: Your Path to Success in Forex Trading Are you seeking a trading solution that can propel your forex trading to new heights? Look no further than Milli EA, a groundbreaking expert advisor that I've poured months of dedication and hard work into. I take immense pride in this EA and have continually refined and backtested it to ensure it becomes an invaluable asset in achieving your trading goals. Milli EA boasts a fusion of top-tier indicators, including Support and Resistanc
                                    Hamster Scalping mt5
                                    Ramil Minniakhmetov
                                    4.7 (194)
                                    Hamster Scalping ist ein vollautomatischer Handelsberater, der kein Martingal verwendet. Nachtskalping-Strategie. Als Eingänge werden der RSI-Indikator und der ATR-Filter verwendet. Der Berater benötigt eine Sicherungskontoart. Di Überwachung der realen Arbeit sowie meine anderen Entwicklungen finden Sie hier: https://www.mql5.com/en/users/mechanic/seller Allgemeine Empfehlungen Mindesteinzahlung von 100 US-Dollar, ECN-Konten mit minimalem Spread verwenden, Standardeinstellungen für eurusd M5 g
                                    Bollinger Turbo
                                    Aleksandr Zakhvatkin
                                    Советник основан на популярной стратегии и использованием связки из двух индикаторов: Bollinger Bands + RSI. Добавлена функция добавления новых позиций при определенной просадке. Количество добавляемых позиций и размер просадки регулируются. Описание настроек Группа "Настройки торговли" Lot Size Размер лота Drawdown Просадка TakeProfit Тейк профит Count Счетчик доливок (не более 10) New bar control Включение явного контроля открытия нового бара (для тестера) Группа "Настройки Bol
                                    We Can Do IT MT5
                                    Lai Thi Tuyet Mai
                                    We Can Do IT MT5 is a Secure Automated Software for Generation of Daily Profits for Forex Market. The architecture is a Fully Automatic Autonomous Robot Expert capable of independently analyzing the market and making trading decisions. The Trading system is Multi-currency and is able to trade on H1 charts:  EURUSD, GBPUSD, USDJPY, SPX500, DAX30, GOLD NOT  Martingale! NOT GRID, Averaging and other dangerous strategies are NOT used!  This is a full compliance with the FIFO method !  The trading
                                    Mayari MT5
                                    Jose Lagayan
                                    Introducing the MAYARI MT5: The Trend Indicator Expert Advisor *Set Files for EURUSD available on the Comments Section *RESULTS SHOWN HERE ARE NOT OVER OPTIMIZED UNLIKE OTHER BOTS THE IS FOR SALE! ONLY REALISTIC RESULTS! *The default settings of MAYARI MT5 are optimized for EURUSD, based on rigorous back-testing over a 4-year period. For safe and effective operation, it's recommended to use the default settings with an account balance of at least $1,000 USD. Embark on a journey where technology
                                    Käufer dieses Produkts erwarben auch
                                    Trade Assistant MT5
                                    Evgeniy Kravchenko
                                    4.37 (166)
                                    Sie hilft bei der Berechnung des Risikos pro Handel, der einfachen Einrichtung einer neuen Order, der Orderverwaltung mit Teilschließungsfunktionen, Trailing-Stop von 7 Typen und anderen nützlichen Funktionen. Achtung, die Anwendung funktioniert nicht im Strategietester. Sie können die Demoversion auf der Beschreibungsseite herunterladen  Manual, Description, Download demo Linienfunktion Zeigt auf dem Chart die Eröffnungslinie, Stop Loss, Take Profit. Mit dieser Funktion ist es einfach, eine
                                    Forex Trade Manager MT5
                                    InvestSoft
                                    4.97 (446)
                                    Willkommen beim Trade Manager EA – dem ultimativen Risikomanagement-Tool , das den Handel einfacher, präziser und effizienter gestaltet. Dies ist mehr als nur ein Werkzeug zur Orderausführung; es ist eine umfassende Lösung zur Handelsplanung, Positionsverwaltung und Risikokontrolle. Ob Anfänger, erfahrener Trader oder Scalper, der schnelle Ausführungen benötigt – Trade Manager EA passt sich Ihren Anforderungen an und bietet Flexibilität in allen Märkten, von Forex und Indizes bis hin zu Rohstoff
                                    TradePanel MT5
                                    Alfiya Fazylova
                                    4.85 (116)
                                    Trade Panel ist ein multifunktionaler Handelsassistent. Die Anwendung enthält mehr als 50 Funktionen für den manuellen Handel und ermöglicht Ihnen die Automatisierung der meisten Handelsaktionen. Vor dem Kauf können Sie die Demoversion auf einem Demokonto testen. Demo hier . Vollständige Anweisungen hier . Handel. Ermöglicht Ihnen die Durchführung grundlegender Handelsvorgänge mit einem Klick: Ausstehende Aufträge und Positionen öffnen. Offenes Raster von Aufträgen. Schließen ausstehender Aufträ
                                    Telegram To MT5 Receiver
                                    Levi Dane Benjamin
                                    4.86 (7)
                                    Kopieren Sie Signale aus jedem Kanal, dem Sie als Mitglied angehören (einschließlich privater und eingeschränkter), direkt auf Ihren MT5.  Dieses Tool wurde mit dem Benutzer im Hinterkopf entwickelt und bietet viele Funktionen, die Sie benötigen, um die Trades zu verwalten und zu überwachen. Dieses Produkt wird in einer benutzerfreundlichen und optisch ansprechenden grafischen Benutzeroberfläche präsentiert. Passen Sie Ihre Einstellungen an und beginnen Sie innerhalb weniger Minuten mit der Ver
                                    Custom Alerts MT5
                                    Daniel Stein
                                    5 (2)
                                    Custom Alerts ist ein vielseitiges Multi-Market-Monitoring-Tool, das vielversprechende Setups für alle acht Hauptwährungen (USD, CAD, GBP, EUR, CHF, JPY, AUD und NZD) sowie GOLD (XAU), alle 28 Devisen- und GOLD-Paare, die auf diesen Währungen basieren, und bis zu sieben Indizes wie US30, UK100, WTI, Bitcoin usw. identifiziert. Es ist vollständig anpassbar. Das Tool sammelt Daten von unseren Indikatoren FX Power, FX Volume und IX Power und benachrichtigt Sie bei wichtigen Ereignissen.   Bevor
                                    The product will copy all telegram signal to MT5 ( which you are member) , also it can work as remote copier.  Easy to set up, copy order instant, can work with almost signal formats, image signal,  s upport to translate other language to English Work with all type of channel or group, even channel have "Restrict Saving Content", work with  multi channel, multi MT5 Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. Support to backtest signal. How to s
                                    -25% discount ($199 -> $149) Advanced trading tool: One click smart orders that execute under your conditions Developed by trader for trading community:  position size calculator (lot size), open position after price action, strategy builder, set and forget trading, mobile notifications... Risk Management -  Risk percentage position size calculator, gain percentage, target risk reward ratio, spread and commissions are included in calculations 7 Advanced order types  - Set and forget trading w
                                    Trade Assistant 38 in 1
                                    Makarii Gubaydullin
                                    4.89 (18)
                                    Multifunktionswerkzeug: 65+ Funktionen, einschließlich: Lot-Rechner, Price Action, Risiko/Gewinn-Verhältnis, Trade Manager, Angebot und Nachfrage Zonen Demo version   |   Anwenderhandbuch   |    MT4 Das Dienstprogramm funktioniert nicht im Strategietester: Sie können die Demoversion HIER herunterladen, um das Produkt zu testen. Bei Fragen   kontaktieren   Sie mich / Verbesserungsvorschläge / im Fall eines gefundenen Fehlers Vereinfachen, beschleunigen und automatisieren Sie Ihre Handelsprozesse
                                    Mt5-Bot für Binance Future (Experte) Das System läuft auf dem Binance Future-Markt. Sie können es einfach in Ihren eigenen Code integrieren, um Vorgänge zu automatisieren. Manuelles Bedienfeld ist verfügbar. Hedge-Mod-kompatibel. Alle Operationen können manuell vom Bildschirm aus durchgeführt werden. Es ist der effektivste Weg, viele Kryptowährungen gleichzeitig zu kontrollieren. Der Bildschirm ist ein Vorlagentyp mit Binance-Bildschirm. Sie können die Vorlagendatei über den Link
                                    HINN Lazy Trader
                                    Georg Vahi
                                    5 (1)
                                    Set price targets, and leave everything else to HINN Lazy Trader! This tool is designed for automatic position sizing from specified levels to designated targets. Using a VPS is recommended (*). The demo version   limited in functionality, be sure to watch this video before using -->  https://youtu.be/geLQ6dUzAr8 A community for users, product discussion, update news, and first line of support are organized in a free Discord: https://discord.gg/zFhEZc7QDQ Use Webmoney For payments in cryptocu
                                    RiskGuard Management
                                    MONTORIO MICHELE
                                    5 (14)
                                    ATTENTION the expert does not work in strategy tester, for a trial version visit my profile. Manual RiskGuard Management   RiskGuard management was born with the idea of ​​helping traders from their initial journey to becoming expert and aware traders. Compatible with any operating system whether Mac or Windows. The operations panel is integrated into the graph giving the possibility to choose size and position between right and left, while the various buttons light up when they can be used,
                                    Trading Chaos Expert
                                    Gennadiy Stanilevych
                                    5 (10)
                                    This software has no equals in the world and represents a universal trade "console" covering trading signals, automated market entry, setting of Stop Loss and Take Profit, as well as Trailing Profit for multiple trades at the same time in a single open window. Intuitive control of the Expert Advisor in "three clicks" ensures a comprehensive use of all its functions on different computers, including tablets PCs. Interacting with additional signal indicators that mark the chart to give a real mark
                                    Binance History Loader
                                    Andrey Khatimlianskii
                                    This script is designed to download a long history of cryptocurrency quotes from the Binance exchange. You will find it perfectly suitable if you want once to download the history of cryptocurrencies for charts analyzing, collecting statistics or testing trading robots in the MetaTrader 5 strategy tester, or if you need to update the history not very frequently (for example, once a day or once a week). After running the script, you will have fully featured (but not automatically updated) cryptoc
                                    The product will copy all  Discord  signal   to MT5   ( which you are member  ) , also it can work as remote copier.  Easy to set up. Work with almost signal formats, support to translate other language to English Work with multi channel, multi MT5. Work with Image signal. Copy order instant, auto detect symbol. Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. How to setup and guide: Let read all details about setup and download Discord To MetaTrade
                                    Easy Strategy Builder 5
                                    Gheis Mohammadi
                                    5 (4)
                                    The  Easy Strategy Builder (ESB)  is a " Do It Yourself " solution that allows you to create a wide range of the automated trading strategies without any line of codes. This is the world’s easiest method to automate your strategies that can be used in STP, ECN and FIFO brokers. No drag and drop is needed. Just by set conditions of your trading strategy and change settings on desired values and let it work in your account. ESB has hundreds of modules to define unlimited possibilities of strategi
                                    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
                                    YuClusters
                                    Yury Kulikov
                                    4.93 (42)
                                    Attention: You can view the program operation in the free version  YuClusters DEMO .  YuClusters is a professional market analysis system. The trader has unique opportunities to analyze the flow of orders, trade volumes, price movements using various charts, profiles, indicators, and graphical objects. YuClusters operates on data based on Time&Sales or ticks information, depending on what is available in the quotes of a financial instrument. YuClusters allows you to build graphs by combining da
                                    Mentfx Mmanage mt5
                                    Anton Jere Calmes
                                    4.25 (8)
                                    The added video will showcase all functionality, effectiveness, and uses of the trade manager. Drag and Drop Trade Manager. Draw your entry and have the tool calculate the rest. Advanced targeting and close portions of a trade directly available in tool (manage trades while you sleep). Market order or limit order on either side with factored spread. Just draw the entry, the tool does the rest. Hotkey setup to make it simple. Draw where you want to enter, and the stop loss, the tool calculates al
                                    Dies ist ein visuelles Handelsfeld, mit dem Sie Trades einfach platzieren und verwalten, menschliche Fehler vermeiden und Ihre Handelsaktivität verbessern können. Es kombiniert eine einfach zu bedienende visuelle Oberfläche mit einem soliden Ansatz für das Risiko- und Positionsmanagement. [ Installationsanleitung | Update-Anleitung | Fehlerbehebung | FAQ | Alle Produkte ] Erstaunlich einfach zu bedienen Handeln Sie einfach aus dem Chart Handeln Sie mit präzisem Risikomanagement, stressfrei Kapi
                                    Adam FTMO MT5
                                    Vyacheslav Izvarin
                                    5 (2)
                                    ADAM EA Special Version for FTMO Please use ShowInfo= false for backtesting ! Our 1st EA created using ChatGPT technology Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Tested on EURUSD and GBPUSD only  Use 15MIN Time Frame Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday For Prop Firms MUST use special Protector  https://www.mql5.com/en/market/product/94362 -------------------------------------------------------------------------------
                                    -25% discount ($149 -> $111) Everything for chart Technical Analysis indicator mt5 in one tool Draw your supply demand zone with rectangle and support resistance with trendline and get alerts to mobile phone or email alert -  Risk reward indicator mt5 Video tutorials, manuals, DEMO download   here .   Find contacts on my   profile . 1.   Extended rectangles and trendlines Object will be extended to the right edge of the chart when price will draw new candles on chart. This is rectangle extend
                                    Hedge Ninja
                                    Robert Mathias Bernt Larsson
                                    3 (2)
                                    HEDGEN SIE IHREN WEG ZUM GEWINN BEI JEDEM HANDEL Wenn Sie denken, dass es schwierig ist zu bestimmen, in welche Richtung sich der Markt entwickeln wird, löst dieser Roboter das für Sie, indem er die Richtung ändert, je nachdem, in welche Richtung sich der Preis bewegt, sodass Sie gewinnen, egal in welche Richtung er sich bewegt. Hedge Ninja ist ein halbautomatisches Handelstool, das Sie mit den folgenden Hedge-Einstellungen einrichten. Wenn Sie ihm sagen, dass er handeln soll, kaufen oder ver
                                    ClusterSecond
                                    Rafil Nurmukhametov
                                    4.78 (32)
                                    The utility allows you to build different types of graphs: Seconds chart from 1 second to 86400 seconds Tick chart from 1 tick and above The volume chart Delta chart Renko chart Range chart Demo version of the utility https://www.mql5.com/ru/channels/clustersecond Built-in indicators for volumetric analysis: daily market profile and market profile of the selected timeframe, Cluster Search Imbalance VWAP Dynamic POC, VAH, VAL the profile depth of the market vertical volume with various display op
                                    Kopieren Sie Signale aus jedem Kanal, dem Sie als Mitglied angehören ( ohne die Notwendigkeit eines Bot-Tokens oder Administratorberechtigungen  direkt auf Ihren MT5. Es wurde mit dem Benutzer im Sinn entworfen und bietet viele Funktionen, die Sie benötigen Dieses Produkt wird in einer benutzerfreundlichen und visuell ansprechenden grafischen Benutzeroberfläche präsentiert. Passen Sie Ihre Einstellungen an und beginnen Sie innerhalb von Minuten mit der Nutzung des Produkts! Benutzerhandbuch +
                                    Unlimited Trade Copier Pro MT5 is a tool to copy trade remotely to multiple MT4, MT5 and cTrader accounts at different computers/locations over internet. This is an ideal solution for you if you are a signal provider and want to copy your trades to other receivers globally on your own rules. One provider can copy trades to multiple receivers and one receiver can get trade from multiple providers as well. The provider can even set the subscription expiry for each receiver, so that receiver will n
                                    Click and Go Trade Manager MT5
                                    Victor Christiaanse
                                    5 (1)
                                    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, y
                                    MQLplus Charting
                                    Dominik Egert
                                    3.67 (3)
                                    MQLplus Charting  Inspired by good charting solutions available on the web, this utility finally brings some neat features to MT5 to make charting fun again. Current version supports following features: Free floating charts , similar to Tradingview A sophisticated Cross-Hair , with detailed data display Multi-Chart Cross-Hair  sync function Measurement tool , showing account currency, points and period count as results Speed-Scrolling  to move fast through markets history Snail-Scrolling  to
                                    EmoGuardian
                                    Samuel Bandi Roccatello
                                    5 (1)
                                    Vermeiden Sie Überhandel, FOMO und zwanghaftes Verhalten, indem Sie Ihrem Handelskonto mit EmoGuardian erweiterte Risikolimits auferlegen. Automatisches Hinzufügen von Stop-Losses zu Positionen, Verwalten von EA-Verlusten , automatisches Laden/Entladen von EAs. Begrenzen Sie das Risiko pro Position, pro gehandeltem Tag, pro Zeitspanne, pro Tag. Die Risikomanagement-Optionen wurden entwickelt, um speziell zwanghafte Verhaltensweisen zu bekämpfen, die dazu führen, dass Händler ihre Konten sprengen
                                    Online Accounts Manager MT5
                                    Kyra Nickaline Watson-gordon
                                    5 (1)
                                    OneClick Online Account Manager is a powerful utility that helps you to manage all your accounts from a centralized panel. It is suitable for all single account traders and specially for multiple accounts traders. The utility help you to : Monitor status of all accounts on a private web page. Some information such as account connection status, account profit, DD, Balance, Equity, Margin Level, Number of positions and orders, Daily and Weekly profit/loss and also overall summation of all these
                                    There is Demo version of this panel Dashboard Symphonie Trader System MT5 Demo in my product list, please try it out to get familiar with all functionalities for free. Free version: LINK MT4 version: LINK  This system basically utilizes Symphonie Indicator Set (Extreme, Emotion, Trend, and Sentiment) as the core indicators to generate trading signal mainly on time-frame M15. The signal will be further filtered and trimmed by 1) M5 and M15 Stochastic; 2) EMA5 and PA To facilitate you to understan
                                    Weitere Produkte dieses Autors
                                    Multiple Position Opening MT5
                                    Francisco Manuel Vicente Berardo
                                    The Multiple Position Opening is a multi-symbol multi-timeframe script used to open simultaneously various positions.  Risk Management   The volume used to open a position is chosen between a fixed and a variable lot size, available through the Volume and Free Margin % input parameters, respectively. If there isn't enough money in the account for the chosen volume, this is reduced to the highest possible value (corresponding to free margin). If this reduction leads to a correct volume (if the
                                    FREE
                                    Double Trailing Stop MT4
                                    Francisco Manuel Vicente Berardo
                                    The Double Trailing Stop is a multi-symbol multi-timeframe Expert Advisor that allows the Stop Loss and Take Profit trailing of positions.  General Description   The Double Trailing Stop’s purpose is to secure profit and minimize losses of the opened positions. The Expert Advisor places stop orders (Stop Loss or Take Profit) at the Trailing Stop distance from the market price when the symbol's quote reaches/overcomes the Trailing Start distance from the position’s opening price (a single-time
                                    Position Selective Close MT5
                                    Francisco Manuel Vicente Berardo
                                    The Position Selective Close is a multi-symbol multi-timeframe script used to close simultaneously various positions.  General Description   The Position Selective Close   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   four position features (symbol, magic number,   type   and profit) are used. The modes, available through the Selection Mode input parameter, relate to the features, available through the “Select by Feature” and “Feature” input p
                                    FREE
                                    Multiple Position Opening MT4
                                    Francisco Manuel Vicente Berardo
                                    The Multiple Position Opening is a multi-symbol multi-timeframe script used to open simultaneously various positions.  Risk Management   The volume used to open a position is chosen between a fixed and a variable lot size, available through the Volume and Free Margin % input parameters, respectively. If there isn't enough money in the account for the chosen volume, this is reduced to the highest possible value (corresponding to free margin). If this reduction leads to a correct volume (if the
                                    FREE
                                    Scientific Calculator MT4
                                    Francisco Manuel Vicente Berardo
                                    The Scientific Calculator is a script designed to compute science, engineering and mathematics expressions.   General Description   The expression to calculate must obey syntax rules and precedence order, being constituted by the following elements:   Integer and real numbers.   Mathematical operators for addition (+), subtraction (-), multiplication (*), division (/) and exponentiation (^).   Mathematical and trigonometric functions .   Curved parentheses (()) to define the precedence and
                                    FREE
                                    Tick Data Record MT4
                                    Francisco Manuel Vicente Berardo
                                    The Tick Data Record is a multi-symbol multi-timeframe Expert Advisor that records tick data for later graphical representation and analysis.  General Description   The Tick Data Record offers a(n) alternative/complement to the online/offline price charts displayed through the MT4/MT5 platform. The Expert Advisor   permits   to write and save the current/history values of Time, Bid, Ask, Spread, Last and Volume to a text file (“.txt”). The idea is to copy/open the obtained register to/in a sp
                                    FREE
                                    Scientific Calculator MT5
                                    Francisco Manuel Vicente Berardo
                                    The Scientific Calculator is a script designed to compute science, engineering and mathematics expressions.  General Description   The expression to calculate must obey syntax rules and precedence order, being constituted by the following elements:   Integer and real numbers.  Mathematical operators for addition (+), subtraction (-), multiplication (*), division (/) and exponentiation (^).  Mathematical and trigonometric functions .  Curved parentheses (()) to define the precedence and contai
                                    FREE
                                    Position Selective Close MT4
                                    Francisco Manuel Vicente Berardo
                                    The Position Selective Close is a multi-symbol multi-timeframe script used to close simultaneously various positions.  General Description   The Position Selective Close   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   four position features (symbol, magic number,   type   and profit) are used. The modes, available through the Selection Mode input parameter, relate to the features, available through the “Select by Feature” and “Feature” input p
                                    FREE
                                    Tick Data Record MT5
                                    Francisco Manuel Vicente Berardo
                                    The Tick Data Record is a multi-symbol multi-timeframe Expert Advisor that records tick data for later graphical representation and analysis.  General Description  The Tick Data Record offers a(n) alternative/complement to the online/offline price charts displayed through the MT4/MT5 platform. The Expert Advisor permits to write and save the current/history values of Time, Bid, Ask, Spread, Last and Volume to a text file (“.txt”). The idea is to copy/open the obtained register to/in a spreadshe
                                    FREE
                                    Environment State Info Print MT5
                                    Francisco Manuel Vicente Berardo
                                    The Environment State Info Print is a script to display the constants that describe the current runtime environment of a MQL5 program.  General Description   The constants are divided into four groups in the   Environment State section of the MQL5 documentation and each group is divided into enumerations/subgroups (with designations  “Integer”, “Double” or “String”). The script displays constants in two ways: a single constant or all group constants. The constants are obtained by selecting th
                                    FREE
                                    Order Selective Delete MT5
                                    Francisco Manuel Vicente Berardo
                                    The Order Selective Delete is a multi-symbol multi-timeframe script used to delete simultaneously various pending orders.  General Description   The Order Selective Delete   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   three pending order features (symbol, magic   number   and type) are used. The modes, available through the Selection Mode input parameter, relate to the features, available through the “Select by Feature” and “Feature” input p
                                    FREE
                                    Order Selective Delete MT4
                                    Francisco Manuel Vicente Berardo
                                    The Order Selective Delete is a multi-symbol multi-timeframe script used to delete simultaneously various pending orders.  General Description   The Order Selective Delete   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   three pending order features (symbol, magic   number   and type) are used. The modes, available through the Selection Mode input parameter, relate to the features, available through the “Select by Feature” and “Feature” input p
                                    FREE
                                    Environment State Info Print MT4
                                    Francisco Manuel Vicente Berardo
                                    The Environment State Info Print is a script to display the constants that describe the current runtime environment of a MQL4 program.  General Description   The constants are divided into four groups in the Environment State section of the MQL4  documentation and each group is divided into enumerations/subgroups (with designations “ Market Info”, “Integer”, “Double” or “String”). The script displays constants in two ways: a single constant or all group constants. The constants are obtained b
                                    FREE
                                    Pending Order Grid MT4
                                    Francisco Manuel Vicente Berardo
                                    The Pending Order Grid is a multi-symbol multi-timeframe script that enables multi-strategy implementation based on pending order grids.  General Description   The Pending Order Grid allows the performing of a user-defined strategy through the creation of pending order grids. The script places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant price levels to form each grid. The beginning and finish of every grid are defined by the Start Price and St
                                    Pending Order Grid EA MT4
                                    Francisco Manuel Vicente Berardo
                                    The Pending Order Grid is a multi-symbol multi-timeframe Expert Advisor that enables multi-strategy implementation based on pending order grids.  General Description   The Pending Order Grid allows the performing of a user-defined strategy through the creation of pending order grids. The Expert Advisor places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant price levels to form each grid. The user might set up different grids to exist simultaneousl
                                    Double Trailing Stop MT5
                                    Francisco Manuel Vicente Berardo
                                    The Double Trailing Stop is a multi-symbol multi-timeframe Expert Advisor that allows the Stop Loss and Take Profit trailing of positions.  General Description   The Double Trailing Stop’s purpose is to secure profit and minimize losses of the opened positions. The Expert Advisor places stop orders (Stop Loss or Take Profit) at the Trailing Stop distance from the market price when the symbol's quote reaches/overcomes the Trailing Start distance from the position’s opening price (a single-time
                                    Pending Order Grid MT5
                                    Francisco Manuel Vicente Berardo
                                    The Pending Order Grid is a multi-symbol multi-timeframe script that enables multi-strategy implementation based on pending order grids.  General Description   The Pending Order Grid allows the performing of a user-defined strategy through the creation of pending order grids. The script places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant price levels to form each grid. The beginning and finish of every grid are defined by the Start Price and St
                                    Auswahl:
                                    md hazly
                                    33
                                    md hazly 2024.10.09 18:55 
                                     

                                    Der Benutzer hat keinen Kommentar hinterlassen

                                    Antwort auf eine Rezension
                                    Version 1.6 2024.10.05
                                    Insignificant change, not requiring an update:

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

                                    - Improvement of the function added in the 1.3 version (2024.07.16).
                                    Version 1.4 2024.08.01
                                    Minor change, nevertheless, requiring an update:

                                    - Second correction of the formulas used to calculate the Stop Loss and Take Profit prices when sending a pending order (replacement of the quote used as “reference” in each calculation, Ask price instead of Bid price, and vice versa).
                                    Version 1.3 2024.07.16
                                    Minor change, however, requiring an update:

                                    - Function added to deal with the account change and terminal closure during the Expert Advisor’s operation, two actions that result in the EA’s global variables resetting.
                                    Version 1.2 2024.06.28
                                    Minor change, but requiring an update:

                                    - Correction of the formulas used to calculate the Stop Loss and Take Profit prices when sending a pending order (previously, both values had a deviation equal to the current spread).
                                    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.