TriZone Semafor Pro

  • Indicators
  • Ahmed Hamed Hamed Eadwan
    Ahmed Hamed Hamed Eadwan
    Hello, I'm Ahmed — a trader and MQL5 developer based in the
    United Arab Emirates, and the founder of R protocols.
    I've been writing code since 1984 and trading the markets since 2006.
    For many years, I developed trading tools for my own use, refining them
    through real market experience.
  • Version: 1.0
  • Activations: 5

If you require institutional-grade multi-level pivot detection combined with automated Market Structure analysis, Supply & Demand confluence zones, real-time dashboard analytics, and EA automation integration, TriZone Semafor Pro is the flagship solution for your MetaTrader 5 terminal.

Flagship Pro Power Features

Building on the exclusive 3-level ZigZag engine (Fast Period 5, Medium Period 13, Slow Period 34), TriZone Semafor Pro plots confirmed swing points on three independent timescales with strict exclusive priority pass (Level 3 overrides Level 2, Level 2 overrides Level 1).

  • ATR-Adaptive Deviation: Dynamic ATR-based pivot filtering scales automatically with market volatility instead of rigid fixed points. Manual fixed-point mode remains available.
  • Market Structure Engine: Real-time automated detection of BOS (Break of Structure) and CHoCH (Change of Character) per timeframe level, alongside HH / HL / LH / LL swing labels.
  • Supply & Demand Confluence Zones: Institutional order blocks drawn automatically where multiple ZigZag timescales agree, with strength grading (L1, L2+L3, L1+L2+L3) and automatic polarity breach logic.
  • Support & Resistance Rays: Dynamic horizontal rays extended from confirmed swing highs and lows, styled and filtered by structural timeframe level.
  • Exclusive Signal Priority: Highest level always wins per candle. No stacking, no double-counting — one clean arrow per direction.
  • Real-Time On-Chart Dashboard: Displays current multi-level market stats, active signal level, current zone, structure event, per-level trend, and engine status.
  • Complete Notification Suite: Popup, Mobile Push notifications, Email, and Sound alerts — fired once per newly confirmed pivot only.
  • 100% Anti-Repaint Mode: Signals are published only after the configurable confirmation window closes. Arrows follow the exact same strict no-repaint floor as the EA buffer.
  • EA Automation Buffer (Buffer 6): Features a specialized EA-readable Signal Strength buffer (+1.0 = BUY, -1.0 = SELL, 0.0 = Neutral) for single-call iCustom integration.
  • Multi-Instance Safe: Unique object namespaces, heartbeat-based collision guard, and automatic cleanup of chart objects and terminal Global Variables.
  • Zero External Dependencies: Native MetaTrader 5 code, works on any symbol and timeframe, zero DLL imports.

Official Links & Documentation

User Manual & Setup Guide: https://www.mql5.com/en/blogs/post/773880
Official MQL5 Channel: https://www.mql5.com/en/channels/rprotocols

Anti-Repaint & EA Contract (Buffer 6)

Buffer 6 exposes Multi-Level Signal Strength for automated EA systems (+1.0 = BUY, -1.0 = SELL, 0.0 = neutral/conflict):

  • Exclusivity Grade: Buffer 6 is the hierarchical grade after exclusivity (L3 > L2 > L1).
  • No-Repaint Shift Contract: With Anti-Repaint ON, values read at or beyond the published safe shift are final and never revised. The exact minimum safe shift is exposed via Global Variable ( TZP_<Hash8>_MinShift ).

Transparency & Performance

  • Tester Optimization: Alerts are automatically suppressed during Strategy Tester optimization passes.
  • Headless Mode: Enabling HeadlessMode = 1 inside your EA suppresses visual dashboard elements and chart objects for maximum execution speed.
  • Global Variables Cleanup: Leftover Global Variables are automatically swept on start and removal.

If you find TriZone Semafor Pro helpful for your trading and strategy development, please consider leaving an honest review and rating. Thank you for your support!

iCustom Reference Table — Output Buffers

