Currency Strength Oscillator MT4

Currency Strength Oscillator for MetaTrader 4

A relative currency strength indicator that plots the history of the eight majors.

This currency strength oscillator plots the relative strength of the eight major currencies as a history, decomposed from the 28 major pairs. While a standard currency strength meter tells you where things stand right now, this shows how they got there — which currency has been strengthening, which has rolled over, and where the ranking changed hands.

All eight series are exposed as documented indicator buffers, so an Expert Advisor can read the currency strength directly from MetaTrader 4.

How the decomposition works

Each of the eight currencies appears in seven of the twenty-eight pairs. Its strength is the average of those seven readings, with the sign inverted wherever it is the quote currency — a falling AUDJPY means a strengthening yen, not a weakening one.

Every pair contributes to exactly two currencies, positively to its base and negatively to its quote, so across the full set those contributions cancel and the eight strengths sum to zero. The indicator uses that as an internal check: if the values did not balance, the decomposition would be wrong. It also means the readings are relative rather than absolute. A currency is not strong on its own, only strong against the rest of the set.

Because the calculation reads the currencies rather than the chart, the same eight lines appear whatever symbol the indicator sits on.

What the history shows that a snapshot cannot

A ranking tells you the order today. A history tells you how long it has held, whether the leader is still climbing or already turning, and when two currencies swapped places. Crossings are where the ranking changed hands.

Individual currencies can be switched off, which is often more useful than watching all eight. Plotting only the two that make up the chart's own symbol gives a clean read on which side is driving it.

Two ways to measure strength

Rate of change is the percentage move across the lookback. It is directly comparable between pairs because it is relative.

Standardised distance from the mean expresses the same move in standard deviations, which keeps instruments of very different volatility on one scale.

They behave differently at long lookbacks. At a lookback of 200, rate of change accumulates a persistent offset — several currencies sit above or below zero for the whole window without crossing it — while the standardised measure stays centred. Neither is wrong. Rate of change describes the move that actually happened; the standardised measure describes how unusual it was. At short lookbacks the difference is small.

Pair mode

Pair mode plots a single line: the strength of one currency minus another. It is the same decomposition, reduced to one relationship, and it works on any chart — CHF minus JPY can be watched while trading EURAUD.

This is not the same as the price of CHFJPY. The price is one market's quote; this is the difference between two currencies each measured against the whole matrix.

Beyond the majors

The indicator runs on any chart, not only FX. On a gold or index chart the currency lines still describe the currencies, which is often exactly what is wanted — a dollar-priced instrument is easier to read when the dollar itself is visible beside it. More than one instance can be attached, at different lookbacks, to compare a faster and a slower view.

Note what is and is not being claimed there. Gold is not part of the 28-pair matrix and has no strength value of its own. What the chart shows is the dollar, measured from the FX matrix, displayed alongside gold's price. The honest reading is that the dollar weakened while gold rallied — not that gold was strong.

Reading it from an Expert Advisor

Ten buffers are exposed and documented. Buffer order is fixed and alphabetical, and does not change with the display switches — hiding a currency removes it from the chart but the buffer keeps its values, so an EA is unaffected by a user's display preference.

double jpy = iCustom(Symbol(), Period(), "CurrencyStrengthOscillator", 5, 1); // buffer 5 is always JPY, shift 1 is the last closed bar

  • 0 — AUD
  • 1 — CAD
  • 2 — CHF
  • 3 — EUR
  • 4 — GBP
  • 5 — JPY
  • 6 — NZD
  • 7 — USD
  • 8 — zero line
  • 9 — pair spread, base minus quote, populated in pair mode

Inputs

  • Strength measure — rate of change, or standardised distance from the mean
  • Lookback — the window each reading is measured over, in bars; 14 by default
  • Smoothing — a moving average applied to the result; 3 by default, 1 for none
  • Bars to calculate — how far back to compute; 500 by default, 0 for all available history
  • Symbol suffix — detected automatically, and can be set by hand for unusual broker naming
  • Show a single pair spread — switches to pair mode, with a base and quote currency to compare
  • Show AUD through Show USD — one switch per currency, all on by default and ignored in pair mode

What the screenshots show

  • All eight currencies on GBPUSD hourly — the yen separating from the pack while the dollar and the pound fall away, alongside the price move that accompanied it.
  • The Data Window — the buffers against a single bar, each one named and readable by an Expert Advisor. The eight currency values in it sum to 0.001, which is the zero-sum property surviving a round trip through three decimal places of display rounding.
  • USDJPY daily with only two currencies plotted — the dollar and the yen, where the crossings line up with the turns in price and nothing else competes for attention.
  • XAUUSD hourly with the dollar isolated, at two lookbacks — two instances of the indicator in separate windows, one slower and one faster. The shorter lookback turns first, the longer confirms.
  • Pair mode on CHFJPY daily — a single line, the Swiss franc minus the yen.
  • The inputs dialog — every setting, with the MT4 properties window.

