• Overview
  • Reviews
  • Comments
  • What's new

Murray Math Levels several oktavs

This indicator calculates and displays Murrey Math Lines on the chart. 

The differences from the free version:

It allows you to plot up to 4 octaves, inclusive (this restriction has to do with the limit imposed on the number of indicator buffers in МТ4), using data from different time frames, which enables you to assess the correlation between trends and investment horizons of different lengths.

It produces the results on historical data. A publicly available free version with modifications introduced by different authors, draws the results on history as calculated on the current bar, which prevents it from being used for accurate analysis of the price movement in the past and complicates determination of the possible direction of the price at the current price range. There are versions that show values based on history but I don't know how accurate they are.

The calculated values can be obtained from indicator buffers using the iCustom() function:

  • indicator line with 0 index contains line 4/8 of the octave set by the Р0 variable value selected on a time frame set by the BaseTF_P0 variable with the selection criterion specified by the BaseMGTD_P0 variable.
    Obtaining the value of this level on the zero bar: double p0_4_8 = iCustom(NULL,0,"ivgMMLevls",..list of parameters..,0,0);
    On the previous bar (number N): double p0_4_8_prev = iCustom(NULL,0,"ivgMMLevls",..list of parameters..,0,N); 
  • indicator line with index 1 contains the grid step of the same octave.
    Obtaining the value of this level on the zero bar: double p0_step = iCustom("ivgMMLevls",..list of parameters..,1,0); 
    On the previous bar (number N):  double p0_step_prev = iCustom("ivgMMLevls",..list of parameters..,1,N);   

A similar approach is used to access data of the other octaves:

  • indicator line with index 2 - line 4/8, for octave Р1
  • indicator line with index 3 - grid step, for octave Р1
  • indicator line with index 4 - line 4/8, for octave Р2
  • indicator line with index 5 - grid step, for octave Р2
  • indicator line with index 6 - line 4/8, for octave Р3
  • indicator line with index 7 - grid step, for octave Р3

This is for those who want to use these levels in Expert Advisors.

An example of the script that obtains data for octave Р0 on the zero bar:

input string s0="Latest Bar Number to calculate >= 0 ";
input int StepBack = 0;
input string s01="Culc Oktavs Count - max 4";
input int _pCNT =  4;
input string s1="History Bars Count";
input int BarsCNT =  150;
input string s2 = "Parameters group for configuring";
input string s20 = "Murray Math Diapazone new search algorithm";
input string s21 = "!!! If you are unsure, do not change these settings !";
input int P0 =    8;
input int P1 =   16;
input int P2 =   32;
input int P3 =  128;
input int BaseTF_P0    = 60;
input int BaseTF_P1    = 60;
input int BaseTF_P2    = 60;
input int BaseTF_P3    = 60;
input int BaseMGTD_P0 =  1;
input int BaseMGTD_P1 =  1;
input int BaseMGTD_P2 =  1;
input int BaseMGTD_P3 =  1;
input string s22 = "**** End Of Parameters group for configuring *** ";
input string s3 = "Line Colors adjustment";    
input color  mml_clr_m_2_8 = White;       // [-2]/8
input color  mml_clr_m_1_8 = White;       // [-1]/8
input color  mml_clr_0_8   = Aqua;        //  [0]/8
input color  mml_clr_1_8   = Yellow;      //  [1]/8
input color  mml_clr_2_8   = Red;         //  [2]/8
input color  mml_clr_3_8   = Green;       //  [3]/8
input color  mml_clr_4_8   = Blue;        //  [4]/8
input color  mml_clr_5_8   = Green;       //  [5]/8
input color  mml_clr_6_8   = Red;         //  [6]/8
input color  mml_clr_7_8   = Yellow;      //  [7]/8
input color  mml_clr_8_8   = Aqua;        //  [8]/8
input color  mml_clr_p_1_8 = White;       // [+1]/8
input color  mml_clr_p_2_8 = White;       // [+2]/8
input string s4 = "Line thickness adjustment";  
input int    mml_wdth_m_2_8 = 2;        // [-2]/8
input int    mml_wdth_m_1_8 = 1;        // [-1]/8
input int    mml_wdth_0_8   = 2;        //  [0]/8
input int    mml_wdth_1_8   = 1;        //  [1]/8
input int    mml_wdth_2_8   = 1;        //  [2]/8
input int    mml_wdth_3_8   = 1;        //  [3]/8
input int    mml_wdth_4_8   = 2;        //  [4]/8
input int    mml_wdth_5_8   = 1;        //  [5]/8
input int    mml_wdth_6_8   = 1;        //  [6]/8
input int    mml_wdth_7_8   = 1;        //  [7]/8
input int    mml_wdth_8_8   = 2;        //  [8]/8
input int    mml_wdth_p_1_8 = 1;        // [+1]/8
input int    mml_wdth_p_2_8 = 2;        // [+2]/8
input string s5 = "Font adjustment";  
input int    dT = 7;
input int    fntSize  =  7;
input string s6 = "Latest Bar Marker adjustment";  
input color  MarkColor   = Blue;
input int    MarkNumber  = 217;

