• Übersicht
  • Bewertungen
  • Diskussion
  • Neue Funktionen

SOMFX1

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 generalized data about most characteristic price figures which can be used for next bars prediction either in a built-in sub-window (using this SOMFX1 indicator), or directly on the chart using SOMFX1Predictor;
  • SOMFX1 - this 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.

All of these is covered in details below.

This is just a warning to make it clear: this indicator requires a file built by SOMFX1Builder. So, you need either to install SOMFX1Builder and generate the file in accordance to your needs, or ask a friend (who's having this script) to build the file for you and send it to you.


Introduction

What are candle patterns? They are distinctive figures formed by consecutive bars, which were "discovered" many years ago by traders' community and got funny names. There are no strong evidences that the patterns do work as expected - if not always, but at least in statistically significant majority of cases. Also it's not guaranteed that all the named patterns do cover all regularities of the modern market, especially taking into account that most of them were created in the era of old good comfortable markets. For example, if a chart would be shifted by a half bar period (say H4 moved by 2 hours), existing patterns would vanish and completely new patterns would be formed on other bars. Doesn't this mean that every conventional pattern should have several different representations? But wait, then the "hammer" wouldn't look like a hammer and the "star" wouldn't resemble a star? This seems breaking all artificial beauty of the candle pattern approach, but this is fair.

Patterns are just an easy to grasp visual representation of price changes, usually deltas between close prices of bars. These are not just candle patterns, but, generally speaking, price patterns.

And today we need, and most importantly we have an opportunity for a new scientific approach in price patterns recognition.

This indicator provides you with techology of neural networks, specifically Self-Orgranizing Map (SOM). As any other neural network, SOM consists of neurons - elementary calculation units. In SOM, every neuron can hold an information about a single price pattern. The reason why it is called SOM is that the network automatically compares different price patterns and places them on a 2-dimentional map, where neighbouring units (patterns) are similar to each other, and more distant units are less similar. Every price change can then be mapped to a best matching unit (BMU, see below), so, having a starting part of a pattern, it's possible to get the ending from the unit.

You may find additional information about SOM either on the mql5.com site itself (for example, here is an article on this subject) or on the Internet, starting from the Wikipedia's article.


How it works

The indicator interface comprises of two parts. On the main chart, the map itself and auxiliary controls are displayed. In the sub-window price samples and predictions are shown. The samples and predictions are normalized (to [-1, +1] range) delta values between prices in consecutive bars. The samples form green line. The prediction is denoted by light-blue thick line (it has the length of PredictionBars bars and can continue in future). At the right side of patters (i.e. somewhere in future) you may see a bunch of lines of PatternSize bars length. They show a structure of currently selected best matching unit (find details below).

You need to train the network on some period of time in history (using SOMFX1Builder). This is a lengthy process but it can be - probably (why  probably? - see below) - run only once. After the training you get the trained network, which can analyse and predict new price movements on the fly. Please consult with the SOMFX1Builder documentation for further details on network training.

When the training is finished, you'll get a file with candlemap extension (SOMFX1Builder creates such files in the Files subdirectory of your MQL4 folder). You should specify the name of the file in the indicator settings, and the indicator will show 2 square maps on the main chart. The left square denotes current activity of every neuron: neurons with high excitation are shown in red, and neurons with high inhibition are shown in blue. In other words, the redder the cell on the map, the better it fits to current price sample. The current price sample is a fragment of delta values taken from PatternSize bars to the left of the vertical dotted yellow line named "FromPastToFuture". You can drag the line to an arbitrary position, and the indicator will read current sample at this position, and run SOM against this sample, so you'll see new activation of the map and prediction.

Please note, that the prediction starts at current bar, that is current bar is also predicted. This is done because current bar is usually unfinished and requires prediction as well. Moreover, if we could take currently unfinished bar into consideration, it will make prediction inconsistent (unstable during current bar lifetime). Due to the fact that current bar is predicted, light-blue thick line with prediction starts 1 bar left to the vertical line "FromPastToFuture" - it shows how price should change on the current bar.

The second - right-side - square map displays "population density" of every unit, that is its color denotes number of samples occured in the trainig data, which are landed to corresponding cell and formed corresponding price pattern. Again red color means relatively high population, and blue - relatively small. Gray cells do not have corresponding samples in training data.

When you move the line "FromPastToFuture" from bar to bar, the map chooses a unit which fits the price sample the best, and marks the winning unit with round dot. This unit is called best matching unit. Its weights are shown as red line in the right part of the sub-window. This is a specific price pattern automatically discovered and generalized by the network. If the unit has some samples mapped to it, an average price changes for all these samples are shown by orange line, and variance - in two gray lines above and below it.

This is exactly the information which makes prediction possible: when a new price changes fit beginning of some pattern (say, 4 bars of a 5-bars pattern), the ending of the pattern gives most probable continuation (the 5-th bar in the example).

When the line "FromPastToFuture" is moved, not only prediction and best matching unit structure are shown. In addition to this, indicator highlights price samples bound to the BMU in blue. This looks like blue fragments which partially overlay green curve with price deltas. Please bear in mind, that the samples may overlap each other. For example if pattern length is 4, and one sample starts at bar number 10, and another one starts at bar number 12, they will have 2 common bars. In such case, 6 consecutive bars will be highlighted in a row, and the samples are visually inseparable.

It's possible to drag a cell from the right-side square map to somewhere. When it happens indicator shows the price pattern and average values for this specific cell. (The cell itself will be moved back into the map automatically in the next moment.) This feature allows you to investigate patterns in the map.


Parameters

  • LearnStart - number of a bar in history, or an exact date and time of the bar (in the format "YYYY.MM.DD HH:MM"), where training data began; this parameter is a string, whick allows you to enter either a number or a date; this parameter is used here not for training but for building actual price samples (corresponding to the network), which is important if UseAverage parameter is true (see below), as well as for map "population" visualization; default value - 5001; if you enter an automatically generated filename in NetFileName parameter (see below), the indicator parses the name and overrides this parameter by a value from the name; in other words, this parameter has no effect when an automatically generated filename is specified in NetFileName parameter;
  • LearnStop - number of a bar in history, or an exact date and time of the bar (in the format "YYYY.MM.DD HH:MM"), where training data ended; this parameter is also a string; default value - 1; this parameter is used here not for training but for building actual price samples (corresponding to the network), which is important if UseAverage parameter is true, and for map "population" visualization; this parameter has no effect when an automatically generated filename is specified in NetFileName parameter;
  • PatternSize - number of bars in a single pattern; default value - 5; this parameter has no effect when an automatically generated filename is specified in NetFileName parameter;
  • GridSize - dimentions of the map; this is a number of cells/units on X and Y axes; allowed values: 3 - 50; default value - 7; this parameter has no effect when an automatically generated filename is specified in NetFileName parameter;
  • PredictionBars - number of bars to predict; default value - 10; please note, that every next bar is predicted with less accuracy than previous, because unavoidable errors on every bar are accumulated;
  • UseAverage - this is a special mode switch; when disabled (false, default value) predictions are made using weights of winning neurons, that is they are product of the map; when enabled (true), predictions are based on average values of all price samples mapped into winning neuron; this requires not only the map, but the training data as it was used for the network training, which is why it's important to specify exact date and time where sampling has been made during training; you may "play" with this parameter to obtain better results: using weight vectors is the conventional approach, but using averages adds more data awareness - for example, you can take into account a variance value for estimating prediction accuracy;
  • PriceType - price type to use for sampling; default value - close; this parameter has no effect when an automatically generated filename is specified in NetFileName parameter;
  • AddInvertedPrice - enable/disable a mode, when inverted price movements are added into the samples; default - true;
  • NetFileName - a filename of the trained neural network generated by SOMFX1Builder script; if the name was generated automatically, it comprises several necessary components to restore most of abovementioned parameters, so a user may fill in only this one parameter; the filename structure is the following: 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; P - PriceType;
  • CellSize - size of a single unit visualized on the chart; default value - 20, which is ok for maps with dimentions up to 10; for larger map choose smaller cell size, or otherwise the two map views will overlap;
  • PrintData - enable/disable debug logging; default - false;

If some of parameters are incorrect, the indicator prints an error message into the log. For example, you can load a map only on a chart with the same symbol and timeframe that was used during training.

Empfohlene Produkte
Der Indikator erstellt aktuelle Notierungen, die mit historischen verglichen werden können, und auf dieser Grundlage eine Preisbewegungsprognose erstellen. Der Indikator verfügt über ein Textfeld zur schnellen Navigation zum gewünschten Datum. Optionen: Symbol - Auswahl des Symbols, das der Indikator anzeigen soll; SymbolPeriod - Auswahl des Zeitraums, aus dem der Indikator Daten aufnimmt; IndicatorColor - Indikatorfarbe; HorisontalShift - Verschiebung der vom Indikator gezeichnet
Owl smart levels
Sergey Ermolov
4.63 (54)
MT5-Version  |  FAQ Der   Owl Smart Levels Indikator   ist ein komplettes Handelssystem innerhalb eines Indikators, der so beliebte Marktanalysetools wie die   fortschrittlichen Fraktale von Bill Williams , Valable ZigZag, das die   richtige Wellenstruktur   des Marktes aufbaut, und   Fibonacci-Levels , die die genauen Einstiegslevels markieren, enthält in den Markt und Orte, um Gewinne mitzunehmen. Detaillierte Strategiebeschreibung Anleitung zur Verwendung des Indikators Berater-Assistent im
Master Scalping M1 ist ein innovativer Indikator, der einen Algorithmus verwendet, um den Trend schnell und genau zu bestimmen. Der Indikator berechnet den Zeitpunkt zum Öffnen und Schließen von Positionen, die Indikatoralgorithmen ermöglichen es Ihnen, die idealen Zeitpunkte für den Einstieg in einen Handel (Kauf oder Verkauf eines Vermögenswerts) zu finden, was den Erfolg von Transaktionen für die meisten Händler erhöht. Vorteile des Indikators: Einfach zu bedienen, überladen Sie das Diagramm
Trend PA
Mikhail Nazarenko
5 (3)
The Trend PA indicator uses   Price Action   and its own filtering algorithm to determine the trend. This approach helps to accurately determine entry points and the current trend on any timeframe. The indicator uses its own algorithm for analyzing price changes and Price Action. Which gives you the advantage of recognizing, without delay, a new nascent trend with fewer false positives. Trend filtering conditions can be selected in the settings individually for your trading style. The indicator
Trendiness Index
Libertas LLC
5 (3)
"The trend is your friend" is one of the best known sayings in investing, because capturing large trendy price movements can be extremely profitable. However, trading with the trend is often easier said than done, because many indicators are based on price reversals not trends. These aren't very effective at identifying trendy periods, or predicting whether trends will continue. We developed the Trendiness Index to help address this problem by indicating the strength and direction of price trend
Infinity Trend Pro
Yaroslav Varankin
1 (1)
This is a trend indicator without redrawing Developed instead of the binary options strategy (by the color of the Martingale candlestick) Also works well in forex trading When to open trades (binary options) A signal will appear in the place with a candle signaling the current candle It is recommended to open a deal for one candle of the current timeframe M1 and M5 When a blue dot appears, open a deal up When a red dot appears, open a trade down. How to open trades on Forex. When a signal is rec
Cosmic Diviner X Planet
Olena Kondratenko
4 (2)
This unique multi-currency strategy simultaneously determines the strength of trends and market entry points, visualizing this using histograms on the chart. The indicator is optimally adapted for trading on the timeframes М5, М15, М30, Н1. For the convenience of users, the indicator renders the entry point (in the form of an arrow), recommended take profit levels (TP1, TP2 with text labels) and the recommended Stop Loss level. The take profit levels (TP1, TP2) are automatically calculated for
Blahtech Market Profile
Blahtech Limited
4.61 (18)
Was: $249  Now: $99   Market Profile defines a number of day types that can help the trader to determine market behaviour. A key feature is the Value Area, representing the range of price action where 70% of trading took place. Understanding the Value Area can give traders valuable insight into market direction and establish the higher odds trade. It is an excellent addition to any system you may be using. Blahtech Limited presents their Market Profile indicator for the MetaTrader community. Ins
FreqoMaster
Stanislav Korotky
The main idea of this indicator is rates analysis and prediction by Fourier transform. The indicator decomposes exchange rates into main harmonics and calculates their product in future. The indicator shows 2 price marks in history, depicting price range in the past, and 2 price marks in future with price movement forecast. Buy or sell decision and take profit size are displayed in a text label in the indicator window. The indicator uses another indicator as an engine for calculations - FreqoMet
VR Cub
Vladimir Pastushak
VR Cub ist ein Indikator für den Erhalt hochwertiger Einstiegspunkte. Der Indikator wurde entwickelt, um mathematische Berechnungen zu erleichtern und die Suche nach Einstiegspunkten in eine Position zu vereinfachen. Die Handelsstrategie, für die der Indikator geschrieben wurde, hat sich seit vielen Jahren bewährt. Ihr großer Vorteil liegt in der Einfachheit der Handelsstrategie, die es auch unerfahrenen Händlern ermöglicht, erfolgreich damit zu handeln. VR Cub berechnet Positionseröffnungspunkt
Daily Candle Predictor ist ein Indikator, der den Schlusskurs einer Kerze vorhersagt. Der Indikator ist in erster Linie für die Verwendung in D1-Charts gedacht. Dieser Indikator eignet sich sowohl für den traditionellen Devisenhandel als auch für den Handel mit binären Optionen. Der Indikator kann als eigenständiges Handelssystem oder als Ergänzung zu Ihrem bestehenden Handelssystem verwendet werden. Dieser Indikator analysiert die aktuelle Kerze und berechnet bestimmte Stärkefaktoren innerhalb
Title : Market Bias Indicator - Oscillator-Based Trading Tool Introduction : Discover the potential of the "Market Bias Indicator," a revolutionary oscillator-based trading tool designed for precise market analysis. If you're in search of a robust alternative to traditional bias indicators, your quest ends here. Market Bias Indicator offers unparalleled accuracy in identifying market sentiment and is your gateway to confident trading decisions. Recommended Trading Pairs : Market Bias Indicator i
COG LR Osc AM
Andriy Matviyevs'kyy
The presented indicator allows you to determine potential entry points into the market and set protective orders at reasonable levels. This product can be useful for both beginners and experienced traders. The indicator is based on calculation methods proven by time and practicing traders. The indicator is calculated in two stages: At the first stage, linear regression (LR) of the selected price type is determined for a given number of chart periods. At the second stage, the obtained data is p
Trade with Gann on your side!! MASTER CIRCLE 360 CIRCLE CHART, originally created by Gann admitted that this is “The Mother of all charts”. It is one of the last studies that this great trader left for us. The numeric tab le is apparently quite simple like all the tables and is based on square numbers, the SQUARE OF 12 and is by evolution, one of the most important square numbers. Here we can find CYCLE, PRICE AND TIME thanks to angles and grades, to show past and future support and resistance.
Forex-Scalping-Indikator, der seine Pfeile nicht neu zeichnet. Es funktioniert am besten in den Zeitrahmen M5, M15, M30, H1. Die Standardeinstellungen sind für den Zeitrahmen M5. Das folgende Bild zeigt ein Beispiel für die Arbeit am H1-Chart mit dem Parameterwert "Periode = 0,35". Sie können die Demoversion herunterladen und selbst testen. Jetzt verwenden wir die Signale dieses Indikators in fast allen unseren Scalping-Strategien. Nach unseren Berechnungen beträgt die Genauigkeit seiner Signal
5 signal in 1  Product     TimeFrame   Recommend   1m-5m recommend  signal   TF  5m    Banks Pro Binary Option is Indicator for binary option Can Use Manaul Trade or Robot on Platform  Mt2Trading  https://www.mt2trading.com/?ref=104    Time Trading   good work  EU session    Recommend  Curency   EUR  GBP USD        careful   AUD JPY      Recommend  Martingale 2-5 Step   Recommend  set profit  2%-5%/Day Setting Brake  News Event High volatility   recommend  15-30 min Have Problem Contract
Trend Scanner
Vladimir Kalendzhyan
4.38 (8)
By purchasing this indicator, you have the right to receive a free copy of one of   my other indicator's or advisor’s!  (All future updates are included. No limits) . To get it , please contact me by  mql5 message ! The Trend Scanner trend line indicator displays the trend direction and its changes. The indicator works on all currency pairs and  timeframes. The indicator simultaneously displays multiple readings on the price chart: the support and resistance lines of the currency pair, the exist
Bintang Binary R2
Anthonius Soruh
5 (2)
Bintang Binary Indicator work all pairs Time Frame : M5 Expaired : 1 Candle No Repaint, No Delay and Alerts Use manual and auto trading  Easy to use Trial Version, Rent Version and Full Version avaliable Trial Version >>> download here  https://www.mql5.com/en/market/product/54602 Trial Version not have Alerts Rent version 1 month, 3 month, 6 month, 9 month, and 1 years Auto trading is better use MT2 Trading Platform (Contact me for discount 10 % MT2 trading licence) Work good for forex trading
Diese innovative Währung Stärke Messindikator von INFINITY ist ein unverzichtbarer Helfer für Scalper und Händler, die in langen Handel. Das System der Analyse der Stärke / Schwäche der Währungen ist seit langem bekannt und wird auf dem Markt von den führenden Händlern der Welt verwendet. Jeder Arbitrage-Handel kommt nicht ohne diese Analyse aus. Unser Indikator bestimmt leicht die Stärke der zugrunde liegenden Währungen in Bezug aufeinander. Es zeigt Liniendiagramme für alle oder das aktuelle
The Th3Eng PipFinite indicator is based on a very excellent analysis of the right trend direction with perfect custom algorithms. It show the true direction and the best point to start trading. With StopLoss point and Three Take Profit points. Also it show the right pivot of the price and small points to order to replace the dynamic support and resistance channel, Which surrounds the price. And Finally it draws a very helpful Box on the left side on the chart includes (take profits and Stop loss
The indicator detects and displays 3 Drives harmonic pattern (see the screenshot). The pattern is plotted by the extreme values of the ZigZag indicator (included in the resources, no need to install). After detecting the pattern, the indicator notifies of that by a pop-up window, a mobile notification and an email. The indicator highlights the process of the pattern formation and not just the complete pattern. In the former case, it is displayed in the contour triangles. After the pattern is com
Insider Scalper Binary This tool is designed to trade binary options. for short temporary spends. to make a deal is worth the moment of receiving the signal and only 1 candle if it is m1 then only for a minute and so in accordance with the timeframe. for better results, you need to select well-volatile charts.... recommended currency pairs eur | usd, usd | jpy .... the indicator is already configured, you just have to add it to the chart and trade .... The indicator signals the next can
The indicator displays the data of the Stochastic oscillator from a higher timeframe on the chart. The main and signal lines are displayed in a separate window. The stepped response is not smoothed. The indicator is useful for practicing "manual" forex trading strategies, which use the data from several screens with different timeframes of a single symbol. The indicator uses the settings that are identical to the standard ones, and a drop-down list for selecting the timeframe. Indicator Parame
Distinctive
Tatiana Savkevych
Distinctive is a forex trending arrow indicator for identifying potential entry points. I like it, first of all, because it has a simple mechanism of work, adaptation to all time periods and trading tactics. Created on the basis of a regression channel with filters. Plotting the Lawrence indicator signals on a price function chart using a mathematical approach. How it works - when the price breaks out in the overbought / oversold zone (channel levels), a buy or sell signal is generated. Every
Fibonacci-Erweiterung und Retracement-Analyse-Tool Fibonacci-Retracing- und Extended-Line-Tools für die MT4-Plattform, ideal für Trader, die die und den Golden Section-Handel nutzen Hauptmerkmale: 1. Sie können mehrere Sätze von Fibonacci-Retracements direkt zeichnen, und die Beziehung zwischen wichtigen Rückkehrpunkten ist auf einen Blick ersichtlich. 2. Kann Fibonacci-Erweiterungen zeichnen 3. Das Fibonacci-Foldback und die Verlängerung der Linie können nach links und nach rechts zu
The main idea of this indicator is rates analysis and prediction by Fourier transform. Indicator decomposes exchange rates into main harmonics and calculates their product in future. You may use the indicator as a standalone product, but for better prediction accuracy there is another related indicator - FreqoMaster - which uses FreqoMeterForecast as a backend engine and combines several instances of FreqoMeterForecast for different frequency bands. Parameters: iPeriod - number of bars in the ma
PZ 123 Pattern
PZ TRADING SLU
3.75 (4)
Das 123-Muster ist eines der beliebtesten, leistungsstärksten und flexibelsten Diagrammmuster. Das Muster besteht aus drei Preispunkten: einem Boden, einem Gipfel oder Tal und einem Fibonacci-Retracement zwischen 38,2% und 71,8%. Ein Muster gilt als gültig, wenn der Preis jenseits des letzten Gipfels oder Tals abbricht, in dem der Indikator einen Pfeil zeichnet, einen Alarm auslöst und der Handel platziert werden kann. [ Installationsanleitung | Update-Anleitung | Fehlerbehebung | FAQ | Alle Pr
ZhiBiCCI MT4
Qiuyang Zheng
5 (1)
[ZhiBiCCI] Indikatoren sind für alle Zyklusanwendungen und auch für alle Marktsorten geeignet. [ZhiBiCCI] Die grüne durchgezogene Linie ist eine Umkehrung der bullischen Divergenz. Die grüne gestrichelte Linie ist eine klassische bullische Divergenz. [ZhiBiCCI] Die durchgehende Linie zum Rot ist eine umgekehrte bearishe Divergenz. Die rote gepunktete Linie ist eine klassische bearishe Divergenz. [ZhiBiCCI] kann in den Parametern (Alert, Mail senden, Benachrichtigung senden) eingestellt wer
Der Indikator berechnet und zeichnet automatisch Fibonacci-Unterstützungs- und Widerstandsniveaus - eines der effektivsten Werkzeuge für die Marktanalyse. Die Berechnung verwendet die gemittelten Preisdaten für den ausgewählten Zeitraum und Zeitraum. Das Minimum und das Maximum für diesen Zeitraum gelten als Beginn und Ende der Bewegung. Fibonacci-Niveaus ermöglichen es Ihnen, potenzielle Referenzpunkte zu erkennen, um die sich die Preisbewegung verlangsamen oder umkehren kann, dh sie werden ver
Support and Resistance is a very important reference for trading.  This indicator provides customized support and resistance levels, automatic draw line and play music functions.  In addition to the custom RS, the default RS includes Pivot Point, Fibonacci, integer Price, MA, Bollinger Bands. Pivot Point is a resistance and support system. It has been widely used at froex,stocks, futures, treasury bonds and indexes. It is an effective support resistance analysis system. Fibonacci also known as t
Käufer dieses Produkts erwarben auch
Atomic Analyst
Issam Kassas
5 (1)
Zunächst einmal ist es erwähnenswert, dass dieser Handelsindikator nicht neu malt, nicht neu zeichnet und keine Verzögerung aufweist, was ihn sowohl für manuellen als auch für Roboterhandel ideal macht. Der Atom-Analyst ist ein PA-Preisaktionsindikator, der die Stärke und das Momentum des Preises nutzt, um einen besseren Vorteil auf dem Markt zu finden. Ausgestattet mit fortschrittlichen Filtern, die helfen, Rauschen und falsche Signale zu entfernen, und das Handelspotenzial zu erhöhen. Durch
TPSproTREND PrO
Roman Podpora
5 (15)
TPSpro TRENDPRO  - is a trend indicator that automatically analyzes the market and provides information about the trend and each of its changes, as well as giving signals for entering trades without redrawing! The indicator uses each candle, analyzing them separately. referring to different impulses - up or down impulse. Exact entry points into transactions for currencies, crypto, metals, stocks, indices!  -  Version MT5               DETAILED DESCRIPTION        /       TRADING SETUPS           
Wir stellen vor       Quantum Trend Sniper Indicator   , der bahnbrechende MQL5-Indikator, der die Art und Weise, wie Sie Trendumkehrungen erkennen und handeln, verändert! Entwickelt von einem Team erfahrener Händler mit über 13 Jahren Handelserfahrung,       Quantum Trend Sniper-Indikator       wurde entwickelt, um Ihre Trading-Reise mit seiner innovativen Methode zur Identifizierung von Trendumkehrungen mit extrem hoher Genauigkeit auf ein neues Niveau zu heben. ***Kaufe Quantum Trend Snipe
TPSpro RFI Levels
Roman Podpora
5 (13)
A key element in trading is zones or levels from which decisions to buy or sell a trading instrument are made. Despite attempts by major players to conceal their presence in the market, they inevitably leave traces. Our task was to learn how to identify these traces and interpret them correctly. Reversal First Impulse levels (RFI)   -  Version MT5                INSTRUCTIONS                 RUS                 ENG                                       R ecommended to use with an indicator   -  
DERZEIT 26% RABATT Die beste Lösung für jeden Newbie oder Expert Trader! Dieser Indikator ist ein einzigartiges, qualitativ hochwertiges und erschwingliches Trading-Tool, da wir eine Reihe von proprietären Funktionen und eine neue Formel integriert haben. Mit nur EINEM Chart können Sie die Währungsstärke für 28 Forex-Paare ablesen! Stellen Sie sich vor, wie sich Ihr Handel verbessern wird, weil Sie in der Lage sind, den genauen Auslösungspunkt eines neuen Trends oder einer Scalping-Gelegenh
Derzeit 20% Rabatt! Die beste Lösung für jeden Neueinsteiger oder Expert Händler! Dieses Dashboard arbeitet mit 28 Währungspaaren. Es basiert auf 2 unserer Hauptindikatoren (Advanced Currency Strength 28 und Advanced Currency Impulse). Es bietet einen hervorragenden Überblick über den gesamten Forex-Markt. Es zeigt die Werte der Advanced Currency Strength, die Veränderungsrate der Währungen und die Signale für 28 Devisenpaare in allen (9) Zeitrahmen. Stellen Sie sich vor, wie sich Ihr Hande
Entry Points Pro
Yury Orlov
4.7 (224)
Dies ist ein Indikator für MT4, der genaue Signale für den Einstieg in einen Handel ohne Repainting (Neuzeichnen) liefert. Er kann auf alle Finanzwerte angewendet werden: Forex, Kryptowährungen, Metalle, Aktien, Indizes. Er liefert ziemlich genaue Schätzungen und sagt Ihnen, wann es am besten ist, eine Position zu eröffnen und zu schließen. Sehen Sie sich das Video (6:22) mit einem Beispiel für die Verarbeitung nur eines Signals an, das sich für den Indikator gelohnt hat! Die meisten Händler ver
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
Derzeit 33% Rabatt! Die beste Lösung für jeden Anfänger oder erfahrenen Händler! Dieser Indikator ist ein einzigartiges, qualitativ hochwertiges und erschwingliches Trading-Tool, da wir eine Reihe von proprietären Funktionen und eine neue Formel integriert haben. Mit diesem Update werden Sie in der Lage sein, doppelte Zeitrahmenzonen anzuzeigen. Sie können nicht nur einen höheren TF (Zeitrahmen) anzeigen, sondern sowohl den Chart-TF als auch den höheren TF: SHOWING NESTED ZONES. Alle Supply Dema
XQ Indicator MetaTrader 4
Marzena Maria Szmit
3 (2)
Step into the realm of Forex trading with confidence and precision using XQ, a cutting-edge Forex indicator designed to elevate your trading game to unprecedented heights. Whether you're a seasoned trader or just stepping into the world of currency exchange,   XQ Forex Indicator   empowers you with the insights and signals needed to make informed trading decisions. The signal conditions are a combination of three indicators, and XQ Forex Indicator only display  medium and long-term trends . The
TrendMaestro
Stefano Frisetti
5 (2)
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link: TRENDMAESTRO recognizes a new TREND in the bud, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these data and therefore the moment in which prices have strong probability of f
Präsentation des Miraculous Forex Indikators: Entfesseln Sie die Kraft präzisen Tradings Sind Sie es leid, nach dem besten Forex-Indikator zu suchen, der wirklich herausragende Ergebnisse in allen Zeitebenen liefert? Suchen Sie nicht weiter! Der Miraculous Forex Indikator ist da, um Ihre Trading-Erfahrung zu revolutionieren und Ihre Gewinne auf neue Höhen zu bringen. Basierend auf modernster Technologie und jahrelanger sorgfältiger Entwicklung steht der Miraculous Forex Indikator als Höhepunkt v
FX Power MT4 NG
Daniel Stein
5 (8)
Erhalten Sie Ihr tägliches Marktupdate mit Details und Screenshots über unser Morning Briefing hier auf mql5 und auf Telegram ! FX Power MT4 NG ist die nächste Generation unseres langjährig sehr beliebten Währungsstärkemessers FX Power. Und was bietet dieser Stärkezähler der nächsten Generation? Alles, was Sie am ursprünglichen FX Power geliebt haben PLUS GOLD/XAU-Stärkeanalyse Noch präzisere Berechnungsergebnisse Individuell konfigurierbare Analysezeiträume Anpassbares Berechnungslimit für noc
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
Wir stellen vor       Quantum Breakout PRO   , der bahnbrechende MQL5-Indikator, der die Art und Weise, wie Sie mit Breakout-Zonen handeln, verändert!   Quantum Breakout PRO   wurde von einem Team erfahrener Händler mit über 13 Jahren Handelserfahrung entwickelt und soll Ihre Handelsreise mit seiner innovativen und dynamischen Breakout-Zonen-Strategie auf ein neues Niveau bringen. Der Quantum Breakout Indicator zeigt Ihnen Signalpfeile auf Breakout-Zonen mit 5 Gewinnzielzonen und Stop-Loss
TakePropips Donchian Trend Pro
Eric John Pajarillaga Aldana
4.82 (17)
TakePropips Donchian Trend Pro   (MT4) ist ein leistungsstarkes und effektives Tool, das mithilfe des Donchian-Kanals automatisch die Richtung des Trends erkennt und Ihnen Handelssignale für den Ein- und Ausstieg liefert! Dieser Multifunktionsindikator umfasst einen Trendscanner, Handelssignale, ein statistisches Panel, einen Screener, Handelssitzungen und ein Dashboard für den Verlauf von Warnungen. Es wurde entwickelt, um Ihnen Handelssignale zu liefern und Ihnen Stunden beim Analysieren der C
Scalper Inside PRO
Alexey Minkov
4.75 (55)
SALE NOW! Limited Time Offer! An exclusive indicator that utilizes an innovative algorithm to swiftly and accurately determine the market trend. The indicator automatically calculates opening, closing, and profit levels, providing detailed trading statistics. With these features, you can choose the most appropriate trading instrument for the current market conditions. Additionally, you can easily integrate your own arrow indicators into Scalper Inside Pro to quickly evaluate their statistics and
FX Volume
Daniel Stein
4.6 (35)
Erhalten Sie Ihr tägliches Marktupdate mit Details und Screenshots über unser Morning Briefing hier auf mql5 und auf Telegram ! FX Volume ist der ERSTE und EINZIGE Volumenindikator, der einen ECHTEN Einblick in die Marktstimmung aus Sicht eines Brokers bietet. Es bietet fantastische Einblicke in die Positionierung von institutionellen Marktteilnehmern, wie z.B. Brokern, auf dem Forex-Markt, viel schneller als COT-Berichte. Diese Informationen direkt auf Ihrem Chart zu sehen, ist der wahre Game
Cycle Sniper
Elmira Memish
4.41 (34)
NEW YEAR SALE PRICE FOR LIMITED TIME!!! Please contact us after your purchase and we will send you the complimentary indicators to complete the system Cycle Sniper is not a holy grail but when you use it in a system which is explained in the videos, you will feel the difference. If you are not willing to focus on the charts designed with Cycle Sniper and other free tools we provide, we recommend not buying this indicator. We recommend watching the videos about the indiactor and system before pu
Shepherd Harmonic Pattern
Abdullah Alrai
4.68 (59)
Dieser Indikator erkennt harmonische Muster, die manuell oder automatisch auf dem Chart gezeichnet wurden. Sie können das Benutzerhandbuch unter diesem Link einsehen: Fügen Sie Ihre Bewertung hinzu und kontaktieren Sie uns, um es zu erhalten. Es gibt eine kostenlose Version, um dieses Produkt auf MT4 auszuprobieren. Sie können es verwenden, um Gartley- und Nenstar-Muster zu erkennen: https://www.mql5.com/en/market/product/30181 Sie können die vollständige MT4-Version von kaufen: https://www.mql5
Zunächst einmal ist es wichtig zu betonen, dass dieses Handelssystem ein Nicht-Repainting-, Nicht-Redrawing- und Nicht-Verzögerungsindikator ist, was es ideal für den professionellen Handel macht. Das "Smart Support and Resistance Trading System" ist ein fortschrittlicher Indikator, der für neue und erfahrene Trader entwickelt wurde. Es ermöglicht Tradern Präzision und Vertrauen auf dem Devisenmarkt. Dieses umfassende System kombiniert mehr als 7 Strategien, 10 Indikatoren und verschiedene Ha
RelicusRoad Pro
Relicus LLC
4.78 (139)
Jetzt 147 US -Dollar (nach ein paar Aktualisierungen auf 499 US -Dollar) - Unbegrenzte Konten (PCs oder MACs) RelicusRoad Benutzerhandbuch + Schulungsvideos + Zugang zur privaten Discord-Gruppe + VIP-Status EINE NEUE ART, DEN MARKT ZU BETRACHTEN RelicusRoad ist der weltweit leistungsstärkste Handelsindikator für Forex, Futures, Kryptowährungen, Aktien und Indizes und gibt Händlern alle Informationen und Tools, die sie benötigen, um profitabel zu bleiben. Wir bieten technische Analysen un
Vorstellung des Zeus-Indikators: Ihr ultimatives Werkzeug für den Durchbruch zu profitablen Trades. Dieser Indikator vereinfacht das Trading, indem er die Notwendigkeit für eine tiefgreifende Analyse mit Ausbruchsstrategien beseitigt. Er zeichnet automatisch Zonen basierend auf Ihren voreingestellten Zeitrahmen und schlägt Stop-Loss (SL), Take-Profit (TP) und Trailing-Stop-Levels vor. Der Zeus-Indikator wird Sie umgehend benachrichtigen und Signalpfeile anzeigen, wenn der Preis die Kauf- oder Ve
DERZEIT 31% RABATT! Die beste Lösung für jeden Newbie oder Expert Trader! Dieser Indikator ist ein einzigartiges, qualitativ hochwertiges und erschwingliches Handelsinstrument, da wir eine Reihe von proprietären Funktionen und eine geheime Formel eingebaut haben. Mit nur EINEM Chart liefert er Alerts für alle 28 Währungspaare. Stellen Sie sich vor, wie sich Ihr Handel verbessern wird, weil Sie in der Lage sind, den genauen Auslösepunkt eines neuen Trends oder einer Scalping-Gelegenheit zu e
Wir stellen Ihnen ON Trade Waves Patterns Harmonic Elliot Wolfe vor, einen fortschrittlichen Indikator, der entwickelt wurde, um verschiedene Markt-Muster mithilfe sowohl manueller als auch automatischer Methoden zu erkennen. Hier ist, wie er funktioniert: Harmonische Muster: Dieser Indikator kann harmonische Muster erkennen, die auf Ihrem Chart erscheinen. Diese Muster sind für Trader, die die Theorie des harmonischen Handels praktizieren, wie sie in Scott Carney's Buch "Harmonic Trading vol 1
Up down v6T
Guner Koca
5 (1)
Thise indicator is up down v6  comes with tradingwiev version. purchased people, after installed on terminal ,contact me on mql5  to get BONUS  TradingView version. up-down indicator is no repaint and works all pairs and lower than weekly time frames charts. it is suitable also 1 m charts for all pairs. and hold long way to signal. dont gives too many signals. when red histogram cross trigger line that is up signal.and price probably will down when blue histogram cross trigger line that is dow
Currency Strength Exotics
Bernhard Schweigert
4.88 (33)
Stärke von 8 Währungen plus EIN EXOTISCHES Paar oder Rohstoffe oder Indexe! Jedes Produkt kann als 9. Linie hinzugefügt werden. Fügen Sie Rohstoffe, Indexes oder exotische Währungen hinzu (Gold, Silber, Öl, DAX, US30, MXN, TRY, CNH ...). Eine neue noch nie dagewesene TRADING STRATEGIE  !!! Dieser Indikator ist einzigartig, weil wir eine Reihe von proprietäre Funktionen und neue Formeln eingebaut haben. Es funktioniert für alle Zeitrahmen. Basierend auf neuen zugrunde liegenden Algorithmen ist
Quantum Heiken Ashi PRO MT4
Bogdan Ion Puscasu
4.43 (7)
Wir stellen vor       Quantum Heiken Ashi PRO-   Charts Die Heiken-Ashi-Kerzen wurden entwickelt, um klare Einblicke in Markttrends zu geben und sind bekannt für ihre Fähigkeit, Rauschen herauszufiltern und falsche Signale zu eliminieren. Verabschieden Sie sich von verwirrenden Preisschwankungen und begrüßen Sie eine glattere, zuverlässigere Diagrammdarstellung. Was den Quantum Heiken Ashi PRO wirklich einzigartig macht, ist seine innovative Formel, die traditionelle Candlestick-Daten in leicht
Th3Eng PipFinite PRO Indicator This product is distinct from the Th3Eng PipFinite Original, utilizing a different logic and algorithms. The Th3Eng PipFinite Pro indicator offers analysis of trend directions using custom algorithms. It provides indications of trend direction, entry points, a stop loss point, and three take profit points. The indicator also displays pivot points, dynamic support and resistance channels, and a side-box with detailed current signal information. How to Trade with
This Indicator does not repaint itself at all, it's identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these data and therefore the moment in which prices have strong probability of following a new TREND. CandleBarColorate never misses a beat, he always identifies a new TREND in the bud without error. This indicator facilitates the reading of charts on METATRADER; on a single wi
CONGESTION BREAKOUT PRO This indicator scans the breakout of congestion zones . This indicator unlike any other congestion indicator you will find in the market right now,  it uses an advanced algorithm not peculiar to most traditional congestion indicators available today . The advanced algorithm used to define the congestions  is greatly responsible for the high rate real congestion zones and low rate fake congestion zones spotted by this product. UNDERSTANDING CONGESTION Congestion are
Ultimate Sniper Dashboard
Hispraise Chinedum Abraham
4.84 (25)
Ermäßigt auf $299! Die Preise können in Zukunft steigen! Lesen Sie die Beschreibung unten! Bestes Einstiegssystem für Ultimate Sniper Dashboard: ULTIMATIVE DYNAMISCHE EBENEN. (Bitte überprüfen Sie meine Produkte) Das Ultimate Sniper Dashboard funktioniert NUR auf Live-Märkten aufgrund der MT4 Multicurrency Testlimits. Wir stellen Ihnen das Ultimate-Sniper Dashboard vor! Unser bestes, das sowohl HA-Sniper, MA-Sniper und viele spezielle Modi enthält. Das Ultimate Sniper Dashboard ist ein
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.
RenkoFromRealTicks
Stanislav Korotky
4.67 (3)
This non-trading expert utilizes so called custom symbols feature ( available in MQL API as well) to build renko charts based on history of real ticks of selected standard symbol. RenkoFromRealTicks generates custom symbol quotes, thus you may open many charts to apply different EAs and indicators to the renko. It also transmits real ticks to update renko charts in real time. The generated renko chart uses M1 timeframe. It makes no sense to switch the renko chart to a timeframe other than M1. T
VolumeDeltaBars
Stanislav Korotky
This indicator is a conventional analytical tool for tick volumes changes. It calculates tick volumes for buys and sells separately, and their delta on every bar, and displays volumes by price clusters (cells) within a specified bar (usually the latest one). The algorithm used internally is the same as in the indicator VolumeDeltaMT5 , but results are shown as cumulative volume delta bars (candlesticks). Analogous indicator for MetaTrader 4 exists - CumulativeDeltaBars . This is a limited substi
AutomaticZigZag
Stanislav Korotky
4.67 (3)
This is a non-parametric ZigZag providing 4 different methods of calculation. Upward edge continues on new bars while their `highs` are above highest `low` among previous bars, downward edge continues on next bars while their `lows` are below lowest `high` among previous; Gann swing: upward edge continues while `highs` and `lows` are higher than on the left adjacent bar, downward edge continues while `highs` and `lows` are lower than on the left adjacent bar. Inside bars (with lower `high` and
FREE
Time And Sales Layout indicator shows traded buy and sell volumes right on the chart. It provides a graphical representation of most important events in the time and sales table. The indicator downloads and processes a history of real trade ticks. Depending from selected depth of history, the process may take quite some time. During history processing the indicator displays a comment with progress percentage. When the history is processed, the indicator starts analyzing ticks in real time. The l
CustomVolumeDelta
Stanislav Korotky
4.5 (2)
This indicator displays volume delta (of either tick volume or real volume) encoded in a custom symbol, generated by special expert advisers, such as RenkoFromRealTicks . MetaTrader does not allow negative values in the volumes, this is why we need to encode deltas in a special way, and then use CustomVolumeDelta indicator to decode and display the deltas. This indicator is applicable only for custom instruments generated in appropriate way (with signed volumes encoded). It makes no sense to ap
FREE
SOMFX1Predictor
Stanislav Korotky
If you like trading by candle patterns and want to reinforce this approach by modern technologies, this indicator and other related tools are for you. In fact, this indicator is a part of a toolbox, that includes a neural network engine implementing Self-Organizing Map (SOM) for candle patterns recognition, prediction, and provides you with an option to explore input and resulting data. The toolbox contains: SOMFX1Builder  - a script for training neural networks; it builds a file with generalize
VolumeDeltaWaves
Stanislav Korotky
5 (1)
This indicator is an extended implementation of Weis waves. It builds Weis waves on absolute volumes (which is the classical approach) or delta of volumes (unique feature) using different methods of wave formation and visualization. It works with real volumes, if available, or with tick volumes otherwise, but also provides an option to use so called "true volume surrogates", as an artificial substitution for missing real volumes (for example, for Forex symbols), which was introduced in correspo
RenkoChartsDemo
Stanislav Korotky
This is a demo version of a non-trading expert , which utilizes so called the custom symbols feature ( available in MQL as well ) to build renko charts based on historical quotes of selected standard symbol and to refresh renko in real-time according to new ticks. Also it translates real ticks to the renko charts, which allows other EAs and indicators to trade and analyze renko. Place the EA on a chart of a working instrument. The lesser timeframe of the source chart is, the more precise resulti
FREE
HZZM
Stanislav Korotky
2.67 (3)
This is an adaptive ZigZag based on modification of  HZZ indicator (original source code is available in this article ). Most important changes in this version: two additional indicator buffers added for zigzag evolution monitoring - they show cross signs at points where zigzag direction first changes; zigzag range (H) autodetection on day by day basis; time-dependent adjustment of zigzag range. Parameters: H - zigzag range in points; this parameter is similar to original HZZ, but it can take 0
FREE
Most of traders use resistance and support levels for trading, and many people draw these levels as lines that go through extremums on a chart. When someone does this manually, he normally does this his own way, and every trader finds different lines as important. How can one be sure that his vision is correct? This indicator helps to solve this problem. It builds a complete set of virtual lines of resistance and support around current price and calculates density function for spatial distributi
ADXS
Stanislav Korotky
5 (3)
Ever wondered why standard ADX is made unsigned and what if it would be kept signed? This indicator gives the answer, which allows you to trade more efficient. This indicator calculates ADX values using standard formulae, but excludes operation of taking the module of ADX values, which is forcedly added into ADX for some reason. In other words, the indicator preserves natural signs of ADX values, which makes it more consistent, easy to use, and gives signals earlier than standard ADX. Strictly s
ADXSignal
Stanislav Korotky
Classical ADX revamped to provide faster and more solid trading signals. This indicator calculates ADX values using standard formulae, but excludes operation of taking the module of ADX values, which is forcedly added into ADX for some reason. In other words, the indicator preserves natural signs of ADX values, which makes it more consistent, easy to use, and gives signals earlier than standard ADX. Strictly speaking, any conversion to an absolute value destroys a part of information, and it mak
Comparator
Stanislav Korotky
4.14 (7)
This indicator compares the price changes during the specified period for the current symbol and other reference symbol. It allows to analyze the similar movements of highly correlated symbols, such as XAUUSD and XAGUSD, and find their occasional convergences and divergences for trading opportunities. The indicator displays the following buffers: light-green thick line - price changes of the current symbol for TimeGap bars; light-blue thin line - price changes of the reference symbol ( LeadSymbo
FREE
VolumeDelta
Stanislav Korotky
4.67 (3)
This indicator provides the analysis of tick volume deltas. It calculates tick volumes for buys and sells separately, and their delta on every bar, and displays volumes by price clusters (cells) within a specified bar (usually the latest one). This is a limited substitution of market delta analysis based on real volumes, which are not available on Forex. The indicator displays the following data in its sub-window: light-blue histogram - buy (long) volumes; orange histogram - sell (short) volumes
WalkForwardDemo 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
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
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
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
SOMFX1Builder
Stanislav Korotky
5 (1)
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 pric
FREE
ReturnAutoScale
Stanislav Korotky
5 (2)
The indicator calculates running total of linear weighted returns. It transforms rates into integrated and difference-stationary time series with distinctive buy and sell zones. Buy zones are shown in blue, sell zones in red. Parameters: period - number of bars to use for linear weighted calculation; default value - 96; smoothing - period for EMA; default value - 5; mode - an integer value for choosing calculation mode: 0 - long term trading; 1 - medium term trading; 2 - short term trading; defa
FREE
CyclicPatterns
Stanislav Korotky
This indicator shows price changes for the same days in the past. This is a predictor that finds bars for the same days in past N years, quarters, months, weeks, or days (N is 10 by default) and shows their relative price changes on the current chart. Number of displayed buffers and historical time series for comparison is limited to 10, but indicator can process more past periods if averaging mode is enabled (ShowAverage is true) - just specify required number in the LookBack parameter. Paramet
RenkoCharts
Stanislav Korotky
This non-trading expert utilizes so called custom symbols feature ( available in MQL as well ) to build renko charts based on historical quotes of selected standard symbol and to refresh renko in real-time according to new ticks. Also, it translates real ticks to the renko charts, which allows other EAs and indicators to trade and analyze renko. Place RenkoCharts on a chart of a work instrument. The lesser timeframe of the source chart is, the more precise resulting renko chart is, but the lesse
OrderBook Utilities is a script, which performs several service operations on order book hob-files, created by OrderBook Recorder . The script processes a file for work symbol of the current chart. The file date is selected by means of the input parameter CustomDate (if it's filled in) or by the point where the script is dropped on the chart. Depending from the operation, useful information is written into the log, and optionally new file is created. The operation is selected by the input parame
FREE
WalkForwardBuilder MT5
Stanislav Korotky
5 (1)
This script allows performing a walk-forward analysis of trading experts based on the data collected by the WalkForwardLight MT5 library. The script builds a cluster walk forward report and rolling walk forward reports that refine it, in the form of a single HTML page. This script is optional, as the library automatically generates the report immediate after the optimization in the tester is complete. However, the script is convenient because it allows using the same collected data to rebuild th
FREE
Year2Year
Stanislav Korotky
This indicator shows price changes for the same days in past years. D1 timeframe is required. This is a predictor indicator that finds D1 bars for the same days in past 8 years and shows their relative price changes on the current chart. Parameters: LookForward - number of days (bars) to show "future" price changes; default is 5; Offset - number of days (bars) to shift back in history; default is 0; ShowAverage - mode switch; true - show mean value for all 8 years and deviation bounds; false - s
FREE
Mirror
Stanislav Korotky
This indicator predicts rate changes based on the chart display principle. It uses the idea that the price fluctuations consist of "action" and "reaction" phases, and the "reaction" is comparable and similar to the "action", so mirroring can be used to predict it. The indicator has three parameters: predict - the number of bars for prediction (24 by default); depth - the number of past bars that will be used as mirror points; for all depth mirroring points an MA is calculated and drawn on the ch
If you like trading crosses (such as AUDJPY, CADJPY, EURCHF, and similar), you should take into account what happens with major currencies (especially, USD and EUR) against the work pair: for example, while trading AUDJPY, important levels from AUDUSD and USDJPY may have an implicit effect. This indicator allows you to view hidden levels, calculated from the major rates. It finds nearest extremums in major quotes for specified history depth, which most likely form resistence or support levels, a
EvoLevels
Stanislav Korotky
The indicator displays most prominent price levels and their changes in history. It dynamically detects regions where price movements form attractors and shows up to 8 of them. The attractors can serve as resistance or support levels and outer bounds for rates. Parameters: WindowSize - number of bars in the sliding window which is used for detection of attractors; default is 100; MaxBar - number of bars to process (for performance optimization); default is 1000; when the indicator is called from
This is an intraday indicator that uses conventional formulae for daily and weekly levels of pivot, resistance and support, but updates them dynamically bar by bar. It answers the question how pivot levels would behave if every bar were considered as the last bar of a day. At every point in time, it takes N latest bars into consideration, where N is either the number of bars in a day (round the clock, i.e. in 24h) or the number of bars in a week - for daily and weekly levels correspondingly. So,
Auswahl:
Keine Bewertungen
Antwort auf eine Rezension
Version 1.1 2021.11.20
Recompilation.