How far back it plots

The decomposition needs all 28 pairs on a bar to mean anything, so the usable depth is the shortest history among them — and brokers hold far less history on minor crosses than on majors. Where the available history is shorter than requested, the indicator plots what it can and reports the limit once in the Experts log.

On short timeframes this is invisible. It becomes visible on Weekly and Monthly, where the common history can be a few hundred bars or fewer, and the oscillator will start part-way across a chart whose price runs back much further. That is the limit, not a fault. It is a property of broker data and applies to every currency strength tool — most simply do not tell you.

Bars to calculate defaults to 500. Raising it, or setting 0 for all available history, gives a longer view at the cost of a slower first load on a new timeframe.

Calculation behaviour

Closed-bar values are final. The forming bar updates until it closes, and is recomputed on each tick rather than being frozen at first touch, so its value settles at the close instead of recording whatever the price happened to be when the bar opened.

Every bar is decomposed from all 28 pairs or not at all. Each currency is averaged over the pairs that actually contributed to it rather than over an assumed seven. A strength computed from a partial set looks exactly like a real reading and cannot be identified as wrong later, so the indicator does not produce one.

Where a broker's history is missing a bar for one of the 28 pairs, that pair's last known close is carried forward rather than the pair being dropped, and the substitution is reported in the Experts log with the pair name and the number of bars affected. MetaTrader 4 feeds contain such gaps more often than MetaTrader 5 ones, so the two platforms can differ by a small amount around session boundaries.

About the screenshots. The images are captured in MetaTrader 5. The MetaTrader 4 build is a direct port and was verified against it buffer by buffer, on every timeframe, comparing the two terminals bar for bar. The one difference found is the feed-gap handling described above, and it is the only one: what the currency strength oscillator calculates is the same on both platforms. What differs is the terminal itself — chart rendering and the layout of the settings dialog.

Notes

  • Draws in a separate window, with ten indicator buffers. The buffer map above is fixed and does not change with the display switches.
  • All 28 major pairs must be available from your broker. The indicator reports any that are missing by name in the Experts log.
  • The plotted range is limited by the shortest history among the 28 pairs, which is visible on Weekly and Monthly. The limit is reported once in the Experts log.
  • More than one instance can be attached to the same chart, at different lookbacks or different measures.
  • No external dependencies. Every value is calculated inside the indicator. It does not call any other indicator, so there are no handles to fail, nothing to install alongside it, and no dependency on the state of your standard indicator folder.

What this is and is not

This is a tool for technical analysis and for filtering market conditions. It is not a trading system, it produces no buy or sell signals, it gives no investment advice, and it does not open or manage positions.

It is descriptive rather than predictive. It measures what the eight currencies have been doing; it does not forecast what they will do next, and no claim is made about its performance.

More tools from this developer

I build MT4 indicators and Expert Advisors with an emphasis on clean, documented, no-repaint code — closed-bar logic, validated buffers, and no dependencies on other indicators.

If you want the current picture across all 28 pairs and nine timeframes at once, the Multi Timeframe Currency Strength Panel is free and uses the same decomposition. This indicator is its history.

See all published products →

Questions about the calculation, the buffers, or using this in your own EA? Send me a private message — I am happy to answer.

Built and maintained by Narayanan Mohanan, MT4/MQL4 developer.

