• Genel bakış
  • İncelemeler
  • Yorumlar
  • Yenilikler

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.

Önerilen ürünler
VR Cub
Vladimir Pastushak
VR Cub , yüksek kaliteli giriş noktaları elde etmenin bir göstergesidir. Gösterge, matematiksel hesaplamaları kolaylaştırmak ve bir pozisyona giriş noktalarının aranmasını basitleştirmek için geliştirildi. Göstergenin yazıldığı ticaret stratejisi uzun yıllardan beri etkinliğini kanıtlamaktadır. Ticaret stratejisinin basitliği, acemi yatırımcıların bile başarılı bir şekilde ticaret yapmasına olanak tanıyan büyük avantajıdır. VR Cub, pozisyon açılış noktalarını ve Kâr Al ve Zararı Durdur hedef sev
Gösterge, tarihsel olanlarla karşılaştırılabilecek güncel teklifler oluşturur ve bu temelde bir fiyat hareketi tahmini yapar. Gösterge, istenen tarihe hızlı navigasyon için bir metin alanına sahiptir. Seçenekler: Sembol - göstergenin göstereceği sembolün seçimi; SymbolPeriod - göstergenin veri alacağı dönemin seçimi; GöstergeRenk - gösterge rengi; Ters - doğru tırnakları tersine çevirir, yanlış - orijinal görünüm; Sonraki, tarihi girebileceğiniz ve 'enter' tuşuna basa
Owl smart levels
Sergey Ermolov
4.63 (54)
MT5 versiyonu  |  FAQ Owl Smart Levels Indicator ,   Bill Williams'ın gelişmiş fraktalları , piyasanın doğru dalga yapısını oluşturan Valable ZigZag ve kesin giriş seviyelerini gösteren   Fibonacci seviyeleri   gibi popüler piyasa analiz araçlarını içeren tek gösterge içinde eksiksiz bir ticaret sistemidir. pazara ve kar elde edilecek yerlere. Stratejinin ayrıntılı açıklaması Gösterge ile çalışma talimatı Baykuş Yardımcısı ticaretinde Danışman Yardımcısı Kullanıcıların özel sohbeti -> Satın ald
Forex scalping indicator that does not redraw its arrows. It works best on M5, M15, M30, H1 timeframes. The default settings are for M5 timeframe. The picture below shows an example of working on the H1 chart with the "period=0.35" parameter value. You can download the demo version and test it yourself. Now we use the signals of this indicator in almost all of our scalping strategies. According to our calculations, the accuracy of its signals is about 95% depending on the timeframe. The indicato
Master Scalping M1 , trendi hızlı ve doğru bir şekilde belirlemek için bir algoritma kullanan yenilikçi bir göstergedir. Gösterge, pozisyonların açılış ve kapanış zamanını hesaplar, gösterge algoritmaları, bir ticarete girmek (bir varlık satın almak veya satmak) için ideal anları bulmanızı sağlar, bu da çoğu tüccar için işlemlerin başarısını artırır. Göstergenin faydaları: Kullanımı kolaydır, çizelgeyi gereksiz bilgilerle aşırı yüklemez. Herhangi bir strateji için bir filtre olarak kullanılabili
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
Bu, bir mumun kapanış fiyatını tahmin eden bir göstergedir. Gösterge öncelikle D1 çizelgelerinde kullanılmak üzere tasarlanmıştır. Bu gösterge hem geleneksel forex ticareti hem de ikili opsiyon ticareti için uygundur. Gösterge, bağımsız bir ticaret sistemi olarak kullanılabilir veya mevcut ticaret sisteminize ek olarak hareket edebilir. Bu gösterge, mevcut mumu analiz ederek mumun gövdesi içindeki belirli güç faktörlerini ve önceki mumun parametrelerini hesaplar. Böylece gösterge, piyasa hareket
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
Xmaster göstergesinin yeni, daha doğru versiyonu. Dünyanın dört bir yanından 200'den fazla tüccar, en etkili ve doğru formülü elde etmek için bu göstergenin farklı kombinasyonlarının 15.000'den fazla testini bilgisayarlarında gerçekleştirdi. Ve burada size doğru sinyalleri gösteren ve yeniden boyamayan "Xmaster formül göstergesi forex yeniden boyama yok" göstergesini sunuyoruz. Bu gösterge aynı zamanda tüccara e-posta ve push yoluyla sinyaller gönderir. Her yeni tick'in gelmesiyle birlikte, 75'
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.
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
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
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
VR Grid
Vladimir Pastushak
4.57 (7)
VR Izgara göstergesi, kullanıcı tanımlı ayarlarla grafiksel bir ızgara oluşturmak için tasarlanmıştır . Standart ızgaradan farklı olarak, VR Izgarası dairesel seviyeler oluşturmak için kullanılır. Kullanıcının seçimine bağlı olarak tur seviyeleri arasındaki adım isteğe bağlı olabilir. Ek olarak, diğer göstergeler ve yardımcı programlardan farklı olarak VR Grid, zaman dilimi değiştiğinde veya terminal yeniden başlatıldığında bile ızgaranın konumunu korur . Ayarlar, set dosyaları, demo versiyonlar
FREE
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 retracement and extension line drawing tool Fibonacci retracement and extended line drawing tool for MT4 platform is suitable for traders who use  golden section trading Advantages: There is no extra line, no too long line, and it is easy to observe and find trading opportunities Trial version: https://www.mql5.com/zh/market/product/35884 Main functions: 1. Multiple groups of Fibonacci turns can be drawn directly, and the relationship between important turning points
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)
The 123 Pattern is one of the most popular, powerful and flexible chart patterns. The pattern is made up of three price points: a bottom, a peak or valley, and a Fibonacci retracement between 38.2% and 71.8%. A pattern is considered valid when the price breaks beyond the last peak or valley, moment at which the indicator plots an arrow, rises an alert, and the trade can be placed. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Clear trading signals Customizable c
ZhiBiCCI MT4
Qiuyang Zheng
5 (1)
[ZhiBiCCI] indicators are suitable for all cycle use, and are also suitable for all market varieties. [ZhiBiCCI] Green solid line is a reversal of bullish divergence. The green dotted line is a classic bullish divergence. [ZhiBiCCI] The solid line to the red is a reverse bearish divergence. The red dotted line is a classical bearish divergence. [ZhiBiCCI] can be set in the parameters (Alert, Send mail, Send notification), set to (true) to send instant signals to the alarm window, email, in
Gösterge, piyasa analizi için en etkili araçlardan biri olan Fibonacci destek ve direnç seviyelerini otomatik olarak hesaplar ve çizer. Hesaplama, seçilen dönem ve zaman çerçevesi için ortalama fiyat verilerini kullanır. Bu süre için minimum ve maksimum hareketin başlangıcı ve sonu olarak alınır. Fibonacci seviyeleri, etrafında fiyat hareketinin yavaşlayabileceği veya tersine dönebileceği potansiyel referans noktalarını görmenizi sağlar, yani bunlar daha fazla hareketi tahmin etmek ve ayrıca sto
Bu ürünün alıcıları ayrıca şunları da satın alıyor
Atomic Analyst
Issam Kassas
5 (3)
Öncelikle belirtmek gerekir ki bu Ticaret Göstergesi Yeniden Çizim Yapmaz, Gecikmez ve Gecikme Göstermez, bu da hem manuel hem de robot ticareti için ideal hale getirir. Kullanıcı kılavuzu: ayarlar, girişler ve strateji. Atom Analisti, Piyasada Daha İyi Bir Avantaj Bulmak İçin Fiyatın Gücünü ve Momentumunu Kullanan PA Fiyat Hareketi Göstergesidir. Gürültüleri ve Yanlış Sinyalleri Kaldırmaya ve Ticaret Potansiyelini Artırmaya Yardımcı Olan Gelişmiş Filtrelerle Donatılmıştır. Birden fazla katma
ŞU ANDA %26 INDIRIMLI Yeni Başlayanlar veya Uzman Tüccarlar için En İyi Çözüm! Bu Gösterge benzersiz, yüksek kaliteli ve uygun fiyatlı bir ticaret aracıdır çünkü bir dizi tescilli özellik ve yeni bir formül ekledik. Sadece BİR grafik ile 28 Forex çifti için Döviz Gücünü okuyabilirsiniz! Yeni bir trendin veya scalping fırsatının tam tetik noktasını belirleyebildiğiniz için ticaretinizin nasıl gelişeceğini hayal edin? Kullanım kılavuzu: buraya tıklayın Bu ilk olan, orijinal! Değersiz bir
Scalper Inside PRO
Alexey Minkov
4.75 (57)
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 profitability. Scalper Inside
TPSpro RFI Levels
Roman Podpora
4.8 (15)
Reversal First Impulse levels (RFI)    INSTRUCTIONS        RUS       -       ENG              R ecommended to use with an indicator   -   TREND PRO -  Version MT5 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. Main functions: Displaying active zones
Trend Punch
Mohamed Hassan
5 (6)
Manual guide:   Click here Starting price of  $88  for the first 25 copies only ( 1  left)! -- Next price is  $176 .  This indicator is unstoppable when combined with our other indicator called  Support & Resistance . After purchase, send us a message and you could get  it  for  FREE as a BONUS! I like to use Trend Punch on XAUUSD on the M1 timeframe!  Introducing Trend Punch , the revolutionary forex trend indicator that will transform the way you trade! Trend Punch is uniquely de
TPSproTREND PrO
Roman Podpora
4.78 (18)
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                R ecommended to use with
Advanced Supply Demand
Bernhard Schweigert
4.92 (311)
CURRENTLY 26% OFF !! Best Solution for any Newbie or Expert Trader! This indicator is a unique, high quality and affordable trading tool because we have incorporated a number of proprietary features and a new formula. With this update, you will be able to show double timeframe zones. You will not only be able to show a higher TF but to show both, the chart TF, PLUS the higher TF: SHOWING NESTED ZONES. All Supply Demand traders will love it. :) Important Information Revealed Maximize the potenti
TrendMaestro
Stefano Frisetti
5 (3)
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.4 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 a
FX Volume
Daniel Stein
4.6 (35)
Sabah Brifingimiz aracılığıyla ayrıntılar ve ekran görüntüleri ile günlük piyasa güncellemenizi alın burada mql5 ve on Telegram ! FX Volume, bir brokerin bakış açısından piyasa duyarlılığı hakkında GERÇEK bir fikir veren İLK ve TEK hacim göstergesidir. COT raporlarından çok daha hızlı bir şekilde, brokerlar gibi kurumsal piyasa katılımcılarının Forex piyasasında nasıl konumlandıklarına dair harika bilgiler sağlar. Bu bilgileri doğrudan grafiğinizde görmek, ticaretiniz için gerçek oyun değiştir
MT4 için Astronomi Göstergesini Tanıtıyoruz: En İleri Göksel Ticaret Arkadaşınız Ticaret deneyiminizi göksel seviyelere yükseltmeye hazır mısınız? MT4 için devrim niteliğindeki Astronomi Göstergemizi arayın. Bu yenilikçi araç karmaşık algoritmaları kullanarak eşsiz astronomik içgörüler ve hassas hesaplamalar sunmak için geleneksel ticaret göstergelerini aşmaktadır. Bilgi Evreni Parmaklarınızın Ucunda: Göksel verilerin hazinelerini açığa çıkaran kapsamlı bir paneli gözlemleyin. Gezegenlerin geo/h
Gann Swing Structure
Kirill Borovskii
5 (1)
This indicator is based on the mathematics of the great trader W.D. Ganna. With its help, you can easily find strong levels by analyzing swings to find the optimal entry point. The indicator works on all instruments and all timeframes. The indicator is fully manual and has control buttons. All you need to do is press the NEW button, a segment will appear, which you can place on any movement, swing or even 1 candle that you want to analyze. By placing the segment, press the OK button. A grid (th
FX Power MT4 NG
Daniel Stein
5 (10)
Sabah Brifingimiz burada mql5 ve on Telegram! FX Power MT4 NG , uzun zamandır çok popüler olan döviz gücü ölçerimiz FX Power'ın yeni neslidir. Peki bu yeni nesil güç ölçer ne sunuyor? Orijinal FX Power hakkında sevdiğiniz her şey PLUS GOLD/XAU güç analizi Daha da hassas hesaplama sonuçları Ayrı ayrı yapılandırılabilir analiz dönemleri Daha da iyi performans için özelleştirilebilir hesaplama limiti Özel çokluDaha fazlasını görmek isteyenler için örnek ayarlar Her grafikte en sevdiğiniz renkler i
Şu anda %20 İNDİRİMLİ! Herhangi bir Acemi veya Uzman Tüccar için En İyi Çözüm! Bu gösterge paneli yazılımı 28 döviz çifti üzerinde çalışıyor. Ana göstergelerimizden 2'sine (Gelişmiş Para Birimi Gücü 28 ve Gelişmiş Para Birimi Dürtüsü) dayanmaktadır. Tüm Forex piyasasına harika bir genel bakış sağlar. Gelişmiş Para Birimi Gücü değerlerini, para birimi hareket hızını ve tüm (9) zaman dilimlerinde 28 Forex çifti için sinyalleri gösterir. Trendleri ve / veya scalping fırsatlarını belirlemek içi
3 Indicators in 1 indicator Strategy based on price action Made specifically for the best forex currency pairs Can be used in the best time frame of the market at a very reasonable price This indicator is basically 3 different indicatos . But we have combined these 3 indicators in 1 indicator so that you can use 3 indicators at the lowest price. All three strategies are based on price action. But based on different trends. Long term, medium term and short term Attributes : No repaintin
Full Forex Market View Dashboard
Opengates Success International
5 (2)
TAM FOREX PİYASASI GÖRÜNÜMÜ Pano Göstergesi Bu, Yatırımcılara piyasada neler olup bittiğine dair tam bir görüş sağlamak için oluşturulmuş özel bir göstergedir. Piyasaya erişmek ve başarılı ticaret yapmak için gereken her türlü bilgiyi görüntülemek için gerçek zamanlı bir veri kullanır. KURULUM: Bu Göstergeyi pencere grafiğinize eklemeden önce, MT4'ünüzün Piyasa İzleme paneline gidin ve ihtiyaç duymadığınız veya ticaret yapmadığınız tüm Döviz çiftlerini GİZLEYİN ve geri kalanını orada bı
ECM Elite Channel is a volatility-based indicator, developed with a specific time algorithm, which consists of finding possible corrections in the market. This indicator shows two outer lines, an inner line (retracement line) and an arrow sign, where the channel theory is to help identify overbought and oversold conditions in the market. The market price will generally fall between the boundaries of the channel. If prices touch or move outside the channel, it's a trading opportunity. The
Tanıtım       Kuantum Trend Keskin Nişancı Göstergesi   , trend tersine dönmeleri belirleme ve ticaret yapma şeklinizi değiştiren çığır açan MQL5 Göstergesi! 13 yılı aşkın ticaret tecrübesine sahip deneyimli tüccarlardan oluşan bir ekip tarafından geliştirilmiştir.       Kuantum Trend Keskin Nişancı Göstergesi       trend dönüşlerini son derece yüksek doğrulukla belirlemenin yenilikçi yolu ile ticaret yolculuğunuzu yeni zirvelere taşımak için tasarlanmıştır. ***Kuantum Trend Keskin Nişancı Gö
ŞU ANDA %31 INDIRIMLI !!! Yeni Başlayanlar veya Uzman Tüccarlar için En İyi Çözüm! Bu gösterge benzersiz, yüksek kaliteli ve uygun fiyatlı bir ticaret aracıdır çünkü bir dizi tescilli özellik ve gizli bir formül ekledik. Yalnızca BİR grafikle 28 döviz çiftinin tümü için Uyarılar verir. Yeni bir trendin veya scalping fırsatının tam tetik noktasını belirleyebildiğiniz için ticaretinizin nasıl gelişeceğini hayal edin! Yeni temel algoritmalar üzerine inşa edilen bu sistem, potansiyel işlemler
Volatility Trend System - girişler için sinyaller veren bir ticaret sistemi. Oynaklık sistemi, trend yönünde doğrusal ve noktasal sinyaller ve ayrıca yeniden çizme ve gecikme olmaksızın trendden çıkmak için sinyaller verir. Trend göstergesi, orta vadeli trendin yönünü izler, yönünü ve değişimini gösterir. Sinyal göstergesi volatilitedeki değişikliklere dayalıdır ve piyasa girişlerini gösterir. Gösterge, çeşitli uyarı türleri ile donatılmıştır. Çeşitli alım satım araçlarına ve zaman dilimler
TakePropips Donchian Trend Pro
Eric John Pajarillaga Aldana
4.82 (17)
TakePropips Donchian Trend Pro   (MT4), Donchian Kanalı'nı kullanarak trendin yönünü otomatik olarak tespit eden ve size ticarete giriş ve çıkış sinyalleri sağlayan güçlü ve etkili bir araçtır! Bu çok işlevli gösterge, bir trend tarayıcı, ticaret sinyalleri, istatistiksel panel, tarayıcı, ticaret oturumları ve uyarı geçmişi panosu içerir. Size ticaret sinyalleri sağlamak ve çizelgeleri analiz ederek saatlerce tasarruf etmenizi sağlamak için tasarlanmıştır! Kullanım kılavuzunu ve kurulum kılavuzu
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
Bands Sniper
Abdulkarim Karazon
5 (1)
Sadece 10 kopya güncel fiyatla bundan sonra fiyatı 90$ olacak Zarf ve tma ile okları temel alan Bands Sniper göstergesi, dinamik destek ve direnci göstermesi ve aynı zamanda alım satım okları olarak giriş sinyalleri vermesi nedeniyle çok amaçlı bir göstergedir. Varsayılan Ayarlar 1 saatlik zaman dilimine dayanmaktadır; kılavuzun tamamı için satın alma sonrasında iletişime geçin. Giriş Kuralları: ALIŞ : 1.Mum Her iki bandın altında kapanır          2.Mum 2 yukarı okla (altın ok v
Currency Strength Exotics
Bernhard Schweigert
4.88 (33)
ŞU ANDA %20 INDIRIMLI! Herhangi bir Acemi veya Uzman Tüccar için En İyi Çözüm! Bu Gösterge, Egzotik Çiftler Emtialar, Endeksler veya Vadeli İşlemler gibi herhangi bir sembol için para birimi gücünü göstermek için uzmanlaşmıştır. Türünün ilk örneğidir, Altın, Gümüş, Petrol, DAX, US30, MXN, TRY, CNH vb. gerçek para birimi gücünü göstermek için 9. satıra herhangi bir sembol eklenebilir. Bu benzersiz, yüksek kaliteli ve uygun fiyatlı bir ticaret aracıdır çünkü bir dizi tescilli özelliği ve yeni
Backtesting Simulator MT4
Diego Arribas Lopez
3.5 (2)
[ MT5 Version ] Backtesting Simulator Are you tired of spending months on demo or live accounts to test your trading strategies? The Backtesting Simulator is the ultimate tool designed to elevate your backtesting experience to new heights. Utilizing Metatrader historical symbol information, it offers an unparalleled simulation of real market conditions. Take control of your testing speed, test ideas quickly or at a slower pace, and witness remarkable improvements in your testing performance. For
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
Tanıtım       Quantum Breakout PRO   , Breakout Bölgeleri ile ticaret yapma şeklinizi değiştiren çığır açan MQL5 Göstergesi! 13 yılı aşkın ticaret deneyimine sahip deneyimli tüccarlardan oluşan bir ekip tarafından geliştirilen   Quantum Breakout PRO   , yenilikçi ve dinamik koparma bölgesi stratejisiyle ticaret yolculuğunuzu yeni zirvelere taşımak için tasarlanmıştır. Kuantum Breakout Göstergesi, size 5 kar hedefi bölgesi ile kırılma bölgelerinde sinyal okları ve kırılma kutusuna dayalı ol
This indicator examines the price structure of fractals of different periods to determine possible reversal points in the market, providing timing to positional traders that already have a fundamental or technical valuation model. Unlike its younger brother, Reversal Fractals , this indicator won't miss reversals because of the period selected, and will find reversal fractals on a zig-zag fashion, ignoring those reversals which do not carry enough momentum to start a sustained price movement. [
Sacrament
owais_saadeh
4.91 (11)
Sacrament mt4- This is an indicator that includes the best basic forex indicators, without redrawing. Based on this data, a signal for sale or purchase is formed. It does not disappear anywhere after the signal, which gives us the opportunity to see the results on the history. It can be used on any currency pair, crypto metals, stocks It is best used on an hourly chart, but other periods are also acceptable. The best results for the period H1,H4,daily If customers have any questions, I w
A personal implementation of Order Blocks, a simple yet effective position trading strategy. The trader should enter the market or look for trades in the direction of the last order block, if the price range has not been breached in the opposite direction of the breakout. Open blocks are not drawn for clarity. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] A bullish open block is the first bullish bar after a fresh market low A bearish open block is the first bear
Bu gösterge paneli, seçilen semboller için ticaret stratejinize bağlı olarak hem ölçeklendirme hem de uzun vadeli modda grafikteki Arz ve Talep bölgelerini keşfeder ve görüntüler. Ek olarak, gösterge tablosunun tarayıcı modu, istediğiniz tüm sembolleri bir bakışta kontrol etmenize ve uygun pozisyonları kaçırmamanıza yardımcı olur / MT5 sürümü Ücretsiz gösterge: Basic Supply Demand Özellikler Birden fazla döviz çiftinde alım satım fırsatlarını görüntülemenize olanak tanıyarak, arz ve tal
Best Currency Strength Indicator
Tumelo Patrick Rakotsoane
4.6 (47)
Advanced Currency Strength Indicator The Advanced Divergence Currency Strength Indicator. Not only it breaks down all 28 forex currency pairs and calculates the strength of individual currencies across all timeframes , but, You'll be analyzing the WHOLE forex market in 1 window (In just 1 minute) . This indicator is very powerful because it reveals the true movements of the market.  It is highly recommended to  analyze charts knowing the performance of individual currencies or the countries ec
Yazarın diğer ürünleri
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
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
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 library OrderBook History Library reads market book state in the past from archive files, created by OrderBook Recorder . The library can be embedded into you
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
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
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. 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
Comparator
Stanislav Korotky
4.25 (8)
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
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
VolumeDelta
Stanislav Korotky
4.67 (3)
This indicator provides the analysis of tick volume deltas. It calculates tick volumes for buys and sells separately, and their delta on every bar, and displays volumes by price clusters (cells) within a specified bar (usually the latest one). This is a limited substitution of market delta analysis based on real volumes, which are not available on Forex. The indicator displays the following data in its sub-window: light-blue histogram - buy (long) volumes; orange histogram - sell (short) volumes
WalkForwardDemo is an expert adviser (EA) demonstrating how the built-in library WalkForwardOptimizer (WFO) for walk-forward optimization works. It allows you to easily optimize, view and analyze your EA performance and robustness in unknown trading conditions of future. You may find more details about walk-forward optimization in Wikipedia . Once you have performed optimization using WFO, the library generates special global variables (saved in an "archived" file with GVF-extension) and a CSV-f
FREE
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
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
3.25 (4)
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
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
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
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
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
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
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
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,
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
The indicator draws a histogram of important levels for several major currencies attached to the current cross rates. It is intended for using on charts of crosses. It displays a histogram calculated from levels of nearest extremums of related major currencies. For example, hidden levels for AUDJPY can be detected by analyzing extremums of AUD and JPY rates against USD, EUR, GBP, and CHF. All instruments built from these currencies must be available on the client. This is an extended version of
StatBars
Stanislav Korotky
The indicator provides a statistic histogram of estimated price movements for intraday bars. It builds a histogram of average price movements for every intraday bar in history, separately for each day of week. Bars with movements above standard deviation or with higher percentage of buys than sells, or vice versa, can be used as direct trading signals. The indicator looks up current symbol history and sums up returns on every single intraday bar on a specific day of week. For example, if current
Filtrele:
İnceleme yok
İncelemeye yanıt
Sürüm 1.1 2021.11.20
Recompilation.