int start()
{
    double p0_4_8 = iCustom(NULL,0,"ivgMMLevls",
    s0,StepBack,s01,_pCNT,s1,BarsCNT,
    s2,s20,s21,P0,P1,P2,P3,BaseTF_P0,BaseTF_P1,BaseTF_P2,BaseTF_P3,
    BaseMGTD_P0,BaseMGTD_P1,BaseMGTD_P2,BaseMGTD_P3,s22,
    s3,
    mml_clr_m_2_8,mml_clr_m_1_8,mml_clr_0_8,mml_clr_1_8,mml_clr_2_8,mml_clr_3_8,
    mml_clr_4_8,
    mml_clr_5_8,mml_clr_6_8,mml_clr_7_8,mml_clr_8_8,mml_clr_p_1_8,mml_clr_p_2_8,
    s4,
    mml_wdth_m_2_8,mml_wdth_m_1_8,mml_wdth_0_8,mml_wdth_1_8,mml_wdth_2_8,mml_wdth_3_8,
    mml_wdth_4_8,
    mml_wdth_5_8,mml_wdth_6_8,mml_wdth_7_8,mml_wdth_8_8,mml_wdth_p_1_8,mml_wdth_p_2_8,
    s5,dT,fntSize,s6,MarkColor,MarkNumber,
    0,0); 
    double p0_step = iCustom(NULL,0,"ivgMMLevls",
    s0,StepBack,s01,_pCNT,s1,BarsCNT,
    s2,s20,s21,P0,P1,P2,P3,BaseTF_P0,BaseTF_P1,BaseTF_P2,BaseTF_P3,
    BaseMGTD_P0,BaseMGTD_P1,BaseMGTD_P2,BaseMGTD_P3,s22,
    s3,
    mml_clr_m_2_8,mml_clr_m_1_8,mml_clr_0_8,mml_clr_1_8,mml_clr_2_8,mml_clr_3_8,
    mml_clr_4_8,
    mml_clr_5_8,mml_clr_6_8,mml_clr_7_8,mml_clr_8_8,mml_clr_p_1_8,mml_clr_p_2_8,
    s4,
    mml_wdth_m_2_8,mml_wdth_m_1_8,mml_wdth_0_8,mml_wdth_1_8,mml_wdth_2_8,mml_wdth_3_8,
    mml_wdth_4_8,
    mml_wdth_5_8,mml_wdth_6_8,mml_wdth_7_8,mml_wdth_8_8,mml_wdth_p_1_8,mml_wdth_p_2_8,
    s5,dT,fntSize,s6,MarkColor,MarkNumber,
    1,0); 
    Print("p0_4_8 = ",DoubleToStr(p0_4_8)," | p0_step = ",DoubleToStr(p0_step));
    return(0);
}

To simplify the operation of the indicator, the number of bars of history is limited - the BarsCNT parameter.

 To analyze the behavior of the indicator over the history in the manual mode, there is a shift parameter StepBack, which allows you to draw the specified number of indicator values not only from the current bar (with 0 number).

Attention! This version of the indicator features an improved selection of ranges for plotting octaves.

By default, the indicator is set with minimal differences from the basic calculation algorithm for intraday trading with lines drawn over the hourly range, which allows you to properly use it for all intrahourly ranges. If it is necessary to use the indicator on senior time frames, the current chart time frame will be selected automatically. Alternatively, you can manually set the desired time frame, being higher than the current chart time frame.

