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

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. 

Produtos 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 (23)
O painel de negociação Lot by Risk é projetado para negociação manual. Este é um meio alternativo para enviar ordens. A primeira característica do painel é a colocação conveniente de ordens usando linhas de controle. A segunda característica é o cálculo do volume da transação de acordo com um determinado risco, se houver uma linha stop loss. As linhas de controle são definidas usando as teclas de atalho: take profit-tecla T padrão; price-tecla padrão P; stop loss - tecla padrão S;
FREE
FDM Strategy
Paranchai Tensit
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
Um utilitário para definir automaticamente os níveis de equilíbrio, transfere as negociações para o equilíbrio ao passar uma determinada distância. Permite que você minimize os riscos. 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
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 é uma ferramenta de gerenciamento de velocidade de reprodução que permite testes e análises eficientes no Testador de Estratégias. Ele melhora a usabilidade do Testador de Estratégias e pode ser usado como um meio para agilizar o desenvolvimento e avaliação de estratégias de negociação. Características da ferramenta: Controle de velocidade de reprodução: Os usuários podem livremente alterar a velocidade de reprodução no Testador de Estratégias, permitindo avançar rapidamente, acelerar e p
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 is a simple utility that calculates the necessary lots with the risk percentage and the pips of stop loss, before opening positions. The web calculators can be useful in some cases but they are not efficient to open operations in real time. In the trading days, there are few opportunities to open positions and when the opportunity arises, the seconds make the difference. This is not possible with conventional web calculators, since to calculate the size of an operation regarding
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
Os compradores deste produto também adquirem
Trade Assistant MT4
Evgeniy Kravchenko
4.49 (180)
Ajuda a calcular o risco por comércio, a fácil instalação de uma nova encomenda, gestão de encomendas com funções de fecho parcial, trailing stop de 7 tipos e outras funções úteis. Atenção, o aplicativo não funciona no testador de estratégia. Manual, Description, Download demo Função de linha Mostra no gráfico a linha de Abertura, Stop Loss, Take Profit. Com esta função é fácil definir uma nova ordem e ver as suas características adicionais antes da abertura.   Gestão de risco A função de cá
Você acha que em mercados onde o preço pode mudar em uma fração de segundo, colocar os pedidos deve ser o mais simples possível? No Metatrader, cada vez que você deseja abrir uma ordem, você deve abrir uma janela onde você insere o preço de abertura, stop loss e take profit, bem como o tamanho da negociação. Ao negociar nos mercados financeiros, a gestão de capital é essencial para manter seu depósito inicial e multiplicá-lo. Portanto, quando você deseja fazer um pedido, provavelmente se pergunt
Local Trade Copier EA MT4
Juvenille Emperor Limited
5 (77)
Experimente uma cópia de negociação excepcionalmente rápida com o Local Trade Copier EA MT4 . Com sua fácil configuração de 1 minuto, este copiador de negociações permite que você copie negociações entre vários terminais MetaTrader no mesmo computador Windows ou em um Windows VPS com velocidades de cópia ultra rápidas de menos de 0.5 segundos. Seja você um trader iniciante ou profissional, o Local Trade Copier EA MT4 oferece uma ampla gama de opções para personalizá-lo de acordo com suas necess
TradePanel MT4
Alfiya Fazylova
4.91 (85)
Trade Panel é um assistente comercial multifuncional. O aplicativo contém mais de 50 funções projetadas para negociação manual. Permite automatizar a maioria das ações de negociação. Atenção! O aplicativo não funciona no testador de estratégias. Você pode testar o aplicativo em uma conta demo, para isso baixe a versão demo localizada na página de instruções : instrução + versão demo . Principais recursos do aplicativo: Funciona com qualquer instrumento de negociação (Forex, CFD, Futuros e outros
O MT4 para Telegram Signal Provider é uma ferramenta fácil de usar e totalmente personalizável que permite o envio de sinais para o Telegram, transformando sua conta em um provedor de sinais. O formato das mensagens é totalmente personalizável! No entanto, para uso simples, você também pode optar por um modelo predefinido e habilitar ou desabilitar partes específicas da mensagem. [ Demonstração ]   [ Manual ] [ Versão MT5 ] [ Versão Discord ] [ Canal do Telegram ] Configuração Um guia do usuá
Exp COPYLOT CLIENT for MT4
Vladislav Andruschenko
4.66 (68)
Copiadora comercial para MetaTrader 4. Ele copia negociações, posições e pedidos em forex de qualquer conta. É uma das melhores copiadoras comerciais  MT4 - MT4, MT5 - MT4 para a versão COPYLOT MT4  (ou MT4 - MT5 MT5 - MT5 para a versão COPYLOT MT5 ). Versão MT5 Descrição completa +DEMO +PDF Como comprar Como instalar    Como obter arquivos de log    Como testar e otimizar    Todos os produtos da Expforex Versão da copiadora para o terminal MetaTrader 5 ( МТ5 - МТ5, МТ4 - МТ5 ) -  Copylot
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
Trade Manager para ajudá-lo a entrar e sair rapidamente de negociações enquanto calcula automaticamente seu risco. Incluindo recursos para ajudar a evitar negociações excessivas, negociações de vingança e negociações emocionais. As negociações podem ser gerenciadas automaticamente e as métricas de desempenho da conta podem ser visualizadas em um gráfico. Esses recursos tornam este painel ideal para todos os traders manuais e ajudam a aprimorar a plataforma MetaTrader 4. Suporte multilíngue. Vers
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
Trade copier MT4
Alfiya Fazylova
4.66 (29)
Trade Copier é um utilitário profissional projetado para copiar e sincronizar negociações entre contas de negociação. A cópia ocorre da conta / terminal do fornecedor para a conta / terminal do destinatário, instalada no mesmo computador ou vps. Antes de comprar, você pode testar a versão demo em uma conta demo. Versão de demonstração aqui . Instruções completas aqui . Principais funcionalidades e benefícios: Suporta a cópia de MT4> MT4, MT4> MT5, MT5> MT4, incluindo contas "MT5 netting". Os mod
OrderManager MT4
Lukas Roth
4.82 (17)
Apresentando o OrderManager : Uma Ferramenta Revolucionária para MT4 Gerencie suas operações como um profissional com o novo utilitário Order Manager para MetaTrader 4. Projetado com simplicidade e facilidade de uso em mente, o Order Manager permite que você defina e visualize facilmente o risco associado a cada operação, possibilitando tomar decisões informadas e otimizar sua estratégia de trading. Para mais informações sobre o OrderManager, por favor, consulte o manual. [ Manual ] [ Versão MT5
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
Grid Manual MT4
Alfiya Fazylova
4.71 (17)
"Grid Manual" é um painel comercial para trabalhar com uma grade de ordens. O utilitário é universal, possui configurações flexíveis e uma interface intuitiva. Ele trabalha com uma grade de pedidos não apenas na direção da média das perdas, mas também na direção do aumento dos lucros. O trader não precisa criar e manter uma grade de pedidos, tudo será feito pelo ""Grid Manual". Basta abrir um pedido e o "Grid manual" criará automaticamente uma grade de pedidos para ele e trabalhará com ele até q
The News Filter
Leolouiski Gan
5 (17)
Este produto filtra todos os consultores especializados e gráficos manuais durante o horário das notícias, para que você não precise se preocupar com picos de preços repentinos que possam destruir suas configurações de negociação manuais ou negociações realizadas por outros consultores especializados. Este produto também vem com um sistema de gerenciamento de pedidos completo que pode lidar com suas posições abertas e ordens pendentes antes do lançamento de qualquer notícia. Depois de comprar o
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
Assuma o controle de sua carteira forex. Veja instantaneamente onde você está, o que está funcionando e o que está causando dor! VERSÃO MT5 DISPONÍVEL AQUI: https://www.mql5.com/en/market/product/58658 O Painel do Trade Manager foi projetado para mostrar rapidamente onde está cada posição que você tem no mercado cambial atualmente e tornar o gerenciamento de risco e a exposição a moedas mais fáceis de entender. Para os comerciantes que escalam para o mercado gradualmente com várias posições o
O MT4 to Discord Signal Provider é uma ferramenta fácil de usar e totalmente personalizável, projetada para enviar sinais de negociação diretamente para o Discord. Esta ferramenta transforma sua conta de negociação em um provedor de sinais eficiente. Personalize os formatos de mensagens para se adequar ao seu estilo! Para facilitar o uso, selecione entre modelos pré-desenhados e escolha quais elementos da mensagem incluir ou excluir. [ Demo ] [ Manual ] [ Versão MT5 ] [ Versão Telegram ] Confi
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
Copie sinais de qualquer canal do qual seja membro (incluindo privados e restritos) diretamente para o seu MT4.  Esta ferramenta foi projetada com o usuário em mente, oferecendo muitos recursos que você precisa para gerenciar e monitorar as negociações. Este produto é apresentado em uma interface gráfica fácil de usar e visualmente atraente. Personalize suas configurações e comece a usar o produto em minutos! Guia do Usuário + Demonstração  | Versão MT5 | Versão Discord Se você quiser experim
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 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
RedFox Copier Pro
Rui Manh Tien
4.75 (12)
FREE SIGNAL CHANEL:  https://t.me/redfox_daily_forex_signals Time saving and fast execution Whether you’re traveling or sleeping, always know that Telegram To Mt4 performs the trades for you. In other words, Our   Telegram MT4 Signal Trader  will analyze the trading signals you receive on your selected Telegram channels and execute them to your Telegram to MT4 account. Reduce The Risk Telegram To Mt4   defines the whole experience of copying signals from   Telegram signal copier to mt4  p
Trade Assistant GS
Vasiliy Strukov
5 (32)
O painel de negociação é limitado ao gerenciamento de ordens - tanto abertas por meio de botões quanto abertas pelo usuário. Simples e conveniente na coleção. Irá complementar qualquer comprador. Eu recomendo usá-lo em conjunto com o indicador Gold Stuff. Configure a negociação como ordens únicas e construa uma grade com uma distância. Para criar uma grade padrão, basta definir uma distância grande, como 10000. Os resultados em tempo real podem ser vistos aqui. Entre em contato comigo imedi
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
-25% discount ($149 -> $111) Everything for chart Technical Analysis indicator mt4 in one tool Draw your supply demand zone with rectangle and support resistance with trendline and get alerts to mobile phone or email alert -  Risk reward indicator Video tutorials, manuals, DEMO download   here .  Find contacts on my   profile . 1.   Extended rectangles and trendlines Object will be extended to the right edge of the chart when price will draw new candles on chart. This is rectangle extender or
Take a Break
Eric Emmrich
5 (26)
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
Risk Manager for MT4
Sergey Batudayev
4.5 (8)
O Expert Advisor Risk Manager para MT4 é um programa muito importante e, na minha opinião, necessário para todos os traders. Com este Expert Advisor você poderá controlar o risco em sua conta de negociação. O controle de risco e lucro pode ser realizado tanto em termos monetários quanto em termos percentuais. Para que o Expert Advisor funcione, basta anexá-lo ao gráfico de pares de moedas e definir os valores de risco aceitáveis ​​na moeda de depósito ou em % do saldo atual. PROMO BUY 1 GET
Auto Trade Copier
Vu Trung Kien
4.85 (88)
Auto Trade Copie é projetado para copiar negociações entre multi contas/terminais MetaTrader 4 com 100% de precisão. Com esta ferramenta, você pode atuar tanto como um provedor (origem) ou um recebedor (destino). Todas as ações de negociação serão copiadas do fornecedor ao recebedor sem demora. Demo: Versão demonstração para teste pode ser baixado em: https://www.mql5.com/pt/market/product/4904 Referência: Se você precisa copiar entre diferentes locais através da Internet, por favor veja o Tra
Trade Copier Pro
Vu Trung Kien
4.6 (15)
Trade Copier Pro é uma ferramenta poderosa para copiar remotamente comércio entre multi-contas em diferentes locais mais internet. Esta é uma solução ideal para provedor de sinais, que querem compartilhar seu comércio com os outros no mundo todo em suas próprias regras. Um provedor pode copiar comércios de multi-receptores e um receptor pode obter comércio de multi-fornecedores também. Provedor e receptor pode gerenciar sua lista de parceiros com potência sistema de gestão de banco de dados buil
-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
Mais do 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.
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
AutomaticZigZag
Stanislav Korotky
5 (2)
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
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
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
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
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
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. The indicator OrderBook Cumulative Indicator accumulates market book data online and visualizes them on the chart. In addition, the indicator can show the market
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
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
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
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
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
WalkForwardDemo MT5
Stanislav Korotky
4 (2)
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
This is an easy to use signal indicator which shows and alerts probability measures for buys and sells in near future. It is based on statistical data gathered on existing history and takes into account all observed price changes versus corresponding bar intervals in the past. The statistical calculations use the same matrix as another related indicator - PointsVsBars. Once the indicator is placed on a chart, it shows 2 labels with current estimation of signal probability and alerts when signal
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
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
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
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
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
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
ReturnAutoScale
Stanislav Korotky
5 (1)
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
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,
Filtro:
Mohammed Abdulwadud Soubra
36933
Mohammed Abdulwadud Soubra 2017.06.29 10:24 
 

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

Responder ao comentário
Versão 1.1 2021.11.20
Recompilation.