• Información general
  • Comentarios (1)
  • Discusión (1)
  • Novedades

SOMFX1Builder

5

If you like trading by candle patterns and want to reinforce this approach by modern technologies, this script is for you. In fact, it is a part of a toolbox, that includes a neural network engine implementing Self-Organizing Map (SOM) for candle patterns recognition, prediction, and provides you with an option to explore input and resulting data. The toolbox contains:

  • SOMFX1Builder - this script for training neural networks; it builds a file with generalized data about most characteristic price figures which can be used for next bars prediction either in a built-in sub-window (using SOMFX1 indicator), or directly on the chart using SOMFX1Predictor;
  • SOMFX1 - the indicator for price pattern prediction and visual analysis of a trained neural network, input and resulting data (in a separate sub-window);
  • SOMFX1Predictor - another indicator for predicting price patterns just in the main window;
The tools are separated from each other due to some MetaTrader 4 limitations, for example, it's not currently possible to run lengthy calculations in indicators because they are executed in the main thread.

In brief, all the process of price analysis, network training, pattern recognition and prediction supposes the following steps:

  1. Build a neural network by SOMFX1Builder;
  2. Analyze the resulting neural network performance by means of SOMFX1; if not satisfied, repeat step 1 with new settings; you may skip this step if you wish;
  3. Use final neural network for price pattern prediction using SOMFX1Predictor.

The 1-st step is covered in details below. More information about visual analysis and prediction can be found on the web-pages of corresponding indicators.

This is just a warning to make it clear: this script does not predict price patterns itself. It trains a neural network and saves it into a file, which should be loaded into SOMFX1 or SOMFX1Predictor indicators. So, you need to acquire one or both of them in addition to this script.

To start training you should choose number of bars in history to train at (LearnStart and LearnStop parameters), number of bars in a single pattern (PatternSize), the size of the map (GridSize), the number of learning cycles (EpochNumber). Some other parameters may also affect learning process, you may find all the details below, in "Parameters" section.

Learning may take considerable time, depending from the given parameters. The larger the number of bars being processed, the longer it takes to finish the process. Pattern size, map size and number of epochs - all work in the similar way. For example, training on 5000 bars with the map 10*10 in size may take several minutes on an average PC. All this time CPU core load is maximum, and terminal may slow down, if your PC doesn't have a couple of cores. You should choose a time for training when you do not expect active trading, or you could use weekends. This is especially important because the training process normally needs some optimization and thus should be repeated several times before you get optimal results. Why? Please find the answer below, in "Choosing optimal parameters" section.

Before you start reading the next sections, it may be worth reading "How it works" section on the SOMFX1 page with an overview of neural network principles.


