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

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. 

Empfohlene Produkte
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
Dienstprogramm zum automatischen Schließen von Geschäften durch Trailing-Stop-Level. Ermöglicht es Ihnen, das Beste aus Ihrem Gewinn herauszuholen. Erstellt von einem professionellen Trader für Trader. Das Dienstprogramm funktioniert mit allen Market-Orders, die von einem Händler manuell oder mithilfe von Beratern eröffnet wurden. Kann Trades nach magischer Zahl filtern. Das Dienstprogramm kann mit einer beliebigen Anzahl von Aufträgen gleichzeitig arbeiten. MT5-Version https://www.mql5.com/r
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)
Das Lot by Risk Trading Panel ist für den manuellen Handel konzipiert. Dies ist ein alternatives Mittel zum Senden von Aufträgen. Das erste Merkmal des Panels ist die bequeme Orderausstellung mit Hilfe von Kontrolllinien. Das zweite Merkmal ist die Berechnung des Transaktionsvolumens zu einem bestimmten Risiko, wenn eine Stop-Loss-Linie vorhanden ist. Die Kontrolllinien werden mit Hilfe von Hotkeys eingestellt: take profit - die Standardtaste ist T; price – Die Standardtaste ist P; st
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
Auto Breakeven MT4
Vladimir Gribachev
Ein Dienstprogramm zum automatischen Festlegen von Break-Even-Levels, das Trades auf Break-Even überträgt, wenn eine bestimmte Distanz überschritten wird. Ermöglicht Ihnen, Risiken zu minimieren. Erstellt von einem professionellen Trader für Trader. Das Dienstprogramm funktioniert mit allen Market-Orders, die von einem Händler manuell oder mithilfe von Beratern eröffnet wurden. Kann Trades nach magischer Zahl filtern. Das Dienstprogramm kann mit einer beliebigen Anzahl von Aufträgen gleichzeiti
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
Dies ist ein Wiedergabegeschwindigkeitsverwaltungstool, das effizientes Testen und Analysieren im Strategietester ermöglicht. Es verbessert die Benutzerfreundlichkeit des Strategietesters und kann als Mittel zur Straffung der Entwicklung und Bewertung von Handelsstrategien verwendet werden. Funktionen des Tools: Steuerung der Wiedergabegeschwindigkeit: Benutzer können die Wiedergabegeschwindigkeit im Strategietester frei ändern, sodass sie vorwärts spulen, beschleunigen und an jedem Punkt paus
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)
Universeller Expert "WOz" mit integriertem Handelspanel Die Funktionen des EA können im Strategietester im visuellen Modus problemlos getestet werden. Der EA kann im Strategietester echten Handel simulieren und die SL- und TP-Level verschieben.  Der EA verfügt über 5 Betriebsarten:  1. AUTOTRADING automatischer Handelsmodus für ein gesetztes Signal  2. NUR SIGNAL-Modus zum Verfolgen des eingestellten Signals ohne automatischen Handel  3. BEREICHSMODUS Modus für die automatische Platz
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
Käufer dieses Produkts erwarben auch
Trade Assistant MT4
Evgeniy Kravchenko
4.46 (181)
Sie hilft bei der Berechnung des Risikos pro Handel, der einfachen Einrichtung einer neuen Order, der Orderverwaltung mit Teilschließungsfunktionen, Trailing-Stop von 7 Typen und anderen nützlichen Funktionen. Achtung, die Anwendung funktioniert nicht im Strategietester. Manual, Description, Download demo Linienfunktion Zeigt auf dem Chart die Eröffnungslinie, Stop Loss, Take Profit. Mit dieser Funktion ist es einfach, eine neue Order einzurichten und ihre zusätzlichen Eigenschaften vor der
Forex Trade Manager MT4
InvestSoft
4.98 (363)
Denken Sie, dass in Märkten, in denen sich der Preis in Sekundenbruchteilen ändern kann, die Auftragserteilung so einfach wie möglich sein sollte? Wenn Sie im Metatrader eine Order eröffnen möchten, müssen Sie ein Fenster öffnen, in dem Sie den Eröffnungskurs, Stop-Loss und Take-Profit sowie die Größe der Transaktion eingeben müssen. Beim Handel an den Finanzmärkten ist die Verwaltung Ihres Kapitals unerlässlich, um Ihre Ersteinzahlung zu erhalten und zu vervielfachen. Wenn Sie also eine Order
Local Trade Copier EA MT4
Juvenille Emperor Limited
5 (77)
Erleben Sie außergewöhnlich schnelles Trade Copying mit dem Local Trade Copier EA MT4 . Mit seiner einfachen 1-Minuten-Setup können Sie Trades zwischen mehreren MetaTrader-Terminals auf demselben Windows-Computer oder Windows VPS mit blitzschnellen Kopiergeschwindigkeiten von unter 0.5 Sekunden kopieren. Ob Anfänger oder professioneller Trader - der Local Trade Copier EA MT4 bietet eine Vielzahl von Optionen, um ihn an Ihre spezifischen Bedürfnisse anzupassen. Es ist die ultimative Lösung für
TradePanel MT4
Alfiya Fazylova
4.91 (85)
Trade Panel ist ein multifunktionaler Handelsassistent. Die Anwendung enthält mehr als 50 Funktionen, die für den manuellen Handel konzipiert sind. Ermöglicht Ihnen, die meisten Handelsaktionen zu automatisieren. Achtung! Die Anwendung funktioniert im Strategietester nicht. Sie können die Anwendung auf einem Demokonto testen; laden Sie dazu die Demoversion herunter, die Sie auf der Anleitungsseite finden: Anleitung + Demoversion . Hauptfunktionen der Anwendung: Funktioniert mit allen Handelsinst
Trade Manager, der Ihnen hilft, Geschäfte schnell ein- und auszusteigen und gleichzeitig Ihr Risiko automatisch zu berechnen. Einschließlich Funktionen, die Ihnen helfen, Over Trading, Revenge Trading und Emotional Trading zu verhindern. Trades können automatisch verwaltet werden und die Kontoleistungskennzahlen können in einem Diagramm visualisiert werden. Diese Funktionen machen dieses Panel ideal für alle manuellen Händler und tragen zur Verbesserung der MetaTrader 4-Plattform bei. Unterstütz
Exp COPYLOT CLIENT for MT4
Vladislav Andruschenko
4.66 (68)
Handelskopierer für MetaTrader 4. Er kopiert Devisengeschäfte, Positionen und Bestellungen von beliebigen Konten. Es ist eines der besten Handelskopiergeräte  MT4 - MT4, MT5 - MT4 für die Version COPYLOT MT4  (oder MT4 - MT5 MT5 - MT5 für die Version COPYLOT MT5 ). MT5-Version Gesamte Beschreibung   +DEMO +PDF Wie kauft man Wie installiert man     So erhalten Sie Protokolldateien     So testen und optimieren Sie     Alle Produkte von Expforex Kopiererversion für das MetaTrader 5- Terminal
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
Übernehmen Sie die Kontrolle über Ihr Forex-Portfolio. Sehen Sie sofort, wo Sie stehen, was funktioniert und was Ihnen Schmerzen bereitet! MT5-VERSION HIER VERFÜGBAR: https://www.mql5.com/en/market/product/58658 Das Trade Manager Dashboard soll Ihnen auf einen Blick zeigen, wo sich jede Ihrer Positionen auf dem Devisenmarkt derzeit befindet, und das Risikomanagement und das Engagement in Währungen verständlicher machen. Für Händler, die schrittweise mit mehreren Positionen oder diesen Trading
-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
Der MT4 to Telegram Signal Provider ist ein benutzerfreundliches, vollständig anpassbares Tool, das das Senden von Handelssignalen an Telegram ermöglicht und Ihr Konto in einen Signalanbieter verwandelt. Das Format der Nachrichten ist vollständig anpassbar! Für eine einfache Nutzung können Sie jedoch auch eine vordefinierte Vorlage wählen und spezifische Teile der Nachricht aktivieren oder deaktivieren. [ Demo ]   [ Handbuch ] [ MT5-Version ] [ Discord-Version ] [ Telegram-Kanal ] Einrichtung
Grid Manual MT4
Alfiya Fazylova
4.71 (17)
Grid Manual ist ein Trading-Panel zum Arbeiten mit einem Raster von Orders. Das Dienstprogramm ist universell, verfügt über flexible Einstellungen und eine intuitive Benutzeroberfläche. Es arbeitet mit einem Raster von Aufträgen nicht nur in Richtung Verlust, sondern auch in Richtung steigender Gewinne. Der Händler muss kein Orderraster erstellen und pflegen, all dies wird von "Grid Manual" erledigt. Es genügt, eine Order zu eröffnen und das "Grid Manual" erstellt automatisch ein Orderraster daf
Trade copier MT4
Alfiya Fazylova
4.67 (30)
Trade Copier ist ein professionelles Dienstprogramm zum Kopieren und Synchronisieren von Trades zwischen Handelskonten. Das Kopieren erfolgt vom Konto / Terminal des Lieferanten auf das Konto / Terminal des Empfängers, das auf demselben Computer oder vps installiert ist. Vor dem Kauf können Sie die Demoversion auf einem Demokonto testen. Demoversion hier . Vollständige Anweisungen hier . Hauptfunktionalität und Vorteile: Unterstützt das Kopieren von MT4> MT4, MT4> MT5, MT5> MT4, einschließlich M
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
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
ADAM for FTMO 40
Vyacheslav Izvarin
ADAM EA Special Version for FTMO  Our 1st EA created using ChatGPT technology Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Tested on EURUSD and GBPUSD only  Use 15MIN Time Frame Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday For Prop Firms MUST use special Protector  https://www.mql5.com/en/market/product/94887 Signal using ADAM  https://www.mql5.com/en/signals/2190554 --------------------------------------------------------------
CAP Strategy Builder EA
MEETALGO LLC
4.81 (27)
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
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
OrderManager MT4
Lukas Roth
4.63 (19)
Der OrderManager , eine revolutionäre Hilfssoftware für den MT4 Verwalten Sie Ihre Trades wie ein Profi mit der brandneuen Order Manager-Hilfssoftware für MetaTrader 4. Entwickelt mit einem Fokus auf Einfachheit und Benutzerfreundlichkeit, ermöglicht Ihnen der Order Manager, das mit jedem Trade verbundene Risiko mühelos zu definieren und zu visualisieren. So können Sie fundierte Entscheidungen treffen und Ihre Handelsstrategie optimieren. Für weitere Informationen zum OrderManager, konsultieren
News Trapper EA
Noha Mohamed Fathy Younes Badr
5 (6)
Hi, all.  News trapper EA It is an expert for trading very safe expert  put Settings interest rate only or high impact news for Automated Trading on the news of the economic calendar. It shows stable trading during last 10  years. EA doesn't use dangerous technologies like martingale, grid. The Expert is very simple to use. The program contains flexible settings In the terminal settings, you need to add the news site to the list of allowed URLs. Click Tools >Options > Expert Advisors. Check th
Kopieren Sie Signale von jedem Kanal, dem Sie angehören (einschließlich privater und eingeschränkter Kanäle) direkt auf Ihren MT4.  Dieses Tool wurde mit dem Benutzer im Hinterkopf entwickelt und bietet viele Funktionen, die Sie benötigen, um die Trades zu verwalten und zu überwachen. Dieses Produkt wird in einer benutzerfreundlichen und visuell ansprechenden grafischen Benutzeroberfläche präsentiert. Passen Sie Ihre Einstellungen an und starten Sie die Nutzung des Produkts innerhalb weniger Mi
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
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
-25% discount ($149 -> $111) Everything for chart Technical Analysis indicator mt4 in one tool Draw your supply demand zone with rectangle and support resistance with trendline and get alerts to mobile phone or email alert -  Risk reward indicator Video tutorials, manuals, DEMO download   here .  Find contacts on my   profile . 1.   Extended rectangles and trendlines Object will be extended to the right edge of the chart when price will draw new candles on chart. This is rectangle extender or
The 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
Equity Shield
Vladimir Stepanov
4.57 (7)
Der Expert Advisor schützt Ihr Konto vor unerwarteten Verlusten, indem er das Eigenkapital ständig überwacht und die Regeln gemäß den Eingaben in den Parametern befolgt. Wenn die Regeln verletzt werden, schließt der EA alle Trades. Sie können den EA so einstellen, dass er alle Trades bei einem bestimmten Prozentsatz oder Geldverlust schließt oder bei einem bestimmten Prozentsatz oder Geldgewinn schließt. Dieses Dienstprogramm ist sehr nützlich für Prop-Trading-Herausforderungen, um den Draw nie
Trade Assistant GS
Vasiliy Strukov
5 (33)
Das Trading-Panel beschränkt sich auf die Verwaltung von Orders – sowohl geöffnet über Schaltflächen als auch vom Benutzer geöffnet. Einfach und bequem in der Collection. Wird jeden Käufer ergänzen. Ich empfehle, es zusammen mit dem Gold Stuff Indikator zu verwenden. Richten Sie den Handel als Einzelaufträge ein und bauen Sie ein Raster mit Abstand auf. Um ein Standardraster zu erstellen, stellen Sie einfach einen großen Abstand ein, z. B. 10000. Echtzeit-Ergebnisse können hier eingesehen wer
VirtualTradePad mt4 Extra
Vladislav Andruschenko
4.88 (59)
Trading Panel für den Handel mit 1 Klick.  Arbeiten mit Positionen und Aufträgen!  Handeln vom Chart oder von der Tastatur. Mit unserem Trading-Panel können Sie mit einem Klick vom Chart aus handeln und Handelsoperationen 30-mal schneller ausführen als die Standard-MetaTrader-Steuerung. Automatische Berechnungen von Parametern und Funktionen, die einem Händler das Leben erleichtern und einem Händler helfen, seine Handelsaktivitäten viel schneller und bequemer durchzuführen. Grafische Tipps und
The News Filter
Leolouiski Gan
5 (17)
Dieses Produkt filtert alle Expert Advisors und manuelle Charts während der Nachrichtenzeit, sodass Sie sich keine Sorgen um plötzliche Preisschwankungen machen müssen, die Ihre manuellen Handels-Setups oder Trades, die von anderen Expert Advisors eingegeben wurden, zerstören könnten. Dieses Produkt wird auch mit einem vollständigen Order-Management-System geliefert, das Ihre offenen Positionen und ausstehenden Aufträge vor der Veröffentlichung von Nachrichten bearbeiten kann. Sobald Sie The New
Custom Ultimate Sniper Dashboard
Hispraise Chinedum Abraham
5 (2)
Das Custom Ultimate Sniper Dashboard ist ein EA-Upgrade des ursprünglichen Ultimate Sniper Dashboard-Indikators. Er arbeitet mit bis zu 98 verschiedenen Algorithmen, um sicherzustellen, dass er die wahre Natur eines Trends in einer Anlageklasse, mit der Sie arbeiten, einfängt. Es ist eine direkte Antwort auf viele Vorschläge und Ratschläge, die wir von den meisten unserer Kunden über mehrere Monate hinweg erhalten haben.   Diese benutzerdefinierte Version ist vollständig anpassbar. Sie wird
Weitere Produkte dieses Autors
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.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
OrderBook Recorder
Stanislav Korotky
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
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
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
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
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,
Auswahl:
Mohammed Abdulwadud Soubra
37058
Mohammed Abdulwadud Soubra 2017.06.29 10:24 
 

Der Benutzer hat keinen Kommentar hinterlassen

Antwort auf eine Rezension
Version 1.1 2021.11.20
Recompilation.