Currency Strength Oscillator MT5

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 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.

int h = iCustom(_Symbol, _Period, "CurrencyStrengthOscillator"); double jpy[]; ArraySetAsSeries(jpy, true); CopyBuffer(h, 5, 0, 100, jpy); // buffer 5 is always JPY

  • 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

  • Three charts side by side — NZDUSD, NZDJPY and USDJPY, each showing only its own two currencies. The shared lines trace identical paths across the charts: the New Zealand dollar is the same measurement in the first two, the yen the same in the last two. The indicator reads the currencies, not the chart.
  • 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 — all ten buffers against a single bar, labelled and readable by an Expert Advisor. The eight currency values in it sum to −0.001, which is the zero-sum property in practice rather than in theory.
  • 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.
  • Gold 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 same EURGBP H4 window under both measures — one screenshot for rate of change, one for the standardised measure, with nothing else changed. At a lookback of 200 the offset described above is visible in the first and absent in the second.
  • AUDUSD weekly — price running from 2019 while the oscillator begins in late 2020. That gap is the broker's shortest common history, described below.
  • The inputs dialog — every setting, with the pane visible behind it.

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, and where a pair is missing the bar is left empty. A gap is obvious; a strength computed from a partial set looks exactly like a real reading and cannot be identified as wrong later.

Where a pair's bar times do not line up with the chart — a gap in the broker's history, which does occur on the lowest timeframes — that pair is excluded from the affected bars rather than shifted onto the wrong ones, and the exclusion is reported in the Experts log.

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 MT5 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, MT5/MQL5 developer.