Recommended products
Dragon Trend
Marco Fornero Monia
Trend indicator with Multi-level Take Profit indication. Possibility to setting in normal or Aggressive mode. Fully customizable in color and alarm. Very useful to understand the trend and where price could go No need to explain, see the images. You'll se the trend, 3 possibly target and stop loss (or other take profit) when the trend change. You can adopt various strategy, for example. 1) Open trade and try to close it at target 1 2) Open 2 trade, close 1 at target 1, stop in profit for 2 and t
Pyro Trend
Oleksii Ferbei
Pyro Trend is a new product that allows you to identify the current market phase (uptrend, downtrend or flat). The indicator is applicable for any data and periods. The middle of the trend wave, as well as the edges, are places of special heat and market behavior; when writing the indicator, an attempt was made to implement precisely finding the middle. Pyro Trend is a trend indicator that uses an original calculation algorithm. This indicator paints arrows in different colors depending on the
Introducing the Donchian Channels indicator for MQL4, a powerful technical analysis tool designed to boost your trading success. This indicator consists of four lines that represent the upper and lower boundaries of price movement over a specified period. With the Donchian Channels indicator, you can easily identify potential breakouts and reversals in the market. The upper line shows the highest high of the specified period, while the lower line represents the lowest low. The space between thes
This indicator is an indicator for automatic wave analysis that is perfect for practical trading! Case... Note:   I am not used to the Western name for wave classification. Influenced by the naming habit of Chaos Theory (Chanzhongshuochan), I named the basic wave as   pen   , the secondary wave band as   segment   , and the segment with trend direction   as main trend segment   (this naming method will be used in future notes, let me tell you in advance), but the algorithm is not closely relate
RSI Divergence Pulse — Smart Divergence Scanner with MTF Panel, Zone Fill, Alerts & Dashboard FULL DESCRIPTION RSI Divergence Pulse is automatically detecting Regular and Hidden divergences, it shows a live Multi-Timeframe RSI panel, fills OB/OS zones for instant visual recognition, draws divergence lines on both the price chart and RSI subwindow, places Buy/Sell arrows, and provides real-time alerts. No more switching between 5 different RSI indicators. - COLOR-CODED RSI LINE    The RSI line
Developed methods for trading collected in one indicator. In the form of arrows, it defines entries in the direction of the trend. It has 2 types of arrows - trend and signal guides, informing about the potential movement in the direction of the trend. Works without redrawing, ready for use on all symbols/tools. The most suitable time frames to use are M15, M30, H1, H4. How to use The indicator finds the direction of the trend in the form of a signal arrow, a graphic rectangle stretches along
Niubility Trend  Niubility Trend displays the trend direction for all time frames in real time. You'll see at a glance at which direction the trends are running, how long they last and how powerful they are. All this makes it an easy-to-use trend trading system for beginners, advanced and professional traders. Features Easy to trade Customizable colors and sizes It is non-repainting and non-backpainting It is fantastic as a trailing stop method It implements alerts of all kinds
Introduction to Fractal Pattern Scanner Fractal Indicator refers to the technical indicator that makes use of the fractal geometry found in the financial market. Fractal Pattern Scanner is the advanced Fractal Indicator that brings the latest trading technology after the extensive research and development work in the fractal geometry in the financial market. The most important feature in Fractal Pattern Scanner is the ability to measure the turning point probability as well as the trend probabi
Sarangani Venom
Sherwin Dennis Tava Ruiz
sarangani venom is 100% profitable, easy to use indicator, a chart without indicator is stressful and will lead you to many losses, this indicator is pleasing to the eye that will gives you more confident to trade when there is signal, your computer will gives sound and the spider will animate, it can be used to all time frame and to all currency, you have many options, when the candlestick touches to upper line it is buy, when it touches to lower line it is sell, when the rope is pull to buy ar
My indicator is 1000%, it never repaints, it works in every time period, there is only 1 variable, it sends notifications to your phone even if you are on vacation instead of at work, in a meeting, and there is also a robot version of this indicator With a single indicator you can get rid of indicator garbage It is especially suitable for scalping in the m1 and m5 time frames on the gold chart, and you can see long trends in the h1 time frame.
Apex Trend Sniper
Steffen Reinhold Noll
Apex Trend Sniper Apex Trend Sniper is a trend-following indicator for MetaTrader 4. It identifies directional changes in price by combining a Williams Percent Range oscillator with a multi-layer filter system. Signals are displayed directly on the chart as arrows. The indicator is suitable for use on Bitcoin (BTCUSD), major indices (US30, GER40, NAS100, SPX500) and Gold (XAUUSD). Operation The core signal is derived from the Williams Percent Range. When the oscillator crosses defined threshold
FREE
Dublgis
Ivan Simonika
Here is a sensitive indicator for Dublgis professionals. It is built on completely new algorithms and is more efficient, on any timeframes, since it filters random price movements. Finds and visually displays price reversal points. This tool can be used as confirmation when making a deal, as well as to determine the direction of the trend and its strength. The indicator was developed as a complement to a number of our other trading tools.
This multi time frame and multi symbol indicator scans for pin bars. Combined with your own rules and techniques, this indicator will allow you to create (or enhance) your own powerful system. Features Can monitor all symbols visible in your Market Watch window at the same time. Apply the indicator to just one chart and instantly monitor the entire market. Can monitors every time frame, from M1 to MN, and sends you a real-time alert when a pin bar is identified. All Metatrader native alert types
ACB Breakout Arrows Scanner MT4
KEENBASE SOFTWARE SOLUTIONS
It's a multi-symbol and multi-timeframe scanner for our indicator - ACB Breakout Arrows . With default settings, it scans for the buy/sell signals on 28 currency pairs and 9 time-frames concurrently .  Features It can scan 252* combinations of symbols and time-frames from a single chart. Open the signal's chart loaded with a predefined template with a single click.  Easy drag n drop anywhere on the chart. Real-time alerts with popup, sound, push-notifications and email alerts.  Input Parameter
This product shows you a different view of the market by examining the performance of volume and continuous patterns in the market, then by calculating the behavior of traders and market patterns, calculates the probability of the next movement of the market by calculations. Function. How to receive the signal: If the candlestick is currently a bullish candlestick, according to a market scan, if the next bullish candlestick is below 5%, you can open a free trade by hitting the wisdom areas.
Chart Analyzer
Innovicient Limited
The Chart Analyzer is an MT4 indicator that provides visual arrow signals without redrawing them. In addition, we have included trendlines to validate your entries. This indicator has been fine-tuned to work with all timeframes and instruments.  The Chart Analyzer has a number of advantages Does not fade or remove arrows when drawn Sends both email and phone alerts. It is light on computer resources Easy to install. Default setting works just fine.  If price opens above the trendline, open bu
Hydra Trend Rider   is a premium multi-timeframe dashboard that instantly reveals the market trend across 9 timeframes (M1 to Monthly). Using a highly accurate, non-repainting AI-Powered algorithm, it helps you trade in the direction of the dominant market momentum. Quick Links: User Manual & Guide: Here MT5 Version: Here MQL5 Channel - For daily market insights & updates: Join Here Disclaimer: Read the full product description before purchasing. Due to regulatory and compliance restrictions
PTW NON REPAINT TRADING SYSTEM + HISTOGRAM Non-Repainting ,   Non-Redrawing   and   Non-Lagging  Trading System. Does the following: - Gives Accurate Entry and Exit Points - Scalping, Day and Swing Trading  - 95% Accuracy  - Targets, where to take profits. - Shows Trends, Support and resistance levels - Works on All Brokers - Works on All Currencies, CFDs and Stocks - It does not place trades for you, it only shows you what trades to place. - It works on All Timeframes - It is for Trend or ran
Technical Indicator for Detecting Strong Price Action Patterns: Pin Bar, Inside Bar, and Outside Bar Introduction: In the realm of technical analysis, price action patterns serve as vital indicators of potential market movements. We've developed a sophisticated technical indicator that streamlines the identification of robust price action patterns on charts. Our indicator specializes in detecting three essential patterns: Pin Bar, Inside Bar, and Outside Bar. Key Patterns Detected: Pin Bar: The
Icarus Bolli-Band Change Display(TM) Indicator is a simple, but highly effective tool for visually identifying areas where the all-important 'Bollinger Band' values are in a state of expansion, contraction of neither. The traditional Bollinger Bands have been widely applied to trading charts globally since their creation by John Bollinger several decades ago. One of the limitations of the traditional Bollinger Bands is the ability to clearly identify when the bands are in fact expanding or contr
What is the Super Ichi Indicator? Super Ichi is an advanced combination of Ichimoku Kinko Hyo and SuperTrend indicators. This powerful technical analysis tool is designed to identify market trends and generate trading signals. What Does It Do? Dual-Level Trend Analysis : Uses customized versions of Tenkan-sen and Kijun-sen lines Automatic Signal Generation : Displays visual markers (arrows) at crossover points Real-Time Alert System : Provides audio and visual alerts when new signals occur Dynam
FREE
Super Signal Series – V3 PRO Market Analytics Command Center Ultimate Multi-Symbol Trading Control Room Exclusive Bonus  When you purchase  this indicator, you receive 2 professional Gold EAs: MT4 Gold EA XAU Trend Matrix EA – Worth $150  : See the EA      https://www.mql5.com/en/market/product/162870 MT5 Gold EA XAU Steady Gain Pro – Worth $150  : See the EA     https://www.mql5.com/en/market/product/162861 Total Bonus Value: $300 Product Overview Market Analytics Command Center is a professio
This is  a dashboard indicator that displays the Average Level of each selected currency pairs that filters and gives us a signal for overbought (>=90%) or if price at extreme peak above 90, and/or oversold (<=10%) or if price at extreme peak below 10. The calculation is using Relative Strength Index default periods (2 & 9) applied to three different higher time frames H4,D1,&W1. This won't change or altered even if you change symbol or switch to lower time frames or even in monthly and year
The indicator calculates support and resistance levels. There is a hint in the upper left corner. This hint can be removed. Hint in two languages (English and Russian). The width of support and resistance levels is shown. The number of levels touched is displayed. Works on all timeframes. Can be used as an independent trading system, and as an addition to another system. Download the demo version of the indicator right now and try it in the strategy tester!
CCI Phases Indicator
Ihab Mohamed Kamal Fouda
Introduction  The Commodity Channel Index, commonly known as the CCI, is a versatile indicator used by traders and investors to identify cyclical trends in commodities, stocks, and other securities. It was developed by Donald Lambert in 1980, primarily for commodity trading, but has since found widespread application in various financial markets. The CCI is particularly favored for its ability to gauge overbought and oversold levels in price movements. Historical Background  Donald Lambert, the
VWAP indicator for MT4
Renaud Herve Francois Candel
Moving VWAP Indicator Moving VWAP is an important indicator drawing the Volume-Weighted Average Price (VWAP). The VWAP is a reference used by institutional traders and acts as a level of support / resistance. If price is above VWAP then means market is bullish. If price is below VWAP then means market is bearish. It can be used to enter in the market with low risk (near VWAP) and also identify the correct direction of the market. The Moving VWAP is as simple as a Simple Moving Average. The m
" Valiant Strong Trend " - Your Ultimate MT4 Signal Indicator Are you ready to elevate your trading game to new heights? Look no further than the "Valiant Strong Trend" MT4 signal indicator, your indispensable tool for navigating the complex world of financial markets. Key Features: Precise Trend Identification : "Valiant Strong Trend" employs advanced algorithms to accurately identify market trends, whether they are bullish or bearish. Say goodbye to guesswork and hello to informed trading deci
Ezy Option Signal
Nirundorn Promphao
The principle of this indicator is very simple: detecting the trend with Moving Average, then monitoring the return point of graph by using the crossing of Stochastic Oscillator and finally predicting BUY and SELL signal with arrows, alerts and notifications. The parameters are fixed and automatically calculated on each time frame. Example: If you install indicator on EURUSD, timeframe M5: the indicator will detect the main trend with the Moving Average on this timeframe (for example the Moving
HTF Candle Insight
Adisorn Soodkanueng
Title: HTF Candle Insight - See the Big Picture on One Chart Introduction: Stop switching tabs constantly! HTF Candle Insight allows you to visualize Higher Timeframe price action directly on your current trading chart. Whether you are a Scalper, Day Trader, or Swing Trader, seeing the "Big Picture" candle structure is crucial for identifying trends, reversals, and key levels (Support/Resistance). Key Features: Dual HTF Overlay: Display up to 2 different Higher Timeframes simultaneously (e.g.,
TPSproTREND PrO
Roman Podpora
4.67 (27)
TPSproTrend PRO   - this is a trend indicator that automatically analyzes the market and provides information about the trend and its changes, as well as displays entry points for trades   without redrawing! ИНСТРУКЦИЯ RUS   -   INSTRUCTIONS  ENG       -     VERSION MT5 Main functions: Accurate entry signals WITHOUT REPAINTING! Once a signal appears, it remains valid! This is a significant distinction from repainting indicators that might provide a signal and then alter it, potentially leading
Buyers of this product also purchase
Gann Made Easy
Oleg Rodin
4.84 (171)
Gann Made Easy is a professional and easy to use Forex trading system which is based on the best principles of trading using the theory of W.D. Gann. The indicator provides accurate BUY and SELL signals including Stop Loss and Take Profit levels. You can trade even on the go using PUSH notifications. PLEASE CONTACT ME AFTER PURCHASE TO GET TRADING  INSTRUCTIONS   AND GREAT EXTRA INDICATORS  FOR FREE! Probably you already heard about the Gann trading methods before. Usually the Gann theory is a
Neuro Poseidon MT4
Daria Rezueva
4.8 (45)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for all
BTMM State Engine Pro by G-Labs — Beat The Market Maker indicator for MetaTrader 4. Asian session range, London and New York kill zones, level progression (L1/L2/L3), peak formation detection (PFH/PFL), entry signals, and a multi-pair scanner from one chart. Stop scanning charts one pair at a time. The State Engine tracks the BTMM daily cycle automatically — Asian box, room boundaries, level blocks, peak formations, and filtered entries — while the scanner dashboard shows level, peak status,
M1 Sniper
Oleg Rodin
5 (26)
M1 SNIPER  is an easy to use trading indicator system. It is an arrow indicator which is designed for M1 time frame. The indicator can be used as a standalone system for scalping on M1 time frame and it can be used as a part of your existing trading system. Though this trading system was designed specifically for trading on M1, it still can be used with other time frames too. Originally I designed this method for trading XAUUSD and BTCUSD. But I find this method helpful in trading other markets
Prop Firm Sniper
Mohamed Hassan
4.33 (6)
Prop Firm Sniper MT4  is a professional market structure indicator that automatically identifies high-probability BUY and SELL opportunities using BOS and CHoCH analysis. Recommended Timeframes: For backtesting, use the indicator on   M5 or M15   for Gold (XAUUSD), and   M15 or H1   for more volatile Forex pairs such as   GBPUSD, USDJPY, EURGBP , and similar markets. CONTACT ME AFTER PURCHASE TO CLAIM YOUR FREE BONUSES! Prop Firm Sniper  is a professional market structure indicator designed t
DayTrader PRO MT4
Davit Beridze
5 (1)
DayTrader PRO DayTrader PRO   is an advanced trading indicator that combines John Ehlers' Laguerre Filter with a powerful Auto-Optimization Engine. Instead of using fixed parameters, the indicator automatically searches for the best settings based on recent market conditions, helping you adapt to changing volatility without constant manual adjustments. The indicator generates clear   BUY   and   SELL   signals together with adaptive   Stop Loss   and   Take Profit   levels calculated from curre
KURAMA GOLD SIGNAL PRO (MT4) — 7-Layer Filter, Auto TP/SL, Quality Score & Signal History Save | Complete XAUUSD Trading System No repaint in real time. The moment a signal appears, the arrow, entry, TP and SL are locked on the spot and never move afterward. What you trade is this real-time signal. And in v7.20, every signal that is actually sent is auto-saved and restored exactly after restart. BUYER BONUS Buy the lifetime license and receive AI Zone Radar (
Scalper Inside PRO
Alexey Minkov
4.74 (68)
Scalper Inside PRO helps you read the intraday trend and plan your trade before you enter. It uses exclusive built-in algorithms to evaluate market direction and calculate key target levels the moment a signal appears, so you always see the potential entry, stop-loss and profit targets ahead of time. The indicator also shows detailed performance statistics on historical data, so you can see how different instruments and strategies behaved and choose what fits current market conditions. You can e
Currency Strength Wizard is a very powerful indicator that provides you with all-in-one solution for successful trading. The indicator calculates the power of this or that forex pair using the data of all currencies on multiple time frames. This data is represented in a form of easy to use currency index and currency power lines which you can use to see the power of this or that currency. All you need is attach the indicator to the chart you want to trade and the indicator will show you real str
SR Liquidity
Oleg Rodin
5 (1)
SR Liquidity is a trading indicator designed to reveal the hidden zones where market liquidity concentrates and price reacts most strongly. These special liquidity areas act as powerful support and resistance levels, giving you a clear map of where the market is most likely to reverse. Instead of drawing ordinary Support/Resistance lines, SR Liquidity analyzes real price behavior to detect the zones where buying and selling pressure accumulate. These are actually the pools of liquidity that driv
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. I
Trend Catcher ind
Ramil Minniakhmetov
5 (11)
TREND CATCHER INDICATOR Trend Catcher Indicator analyzes market price movements, using a combination of the author’s proprietary and customized adaptive trend-analysis indicators.  It identifies the true market direction by filtering out short-term noise and focusing on underlying momentum strength, volatility expansion, and price structure behavior.  It also uses a combination of smoothing and trend-filtering customized indicators such as moving averages, RSI, and volatility filters.   Real ope
Super Signal – Skyblade Edition Professional No-Repaint / No-Lag Trend Signal System with Exceptional Win Rate | For MT4 / MT5 It works best on lower timeframes, such as 1-minute, 5-minute, and 15-minute charts. Core Features: Super Signal – Skyblade Edition is a smart signal system designed specifically for trend trading. It applies a multi-layered confirmation mechanism to detect only strong, directional moves supported by real momentum. This system does not attempt to predict tops or bottoms
Neo Wave PRO
Nikolay Raykov
5 (1)
Price & Time Market Structure Indicator A professional market structure tool that analyzes waves through both price and time — not price alone. Main Description NeoWave PRO is a professional market structure indicator for MetaTrader 4 designed for traders who want to move beyond traditional one-dimensional wave tools such as ZigZag, swing indicators, and basic high/low systems. Most wave indicators analyze only one thing: Price. But a real market wave is not only a price movement. A true wave de
AW Candle Patterns MT4
AW Trading Software Limited
The AW Candle Patterns indicator is a combination of an advanced trend indicator combined with a powerful candle pattern scanner. It is a useful tool for recognizing and highlighting the thirty most reliable candlestick patterns. In addition, it is a current trend analyzer based on colored bars with a   plug-in multi-timeframe trend panel that can be resized and positioned. A unique ability to adjust the display of patterns depending on the trend filtering. Advantages: Easily identifies candle p
All in One Trade
Alexey Minkov
4.5 (28)
All-in-One Trade Indicator (AOTI) – Since 2015. The All-in-One Trade Indicator (AOTI) determines daily targets for EURUSD, EURJPY, GBPUSD, USDCHF, EURGBP, EURCAD, EURAUD, AUDJPY, GBPAUD, GBPCAD, GBPCHF, GBPJPY, AUDUSD, and USDJPY. All other modules work with any trading instruments. The indicator includes various features, such as Double Channel trend direction, Price channel, MA Bands, Fibo levels, Climax Bar detection, and others. The AOTI indicator is based on several trading strategies, and
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 ind
This product was   updated   for the   2026 market   and   optimized   for the   latest MT5 builds . PRICE UPDATE NOTICE: Smart Trend Trading System   is currently available for $99. The price will   increase to $199   after the next   30 purchases. SPECIAL OFFER:  After purchasing Smart Trend Trading System, send me a private message to claim the Smart Universal EA for FREE and turn your Smart Trend signals into automated trades. Smart Trend Trading System is a complete non-repainting, non-re
FX Power MT4 NG
Daniel Stein
4.95 (21)
FX Power: Analyze Currency Strength for Smarter Trading Decisions Overview FX Power is your go-to tool for understanding the real strength of currencies and Gold in any market condition. By identifying strong currencies to buy and weak ones to sell, FX Power simplifies trading decisions and uncovers high-probability opportunities. Whether you’re looking to follow trends or anticipate reversals using extreme delta values, this tool adapts seamlessly to your trading style. Don’t just trade—trade
Scalper Vault
Oleg Rodin
5 (37)
Scalper Vault is a professional scalping system which provides you with everything you need for successful scalping. This indicator is a complete trading system which can be used by forex and binary options traders. The recommended time frame is M5. The system provides you with accurate arrow signals in the direction of the trend. It also provides you with top and bottom signals and Gann market levels. The indicator provides all types of alerts including PUSH notifications. PLEASE CONTACT ME AFT
BUY 1 and GET 1 FREE - Promotion! Buy Trend Reader Indicator with a huge –60% discount and GET 1 FREE EA by your choice! Promo Price: $117 (Regular Price: $297 — You Save $180! Don't Miss!) After purchase contact me to get your GIFT EA! You can also contact me to get the list of available GIFT EAs! Trend Reader Indicator is a revolutionary trading indicator designed to empower forex traders with the tools they need to make informed trading decisions. This cutting-edge indicator utilizes compl
Volatility Trend System - a trading system that gives signals for entries. The volatility system gives linear and point signals in the direction of the trend, as well as signals to exit it, without redrawing and delays. The trend indicator monitors the direction of the medium-term trend, shows the direction and its change. The signal indicator is based on changes in volatility and shows market entries. The indicator is equipped with several types of alerts. Can be applied to various trading ins
Atomic Analyst
Issam Kassas
5 (11)
This product was   updated   for   the 2026 market   and   optimized   for the   latest MT5 builds. PRICE UPDATE NOTICE: Atomic Analyst is currently available for $99. The price will increase to $199 after the next 30 purchases. SPECIAL OFFER:  After purchasing Atomic Analyst, send me a private message to claim the Smart Universal EA for FREE and turn your Atomic Analyst signals into automated trades. Atomic Analyst is a non-repainting, non-redrawing, and non-lagging price action trading indic
Color Trend FX
Alexey Minkov
4 (4)
Color Trend FX – Since 2017. The indicator shows on the chart the accurate market entry points, accurate exit points, maximum possible profit of a deal (for those who take profit according to their own system for exiting deals), points for trailing the open positions, as well as detailed statistics. Statistics allows to choose the most profitable trading instruments, and also to determine the potential profits. The indicator does not redraw its signals! The indicator is simple to set up and man
This dashboard is an alert tool for use with the market structure reversal indicator. It's primary purpose is to alert you to reversal opportunities on specific time frames and also to the re-tests of the alerts (confirmation) as the indicator does. The dashboard is designed to sit on a chart on it's own and work in the background to send you alerts on your chosen pairs and timeframes. It was developed after many people requested a dash to monitor multiple pairs and time frames at once rather th
MT4 Macd Divergence Scanner
Krzysztof Janusz Stankiewic
This indicator provides an efficient way to monitor multiple currency pairs and timeframes simultaneously. By visually displaying price-MACD divergences in a structured, easy-to-read table, it allows traders to detect potential market turning points without constantly switching between charts. Divergences can signal either bullish or bearish momentum shifts. For instance, a bearish divergence occurs when the price reaches a new high, but the MACD fails to confirm this with a corresponding higher
Naturu MT4
Ivan Stefanov
'Naturu' is a manual indicator that uses nature’s symmetry as its algorithm. Master the market with a simple strategy and hidden wisdom!   ( This is a manual indicator and contains features that are not supported by the MetaTrader testing environment ) When you load the indicator, you’ll see two lines—Top and Bottom. Click once on a line to activate it. To move it, simply click on the candlestick where you want it placed. You define a high point and a low point, and the indicator then calcula
Cycle Sniper
Elmira Memish
4.39 (36)
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 purchasing. Videos, settings  and descri
ADR Alert Dashboard
Lee Samson
3.73 (11)
The ADR Alert Dashboard shows you at a glance where price is currently trading in relation to it's normal average daily range. You will get instant alerts via pop-up, email or push when price exceeds it's average range and levels above it of your choosing so you can jump into pullbacks and reversals quickly. The dash is designed to be placed on a blank chart and just sit in the background and alert you when levels are hit so you do not need to sit and watch it or even look at all! MT5 VERSION AV
The Brilliant Reversals MultiCurrency Scanner MT4 is a state-of-the-art trading indicator designed for traders looking to identify potential reversal points across multiple currency pairs. By leveraging advanced algorithms, this tool provides instant insights, making it invaluable for both novice and experienced traders aiming to optimize their trading strategies. This indicator empowers traders by delivering real-time buy and sell signals based on market conditions, enhancing decision-making an
More from author
Anchored Volume Delta with Adaptive Bands
Narayanan Mohanan Mohanan Krishnan
This indicator plots Cumulative Volume Delta (CVD) — the running total of each bar's volume, signed by the direction the bar closed — inside adaptive standard-deviation bands. It answers a question price alone does not: is the move being carried by participation, or is it drifting? The cumulative total restarts at an anchor you choose — daily, weekly or monthly — so the reading is always relative to the current session, week or month rather than to the beginning of chart history. That single con
FREE
This indicator plots Cumulative Volume Delta (CVD) — the running total of each bar's volume, signed by the direction the bar closed — inside adaptive standard-deviation bands. It answers a question price alone does not: is the move being carried by participation, or is it drifting? The cumulative total restarts at an anchor you choose — daily, weekly or monthly — so the reading is always relative to the current session, week or month rather than to the beginning of chart history. That single con
FREE
Force Index with Adaptive Volatility Bands
Narayanan Mohanan Mohanan Krishnan
This indicator plots the Force Index — each bar's price change multiplied by its volume — inside adaptive standard-deviation bands. Where price alone tells you that a market moved, the Force Index tells you how much effort went into moving it. A large price change on thin volume and a small change on heavy volume are very different events, even when the candles look similar. The Force Index separates them by combining both into a single reading, and the bands place that reading in the context of
FREE
Multi Timeframe Currency Strength Panel
Narayanan Mohanan Mohanan Krishnan
MTF Currency Strength Panel for MetaTrader 5 A multi timeframe currency strength meter covering all 28 major forex pairs on one chart. This currency strength panel shows where the eight major currencies stand right now, and how each of the 28 major pairs has been moving across nine timeframes at once — M1 to MN1. Both readings sit on one chart, updated on a timer. Ranking pairs on their own is misleading. When a single currency moves, every pair containing it moves with it, so the top of a pair
FREE
MTF Currency Strength Panel MT4
Narayanan Mohanan Mohanan Krishnan
MTF Currency Strength Panel for MetaTrader 4 A multi timeframe currency strength meter covering all 28 major forex pairs on one chart. This currency strength panel shows where the eight major currencies stand right now, and how each of the 28 major pairs has been moving across nine timeframes at once — M1 to MN1. Both readings sit on one chart, updated on a timer. Ranking pairs on their own is misleading. When a single currency moves, every pair containing it moves with it, so the top of a pair
FREE
This indicator plots the Force Index — each bar's price change multiplied by its volume — inside adaptive standard-deviation bands. Where price alone tells you that a market moved, the Force Index tells you how much effort went into moving it. A large price change on thin volume and a small change on heavy volume are very different events, even when the candles look similar. The Force Index separates them by combining both into a single reading, and the bands place that reading in the context of
FREE
OBVCD Pro MT4
Narayanan Mohanan Mohanan Krishnan
OBVCD Pro is a momentum oscillator that applies convergence/divergence analysis to On-Balance Volume (OBV) instead of price, combining adaptive volatility bands with a 5-state regime classifier that can be read visually on the chart or consumed directly by an Expert Advisor. Most classical oscillators analyse price alone. OBVCD Pro calculates convergence and divergence from cumulative volume flow, so it measures the participation behind a market move rather than only the movement itself. The res
Oscillator Regime Suite MT4
Narayanan Mohanan Mohanan Krishnan
This indicator applies the convergence/divergence construction — fast moving average minus slow, with a signal line — to a volume-derived series rather than to price. Three sources are selectable: Cumulative Volume Delta, Force Index, and On Balance Volume. Adaptive volatility bands are drawn over the result, and every completed bar is classified into one of five regime states. That state is exposed as a numeric buffer, so an Expert Advisor can read it directly. Why the source matters A standard
OBVCD Pro
Narayanan Mohanan Mohanan Krishnan
OBVCD Pro is a momentum oscillator that applies convergence/divergence analysis to On-Balance Volume (OBV) instead of price, combining adaptive volatility bands with a 5-state regime classifier that can be read visually on the chart or consumed directly by an Expert Advisor. Most classical oscillators analyse price alone. OBVCD Pro calculates convergence and divergence from cumulative volume flow, so it measures the participation behind a market move rather than only the movement itself. The res
Currency Strength Oscillator MT5
Narayanan Mohanan Mohanan Krishnan
This indicator plots the relative strength of the eight major currencies as a history, decomposed from the 28 major pairs. A panel tells you where things stand now. This shows how they got there — which currency has been strengthening, which has rolled over, and where the ranking changed hands. All eight series are exposed as documented indicator buffers, so an Expert Advisor can read currency strength directly. How the decomposition works Each of the eight currencies appears in seven of the twe
Oscillator Regime Suite
Narayanan Mohanan Mohanan Krishnan
This indicator applies the convergence/divergence construction — fast moving average minus slow, with a signal line — to a volume-derived series rather than to price. Three sources are selectable: Cumulative Volume Delta, Force Index, and On Balance Volume. Adaptive volatility bands are drawn over the result, and every completed bar is classified into one of five regime states. That state is exposed as a numeric buffer, so an Expert Advisor can read it directly. Why the source matters A standard
Structure Flow and Trailing Stop
Narayanan Mohanan Mohanan Krishnan
This indicator draws two lines on the price chart: an adaptive flow line that follows the market's direction, and a trailing stop that moves only in that direction and never back. A small panel reports the state behind them. The trailing stop can be calculated five different ways. These are not variations on one idea — each anchors to something different, and on the same chart they frequently disagree. The flow line An adaptive average. It smooths heavily when price is rotating and lightly when
Filter:
No reviews
Reply to review