Buffer Index Signal Description
0 (BufLow1) BUY Level 1 Low pivot price — Fast ZigZag
1 (BufHigh1) SELL Level 1 High pivot price — Fast ZigZag
2 (BufLow2) BUY Level 2 Low pivot price — Medium ZigZag
3 (BufHigh2) SELL Level 2 High pivot price — Medium ZigZag
4 (BufLow3) BUY Level 3 Low pivot price — Slow ZigZag
5 (BufHigh3) SELL Level 3 High pivot price — Slow ZigZag
6 (BufSignal) BUY / SELL EA Signal Strength: +1/+2/+3 for BUY (L1/L2/L3), -1/-2/-3 for SELL (L1/L2/L3), 0 = None

iCustom Code Example

File name: "TriZone_Semafor_Pro" (no .ex5 extension). Always set HeadlessMode = 1 inside Expert Advisors.

//+------------------------------------------------------------------+ //| iCustom handle — TriZone_Semafor_Pro v1.0 | //+------------------------------------------------------------------+ int g_tzsHandle = INVALID_HANDLE; int OnInit() { g_tzsHandle = iCustom( _Symbol, PERIOD_CURRENT, "TriZone_Semafor_Pro", // Level 1: Fast 5, 1, 3, 159, 159, 2, // Level 2: Medium 13, 8, 5, 108, 108, 3, // Level 3: Slow 34, 21, 12, 108, 108, 4, // Instance "EA1", 0, 1, // Anti-Repaint 1, 0, // Alerts & Dashboard 0, 0, 0, 0, 0, "alert.wav", 0, 20, 30, clrDodgerBlue, clrOrangeRed, C'20,20,30', 9 ); if(g_tzsHandle == INVALID_HANDLE) { PrintFormat("[EA] TriZone_Semafor_Pro handle failed: err=%d", GetLastError()); return INIT_FAILED; } return INIT_SUCCEEDED; } void OnTick() { int safeShift = 4; double sigBuf[1]; if(CopyBuffer(g_tzsHandle, 6, safeShift, 1, sigBuf) != 1) return; int sigValue = (int)sigBuf[0]; if(sigValue > 0) { PrintFormat("BUY Signal Detected! Level %d at shift %d", sigValue, safeShift); } else if(sigValue < 0) { PrintFormat("SELL Signal Detected! Level %d at shift %d", MathAbs(sigValue), safeShift); } } void OnDeinit(const int reason) { if(g_tzsHandle != INVALID_HANDLE) { IndicatorRelease(g_tzsHandle); g_tzsHandle = INVALID_HANDLE; } }

EA MinShift Global Variable Auto-Detect

The indicator exposes its safe minimum read shift via a Global Variable so EAs can auto-detect the correct shift instead of hardcoding:

// EA: Auto-detect safe shift from indicator Global Variable int GetMinShift(string instanceID) { string hash = HashToHex8(instanceID); string gvName = "TZP_" + hash + "_MinShift"; if(GlobalVariableCheck(gvName)) return (int)GlobalVariableGet(gvName); return 4; // fallback to default }