Recommended products
GDS Renko Entry Helper - Free Renko Price Interaction Indicator for MetaTrader 5 GDS Renko Entry Helper is a free Renko price interaction indicator for MetaTrader 5. It helps traders highlight important areas where price reacts, slows down, returns to a zone or changes behavior around support and resistance. The tool is designed for manual Renko analysis. It does not generate buy or sell signals and does not tell the trader when to enter the market. Its purpose is to help focus attention on area
Indicator MTF Qristalium Arrows is a semi - automatic trading system. It works on all currency pairs.  The indicator uses three rules: 1) we trade only on the trend, 2)"buy when everyone sells and sell when everyone buys", 3) the Price always goes against the crowd.  Indicator MTF Arrows Qristalium filter rules across multiple time frames using the built-in indicators. If the trend matches on the selected time intervals, the indicator will give an arrow to enter the market. Then you make you
VR Grid Mt5
Vladimir Pastushak
3.25 (8)
The VR Grid indicator is designed to create a graphical grid with user-defined settings. Unlike the standard grid , VR Grid is used to build circular levels . Depending on the user's choice, the step between the round levels can be arbitrary. In addition, unlike other indicators and utilities, VR Grid maintains the position of the grid even when the time period changes or the terminal is rebooted. You can find settings, set files, demo versions, instructions, problem solving, at [blog] You can
FREE
Divergent Stochastic Filter II Catch Reversals Early, Filter Noise, Trade with Confidence The Edge: Why This Stochastic is Different  Every trader knows the Stochastic oscillator. But knowing when to trust its signals, that's the real challenge. The Divergent Stochastic Filter II transforms this classic indicator into a precision reversal detection system by adding critical elements: divergence intelligence, signal filtering and exhaustion detection.  While standard Stochastic oscillators fire s
RBreaker
Zhong Long Wu
RBreaker Gold Indicators is a short-term intraday trading strategy for gold futures that combines trend following and intraday reversal approaches. It not only captures profits during trending markets but also enables timely profit-taking and counter-trend trading during market reversals. This strategy has been ranked among the top ten most profitable trading strategies by the American magazine   Futures Truth   for 15 consecutive years. It boasts a long lifecycle and remains widely used and st
Price Magnet — Price Density and Attraction Levels Indicator Price Magnet is a professional analytical tool designed to identify key support and resistance levels based on statistical Price Density. The indicator analyzes a specified historical period and detects price levels where the market spent the most time. These zones act as “magnets,” attracting price action or forming a structural base for potential reversals. Unlike traditional Volume Profile tools, Price Magnet focuses on price-time d
Ultimate Boom and Crash Indicator The Ultimate Boom and Crash Indicator is a cutting-edge tool developed by  Coetsee Digital , designed to identify potential spike opportunities in the market. Crafted for traders focusing on Deriv and Weltrade synthetic markets, this indicator is optimized to operate exclusively on the 3-minute (M3), 5-minute (M5), 15-minute (M15), 30-minute (M30), and 1-hour (H1) timeframes and supports only the following pairs: PainX 1200, PainX 999, PainX 800, PainX 600, Pai
CM Ultimate Indicator for MT5
Mohammad Taher Halimi Tabrizi
CM Ultimate MA Indicator for MT5 The CM Ultimate MA Indicator for MetaTrader 5 is a powerful moving average–based trading tool designed for Forex, indices, stocks, and commodities. Unlike standard moving averages, this indicator adds advanced features for detecting trend direction, MA crossovers, and momentum shifts , giving traders reliable entry and exit signals. Key Features Dynamic Color Change – MA line changes color automatically based on trend direction. Smoothing Options – Reduce nois
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. We don't offer free or bonus indicators in exchange of reviews from you. You won't need any free products with this indicator to make it work. ;) Enjoy! User Manual: Here MT4 Version: Here MQL5 Channel - For daily market insight
The indicator builds current quotes, which can be compared with historical ones and on this basis make a price movement forecast. The indicator has a text field for quick navigation to the desired date. Options: Symbol - selection of the symbol that the indicator will display; SymbolPeriod - selection of the period from which the indicator will take data; IndicatorColor - indicator color; Inverse - true reverses quotes, false - original view; Next are the settings of the text field, in w
Structure King AI Signal Structure King AI Signal is a professional MetaTrader 5 trading indicator designed to help traders analyze market structure, trend direction, multi-timeframe confirmation and trade management from one clean dashboard. Key Features • Market Structure & Trend Analysis • BUY / SELL Signals • Multi-Timeframe (HTF) Confirmation • Entry Price Levels • Dynamic Stop Loss (SL) • TP1 / TP2 / TP3 Levels • ATR Volatility Analysis • ADX Trend Strength Filter • Adaptive Market Filter
Power Market Strength Panel Pro– One Panel, All Key Indicators in One Power Market Strength Panel is not just another indicator. It’s a comprehensive trading tool that combines several essential technical indicators and evaluates them automatically for you. It includes the following key indicators: EMA (Exponential Moving Average) – identifies trend direction ADX + DI+/- – measures trend strength and buy/sell pressure RSI (Relative Strength Index) – tracks momentum and overbought/oversold
Currency Strength Meter is the easiest way to identify strong and weak currencies.   The   indicator shows the relative strength of 8 major currencies: AUD, CAD, CHF, EUR, GBP, JPY, NZD, USD. By default the strength value is normalised to the range from 0 to 100 for RSI algorithm: The value above 60 means strong currency; The value below 40 means weak currency; The indicator is created and optimized for using it externally at an Expert Advisors or as a Custom Indicator inside your programs. Fo
Bollinger Band Scanner Pro - Multi-Symbol Signal Detector Professional Trading Tool for MT5 Transform your trading with the most advanced Bollinger Band scanner available for MetaTrader 5! Key Features Intelligent Signal Detection Precision Algorithm : Advanced multi-phase signal detection that identifies extreme BB reversals Smart Filtering : Eliminates false signals using middle-line crossing analysis Trend-Aware : Detects BUY signals in downtrends and SELL signals in uptrends only Mu
TREND SNIPER PORTFOLIO MT5 Trend Sniper Portfolio is a fully automated, institutional-grade trading algorithm designed specifically to capture high-probability trend reversals and momentum setups on fast-moving indices, with a primary optimization for the proprietary FX Vol 20 (Weltrade Index) . Unlike traditional high-risk grid or martingale systems that drain account equity during prolonged trends, this algorithm operates under a strict mathematical model built on structural price actio
Currency Strength Meter is the easiest way to identify strong and weak currencies. This indicator shows the relative strength of 8 major currencies + Gold: AUD, CAD, CHF, EUR, GBP, JPY, NZD, USD, XAU. Gold symbol can be changed to other symbols like XAG, XAU etc. By default the strength value is normalised to the range from 0 to 100 for RSI algorithm: The value above 60 means strong currency; The value below 40 means weak currency; This indicator needs the history data of all 28 major currency
GDS Renko Pip ST Chart - Pip-Based Renko Chart Indicator for MetaTrader 5 GDS Renko Pip ST Chart is a pip-based Renko chart indicator for MetaTrader 5. It helps traders build and study cleaner Renko price movement using a practical fixed pip or point-based brick structure. This tool is designed as a Renko chart foundation for manual analysis. It does not predict the market, does not generate buy or sell signals and does not decide whether a trade should be opened. Renko EDGE EA Golden Delta | A
Artemis ORB Scanner MT5  Artemis ORB Scanner MT5 is a multi-symbol Opening Range Breakout dashboard indicator for MetaTrader 5. It helps traders monitor ORB conditions across selected instruments from one chart. The scanner tracks session-based opening ranges, displays current ORB states, and provides dashboard information such as breakout direction, range quality, spread status, alerts, and optional chart overlays. The indicator is designed to help organise market information during active sess
Trend Meter – Your Tool for Identifying Strong and Reliable Trends Trend Meter is an advanced and highly customizable indicator designed to help traders identify the direction and strength of the current trend with greater accuracy, significantly reducing noise and the reliance on single signals. It's the ideal solution for those seeking reliable signals and wanting to trade with more confidence. Key Features: Three Independent Trend Meters : Choose from various trend logic options, such as MACD
XAUUSD Gold Master Indicator v5.0 Premium Gold Trading Suite for MetaTrader 5 Overview Gold Master v5.0 is a professional-grade, all-in-one trading indicator engineered exclusively for XAUUSD (Gold) on MetaTrader 5. Every parameter, threshold, filter, and calculation has been purpose-built and calibrated for Gold's unique price behavior, volatility profile, and market sessions — making it one of the most specialized Gold trading tools available on the MQL5 Market. This is not a generic multi-ass
"Hunttern harmonic pattern finder" base on the dynamic zigzag with the notification and prediction mode This version of the indicator identifies 11 harmonic patterns and predicts them in real-time before they are completely formed. It offers the ability to calculate the error rate of Zigzag patterns depending on a risk threshold. It moreover sends out a notification once the pattern is complete. The supported patterns: ABCD BAT ALT BAT BUTTERFLY GARTLEY CRAB DEEP CRAB CYPHER SHARK THREE DRIV
Designed by Welles Wilder for daily commodity charts, the ADXW is now used in various markets by technical traders to assess the strength of a trend or even a trend for short- or long-term trades. The ADXW uses a positive (DI+) and negative (DI-) directional indicator in addition to its trend line (ADX). According to Wilder, a trend has strength when the ADX signal is above 25; the trend is weak (or the price has no trend) when the ADX is below 20. The absence of a trend does not mean that th
ATrend
Zaha Feiz
4.83 (18)
ATREND: How It Works and How to Use It How It Works The " ATREND " indicator for the MT5 platform is designed to provide traders with robust buy and sell signals by utilizing a combination of technical analysis methodologies. This indicator primarily leverages the Average True Range (ATR) for volatility measurement, alongside trend detection algorithms to identify potential market movements. Leave a massage after purchase and receive a special bonus gift. Key Features: ⦁ Dynamic Trend Detect
SyntheticaFX Boom and Crash
Hendrik Lodewyk Coetsee
5 (1)
SyntheticaFX Boom and Crash  is a powerful tool designed to highlight potential spike opportunities in the market, exclusively for traders focusing on Crash and Boom indices. This indicator is strictly optimized to operate on the 3-minute (M3) timeframe and supports only the following pairs: Crash 1000 Index , Crash 900 Index , Crash 600 Index , Crash 500 Index , Crash 300 Index , Boom 1000 Index , Boom 900 Index , Boom 600 Index , Boom 500 Index , and Boom 300 Index . It will not display signa
Liquidity Order Blocks MT5
Johan Adrian Nieto Resendiz
Liquidity Order Blocks MT5 Liquidity Order Blocks MT5 is a professional visual indicator for MetaTrader 5 designed to help traders identify and monitor potential bullish and bearish liquidity areas directly on the chart. The indicator detects pivot-based order block zones and displays each zone with a structured visual breakdown of estimated bullish volume, bearish volume, relative strength and delta. Its purpose is to make liquidity areas easier to read, compare and monitor during market analys
MarketStrength Pro Your edge in the market! How It Works MarketStrength Pro analyzes market strength using four key components : Buy/Sell Pressure – visualizes buyer and seller dominance Normalized Volume – detects abnormal volume activity Volatility Trend – merges volatility with directional trend SMA Trend Detection – delivers professional trend signals Core Technology Candle Body Analysis – measures strength via candle body size Volume Normalization – compares current volume to av
Currency RSI Scalper MT5   -is a professional indicator based on the popular Relative Strength Index (RSI) indicator. This product is an oscillator with dynamic overbought and oversold levels, while in the standard RSI, these levels are static and do not change. This allows Currency RSI Scalper to adapt to the ever-changing market. When a buy or a sell signal appears, an arrow is drawn on the chart and an alert is triggered allowing you to open a position in a timely manner and avoid sitting at
Liquidity Oscillator
Paolo Scopazzo
3 (2)
A powerful oscillator that provide Buy and Sell signals by calculating the investor liquidity. The more liquidity the more buy possibilities. The less liquidity the more sell possibilities. Please download the demo and run a backtest! HOW IT WORKS: The oscillator will put buy and sell arrow on the chart in runtime only . Top value is 95 to 100 -> Investors are ready to buy and you should follow. Bottom value is 5 to 0 -> Investors are ready to sell and you should follow. Alert + sound will appe
STRICTLY FOR BOOM INDEX ONLY!!!!! Here I bring the Maximum Trend Arrows OT1.0 MT5 indicator. This indicator is made up of a combination of different trend indicators for entries and exits, for entries an orange arrow will paint on the chart below the current market and a red flag for closing of trades and it produces buy arrows only. When the orange arrow appears, it will appear along with it's sound to notify you. The 1H timeframe is recommended, don't use it anywhere else than on the 1H timefr
Buyers of this product also purchase
SMART TREND TRADING SYSTEM — SPECIAL OFFER Your trading system. Your automation EA. Your training and support. Get Smart Trend Trading System for MT5 for $99 and receive Smart Universal Expert Advisor FREE to automate its signals. STTS brings trend direction, entry and exit signals, reversal zones, and important price levels together on your chart. Follow the system manually, or connect the included EA for automated execution using your chosen settings. The current $99 price applies to the next
Trend Sniper X
Sarvarbek Abduvoxobov
4.88 (33)
Trend Sniper X is a multi-timeframe trend-following indicator for MetaTrader 5 that helps traders identify trend direction and potential reversal points with clarity and precision. for MT4: https://www.mql5.com/en/market/product/193245 Price Information: The current price is promotional and is subject to change as upcoming updates and new features are released. Bonus Offer: To get the FREE Auto-Trade Assistant EA for this indicator, please message the author after purchasing. Code2Profit Channe
Neuro Poseidon MT5
Daria Rezueva
4.79 (53)
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 al
SuperScalp Pro
Van Minh Nguyen
4.64 (33)
SuperScalp Pro - Professional Multi-Layer Confluence Scalping System SuperScalp Pro is an advanced scalping indicator that upgrades classic Supertrend with multiple intelligent confirmation filters. It helps you identify higher-probability Buy/Sell opportunities while significantly reducing false signals. Clear Buy and Sell arrows appear directly on the chart, with automatic ATR-based Stop Loss and Take Profit levels calculated in real time. After purchase, contact me for setup guidance and reco
Secure the Lowest Price Today. After purchase, contact via   MQL5 inbox   to receive your buyer kit and bonus. Let's be honest first. No indicator will make you profitable on its own. If someone tells you otherwise, they're selling you a dream. Every indicator that shows perfect buy/sell arrows can be made to look flawless — just zoom into the right window of history and screenshot the winners. We won't do that. SMC Intraday Formula is a tool. It reads the market structure for you, maps the hig
Welcome to ENTRY IN THE ZONE AND SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool based on Smart Money Concepts (SMC), designed to analyze market structure, price direction, and key trading zones. It supports both Single-Timeframe Analysis and Multi-Timeframe Analysis, providing a clearer view of the overall market structure across multiple timeframes, with real-time BUY / SELL signals that do not repaint. It is designed to help filter trading opp
M1 Sniper MT5
Oleg Rodin
5 (7)
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
Unix Scalper
Issam Kassas
5 (2)
UNIX SCALPER — SPECIAL OFFER Find the setup. See the plan. Choose how to trade it. Get UNIX Scalper for MT5 for $99 and receive Smart Universal Expert Advisor FREE to automate its signals. UNIX Scalper brings market analysis, BUY/SELL/WAIT decisions and Entry, Stop Loss, TP1 and TP2 levels into one organized panel. Follow the trade plan manually or connect the included EA for automated execution using your chosen settings. The current $99 price applies to the next 30 purchases. After that, the p
Entry Points Pro 10 — the legend of the MQL5 Market. Three years in the Market's Top-3. 595 reviews across two versions. Over 31,000 demo downloads. Thousands of traders open their charts with it every morning. Built and traded by an author who has been in the market since 1999. Version 10 is the biggest rebuild in the indicator's history: I read every review from five years — and built the answers into the code. WHAT IT DOES It shows the entry point in advance — strictly without repainting. Th
Reversion King Indicator
Eugen-alexandru Zibileanu
5 (7)
A new King in town - Indicator + Order management indications(tp1+tp2+tp3) + Optional Telegram Signal sender   INCLUDED (FREE) ( FULL TRADING  and SIGNAL SYSTEM ) Our best EA for Gold: Gold Slayer NEW Free Automation EA link < click here ( disclaimer: this is new and still on testing and phase , use at your risk on demo) Free Telegram Bridge < click here  This indicator includes an advanced Strategy, a trading system with customisable order management and a mean reversion system that combines e
Atomic Analyst MT5
Issam Kassas
4.44 (57)
ATOMIC ANALYST — SPECIAL OFFER Your market analysis. Your automation EA. Your training and support. Get Atomic Analyst for MT5 for $99 and receive Smart Universal Expert Advisor FREE to automate its signals. Atomic Analyst brings price action, trend direction, entry and exit signals, Stop Loss and multiple Take Profit levels together on your chart. Trade manually using its analysis, or connect the included EA for automated execution using your chosen settings. The current $99 price applies to t
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
The UZFX {SSS} Scalping Smart Signals v5.0 MT5  is a Non Repaint high-performance trading indicator designed for Scalpers, Day Traders, and Swing Traders who demand accurate, real-time signals in fast-moving markets. Developed by (UZFX-LABS), this indicator combines price action analysis, trend confirmation, and smart filtering to generate high-probability buy and sell signals, Warning Signals, and Trend Continuation Opportunities across all currency pairs and timeframes.  Stop second-guessing
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 A
FiboSniper Pro
Van Minh Nguyen
5 (2)
FiboSniper Pro - Multi-Filter Fibonacci System with Auto SL/TP and Control Panel FiboSniper Pro is a technical indicator that combines dynamic Fibonacci Envelopes with multiple confirmation filters to generate selective Buy and Sell signals. Fibonacci levels are calculated from Moving Average and ATR, then filtered by ADX, EMA, RSI, ATR, Volume, Time and Candle structure. The indicator displays automatic ATR-based Stop Loss and Take Profit levels directly on the chart, along with an interactive
Divergence Bomber
Ihor Otkydach
4.89 (94)
Each buyer of this indicator also receives the following for free: The custom utility "Bomber Utility", which automatically manages every trade, sets Stop Loss and Take Profit levels, and closes trades according to the rules of this strategy Set files for configuring the indicator for various assets Set files for configuring Bomber Utility in the following modes: "Minimum Risk", "Balanced Risk", and "Wait-and-See Strategy" A step-by-step video manual to help you quickly install, configure, and
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 s
Gem SIGNAL
Shengzu Zhong
5 (1)
GEM Signal Pro GEM Signal Pro is a trend-following indicator for MetaTrader 5, designed for traders who want clearer signals, more structured trade setups, and practical risk management directly on the chart. Instead of showing only a simple arrow, GEM Signal Pro helps present the full trade idea in a cleaner and more readable way. When conditions are confirmed, the indicator can display the entry price, stop loss, and take profit targets on the chart, helping traders review the setup more effic
SMART PRICE ACTION CONCEPTS — SPECIAL OFFER See the structure. Identify the zones. Build your trading plan. Get Smart Price Action Concepts for MT5 for $49 and receive Smart Universal Expert Advisor FREE. Bring Smart Money Concepts (SMC), ICT-style analysis and price action together in one organized chart. Identify market structure, order blocks, liquidity reference levels and imbalances, then choose which elements to display through the Smart Panel. The current $49 price applies to the next 30
ATSTRONG PRO: Market Structure & Breakout Indicator Breakout Detection Engine | 5 Dynamic TP Targets | Live Dashboard Panel | Non-Repainting Introductory Price Current Price: $59 — The price increases by $10 after every 10 sales. ATSTRONG PRO is an advanced breakout and institutional market structure indicator engineered for MetaTrader 5. It detects high-probability swing pivots, identifies clustered support and resistance accumulation zones, and signals Break of Structure (BOS) and Character
Power Candles MT5
Daniel Stein
4.73 (11)
Power Candles - Self-Optimizing Strength Indicator Series price: 79 USD until Sunday, 20 September 2026, then 99 USD again. Strength usually lives in a sub-window. The line runs below, the candle above, and your eye keeps connecting the two. Power Candles puts the strength into the candle itself, colored from dark red to dark green, so the chart reads at a glance and the sub-window stays closed. The indicator also finds its own settings for the symbol and timeframe in front of you. One click on
Axiom Matrix
Issam Kassas
5 (8)
User manual: https://www.mql5.com/en/blogs/post/773819 Online course: https://www.mql5.com/en/blogs/post/775704 User manual PDF: https://c.mql5.com/6/1021/Axiom_Matrix_User_Manual_compressed.zip [DEMO] Axiom Matrix is a professional multi-symbol, multi-timeframe market scanner and decision dashboard for MetaTrader 5. It scans your Market Watch, analyzes multiple timeframes, reads multiple evidence engines, compares the strongest opportunities, and shows you the best BUY, SELL, WAIT, or blocked
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2: Synthetic Fractal Structure and Confirmed Entries for MT5 Overview Azimuth Pro is a multi-level swing structure indicator by Merkava Labs . Four nested swing layers, swing-anchored VWAP, ABC pattern detection, three-timeframe structural filtering, and closed-bar confirmed entries — one chart, one workflow from micro-swings to macro-cycles. This is not a blind signal product. It is a structure-first workflow for traders who care about location, context, and timing. ️ Summer Sale
CRT Candle Range Theory HTF MT5.   Ultimate CRT Indicator: Advanced ICT Concepts and Malaysian SnR Trading System Master the Market Maker's Footprints with the Most Advanced Candle Range Theory Indicator Unlock the true power of  Smart Money Concepts (SMC)  and trade precisely like the institutions with the  Ultimate CRT Indicator . Built exclusively for serious traders, this indicator automates the highly effective  Candle Range Theory (CRT) , a core pillar of  ICT Concepts (Inner Circle Trader
Crystal Heikin Ashi Signals
Muhammad Jawad Shabir
5 (4)
Crystal Heikin Ashi Signals - Professional Trend & Signal Detection Indicator Advanced Heikin Ashi Visualization with Intelligent Signal System for Manual & Automated Trading Final Price: $149 ---------> Price goes up $10 after every 10 sales . Limited slots available — act fast . Overview Crystal Heikin Ashi Signals is a professional-grade MetaTrader 5 indicator that combines pure Heikin Ashi candle visualization with an advanced momentum-shift detection system. Designed for both manual traders
Smc Pro ToolKit
Talal N Z Aljarusha
5 (12)
SMC PRO TOOLKIT — SMART MONEY ANALYSIS & STRUCTURED TRADE PLANNING SMC Pro ToolKit is a professional Smart Money Concepts analysis workspace for MetaTrader 5. It combines market structure, multi-timeframe analysis, institutional price zones, setup evaluation, confirmation tools, volume context, alerts, and risk planning inside one organized chart environment. One workspace. Multiple layers of confirmation. One structured trading plan. OPEN COMPLETE USER GUIDE MULTI-CONDITION SETUP ENGINE At
Trend Catcher ind mt5
Ramil Minniakhmetov
5 (18)
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
Crystal Quantum Pro
Muhammad Jawad Shabir
5 (3)
CRYSTAL QUANTUM PRO Institutional Signal & Trade Intelligence for MetaTrader 5 Final Price: 199 USD ----> Price goes up 10 USD after every 10 sales. Limited launch slots available, act fast. Most indicators give you an arrow and leave you alone. A naked arrow is a gamble. Winning consistently requires CONFLUENCE , a clear STOP and TARGET , and honest PROOF that the system works. Crystal Quantum Pro delivers all three in one clean, no-repaint package. Crystal Quantum Pro is a complete decision sy
FX Power MT5 NG
Daniel Stein
5 (33)
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
FX Trend MT5 NG
Daniel Stein
5 (6)
FX Trend NG: The Next Generation Multi-Market Trend Intelligence Overview FX Trend NG is a professional multi-timeframe trend and market monitoring tool designed to give you a complete structural overview of the market in seconds. Instead of switching between dozens of charts, you instantly see which symbols are trending, where momentum is fading, and where strong alignment exists across timeframes. This tool is part of the Stein Investments ecosystem - 18+ tools plus Max, your 1-on-1 AI tradi
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
Trend Survival States
Narayanan Mohanan Mohanan Krishnan
Trend Survival States for MetaTrader 5 — a free market regime indicator measuring bull and bear pressure with adaptive volatility bands and a five-state trend classification Bull and bear pressure, an adaptive-band spread, and a five-state market classification, free for MT5. It measures the buying and selling pressure behind the current move and classifies that into a market state: strong bull, weak bull, neutral, weak bear, strong bear. This is a complete regime indicator, not a time-limited t
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
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
Indicator Test Report
Narayanan Mohanan Mohanan Krishnan
Indicator Test Report for MetaTrader 5 — a repaint checker and indicator tester that shows how any indicator actually behaves You cannot see inside a compiled indicator. The Indicator Test Report loads any indicator — bought, written, or built into MetaTrader — and answers the question a description cannot: does it repaint, how much history does it need, and what does it really publish? It reports behaviour. It does not grade. Load any indicator into the Strategy Tester and get a plain-language
FREE
Indicator Test Report MT4
Narayanan Mohanan Mohanan Krishnan
Indicator Test Report for MetaTrader 4 — an MT4 repaint checker and indicator tester that shows how any indicator actually behaves You cannot see inside a compiled indicator. The Indicator Test Report loads any indicator — bought, written, or built into MetaTrader — and answers the question a description cannot: does it repaint, how much history does it need, and what does it really publish? It reports behaviour. It does not grade. Load any indicator into the Strategy Tester and get a plain-lang
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
Currency Strength Oscillator MT4
Narayanan Mohanan Mohanan Krishnan
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
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
Structure Flow and Trailing Stop MT4
Narayanan Mohanan Mohanan Krishnan
Structure Flow and Trailing Stop MT4 — an adaptive flow line with five trailing stop methods, market structure and liquidity bands for MetaTrader 4 Five trailing stop methods, one adaptive flow line, and a condition panel that reports how many measurements agree. 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 trailin
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
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
Trend Survival Rate
Narayanan Mohanan Mohanan Krishnan
Trend Survival Rate for MetaTrader 5 — a market regime indicator that measures how often the current trend state has survived to the next bar, and scores its own forecast Trend survival rate, market state classification and a live Brier forecast score, in one MT5 indicator window. It measures the buying and selling pressure behind the current move, classifies that into a market state, and reports how often that state has survived to the next bar — then grades its own forecast against what actual
Filter:
No reviews
Reply to review