Please modify the default parameters only if you know exactly what you are doing. The default parameters should be optimal for most trading strategies.

Recommended products
Binary Options Support Resistance Indicator This indicator is designed for binary options trading and effectively shows retracements from support and resistance levels. Signals appear on the current candle. A red arrow pointing downwards indicates a potential selling opportunity, while a blue arrow pointing upwards suggests buying opportunities. All that needs adjustment is the color of the signal arrows. It is recommended to use it on the M1-M5 timeframes as signals are frequent on these timef
VR Cub
Vladimir Pastushak
VR Cub is an indicator for getting high-quality entry points. The indicator was developed to facilitate mathematical calculations and simplify the search for entry points into a position. The trading strategy for which the indicator was written has been proving its effectiveness for many years. The simplicity of the trading strategy is its great advantage, which allows even novice traders to successfully trade with it. VR Cub calculates position opening points and Take Profit and Stop Loss targe
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
Introduction It is common practice for professional trades to hide their stop loss / take profit from their brokers. Either from keeping their strategy to the themselves or from the fear that their broker works against them. Using this indicator, the stop loss / take profit points will be drawn on the product chart using the bid price. So, you can see exactly when the price is hit and close it manually.  Usage Once attached to the chart, the indicator scans the open orders to attach lines fo
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
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
Gvs Undefeated Trend   indicator is designed for trend and signal trading. This indicator generates trend signals.  It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators.  You can only trade with this indicator. The generated signals are displayed on the graphical screen.  Thanks to the alert features you ca
Indicator for binary options arrow is easy to use and does not require configuration works on all currency pairs, cryptocurrencies buy signal blue up arrow sell signal red down arrow tips do not trade during news and 15-30 minutes before their release, as the market is too volatile and there is a lot of noise it is worth entering trades one or two candles from the current period (recommended for 1 candle) timeframe up to m 15 recommended money management fixed lot or fixed percentage of the depo
Atomic Analyst
Issam Kassas
5 (1)
First of all Its worth emphasizing here that this Trading Indicator is   Non-Repainting ,   Non-Redrawing   and   Non-Lagging   Indicator, Which makes it ideal from both manual and robot trading.  The Atomic Analyst  is a PA Price Action Indicator that uses Strength and Momentum of the price to find a better edge in the market. Equipped with Advanced filters which help remove noises and false signals, and Increase Trading Potential. Using Multiple layers of complex Indicators, the Atomic Anal
Good Signal
Yaroslav Varankin
The indicator is designed for binary options and short-term transactions on Forex To enter a trade when a signal appears blue up arrow buy red down arrow sell signal For Forex enter on a signal exit on the opposite signal or take profit For binary options Enter on 1 candle, if the deal goes negative, set a catch on the next candle Works on all timeframes If you apply a filter like Rsi, you will get a good reliable strategy.. The algorithm is at the stage of improvement and will be further develo
Owl smart levels
Sergey Ermolov
4.63 (54)
MT5 version  |  FAQ The Owl Smart Levels Indicator  is a complete trading system within the one indicator that includes such popular market analysis tools as  Bill Williams' advanced fractals , Valable ZigZag which builds  the correct wave structure  of the market, and  Fibonacci levels  which mark the exact levels of entry into the market and places to take profits. Detailed description of the strategy Instructions for working with the indicator Advisor-assistant in trading Owl Helper Private
Night ghost
Dmitriy Kashevich
Night Ghost - Arrow indicator for binary options. This is a reliable assistant to you in the future! - No redrawing on the chart -Works great on EUR/USD currency pairs! -Indicator accuracy up to 90% (Especially at night) -No long setup required (Perfectly set up for Binary Options) - Not late signals - The appearance of a signal on the current candle -Perfect for M1 period (No More!) - Eye-friendly candle color (Red and Blue) -Installed Alert Working with it: - Blue arrow
Trend Bilio - an arrow indicator without redrawing shows potential market entry points in the form of arrows of the corresponding color: upward red arrows suggest opening a buy, green down arrows - selling. The entrance is supposed to be at the next bar after the pointer. The arrow indicator Trend Bilio visually "unloads" the price chart and saves time for analysis: no signal - no deal, if an opposite signal appears, then the current deal should be closed. It is Trend Bilio that is considered
Pro Magic Signal   indicator is designed for signal trading. This indicator generates trend signals.  It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators.  The indicator certainly does not repaint. The point at which the signal is given does not change.  Thanks to the alert features you can get the signals
Chart Patterns Detect 15 patterns (Ascending Triangle, Descending Triangle, Rising Wedge, Falling Wedge, Bullish Flag, Bearish Flag, Bullish Rectangle, Bearish Rectangle Symmetrical triangle, Head and Shoulders, Inverted Head and Shoulders, Triple top, Triple Bottom, Double Top, Double Bottom) Use historical data to calculate the probability of each pattern to succeed (possibility to filter notification according to the chance of success) gives graphic indication about the invalidation level and
Credible Cross System   indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. The indicator works based on instant price movements. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator certainly does not repaint. The point at which the signal is given does not
PABT Pattern Indicator - it's classical system one of the signal patterns. Indicator logic - the Hi & Lo of the bar is fully within the range of the preceding bar, look to trade them as pullback in trend. In the way if indicator found PABT pattern it's drawing two lines and arrow what showing trend way.  - First line - it's entry point and drawing at: 1. On the high of signal bar or on middle of the signal bar (depending from indicator mode) for buy; 2. On the low of signal bar or on middle of t
Noize Absorption Index MT4
Ekaterina Saltykova
5 (1)
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation. S
Daily Candle Predictor is an indicator that predicts the closing price of a candle. The indicator is primarily intended for use on D1 charts. This indicator is suitable for both traditional forex trading and binary options trading. The indicator can be used as a standalone trading system, or it can act as an addition to your existing trading system. This indicator analyzes the current candle, calculating certain strength factors inside the body of the candle itself, as well as the parameters of
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
Real Magic Trend
Muhammed Emin Ugur
This   Real Magic Trend   indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate signals from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator is never repainted. The point at which the signal is given does not change.      Features and Recommendations Time Frame
Big Trend Signal   indicator is designed for trend and signal trading. This indicator generates trend signals.  It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators.  You can only trade with this indicator. The generated signals are displayed on the graphical screen.  Thanks to the alert features you can ge
This is a new strategy for SUPPLY DEMAND areas It is based on a calculation using the tick volume to detect the big price action in market for both bear /bull actions this smart volume action candles are used to determine the supply and demand areas prices in between main supply and demand lines indicate sideway market  up arrows will be shown when prices moves above the main supply and the secondary supply lines Down arrows will be shown when prices moves below the main demand and the secondary
Super Gator
Agustinus Biotamalo Lumbantoruan
This indi shows the following 1. Supertrend 2. Alligator (Not a regular alligator) 3. ZigZag 4. Moving Average 5. Trend Continuation/Mini correction Signal (plotted in X) (See screenshots in green background color 6. Early Signal Detection (See screenshots in green background color) You may treat Alligator as the lagging indicator The leading indicator is the supertrend. The zig zag is based on the leading indicator where it gets plotted when the leading indicator got broken to the opposite.
Automated Trendlines
Georgios Kalomoiropoulos
5 (16)
Trendlines  are the most essential tool of technical analysis in forex trading.  Unfortunately, most  traders don’t draw them correctly. Automated Trendlines indicator is a professional tool for serious traders that help you visualize the trending movement of the markets . There are two types of Trendlines Bullish Trendlines and Bearish Trendlines. In the uptrend, Forex trend line is drawn through the lowest swing-points of the price move. Connecting at least two "lowest lows" will create a
WanaScalper MT4
Isaac Wanasolo
1 (1)
A scalping indicator based on mathematical patterns, which on average gives signals with relatively small SL, and also occasionally helps to catch big moves in the markets (more information in the video) This indicator has three main types of notifications: The first type warns of a possible/upcoming signal on the next bar The second type indicates the presence of a ready signal to enter the market/open a position The third type is for SL and TP levels - you will be notified every time price r
Signal Undefeated   indicator is designed for trend and signal trading. This indicator generates trend signals.  It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators.  You can only trade with this indicator. The generated signals are displayed on the graphical screen.  Thanks to the alert features you can g
Signal Tower   indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator certainly does not repaint. The point at which the signal is given does not change. The indicator has a pips counter. You can see how
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 new update makes this indicator a complete tool for studying, analyzing and operating probabilistic patterns. It includes: On-chart Multi-asset percentage monitor. Configurable martingales. Twenty-one pre-configured patterns , including Mhi patterns and C3. An advanced pattern editor to store up to 5 custom patterns. Backtest mode to test results with loss reports. Trend filter. Hit operational filter. Martingale Cycles option. Various types of strategies and alerts. Confluence between patte
Buyers of this product also purchase
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 only ONE chart you can read Currency Strength for 28 Forex pairs! Imagine how your trading will improve because you are able to pinpoint the exact trigger point of a new trend or scalping opportunity? User manual: click here That's the first one, the original! Don't buy a worthle
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           
Introducing   Quantum Trend Sniper Indicator , the groundbreaking MQL5 Indicator that's transforming the way you identify and trade trend reversals! Developed by a team of experienced traders with trading experience of over 13 years,   Quantum Trend Sniper Indicator   is designed to propel your trading journey to new heights with its innovative way of identifying trend reversals with extremely high accuracy. ***Buy Quantum Trend Sniper Indicator and you could get Quantum Breakout Indicator fo
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
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
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   -  
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
Currently 20% OFF ! Best Solution for any Newbie or Expert Trader! This dashboard software is working on 28 currency pairs plus one. It is based on 2 of our main indicators (Advanced Currency Strength 28 and Advanced Currency Impulse). It gives a great overview of the entire Forex market plus Gold or 1 indices. It shows Advanced Currency Strength values, currency speed of movement and signals for 28 Forex pairs in all (9) timeframes. Imagine how your trading will improve when you can watch the e
Introducing the Miraculous Forex Indicator: Unleash the Power of Precision Trading Are you tired of searching for the perfect forex indicator that truly delivers exceptional results across all time frames? Look no further! The Miraculous Forex Indicator has arrived to revolutionize your trading experience and propel your profits to new heights. Built upon a foundation of cutting-edge technology and years of meticulous development, the Miraculous Forex Indicator stands as the pinnacle of str
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
Introducing   Quantum Breakout PRO , the groundbreaking MQL5 Indicator that's transforming the way you trade Breakout Zones! Developed by a team of experienced traders with trading experience of over 13 years, Quantum Breakout PRO is designed to propel your trading journey to new heights with its innovative and dynamic breakout zone strategy. Quantum Breakout Indicator will give you signal arrows on breakout zones with 5 profit target zones and stop loss suggestion based on the breakout box.
FX Power MT4 NG
Daniel Stein
5 (8)
Trading GOLD, and currencies, with the dog walk strategy  - super smart Trading GOLD, and currencies, with the breakout strategy  - super easy Visit our all-new   Stein Investments Welcome Page   to get the latest information, updates and trading strategies. FX Power MT4 NG  is the next generation of our long-time very popular currency strength meter, FX Power.  And what does this next-generation strength meter offer? Everything you have loved about the original FX Power  PLUS GOLD/XAU stre
Shepherd Harmonic Pattern
Abdullah Alrai
4.68 (59)
This indicator will detect harmonic patterns that are drawn on the chart by manual and automatic methods. You can see user manual from this link: Notes Indicator has control panel and it will save every (chart & timeframe) settings. You can minimize it to have more space on chart and you can press close button to hide all indicator data on chart if you prefer to work with other analysis tools  When you use this indicator and change the settings, add indicators like Moving Average or Bollinger
FX Volume
Daniel Stein
4.6 (35)
Visit our all-new   Stein Investments Welcome Page   to get the latest information, updates and trading strategies. FX Volume is the FIRST and ONLY volume indicator that provides a REAL insight into the market sentiment from a broker's point of view. It provides awesome insights into how institutional market participants, like brokers, are positioned in the Forex market, much faster than COT reports. Seeing this information directly on your chart is the real game-changer and breakthrough solut
How to use Pair Trading Station Pair Trading Station is recommended for H1 time frame and you can use it for any currency pairs. To generate buy and sell signal, follow few steps below to apply Pair Trading Station to your MetaTrader terminal. When you load Pair Trading Station on your chart, Pair Trading station will assess available historical data in your MetaTrader platforms for each currency pair. On your chart, the amount of historical data available will be displayed for each currency pai
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
PTS Precision Index Oscillator V2
PrecisionTradingSystems
5 (1)
The Precision Index Oscillator (Pi-Osc) by Roger Medcalf of Precision Trading Systems First of all, if you have any questions please contact me via my website which you can find by searching the above title. Version 2 has been carefully recoded to be super fast to load up on your chart and some other technical improvements have been incorporated to enhance experience. Pi-Osc was created to provide accurate trade timing signals designed to find extreme   exhaustion points, the points that markets
TakePropips Donchian Trend Pro
Eric John Pajarillaga Aldana
4.82 (17)
TakePropips Donchian Trend Pro  (MT4) is a powerful and effective tool that automatically detects the direction of the trend using the Donchian Channel and provides you with an entry and exit trading signals! This multi-function indicator includes a trend scanner, trading signals, statistical panel, screener, trading sessions, and alerts history dashboard. It is designed to provide you with trading signals and save you hours analyzing the charts! You can download the user manual and installation
PTS Divergence Buy Finder
PrecisionTradingSystems
PTS - Divergence Buy Finder by Precision Trading Systems Precision Divergence Finder was designed to find market bottoms with pinpoint accuracy and frequently does so. In technical analysis, the art of picking bottoms is generally much easier than picking tops this item is designed precisely for this task. After a bullish divergence is identified then it is wise to wait for the trend to turn up before buying. You can use a 10 or 20 bar high to enter or a moving average 15-30 to be rising to id
The PTS Divergence Finder Sell Indicator by Roger Medcalf  -  Precision Trading Systems. This indicator only give Bearish - Sell Indications. First and foremost, I have been asked many times why I did not provide a sell divergence indicator while happily providing a buy signal divergence finder for many years. I gave the answer that sell divergences are less reliable than the buy divergences, which is still true. Some solutions to change this were found, not by giving in to peer press
Price Action Entry Alerts
Stephen Sanjeeve Sahayam
5 (3)
This indicator screens every bar for buying or selling pressure and identifies 4 types of candle patterns with the highest volume. These candles are then filtered using several linear filters to show Buy or Sell signals. Signals work best, in conjunction with higher time frame direction and when traded during high volume hours. All filters are customizable and work independently. Can view signals of a single direction with the click of a button. This indicator also comes loaded with the most im
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
Currency Strength Exotics
Bernhard Schweigert
4.88 (33)
CURRENTLY 20% OFF ! Best Solution for any Newbie or Expert Trader! This Indicator is specialized to show currency strength for any symbols like Exotic Pairs Commodities, Indexes or Futures. Is first of its kind, any symbol can be added to the 9th line to show true currency strength of Gold, Silver, Oil, DAX, US30, MXN, TRY, CNH etc. This is a unique, high quality and affordable trading tool because we have incorporated a number of proprietary features and a new formula. Imagine how your trading
Introducing ON Trade Waves Patterns Harmonic Elliot Wolfe, an advanced indicator designed to detect various market patterns using both manual and automated methods. Here's how it works: Harmonic Patterns: This indicator can identify harmonic patterns that appear on your chart. These patterns are essential for traders practicing harmonic trading theory, as popularized by Scott Carney's book "Harmonic Trading vol 1&2." Whether you draw them manually or rely on automated detection, ON Trade Waves
Royal Scalping Indicator M4
Vahidreza Heidar Gholami
4.17 (6)
Royal Scalping Indicator is an advanced price adaptive indicator designed to generate high-quality trading signals. Built-in multi-timeframe and multi-currency capabilities make it even more powerful to have configurations based on different symbols and timeframes. This indicator is perfect for scalp trades as well as swing trades. Royal Scalping is not just an indicator, but a trading strategy itself. Features Price Adaptive Trend Detector Algorithm Multi-Timeframe and Multi-Currency Trend Low
ON Trade Optuma Astro
Abdullah Alrai
5 (4)
This is an astronomy indicator for the MT4 platform like optuma program that performs a variety of functions. It uses complex algorithms to perform its own calculations, which are so accurate. The indicator has a panel that provides astronomical information such as planets' geo/heliocentric cords, distance of sun/earth, magnitude, elongation, constellation, ecliptic cords, equatorial cords, and horizontal cords depending on  the vertical line that generated by the indicator depend on the time va
GOLD Impulse with Alert
Bernhard Schweigert
4.56 (9)
This indicator is a super combination of our 2 products  Advanced Currency IMPULSE with ALERT  and  Currency Strength Exotics . It works for all time frames and shows graphically impulse of strength or weakness for the 8 main currencies plus one Symbol! This Indicator is specialized to show currency strength acceleration for any symbols like Gold, Exotic Pairs, Commodities, Indexes or Futures. Is first of its kind, any symbol can be added to the 9th line to show  true currency strength accelerat
Supply and Demand Dashboard PRO
Bernhard Schweigert
4.82 (22)
Currently 20% OFF ! This dashboard is a very powerful piece of software working on multiple symbols and up to 9 timeframes. It is based on our main indicator (Best reviews:   Advanced Supply Demand ). The dashboard gives a great overview. It shows: Filtered Supply and Demand values including zone strength rating, Pips distances to/and within zones, It highlights nested zones, It gives 4 kind of alerts for the chosen symbols in all (9) time-frames. It is highly configurable for your personal
RelicusRoad Pro
Relicus LLC
4.78 (139)
How many times have you bought a trading indicator with great back-tests, live account performance proof with fantastic numbers and stats all over the place but after using it, you end up blowing your account? You shouldn't trust a signal by itself, you need to know why it appeared in the first place, and that's what RelicusRoad Pro does best! NOW $147 (increasing to $499 after a few updates) - UNLIMITED ACCOUNTS (PCs or MACs) **  User Manual + Strategies + Training Videos + Private Group with
Ultimate Sniper Dashboard
Hispraise Chinedum Abraham
4.84 (25)
Currently on 10% Discount! Prices may increase in the future! Read description below! Once you purchase, send a message to my inbox for manual and starter kit. Best Entry System for Ultimate Sniper Dashboard: ULTIMATE DYNAMIC LEVELS. (Please Check my products) The Ultimate Sniper Dashboard ONLY works on live markets due to MT4 multicurrency testing limits. Introducing the Ultimate-Sniper Dashboard! Our very best which contains both HA-Sniper, MA-Sniper. and many special modes. The Ultimate S
MonsterDash Harmonic Indicator is a harmonic pattern dashboard. It recognizes all major patterns. MonsterDash is a dashboard that displays all detected patterns for all symbols and (almost) all timeframes in sortable and scrollable format. Users can add their own user defined patterns . MonsterDash can open and update charts with the pattern found. Settings MonsterDash's default settings are good enough most of the time. Feel free to fine tune them to your needs. The color settings are for tho
TPA True Price Action indicator reveals the true price action of the market makers through 100% non-repainting signals (except early signals mode) strictly at the close of a candle! TPA shows entries and re-entries, every time the bulls are definitely stronger than the bears and vice versa. Not to confuse with red/green candles. The shift of power gets confirmed at the earliest stage and is ONE exit strategy of several. There are available now two free parts of the TPA User Guide for our custo
More from author
The indicator draws trend lines based on Thomas Demark algorithm. It draws lines from different timeframes on one chart. The timeframes can be higher than or equal to the timeframe of the chart, on which the indicator is used. The indicator considers breakthrough qualifiers (if the conditions are met, an additional symbol appears in the place of the breakthrough) and draws approximate targets (target line above/below the current prices) according to Demark algorithm. Recommended timeframes for t
This indicator calculates and displays Murrey Math Lines on the chart. This MT5 version is similar to the МТ4 version: It allows you to plot up to 4 octaves, inclusive, using data from different time frames, which enables you to assess the correlation between trends and investment horizons of different lengths. In contrast to the МТ4 version, this one automatically selects an algorithm to search for the base for range calculation. You can get the values of the levels by using the iCustom() funct
Классификатор силы тренда. Показания на истории не меняет. Изменяется классификация только незакрытого бара. По идее подобен полной системе ASCTrend, сигнальный модуль которой, точнее его аппроксимация в несколько "урезанном" виде, есть в свободном доступе, а также в терминале как сигнальный индикатор SilverTrend . Точной копией системы ASCTrend не является. Работает на всех инструментах и всех временных диапазонах. Индикатор использует несколько некоррелируемых между собой алгоритмов для класси
Filter:
No reviews
Reply to review
Version 1.1 2022.02.03
Перекомпилирован под терминал 1353 от 16.12.2021