Recommended products
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
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation.
Caicai L&S Yield Histogram Important Notice: This indicator is an integral tool of the automated EA Caicai Long and Short Pair Trading . This indicator visually displays the percentage deviation (Yield %) of a pair's current spread relative to its own historical mean. It is an excellent tool for quickly visualizing the gross financial potential of a market distortion in Long & Short operations. Main Features: Percentage Visualization: Understand the size of the distortion in palpable percentage
Trend Master V2
Oratile Pitsoane
What Is Trend Master Pro? Trend Master Pro   is a professional-grade trend trading indicator built for MetaTrader 5. It was designed with one goal in mind — to keep you on the right side of the market at all times by combining three powerful technical tools into a single, clean, easy-to-read display directly on your price chart. Instead of cluttering your screen with multiple separate indicators, Trend Master Pro fuses an   EMA Ribbon trend filter , a   ZigZag swing point engine , and a   breako
CosmiCLab SMC FIBO CosmiCLab SMC FIBO is a professional trading indicator designed for traders who use Smart Money Concepts (SMC), market structure analysis and Fibonacci retracement levels. The indicator automatically detects market swings and builds Fibonacci levels based on the latest impulse movement. It also identifies market structure changes such as BOS (Break of Structure) and CHOCH (Change of Character), helping traders understand the current market direction. CosmiCLab SMC FIBO also pr
Onnyx Indicator is a non-repainting supply and demand analysis indicator for MetaTrader 5. It identifies confirmed swing-based zones, scores their quality, and displays clear BUY and SELL signals directly on the chart. MAIN FEATURES • Supply and demand zones based on confirmed price swings • ATR-adaptive zone width for changing market volatility • Zone quality displayed as a percentage inside each zone • Clear BUY and SELL arrows with enlarged signal markers • Closed-candle signal logic designed
Your Trend Friend
Luigi Nunes Labigalini
5 (1)
The trend is your friend! Look at the color of the indicator and trade on that direction. It does not  repaint. After each candle is closed, that's the color of the trend. You can focus on shorter faster trends or major trends, just test what's most suitable for the symbol and timeframe you trade. Simply change the "Length" parameter and the indicator will automatically adapt. You can also change the color, thickness and style of the lines. Download and give it a try! There are big movements w
SPECIAL LAUNCH OFFER: $30 (1-Month Rent) Limited time offer to build our community and gather feedback! AmbM GOLD Institutional Scalper A high-precision M5 algorithm for XAUUSD (Gold) , engineered to trade exclusively at Institutional Liquidity Levels ($5/$10 psychological marks). PERFORMANCE DATA (BUY ONLY) • Win Rate: 87.09%. • Safe Growth: +$4,113 profit on $10k (13.75% Max Drawdown). • Extreme Stress Test: Successfully generated +$22,997 in a 5-year stress test (2020-2026), proving
MACD Sniper Pro
Noppawat Tumjai
MACD Sniper Pro is an advanced automated trading system designed for traders seeking high-precision entries and robust risk management. By combining the classic momentum of MACD Crossover with a strict ADX Volatility Filter and Dynamic ATR Management , this EA completely eliminates emotional trading and filters out dangerous flat/sideways markets. Unlike standard MACD indicators that suffer during consolidation, MACD Sniper Pro verifies trend strength before entering and protects your capital us
FREE
CyberTradeTHxAI Gold Sniper MT5 Professional Gold Trading Signal Indicator for MetaTrader 5 CyberTradeTHxAI Gold Sniper MT5 is a professional-grade Gold (XAUUSD) trading indicator developed to identify high-probability Buy and Sell opportunities using trend analysis, pullback confirmation, and intelligent market structure detection. Designed for both beginner and advanced traders, the indicator automatically calculates optimal Entry Zones, Stop Loss, and multiple Take Profit levels while provid
Premium level is a unique indicator with more than 80% accuracy of correct predictions! This indicator has been tested for more than two months by the best Trading Specialists! The author's indicator you will not find anywhere else! From the screenshots you can see for yourself the accuracy of this tool! 1 is great for trading binary options with an expiration time of 1 candle. 2 works on all currency pairs, stocks, commodities, cryptocurrencies Instructions: As soon as the red arrow app
Evo Max
Joseph Saeidian
Combination of years of experience!  Spartan — EVO MAX Edition : T rend, Reversal and Exhaustion Indicator Time Frame M1 only. GOLD The multi-timeframe RSI confluence  system that only fires when the market actually agrees with you. Most indicators scream "BUY!" every time a single line wiggles. "Evo Max" is built on the opposite philosophy: a signal only appears when multiple timeframes line up at once. No noise. No hero trades. Just high-conviction arrows. Why traders love it Multi-timeframe
Universal Trend
Maryna Shulzhenko
The Universal Trend indicator was created to detect trends in price movement and allows you to quickly determine not only the direction of the trend, but also understand the levels of interaction between buyers and sellers. The indicator works on all timeframes and currency pairs. The indicator gives fairly accurate signals and it is customary to use it both in trending and flat markets. It is advisable to use the indicator in combination with other tools for more reliable signals and making a
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
BTC Trend Scalper MT5 Trend Capture Edition — Precision Momentum Trading for BTCUSD Hello, traders! I am BTC Trend Scalper MT5 — an intelligent Bitcoin trading Expert Advisor engineered to capture momentum moves with disciplined risk management. I am not a martingale. I am not a grid system. I am not a gambling robot. I am a trend-following scalper built specifically for traders who understand that protecting capital is more important than chasing every candle. My specialty? Bitcoin (BTCUSD)
HAS RSI Signal — Professional Trend Indicator with SL/TP Calculation HAS RSI Signal is a powerful trading tool that combines time-tested classics with modern noise-filtering algorithms. The indicator analyzes the market through the prism of Heiken Ashi Smoothed candles and the RSI oscillator, providing clear entry signals at trend reversals or when exiting overbought/oversold zones. Key Advantages: Double Filtration: Using Heiken Ashi Smoothed eliminates market "noise," while RSI confirms the mo
Fibaction
Abdelkhalek Orabi
Indicator Name: Fibaction – price action candle Detector Description: Fibo Signal Boxes is a powerful Smart Money Concept (SMC)-inspired indicator that auto-detects price action candles. bullish hammers and shooting stars, then draws precise Fibonacci entry zones and multiple take-profit levels directly on the chart. as for the SL personally i use 40 pips rules  Key Features: Detects bullish hammer and shooting star reversal candles. Automatically draws Fibonacci entry and TP boxes. as
Phantom Edge SMC
Nattapon Chuekamhod
Phantom Edge SMC — The Ultimate Smart Money Indicator for MT5 Tired of manually drawing structures while trading SMC or ICT concepts? Let Phantom Edge SMC do the heavy lifting for you. Key Features Internal & Swing Structure: Automatically detects BOS and CHoCH across two structural levels. Order Blocks (OB): Identifies Internal and Swing OBs with automated mitigation tracking. Equal Highs / Lows: Highlights EQH / EQL to pinpoint Liquidity pools. Fair Value Gaps (FVG): Displays FVGs with
The Horizontal Ray Tool is a lightweight, professional charting utility designed to streamline support and resistance mapping on MetaTrader 5. It brings rapid, one-click horizontal level placement directly to your live chart, eliminating the workspace clutter associated with infinite horizontal lines or manually drawn trendlines. Key Features: Interactive On-Screen Button: Spawns a clean, responsive "DRAW RAY" button docked directly on your chart canvas. A single click drops an independent hor
FREE
Magic EA MT5
Kyra Nickaline Watson-gordon
Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA w
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
How it works –   Base-departure detection — algorithmically finds consolidation bases (overlapping range with compressed volatility) followed by displacement departures. Patterns: Drop-Base-Rally, Rally-Base-Drop, Rally-Base-Rally, Drop-Base-Drop — detected structurally, not by candle names. –   Strength score (0–100) — from departure velocity, time-at-base, freshness (each revisit decays the score), higher-timeframe confluence and origin volume. –   Lifecycle — Fresh, Tested (decaying), Broken
FREE
Multi Timeframe Smc Bias Finder Trading in alignment with higher timeframe structure is one of the most consistently profitable habits a trader can build. The difficulty has always been execution: switching between timeframes, manually reading structure, and keeping track of whether the Daily, 4-Hour and 1-Hour are all pointing in the same direction before committing to a position. Multi Timeframe Smc Bias Finder resolves that entirely. Three tools in one indicator: A live multi-timeframe bias d
Trade smarter, not harder: Empower your trading with Harmonacci Patterns This is arguably the most complete harmonic price formation auto-recognition indicator you can find for the MetaTrader Platform. It detects 19 different patterns, takes fibonacci projections as seriously as you do, displays the Potential Reversal Zone (PRZ) and finds suitable stop-loss and take-profit levels. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  ] It detects 19 different harmonic pric
Nova SuperTrend Follower See the market clearly. Trade with precision. Follow the trend with confidence. The Nova SuperTrend Follower is a powerful, multi-layered indicator combining institutional VWAP with a fully customizable dual EMA system. It cuts through the noise to give you crystal-clear market visibility, perfect entry timing, and early reversal detection. The Core Components VWAP — The Volume Anchor Tracks institutional money flow. Unlike standard averages, VWAP filters out low-volum
AutoTrend Pro
Aram Hussein Mohammed
TL Method — Automatic Trendline Detection & Strength Indicator Tired of drawing trendlines manually? TL Method does it for you — automatically detecting, drawing, and scoring trendlines in real time. What it does: Scans up to 1000 bars to find valid support and resistance trendlines Scores each trendline by counting confirmed anchor touches Generates buy/sell signal arrows when price approaches strong trendlines Alerts you via popup, push notification, or sound — with smart cooldown to avoid spa
Manyal trading system, CovEchoTrend Robot, focuses on reliability and flexibility. By employing statistical analysis methods to study the relationships between the base indicator and market patterns, the system enables a deeper understanding of market processes. Intelligent pattern analysis: The application of statistical data processing helps identify key trend reversal points more accurately, signaling significant market shifts. Informed decision-making is based on the intersection of indicato
Classic SNR MetaTrader 5 Expert Advisor | Multi-Symbol Support & Resistance Trading with Trend-Based Logic Overview Classic SNR Breakout EA is a professional trading robot that identifies structural Support & Resistance levels using daily swing points and executes trades based on H1 price action relative to these levels. The EA applies   dual logic : in an uptrend, it sells on H1 rejection below an SNR level; in a downtrend, it buys on H1 rejection above an SNR level. Breakout confirmations are
HMA Scalper Pro EA
Vladimir Shumikhin
5 (2)
HMA Scalper Pro EA — Automated Trading Advisor Based on Hull Moving Average (HMA) for MetaTrader 5 OVERVIEW HMA Scalper Pro EA is a professional trading robot (Expert Advisor) for MetaTrader 5 that trades in the direction of the Hull Moving Average (HMA). The HMA indicator determines the current trend direction, and the EA opens trades in that direction, enhanced by Smart Risk capital management, adaptive grid trading, trailing stop, breakeven, and time filters. The EA supports both Netting a
"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
Buyers of this product also purchase
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.   [User Manual]   ,  [PDF]  ,   [Installation manual]   and  [Online course] Smart T
Trend Sniper X
Sarvarbek Abduvoxobov
5 (9)
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. Price Information: The current price is promotional and is subject to change as upcoming updates and new features are released. Code2Profit Channel Master the Market with Multi-Timeframe Analysis! Technical Specifications Platform MetaTrader 5 Indicator Type Multi-Timeframe Trend Indicator Operating Timeframe Any char
Superhero
Ihor Otkydach
5 (2)
The SUPERHERO indicator is a multi-currency trading system designed on an "all-inclusive" basis. The indicator independently analyzes the market and provides signals on when to open and close trades. It uses Stop Loss and Take Profit orders. The R:R ratio is 1:1. From time to time, I personally trade based on this system's signals, and here are the results I get—   LIVE SIGNAL This system can send push notifications to your smartphone, so you can place trades "on the go" without needing to be ti
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
The legend is back! Entry Points Pro 10. A relaunch of the legendary indicator that held a Top-3 spot on the MQL5 Market for 3 years. Hundreds of rave reviews (589 across two versions), thousands of traders use it every day, 31,000+ demo downloads  across   MT4   +   MT5 . I have read every one of your reviews from the past five years — and instead of promises, I built the answers into version 10. From an author who has been in the market since 1999 and values honesty, his reputation and his cli
Neuro Poseidon MT5
Daria Rezueva
4.85 (54)
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
M1 Sniper MT5
Oleg Rodin
5 (4)
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
Divergence Bomber
Ihor Otkydach
4.89 (93)
From time to time, I trade using this system myself. Check out my manual BOMBER trading on a live account— LIVE SIGNAL 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"
Atomic Analyst MT5
Issam Kassas
4.41 (49)
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. [How to use] , [User Manual] ,  [PDF]  And [DEMO] Atomic Analyst is a non-repainting, non-redrawing, and n
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
Power Candles MT5
Daniel Stein
5 (9)
Power Candles V3 - Self-Optimizing Strength Indicator Power Candles V3 turns currency and instrument strength into an actionable trade plan on every chart it is attached to. Instead of just coloring candles, it runs a live auto-optimization in the background and hands you the best Stop Loss, Take Profit and signal threshold for the symbol in front of you. One click adopts it for live trading - entry, Stop Loss and Take Profit rays appear on the chart at the exact prices, and alerts fire with dir
M1 Quantum MT5
Hamed Dehgani
4.27 (11)
Live Trading Signals Using M1 Quantum : Signal  (Trade executed automatically by the Quantum Trade Assistant , included free with this product.) Latest News : Version 1.64 has been released, All trades now have a Stop Loss placed behind the relevant Support/Resistance zones. The Smart Close function has also been improved to increase the EA’s performance in this version. Since August 9, the live signal has been running on Version 1.64. Price Plan: Current Price: $169 (Early Adopter Offer) Next
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
SkyHammer Signal Pro Professional No-Repaint Trend Signal Indicator with Locked Entry, SL and TP Levels SkyHammer Signal Pro is a structured trend and momentum signal indicator designed for traders who want clear, fixed, and verifiable trading signals. It works best on lower timeframes such as M1 and M5 . The indicator does not try to predict tops or bottoms. Instead, it waits for confirmed market structure, trend direction, momentum strength, volatility quality, and target space before generati
This product was   updated   for the   2026 market   and   optimized   for the   latest MT5 builds . PRICE UPDATEe NOTICE: Smart Price Action Concepts   is currently available for $200. The price will   increase to $299   after the next   30 purchases. SPECIAL OFFER:  After purchasing , send me a private message to claim FREE Bonus + Gift. First of all Its worth emphasizing here that this Trading Tool is Non Repainting , Non Redrawing and Non Lagging Indicator , Which makes it ideal for profe
Btmm state engine pro
Garry James Goodchild
5 (4)
BTMM State Engine Pro by G-Labs — Beat The Market Maker indicator for MetaTrader 5. 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, d
The Oracle Pro
Ottaviano De Cicco
5 (1)
The Oracle Pro: Synthetic Multi-Timeframe Bias Engine for MT5 ️ Summer Launch Offer — Get The Oracle Pro for USD 199 (early buyers). Price rises with traction; final price USD 399. The Oracle Pro is a premium multi-timeframe bias engine for MetaTrader 5, built for demanding and professional traders. It answers one question with discipline: what is the directional bias on each timeframe right now, how strong is it, and how much do the timeframes agree? Everything is computed on closed bars only
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
Introducing Quantum TrendPulse , the ultimate trading tool that combines the power of SuperTrend , RSI , and Stochastic into one comprehensive indicator to maximize your trading potential. Designed for traders who seek precision and efficiency, this indicator helps you identify market trends, momentum shifts, and optimal entry and exit points with confidence. Key Features: SuperTrend Integration: Easily follow the prevailing market trend and ride the wave of profitability. RSI Precision: Detect
The  UZFX {SSS} Scalping Smart Signals v4.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-guess
Axiom Matrix
Issam Kassas
5 (5)
LAUNCH PRICE: $99 Axiom Matrix is available at the launch price of $99. The price will increase to $199 after the first 30 purchases. SPECIAL OFFER:  After purchasing Axiom Matrix, send me a private message to claim the Smart Universal EA for FREE and turn your Smart Trend signals into automated trades. [User Manual] , [Online Course] , [PDF]  And [DEMO] Axiom Matrix is a professional multi-symbol, multi-timeframe market scanner and decision dashboard for MetaTrader 5. It scans your Market Watc
ARIPoint
Temirlan Kdyrkhan
1 (1)
ARIPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cu
ARICoins
Temirlan Kdyrkhan
ARICoin is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cust
Trend Forecaster
Alexey Minkov
5 (8)
Trend Forecaster is a MetaTrader 5 indicator that combines breakout signals, possible reversal area analysis, market range data and a visual statistics panel in one chart workspace. It shows Buy and Sell signals, tracks Average Range and Current Range, and can automatically adjust Sensitivity for the current symbol and timeframe. Manual Sensitivity control is also available. The indicator can be used on Forex pairs, metals, stocks, indices and cryptocurrencies. Different timeframes are supported
Money Flow Profile MT4  HERE Here our more valuable tools SMC Trend Trading   ,  Easy SMC Trading  ,  Institutional SMC Architect Volume Analysis Tools  ,  Volume flow Profile  ,  Market volume profile  , FVG with Volume  , Liquidity Heatmap Profile  ,  Volume Spread Analysis  Master Edition is a professional-grade analytical tool designed to visualize market structure through the lens of volume and money flow. Unlike standard volume indicators, this tool displays a Daily Volume Profile
Spike detector Rider
Francisco Mandomo Simbine
5 (1)
Spike Detector Rider – Intelligent Trading in Volatile Markets Introduction The Spike Detector Rider  is an advanced system for MetaTrader 5 designed to detect explosive price movements in high-volatility assets such as synthetic indices and commodities. It combines volatility filters, trend analysis, and automated risk management to provide intelligent trade confirmations. After purchase, send me a private message to receive the optimized configuration files,  the installation manual and setup
ORB Seeker MT5
Marcela Goncalves De Oliveira
Limited Discounted Price!  Only $99! After purchase contact me to get the bonus ORB Seeker EA and personal optimized set files. Catch clean session breakouts with confidence! ORB Seeker MT5 is a professional Opening Range Breakout (ORB) indicator built for traders who want accuracy, simplicity, flexibility, and clear chart structure. It automatically plots the pre-market or custom session range on any instrument, then gives clear breakout signals with entry, stop loss, take profit, and optiona
Ziva LSE Pro
Hassan Abdullah Hassan Al Balushi
ZIVA LSE Pro: Trade the Flow, Not the Noise ZIVA LSE Pro was developed around a simple belief: professional traders do not need more random signals; they need better context. This workflow reflects the ZIVA approach to filtering market noise and focusing on the liquidity and structural mechanics that influence price behavior. Most indicators treat the market like a static picture. ZIVA LSE Pro is built to read it as a dynamic environment where liquidity, structure, volatility, and execution con
ICT PO3 (Power of 3) AMD Protocol Framework Indicator True Time & Structure Integration   |  Non-Repainting | Real-Time  | Multi-Asset  | MT4 Version Available Full Setup Guide & Strategy Playbook: https://www.mql5.com/en/blogs/post/768683 MT4 Version: https://www.mql5.com/en/market/product/171742 Indicator Overview The ICT PO3 AMD Protocol Framework is a complete structural overlay for MetaTrader 5 that maps the True Daily Cycle directly onto your lower-timeframe execution chart. It projects
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 b
Noise filtering: the key to mastering trends This indicator tracks the market trend with an unmatched reliability, by ignoring sudden fluctuations and market noise. It has been designed to trend-trade intraday charts and small timeframes. Its winning ratio is around 85%. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Amazingly easy to trade Find oversold/overbought situations Enjoy noise-free trading at all times Avoid being whipsawed in intraday charts The indi
More from author
VWAP Suite Pro
Ahmed Hamed Hamed Eadwan
5 (1)
Most VWAP indicators give you a single line that resets at midnight. That works well enough on simple setups, but falls apart the moment you want to compare how price is behaving relative to the London open versus the New York open, or when you want to anchor a VWAP to a specific swing high from three weeks ago and keep it on screen while also watching the daily and weekly levels at the same time. I kept adding separate indicators to solve each of these needs until I had five VWAP tools on the s
TriZone Semafor
Ahmed Hamed Hamed Eadwan
If you have ever stared at a chart covered in ZigZag arrows and wondered which ones actually matter — this indicator was built for that frustration. TriZone Semafor runs three independent ZigZag algorithms simultaneously: Fast (Period 5), Medium (Period 13), and Slow (Period 34). When they detect pivots on the same candle, only the most significant signal survives. Level 3 always overrides Level 2. Level 2 always overrides Level 1. One clean arrow per candle per direction — no stacking, no doub
FREE
TriZone Semafor Plus
Ahmed Hamed Hamed Eadwan
If you need structured, multi-level pivot detection combined with real-time dashboard analytics, mobile push notifications, and EA automation integration — TriZone Semafor Plus is built specifically for your workflow. Building on the core exclusive 3-level ZigZag engine (Fast Period 5, Medium Period 13, Slow Period 34), the Plus version transforms standard chart signals into an actionable trading dashboard. When multiple ZigZag levels form on the same candle, only the highest level survives (Lev
Filter:
No reviews
Reply to review