Parameters

  • LearnStart - number of a bar in history, where training data begins, or an exact date and time of the bar (in the format "YYYY.MM.DD HH:MM"); this parameter is a string, whick allows you to enter either a number or a date; note that bar numbers change every time a new bar is formed, so if you used value 1000 yesterday, today's 1000-th bar will be most likely other one (except for the case you use weekly bars); during training process this is not important because all training data is collected just before the start and is not changed afterwards; default value - 5001;
  • LearnStop - number of a bar in history, where training data ends, or an exact date and time of the bar (in the format "YYYY.MM.DD HH:MM"); this parameter is also a string; LearnStart should be older than LearnStop; the difference between LearnStart and LearnStop is the number of samples (input vectors) passed to the network (more precisely, it's LearnStart-LearnStop-PatternSize); default value - 1 (excluding the last, usually unfinished bar);
  • PatternSize - number of bars in a single pattern; this is the length of input vector (price sample); after the training, the first PatternSize-1 bars will be used to predict the next bar; for example, if PatternSize is 5, 5-bars patterns are extracted from price flow during training, and then 4-bars beginnings will be used to estimate 5-th bar on every moment; allowed values: 3 - 10; default value - 5;
  • GridSize - dimentions of the map; this is a number of cells/units on X and Y axes; the total number of neurons are GridSize*GridSize (2D-map); allowed values: 3 - 50, but be warned: the values larger than 20 implies long enough training with high CPU load; default value - 7 (applicable for first tests to get accustomed with the tools, but will most likely require larger value for real tasks);
  • EpochNumber - number of learning cycles to run; default value - 1000; the training process may finish earlier, if Precision is reached; in every epoch all input samples are feeded into the network;
  • LearningRate - initial learning speed; default value - 0.25; you may use trial and error method to find an optimum value in the range 0.1 - 0.5;
  • UseConvex - enable/disable the convex combination method of neurons' inputs initialization during first epochs; enabling it supposes better pattern separation and is recommended; default value - true;
  • Precision - a float number used as a threshold to stop training, when overall network error changes less than this number; default value - 0.001;
  • PriceType - a price type to use in the patterns; default value - close price;
  • AddInvertedPrice - enable/disable a mode, when inverted price movements are added into the samples; this may help to eliminate trend bias; default value - true; this means that number of samples becomes twice larger: (LearnStart-LearnStop-PatternSize)*2;
  • NetFileName - a name of file to save resulting network; default value - empty string - means that a special filename will be constructed automatically; it has the following strucutre: SOM-V-D-SYMBOL-TF-YYYYMMDDHHMM-YYYYMMDDHHMM-P.candlemap, where V - PatternSize, D - GridSize, SYMBOL - current work symbol, TF - current timeframe, YYYYMMDDHHMM - LearnStart and LearnStop respectively; even if you specified LearnStart and LearnStop as numbers, they are automatically transformed into date and time; P - PriceType; it is recommended to leave this parameter blank, because the autogenerated filenames are parsed by SOMFX1 and SOMFX1Predictor automatically, so you have no need to specify all the settings manually; otherwise, if you give your own filename, all settings used for training the network must be exactly duplicated in SOMFX1 and SOMFX1Predictor dialogs, and it's important to convert LearnStart and LearnStop into date/time format because bar numbers are inconsistent;
  • PrintData - enable/disable debug logging; default - false;
  • Throttling - number of milliseconds to pause training every epoch; this parameter allows you to ease CPU load in the expense of longer time required for the process to finish; it may help if your PC is not powerful enough and you don't want the training to interfere with other interactive tasks you're performing; default value - 0.


Choosing optimal parameters

Most important questions to answer yourself before you start network training are:

  • How many bars to feed into the network?
  • Which pattern size to choose? 
  • Which size of the network to choose?

They all are closely related, and decision on one of the questions affects the others.

By increasing the depth of history used for sampling one could expect better generalization of patterns by the network. This means that every discovered pattern is backed by a larger number of samples, so the network finds regularities in prices, not peculiarities. On the other hand, feeding too many samples to a network of a given size may lead to the effect when generalization becomes averaging, so it clashes different patterns into a single neuron. This happens because network has a limited "memory", defined by its size. The larger the size the larger number of samples can be processed. Unfortunately there is no exact formula for this. The rule of humb is:

D = sqrt(5*sqrt(N))

where N is the number of samples and D is the network dimensions (GridSize).

So, you should probably choose the number of bars on the basis of your preferred trading strategy. Then, having the number, you can calculate required network size. For example, for H1 timeframe, 5760 bars gives a year, which seems a good enough horizon for trading on H1, so you may try the default 5000 number. With this number one can get the size 20 by the formula above. Please note that setting AddInvertedPrice to true will increase the number of samples twice, so the size must be adjusted as well. If after the training network produces too many errors (this can be validated by using SOMFX1 or SOMFX1Predictor) you may consider either to enlarge the size of the map or to reduce the range of training data. PriceType may also be important. Anyway, if you have empirical knowledge that specific candle pattern occurs 10 or more times (in average) on some period of time, you may consider this period as sufficient for learning, because 10 samples should be enough for pattern generalization. You can use SOMFX1 for investigation how many samples mapped into every neuron and how evenly samples are distributed among neurons.

It's possible to consider the problem from the opposite side. Number of units in the network is the maximal number of possible price patterns. Let us assume that the number of known candle patterns is 50. Then the size of the network should be about 7. The problem here is that there are no means to "tell" the network that we want to recognize exactly these 50 patterns and omit all the others: the network will learn on all patterns available in the price series, so that the 50 known candle patterns will be a fraction of all patterns the network tries to learn. What is the fraction is - again - an open question. This is why it is usually required to run training process several times with different settings and find the best configuration.

If we consider classical candle patterns, many of them are built from 3-4-5 candles. For the neural network 3 or 4 bars may prove to be insufficient patterm size for proper pattern separation. So it is recommended to set PatternSize to 5 or more. Larger pattern size will increase computation costs. 

PriceType is implied to be close, when we talk about conventional candle patterns. The neural network allows for recognition of price patterns formed by any other price type, such as typical, high or low. It is especially useful because price series of the close price are very raggy, which "costs" more "memory" for the network. In other words - learning close is much more difficult than learning typical price, and requires larger map size on the same bar range. So, changing the type from close to typical may allow one to reduce the map size or improve accuracy.


Modus operandi

After setting the parameters and pressing OK button the training process starts. During the process the script outputs current epoch number, current error, learning rate and percentage of completion in the comment (in the left upper corner of the window). The same information is printed into the log. When the process finished, an alert is fired with the filename of the generated network. The file is saved in the Files subdirectory of your MQL4 folder. If it's an automatically generated filename (NetFileName was empty), you can copy and paste the filename just from the alert dialog into SOMFX1 or SOMFX1Predict indicator (should be pasted into similar NetFileName parameter there) and run the network. If a custom filename was used, then you should copy all parameters into the indicators - not only the filename but learning region, map size, pattern size, etc.

It's important that the network file does not contain input data - it holds the trained network only. When the network is loaded next time, a SOMFX1 indicator reads from settings all required parameters to extract price samples anew.

Before every learning process the network is initialized by random weights. This means that every next run of the script with the same settings will produce a new map which differs from previous one.

Recommended timeframes: H1 and above. 

Productos recomendados
Close by percentage MT4
Konstantin Kulikov
4.86 (7)
Hello friends. I wrote this utility specifically for use in my profile with a large number of Expert Advisors and sets ("Joint_profiles_from_grid_sets" https://www.mql5.com/en/blogs/post/747929 ). Now, in order to limit losses on the account, there is no need to change the "Close_positions_at_percentage_of_loss" parameter on each chart. Just open one additional chart, attach this utility and set the desired percentage for closing all trades on the account. The utility has the following function
FREE
Lines of risk
Makarii Gubaydullin
The indicator displays the   specified Risk Level   on the chart, for long and short positions. My   #1 Utility : includes 65+ functions  |   Contact me  if you have any questions It may be useful when setting the Stop Loss level, the value of which is visible on the right price axis. To calculate the level of risk, a   Fixed  / or   Last used   lot size is used. Imput Settings: Last traded lot:  set " true " to make the calculation for your last used   trading lot; Lot Size: set the value of t
Utilitário para fechamento automático de negócios por níveis de trailing stop. Permite que você aproveite ao máximo seu lucro. Criado por um trader profissional para traders. O utilitário funciona com quaisquer ordens de mercado abertas por um trader manualmente ou usando consultores. Pode filtrar negociações por número mágico. O utilitário pode trabalhar com qualquer número de pedidos ao mesmo tempo. Versão MT5 https://www.mql5.com/ru/market/product/56488 O QUE O UTILITÁRIO PODE FAZER: d
Fever ESM
Evgenii Morozov
Trading Advisor for margin currency pairs and metals. Conservative trading of 100,000 units per 0.01 lot. The standard trade is 10,000 units per 0.01 lot. Aggressive trading with high risks of 1000 units per 0.01 lot. You can always pick up your starting lot.  The EA is fully automated, you only have to put up the initial lot depending on your initial deposit. The recommended timeframe is H1. 1. Test on any steam, iron and fuel oil 2. Try starting with convenient depots 3. When going into a dra
News Scalping Executor is an utility which helps to trade high impact and huge volatility   news . This utility helps to create two opposite orders with risk management and profit protection. It moves automatically stop loss level to avoid losses as much as possible by using many different algorithms. It helps to avoid trading the news if spread suddenly becomes very huge. It can lock profit by moving stop loss or partially closing of orders. To be profitable with this type of trading you sh
FREE
Spread Record
Konstantin Kulikov
3.75 (4)
This utility allows to record the spread value to the file, which is equal to or greater than the value specified in the settings, at the specified time. The utility also displays useful information on the symbol's chart: current spread value in points, name of account holder, name of trading server, leverage, the size of the swap for buy orders, the size of the swap for sell orders, day of the week for accruing triple swap, the size of a point in the quote currency, the minimum allowed level of
FREE
Trend Show Volume
Rodolfo Leonardo De Morais
Trend Show Volume This indicator allows you to visualize volume distortions. When the volume increases by x percent we have different colors and sizes plotted. Indicator Parameters pPercentShow -  Percentage of volume on which different colors and sizes will be plotted pLength - Average applied to volume [background bar] pModeMA - Type of media applied to the volume
This is an expert advisor that will trail stop loss of orders selected from the list displayed on the chart. To make it run, add the expert to an empty chart (please set it on a chart that is not in use for analysis or other trading purposes, you can minimize it when setting a new order trail timed stop loss is not required). Set the number of pips to trail and the number of minutes to wait for the next stop loss review at the inputs tab in the Expert Properties window. From the list displayed o
Lot by Risk
Sergey Vasilev
4.83 (24)
El panel de negociación Lot by Risk está diseñado para operar manualmente. Es un medio alternativo para enviar órdenes. La primera característica del panel es la colocación conveniente de órdenes con la ayuda de líneas de control. La segunda característica es el cálculo del volumen de la transacción según el riesgo dado en presencia de la línea stop loss. Las líneas de control se configuran con teclas de acceso rápido: take profit-por defecto la tecla T; price-por defecto la tecla P;
FREE
FDM Strategy is an Expert Advisor based on fractals and five dimension method. Five Dimensions expert system is developed based on a theory combining the Chaos Theory with the trading psychology and the effects that each has on the market movement. There is also an ADX (measuring trend strength with average directional movement index) used as a trading filter. Long and Short Trade Signals: If fractal to buy is above the Alligator's Teeth (red line), the pending Sell Stop order must be placed 1 p
Auto Breakeven MT4
Vladimir Gribachev
Una utilidad para establecer automáticamente los niveles de equilibrio, transfiere las operaciones al equilibrio al pasar una distancia determinada. Le permite minimizar los riesgos. Creado por un comerciante profesional para comerciantes. La utilidad trabaja con cualquier orden de mercado abierta por un comerciante manualmente o mediante asesores. Puede filtrar operaciones por número mágico. La utilidad puede trabajar con cualquier número de pedidos al mismo tiempo. Versión MT5 https://www.m
News Scalping Executor is an utility which helps to trade high impact and huge volatility   news . This utility helps to create two opposite orders with risk management and profit protection. It moves automatically stop loss level to avoid losses as much as possible by using many different algorithms. It helps to avoid trading the news if spread suddenly becomes very huge. It can lock profit by moving stop loss or partially closing of orders. To be profitable with this type of trading you s
Trailing Stop Utility MT4 for automatic closing of deals by trailing stop levels.  Allows you to take the maximum from the profit. Created by a professional trader for traders.   Utility   works with any market orders opened manually by a trader or using advisors. Can filter trades by magic number. The utility can work with any number of orders simultaneously. WHAT THE UTILITY CAN DO: Set virtual   trailing stop   levels from 1 pip Set real   trailing stop   levels W ork with each order separ
A trader's assistant that closes positions in parts with a simple trail to take the optimal profit size when the price of the symbol moves towards the position (s). Initially, the stop loss is moved to breakeven + (the so-called breakeven greed level) - this is when the price closes the stop-loss position during the reverse movement and as a result some profit will still be received. Further, while maintaining the movement in the direction of the position, it is closed in parts on price rollback
Auto risk manager Free is a utility for order management. Regardless of whether the orders are opened manually or by Expert Advisors, the utility removes pending orders (if needed) and disables the terminal (not letting the EAs open new trades) when a specified profit or loss percentage is reached. This demo versions allows you to understand the work of the full version of Auto risk manager . The demo works only with AUDNZD orders only. Profit_Percent and Loss_Percent may have either positive or
FREE
Red Hawk EA
Profalgo Limited
4.22 (18)
NEW PROMO: Only a few copies copies available at 349$ Next price: 449$ Make sure to check out our " Ultimate EA combo package " in our   promo blog ! Red Hawk is a "mean reversion" trading system, that trades during the quiet times of the market. It runs on 9 pairs currently: EURUSD, GBPUSD, USDCHF, EURCHF, EURGBP, AUCAD, AUDJPY, EURAUD and USDCAD. Recommended timeframe: M5 Since this kind of strategy works best with low spread and fast execution, I advise using an good ECN broker. IMPORTANT
Trend Ray
Andriy Sydoruk
The indicator shows the potential trend direction by cyclical-wave dependence. Thus, all the rays of the intersection will be optimal rays, in the direction of which the price is expected to move, taking into account the indicator period. Rays can be used as a direction for potential market movement. But we must not forget that the approach must be comprehensive, the indicator signals require additional information to enter the market.
StopLoss and TakeProfit Utility MT4 for automatic setting of stop loss and take profit levels. Created by a professional trader for traders.   The utility   works with any market orders opened by a trader manually or using advisors. Can filter trades by magic number. The utility can work with any number of orders simultaneously. WHAT THE UTILITY CAN DO: Set virtual stop loss and take profit from 1 pip Real   stop loss and take profit W ork with each order separately (   stop loss and take pr
CAP Trade Pad EA
MEETALGO LLC
4.67 (18)
Trade easily from the chart with   CAP Trade Pad EA . It handles risk management for you and can perform several useful tasks with your existing trades. Trade easily from the chart Trade with precise risk management hassle free Set your desired stop loss and take profit levels Close all existing trades with a single click Delete all pending orders with a single click Reap partial profits with a single click It has no input parameters How to Use Please Read this blog -   Details Information in
FREE
This utility is the improved version of Trailing stop for advisors. It manages other EAs' orders as well as the ones opened manually. It is capable of trailing the price (trailing stop function), set a stop loss and take profit if they have not been set before. The Pro version features the ability to set trailing stop based on fractals and points of Parabolic SAR. When configuring the utility for an EA having no trailing stop function, place it to the new window with the same currency pair speci
Beta version of a semi-automatic utility for trading grid strategy. When using, please give feedback on the shortcomings / suggestions. Good luck to us! Parameters: Lot exponent - multiplication of the lot on the next order. Grid pips   - grid size. Take profit pip - distance of the take profit line. Magic number - the magic number of the adviser's work. Trading menu - presence/absence of a trading menu. Menu size - the size of the menu (choose the value for your resolution). Menu font siz
This program calculates the average opening price for sell and buy positions separately. Program allows you to modify the stop loss value to the calculated breakeven price, this value could also be modified by a user-defined integer value in points. All you have to do is press the button. You can also choose Logs_Display_Enable input value if you need to get some additional, useful informations. Enjoy using !!!
FREE
This indicator will display current logined mt4 account's orders information of current symbol chart. It also allow import some formated data: 1) MQL5 Signals History CSV file (*.csv) 2) MT4 Account History Statement file (*.htm -> *.txt) *[Next Version] Allow Import data form 'HF HistoryExporter (*.csv)' Sample Data of MQL5 Signals History File Time;Type;Volume;Symbol;Price;S/L;T/P;Time;Price;Commission;Swap;Profit;Comment 2023.12.20 23:00:02;Buy Limit;0.06;EURUSD;1.08994;1.06024;1.09464;2
SpeedManager
Sajiro- Yoshizaki
Esta es una herramienta de gestión de velocidad de reproducción que permite pruebas y análisis eficientes en el Probador de Estrategias. Mejora la usabilidad del Probador de Estrategias y puede usarse como un medio para agilizar el desarrollo y la evaluación de estrategias de trading. Características de la herramienta: Control de velocidad de reproducción: Los usuarios pueden cambiar libremente la velocidad de reproducción en el Probador de Estrategias, lo que les permite avanzar rápidamente,
FREE
This Tool Allow you close all open Orders automatics when Equity reach to specific value:  - When Equity is less than  specific value - When Equity is greater than  specific value - And Allow you close all open orders in manual - It will notification to MT4 Mobile app when it execute close all orders. __________________________________________ It very helpful for you when you trade with prop funds. Avoid reach daily drawdown and automatics close all orders when you get target.
FREE
VirtualStops
Viktor Shpakovskiy
A utility for managing open positions using virtual (invisible to the broker) stops. Virtual stop loss and virtual take profit can be freely moved around the chart. If the price touches the virtual stop line (TP, SL, TS), the EA will close all orders of the same direction on the current chart. Closing orders by virtual take profit is possible only if there is a profit. With the help of the built-in trading simulator, you can, in the strategy tester, see how the adviser works. Parameters Block
News Scalping Executor is an advisor which helps to trade news with high impact and huge volatility. This advisor helps to create two opposite orders with risk management. It moves automatically stop loss level to avoid losses as much as possible by using many different algorithms. It helps to avoid trading the news if spread suddenly becomes very huge. To be profitable with this type of trading you should choose the most volatile types of news such as: GDP, CPI, Unemployment Claims, Intere
FREE
Risk Manager Pro MT4
Jhojan Alberto Tobon Monsalve
“Risk Manager Pro” es una herramienta sencilla que calcula el lotaje necesario con el porcentaje de riesgo y los “pips” de “stop loss”, antes de abrir posiciones. Las calculadoras web pueden ser útiles en algunos casos, pero no son eficientes para abrir operaciones en tiempo real. En el día a día del “trading”, hay pocas oportunidades para abrir posiciones y cuando surge la oportunidad, los segundos marcan la diferencia, esto no es posible con las calculadoras web convencionales, ya que para cal
WOz
Andrej Hermann
5 (3)
Universal trading advisor "WOz" with a built-in trading panel The EA's capabilities can be easily tested in the strategy tester in visual mode. The EA can simulate real trading with the ability to move the SL and TP levels.  The EA has 5 modes of operation:  1. AUTOTRADING automatic trading mode on a set signal  2. ONLY SIGNAL mode of tracking the set signal without auto trading  3. RANGE MODUS mode of automatic placement of equidistant orders on Bayi Sell at a specified time  4. H
FREE
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
Los compradores de este producto también adquieren
Trade Assistant MT4
Evgeniy Kravchenko
4.46 (181)
Ayuda a calcular el riesgo por operación, la fácil instalación de una nueva orden, gestión de órdenes con funciones de cierre parcial, trailing stop de 7 tipos y otras funciones útiles. Atención, la aplicación no funciona en el probador de estrategias. Manual, Description, Download demo Función de línea -   Muestra en el gráfico la línea de apertura, Stop Loss, Take Profit. Con esta función es fácil establecer una nueva orden y ver sus características adicionales antes de la apertura.   Gest
¿Crees que en mercados donde el precio puede cambiar en una fracción de segundo, realizar pedidos debería ser lo más sencillo posible? En Metatrader, cada vez que desee abrir una orden, debe abrir una ventana donde ingrese el precio de apertura, stop loss y take profit, así como el tamaño de la operación. Al operar en los mercados financieros, la gestión del capital es fundamental para mantener su depósito inicial y multiplicarlo. Entonces, cuando quiera realizar un pedido, probablemente se preg
Local Trade Copier EA MT4
Juvenille Emperor Limited
5 (78)
Experimente una copia de operaciones excepcionalmente rápida con Local Trade Copier EA MT4 . Con su fácil configuración de 1 minuto, este copiador de operaciones le permite copiar operaciones entre múltiples terminales de MetaTrader en la misma computadora con Windows o en Windows VPS con velocidades de copiado ultra rápidas de menos de 0.5 segundos. Ya seas un trader principiante o profesional, el Local Trade Copier EA MT4 ofrece una amplia gama de opciones para personalizarlo según tus necesi
TradePanel MT4
Alfiya Fazylova
4.91 (87)
Trade Panel es un asistente comercial multifuncional. La aplicación contiene más de 50 funciones diseñadas para el comercio manual. Le permite automatizar la mayoría de las acciones comerciales. ¡Atención! La aplicación no funciona en el probador de estrategias. Puede probar la utilidad en una cuenta de demostración; para ello, descargue la versión de demostración aquí: Versión de demostración . Características principales de la aplicación: Funciona con cualquier instrumento comercial (Forex, CF
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
El MT4 to Telegram Signal Provider es una herramienta fácil de usar y completamente personalizable que permite enviar señales a Telegram, transformando su cuenta en un proveedor de señales. El formato de los mensajes es completamente personalizable! Sin embargo, para un uso sencillo, también puede optar por una plantilla predefinida y habilitar o deshabilitar partes específicas del mensaje. [ Demo ]  [ Manual ] [ Versión MT5 ] [ Versión Discord ] [ Canal de Telegram ] Configuración Está dispo
Exp COPYLOT CLIENT for MT4
Vladislav Andruschenko
4.66 (67)
Copiadora comercial para MetaTrader 4. Copia operaciones de forex, posiciones, pedidos de cualquier cuenta. Es una de las mejores copiadoras comerciales   MT4 - MT4, MT5 - MT4 para la versión  COPYLOT MT4  (o MT4 - MT5 MT5 - MT5 para la versión COPYLOT MT5 ). Versión MT 5 Descripción completa +DEMO +PDF Cómo comprar Cómo instalar    Cómo obtener archivos de registro    Cómo probar y optimizar    Todos los productos de Expforex Versión copiadora para  MetaTrader 5 terminal (МТ5 - МТ5, МТ4 -
Trade copier MT4
Alfiya Fazylova
4.67 (30)
Trade Copier es una utilidad profesional diseñada para copiar y sincronizar operaciones entre cuentas comerciales. La copia ocurre desde la cuenta / terminal del proveedor a la cuenta / terminal del destinatario, instalada en la misma computadora o vps. Antes de comprar, puede probar la versión de demostración en una cuenta de demostración. Versión de demostración aquí . Instrucciones completas aquí . Principales funcionalidades y beneficios: Admite la copia de MT4> MT4, MT4> MT5, MT5> MT4, incl
Trade Manager para ayudarle a entrar y salir rápidamente de operaciones mientras calcula automáticamente su riesgo. Incluye funciones que le ayudarán a evitar el exceso de operaciones, las operaciones de venganza y las operaciones emocionales. Las operaciones se pueden gestionar automáticamente y las métricas de rendimiento de la cuenta se pueden visualizar en un gráfico. Estas características hacen que este panel sea ideal para todos los operadores manuales y ayuda a mejorar la plataforma MetaT
VirtualTradePad mt4 Extra
Vladislav Andruschenko
4.88 (60)
Panel de comercio para operar en 1 clic.  ¡Trabajando con posiciones y pedidos!  Operar desde el gráfico o desde el teclado. Con nuestro panel de operaciones, puede operar con un clic del gráfico y realizar operaciones comerciales 30 veces más rápido que el control estándar de MetaTrader. Cálculos automáticos de parámetros y funciones que facilitan la vida de un comerciante y lo ayudan a realizar sus actividades comerciales de manera mucho más rápida y conveniente. Consejos gráficos e informaci
Unlimited Trade Copier Pro is a tool to copy trade remotely between multiple MT4/MT5 accounts at different computers/locations over internet. This is an ideal solution for signal provider, who want to share his trade with the others globally on his own rules. One provider can copy trades to multiple receivers and one receiver can get trade from multiple providers as well. The provider can even set the subscription expiry for each receiver, so that receiver will not be able to receive the signal
Tome el control de su cartera de divisas. ¡Vea instantáneamente dónde se encuentra, qué funciona y qué le causa dolor! VERSIÓN MT5 DISPONIBLE AQUÍ: https://www.mql5.com/en/market/product/58658 El Trade Manager Dashboard está diseñado para mostrarle de un vistazo dónde se encuentra actualmente cada posición que tiene en el mercado de divisas, y hacer que la gestión de riesgos y la exposición a las divisas sean más fáciles de entender. Para los comerciantes que escalan gradualmente en el mercad
CAP Strategy Builder EA
MEETALGO LLC
4.82 (28)
The top-selling EAs on the market cost a lot and one day they are suddenly gone. This is because one strategy will not work in the forex market all the time. Our product is unique from all others in the MQL Marketplace because our EA comes with 34+ built-in indicators that allow adding more strategies every time.  You build your strategy and keep updating it. If one strategy does not work, simply build another all using only one EA. This is All-In-One EA in this market place. You can use as trad
Grid Manual MT4
Alfiya Fazylova
4.71 (17)
Grid Manual es un panel de negociación para trabajar con una cuadrícula de órdenes. La utilidad es universal, tiene configuraciones flexibles y una interfaz intuitiva. Funciona con una cuadrícula de pedidos no solo en la dirección de promediar pérdidas, sino también en la dirección de aumentar las ganancias. El usuario no necesita crear y mantener una cuadrícula de pedidos, la utilidad lo hará. Basta con abrir un pedido y el "Grid manual" creará automáticamente una grilla de pedidos para el mism
FTMO Sniper 4
Vyacheslav Izvarin
Dedicated for FTMO and other Prop Firms Challenges 2020-2023 Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Best results on GOLD and US100  Use any Time Frame Close all deals and Auto-trading  before  US HIGH NEWS, reopen 2 minutes after Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday Recommended time to trade 09:00-21:00 GMT+3 For Prop Firms MUST use special Protector  https://www.mql5.com/en/market/product/94887 -------------------
-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
Trade Copier Agent está diseñado para copiar transacciones entre múltiples cuentas/terminales MetaTrader (4/5). Con esta herramienta, puede actuar como proveedor (fuente) o como receptor (destino). Todas las acciones comerciales se copiarán del proveedor al receptor sin demora. Esta herramienta le permite copiar transacciones entre múltiples terminales MetaTrader en la misma computadora con velocidades de copia ultrarrápidas de menos de 0,5 segundos. Guía de entradas e instalación de Trade Copi
DrawDown Limiter MT4
Haidar, Lionel Haj Ali
5 (9)
Drawdown Limiter EA You are in the right place if you were searching for Drawdown control, Drawdown limiter, Balance protection, Equity Protection or Daily Drawdown Limit related to Prop Firm, FTMO, or Funded account trading, or if you want to protect your trading account. Have you suffered from controlling your drawdown when trading funded accounts? This EA is meant for you. Prop firms usually set a rule called “Trader Daily Drawdown”, and if it is not respected, you are disqualified.  I am an
Copie señales de cualquier canal del que sea miembro (incluidos los privados y restringidos) directamente en su MT4.  Esta herramienta ha sido diseñada pensando en el usuario y ofrece muchas características que necesita para administrar y monitorear las operaciones. Este producto se presenta en una interfaz gráfica fácil de usar y visualmente atractiva. ¡Personalice su configuración y comience a usar el producto en minutos! Guía del usuario + Demo  | Versión MT5 | Versión Discord Si desea pro
KT Equity Protector MT4
KEENBASE SOFTWARE SOLUTIONS
3 (2)
KT Equity Protector EA consistently monitors the account equity and closes all the market and pending orders once the account equity reached a fixed equity stop loss or profit target.  After closing all trading positions, the EA can close all open charts to stop other expert advisors from opening more trading positions. Equity Stop-Loss If your current account balance is $5000 and you set an equity stop loss at $500. In this case, the KT Equity Protector will close all the active and pending
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
Take a Break
Eric Emmrich
5 (27)
The most advanced news filter and drawdown limiter on MQL market NEW: Take a Break can be backtested against your account history! Check the " What's new " tab for details. Take a Break has evolved from a once simple news filter to a full-fledged account protection tool. It pauses any other EA during potentially unfavorable market conditions and will continue trading when the noise is over. Typical use cases: Stop trading during news/high volatility (+ close my trades before). Stop trading when
OrderManager MT4
Lukas Roth
4.63 (19)
Presentamos el OrderManager : Una herramienta revolucionaria para MT4 Gestiona tus operaciones como un profesional con la nueva utilidad Order Manager para MetaTrader 4. Diseñado con la simplicidad y la facilidad de uso en mente, Order Manager te permite definir y visualizar fácilmente el riesgo asociado con cada operación, permitiéndote tomar decisiones informadas y optimizar tu estrategia de trading. Para más información sobre OrderManager, por favor consulta el manual. [ Manual ] [ Versión MT
Trade Assistant GS
Vasiliy Strukov
5 (33)
El panel de operaciones se limita a la gestión de órdenes, tanto las que se abren mediante botones como las que abre el usuario. Simple y conveniente en la Colección. Complementará a cualquier comprador. Recomiendo usarlo junto con el indicador Gold Stuff. Configure el comercio como órdenes individuales y construya una cuadrícula con una distancia. Para crear una cuadrícula estándar, simplemente establezca una distancia grande, como 10000. Los resultados en tiempo real se pueden ver aquí. ¡
MT4 Alert Signal Trader
Nguyen Van Anh
4.5 (4)
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
The News Filter
Leolouiski Gan
5 (17)
Este producto filtra todos los asesores expertos y los gráficos manuales durante el tiempo de noticias, por lo que no tendrás que preocuparte por los repentinos picos de precios que podrían destruir tus configuraciones de negociación manuales o las operaciones realizadas por otros asesores expertos. Este producto también viene con un sistema completo de gestión de órdenes que puede manejar tus posiciones abiertas y órdenes pendientes antes del lanzamiento de cualquier noticia. Una vez que compre
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
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
Trade Dashboard MT4
Fatemeh Ameri
5 (20)
Tired of complex order placement and manual calculations? Trade Dashboard is your solution. With its user-friendly interface, placing orders becomes effortless, by a single click, you can open trades, set stop loss and take profit levels, manage trade lot size, and calculate risk to reward ratios, allowing you to only focus on your strategy. Say goodbye to manual calculations and streamline your trading experience with Trade Dashboard. Download   demo version  right now. You can find details
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
Otros productos de este autor
WalkForwardOptimizer MT5
Stanislav Korotky
3.86 (7)
WalkForwardOptimizer library allows you to perform rolling and cluster walk-forward optimization of expert advisers (EA) in MetaTrader 5. To use the library include its header file WalkForwardOptimizer.mqh into your EA source code, add call provided functions as appropriate. Once the library is embedded into EA, you may start optimization according to the procedure described in the User guide . When it's finished, intermediate results are saved into a CSV file and some special global variables.
RenkoFromRealTicks
Stanislav Korotky
4.67 (3)
This non-trading expert utilizes so called custom symbols feature ( available in MQL API as well) to build renko charts based on history of real ticks of selected standard symbol. RenkoFromRealTicks generates custom symbol quotes, thus you may open many charts to apply different EAs and indicators to the renko. It also transmits real ticks to update renko charts in real time. The generated renko chart uses M1 timeframe. It makes no sense to switch the renko chart to a timeframe other than M1. T
VolumeDeltaBars
Stanislav Korotky
This indicator is a conventional analytical tool for tick volumes changes. It calculates tick volumes for buys and sells separately, and their delta on every bar, and displays volumes by price clusters (cells) within a specified bar (usually the latest one). The algorithm used internally is the same as in the indicator VolumeDeltaMT5 , but results are shown as cumulative volume delta bars (candlesticks). Analogous indicator for MetaTrader 4 exists - CumulativeDeltaBars . This is a limited substi
AutomaticZigZag
Stanislav Korotky
4.67 (3)
This is a non-parametric ZigZag providing 4 different methods of calculation. Upward edge continues on new bars while their `highs` are above highest `low` among previous bars, downward edge continues on next bars while their `lows` are below lowest `high` among previous; Gann swing: upward edge continues while `highs` and `lows` are higher than on the left adjacent bar, downward edge continues while `highs` and `lows` are lower than on the left adjacent bar. Inside bars (with lower `high` and
FREE
Time And Sales Layout indicator shows traded buy and sell volumes right on the chart. It provides a graphical representation of most important events in the time and sales table. The indicator downloads and processes a history of real trade ticks. Depending from selected depth of history, the process may take quite some time. During history processing the indicator displays a comment with progress percentage. When the history is processed, the indicator starts analyzing ticks in real time. The l
CustomVolumeDelta
Stanislav Korotky
4.5 (2)
This indicator displays volume delta (of either tick volume or real volume) encoded in a custom symbol, generated by special expert advisers, such as RenkoFromRealTicks . MetaTrader does not allow negative values in the volumes, this is why we need to encode deltas in a special way, and then use CustomVolumeDelta indicator to decode and display the deltas. This indicator is applicable only for custom instruments generated in appropriate way (with signed volumes encoded). It makes no sense to ap
FREE
SOMFX1Predictor
Stanislav Korotky
If you like trading by candle patterns and want to reinforce this approach by modern technologies, this indicator and other related tools are for you. In fact, this indicator is a part of a toolbox, that includes a neural network engine implementing Self-Organizing Map (SOM) for candle patterns recognition, prediction, and provides you with an option to explore input and resulting data. The toolbox contains: SOMFX1Builder  - a script for training neural networks; it builds a file with generalize
VolumeDeltaWaves
Stanislav Korotky
5 (1)
This indicator is an extended implementation of Weis waves. It builds Weis waves on absolute volumes (which is the classical approach) or delta of volumes (unique feature) using different methods of wave formation and visualization. It works with real volumes, if available, or with tick volumes otherwise, but also provides an option to use so called "true volume surrogates", as an artificial substitution for missing real volumes (for example, for Forex symbols), which was introduced in correspo
RenkoChartsDemo
Stanislav Korotky
This is a demo version of a non-trading expert , which utilizes so called the custom symbols feature ( available in MQL as well ) to build renko charts based on historical quotes of selected standard symbol and to refresh renko in real-time according to new ticks. Also it translates real ticks to the renko charts, which allows other EAs and indicators to trade and analyze renko. Place the EA on a chart of a working instrument. The lesser timeframe of the source chart is, the more precise resulti
FREE
HZZM
Stanislav Korotky
2.67 (3)
This is an adaptive ZigZag based on modification of  HZZ indicator (original source code is available in this article ). Most important changes in this version: two additional indicator buffers added for zigzag evolution monitoring - they show cross signs at points where zigzag direction first changes; zigzag range (H) autodetection on day by day basis; time-dependent adjustment of zigzag range. Parameters: H - zigzag range in points; this parameter is similar to original HZZ, but it can take 0
FREE
Most of traders use resistance and support levels for trading, and many people draw these levels as lines that go through extremums on a chart. When someone does this manually, he normally does this his own way, and every trader finds different lines as important. How can one be sure that his vision is correct? This indicator helps to solve this problem. It builds a complete set of virtual lines of resistance and support around current price and calculates density function for spatial distributi
ADXS
Stanislav Korotky
5 (3)
Ever wondered why standard ADX is made unsigned and what if it would be kept signed? This indicator gives the answer, which allows you to trade more efficient. This indicator calculates ADX values using standard formulae, but excludes operation of taking the module of ADX values, which is forcedly added into ADX for some reason. In other words, the indicator preserves natural signs of ADX values, which makes it more consistent, easy to use, and gives signals earlier than standard ADX. Strictly s
ADXSignal
Stanislav Korotky
Classical ADX revamped to provide faster and more solid trading signals. This indicator calculates ADX values using standard formulae, but excludes operation of taking the module of ADX values, which is forcedly added into ADX for some reason. In other words, the indicator preserves natural signs of ADX values, which makes it more consistent, easy to use, and gives signals earlier than standard ADX. Strictly speaking, any conversion to an absolute value destroys a part of information, and it mak
Comparator
Stanislav Korotky
4.14 (7)
This indicator compares the price changes during the specified period for the current symbol and other reference symbol. It allows to analyze the similar movements of highly correlated symbols, such as XAUUSD and XAGUSD, and find their occasional convergences and divergences for trading opportunities. The indicator displays the following buffers: light-green thick line - price changes of the current symbol for TimeGap bars; light-blue thin line - price changes of the reference symbol ( LeadSymbo
FREE
VolumeDelta
Stanislav Korotky
4.67 (3)
This indicator provides the analysis of tick volume deltas. It calculates tick volumes for buys and sells separately, and their delta on every bar, and displays volumes by price clusters (cells) within a specified bar (usually the latest one). This is a limited substitution of market delta analysis based on real volumes, which are not available on Forex. The indicator displays the following data in its sub-window: light-blue histogram - buy (long) volumes; orange histogram - sell (short) volumes
WalkForwardDemo is an expert adviser (EA) demonstrating how the built-in library WalkForwardOptimizer (WFO) for walk-forward optimization works. It allows you to easily optimize, view and analyze your EA performance and robustness in unknown trading conditions of future. You may find more details about walk-forward optimization in Wikipedia . Once you have performed optimization using WFO, the library generates special global variables (saved in an "archived" file with GVF-extension) and a CSV-f
FREE
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker, but in real time only, without access to its history. This expert adviser OrderBook History Playback allows you to playback the market book events on the history using files, created by OrderBook Recorder . The exper
FREE
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker in real time. The expert OrderBook Recorder records market book changes and stores them in local files for further usage in indicators and expert adviser, including testing in the tester. The expert stores market book
FREE
PointsVsBars
Stanislav Korotky
This indicator provides a statistical analysis of price changes (in points) versus time delta (in bars). It calculates a matrix of full statistics about price changes during different time periods, and displays either distribution of returns in points for requested bar delta, or distribution of time deltas in bars for requested return. Please, note, that the indicator values are always a number of times corresponding price change vs bar delta occurred in history. Parameters: HistoryDepth - numbe
FREE
ReturnAutoScale
Stanislav Korotky
5 (2)
The indicator calculates running total of linear weighted returns. It transforms rates into integrated and difference-stationary time series with distinctive buy and sell zones. Buy zones are shown in blue, sell zones in red. Parameters: period - number of bars to use for linear weighted calculation; default value - 96; smoothing - period for EMA; default value - 5; mode - an integer value for choosing calculation mode: 0 - long term trading; 1 - medium term trading; 2 - short term trading; defa
FREE
CyclicPatterns
Stanislav Korotky
This indicator shows price changes for the same days in the past. This is a predictor that finds bars for the same days in past N years, quarters, months, weeks, or days (N is 10 by default) and shows their relative price changes on the current chart. Number of displayed buffers and historical time series for comparison is limited to 10, but indicator can process more past periods if averaging mode is enabled (ShowAverage is true) - just specify required number in the LookBack parameter. Paramet
RenkoCharts
Stanislav Korotky
This non-trading expert utilizes so called custom symbols feature ( available in MQL as well ) to build renko charts based on historical quotes of selected standard symbol and to refresh renko in real-time according to new ticks. Also, it translates real ticks to the renko charts, which allows other EAs and indicators to trade and analyze renko. Place RenkoCharts on a chart of a work instrument. The lesser timeframe of the source chart is, the more precise resulting renko chart is, but the lesse
OrderBook Utilities is a script, which performs several service operations on order book hob-files, created by OrderBook Recorder . The script processes a file for work symbol of the current chart. The file date is selected by means of the input parameter CustomDate (if it's filled in) or by the point where the script is dropped on the chart. Depending from the operation, useful information is written into the log, and optionally new file is created. The operation is selected by the input parame
FREE
WalkForwardBuilder MT5
Stanislav Korotky
5 (1)
This script allows performing a walk-forward analysis of trading experts based on the data collected by the WalkForwardLight MT5 library. The script builds a cluster walk forward report and rolling walk forward reports that refine it, in the form of a single HTML page. This script is optional, as the library automatically generates the report immediate after the optimization in the tester is complete. However, the script is convenient because it allows using the same collected data to rebuild th
FREE
Year2Year
Stanislav Korotky
This indicator shows price changes for the same days in past years. D1 timeframe is required. This is a predictor indicator that finds D1 bars for the same days in past 8 years and shows their relative price changes on the current chart. Parameters: LookForward - number of days (bars) to show "future" price changes; default is 5; Offset - number of days (bars) to shift back in history; default is 0; ShowAverage - mode switch; true - show mean value for all 8 years and deviation bounds; false - s
FREE
Mirror
Stanislav Korotky
This indicator predicts rate changes based on the chart display principle. It uses the idea that the price fluctuations consist of "action" and "reaction" phases, and the "reaction" is comparable and similar to the "action", so mirroring can be used to predict it. The indicator has three parameters: predict - the number of bars for prediction (24 by default); depth - the number of past bars that will be used as mirror points; for all depth mirroring points an MA is calculated and drawn on the ch
If you like trading crosses (such as AUDJPY, CADJPY, EURCHF, and similar), you should take into account what happens with major currencies (especially, USD and EUR) against the work pair: for example, while trading AUDJPY, important levels from AUDUSD and USDJPY may have an implicit effect. This indicator allows you to view hidden levels, calculated from the major rates. It finds nearest extremums in major quotes for specified history depth, which most likely form resistence or support levels, a
EvoLevels
Stanislav Korotky
The indicator displays most prominent price levels and their changes in history. It dynamically detects regions where price movements form attractors and shows up to 8 of them. The attractors can serve as resistance or support levels and outer bounds for rates. Parameters: WindowSize - number of bars in the sliding window which is used for detection of attractors; default is 100; MaxBar - number of bars to process (for performance optimization); default is 1000; when the indicator is called from
This is an intraday indicator that uses conventional formulae for daily and weekly levels of pivot, resistance and support, but updates them dynamically bar by bar. It answers the question how pivot levels would behave if every bar were considered as the last bar of a day. At every point in time, it takes N latest bars into consideration, where N is either the number of bars in a day (round the clock, i.e. in 24h) or the number of bars in a week - for daily and weekly levels correspondingly. So,
The indicator draws a histogram of important levels for several major currencies attached to the current cross rates. It is intended for using on charts of crosses. It displays a histogram calculated from levels of nearest extremums of related major currencies. For example, hidden levels for AUDJPY can be detected by analyzing extremums of AUD and JPY rates against USD, EUR, GBP, and CHF. All instruments built from these currencies must be available on the client. This is an extended version of
Filtro:
Mohammed Abdulwadud Soubra
37093
Mohammed Abdulwadud Soubra 2017.06.29 10:24 
 

El usuario no ha dejado ningún comentario para su valoración

Respuesta al comentario
Versión 1.1 2021.11.20
Recompilation.