TriZone Semafor

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

Why three levels instead of one

A single ZigZag treats all swings equally. The same indicator marks a two-bar pullback and a major trend reversal with identical arrows. TriZone classifies every pivot by significance so you read the chart hierarchy at a glance.

  • Level 1 — Fast: Small pullbacks and minor pivots. The structure beneath the structure.
  • Level 2 — Medium: Intraday swings and meaningful reactions. The pivots your trading journal references.
  • Level 3 — Slow: Major structural turns. The points where trend continuation is genuinely in question.

Each level has its own arrow shape and color so you see the hierarchy instantly, without consulting a legend.

Exclusive signal system

Every candle passes through one rule: if a higher level claims a pivot on that candle, all lower-level claims are removed — not hidden, removed. This happens inside the indicator buffer before anything reaches the chart. The chart reflects the real state, not a layered overlay.

Anti-repaint mode

With AntiRepaint = ON, a signal is only drawn after the configured number of confirmation bars have passed. The arrow you see has already passed its stability window and will not move. The indicator shows the current mode and confirmation depth in the chart title bar — full transparency about what you are reading.

With AntiRepaint = OFF, signals appear immediately on the forming bar. Useful for visual reference. Not recommended for automated logic.

Alert system

Alerts are queued during calculation and delivered only after the exclusivity pass confirms the signal survived. You will never receive a popup for a Level 1 signal overridden by Level 3 a moment later. One confirmed pivot — one alert. Configurable per level independently.

What is included

  • Three ZigZag detection levels with fully independent parameters
  • Exclusive signal priority at buffer level — highest level wins per candle
  • Popup alerts on confirmed pivots only — no phantom alerts
  • Anti-repaint mode with configurable confirmation bars per level
  • Any symbol, any timeframe — MetaTrader 5
  • Single file — zero external dependencies, no DLL, no custom includes

Recommended starting point

Open H1 or H4 with default parameters. The default depths 5 / 13 / 34 follow the standard Fibonacci sequence — a natural fit for most instruments and timeframes.

Level 3 pivots are your structural reference. Level 2 are your intraday reference points. Level 1 shows the minor structure in between. Adjust depth (Period) and confirmation bars (ConfirmBars) to match your style.

Compatibility

MetaTrader 5 — any broker, any symbol, any timeframe. No external libraries. No DLL imports. Single .ex5 file, fully standalone.

iCustom Reference — TriZone_Semafor

Output Buffers

Exclusivity is already applied by the indicator.
Only the highest active level is non-empty per candle.
EMPTY_VALUE = no pivot at that bar/level.
With AntiRepaint ON, read at shift ≥ max(ConfirmBars1, ConfirmBars2, ConfirmBars3) — default: shift ≥ 4.
Buffer Index Signal Content
BufLow1 0 BUY Level 1 Low pivot price — Fast ZigZag
BufHigh1 1 SELL Level 1 High pivot price — Fast ZigZag
BufLow2 2 BUY Level 2 Low pivot price — Medium ZigZag
BufHigh2 3 SELL Level 2 High pivot price — Medium ZigZag
BufLow3 4 BUY Level 3 Low pivot price — Slow ZigZag
BufHigh3 5 SELL Level 3 High pivot price — Slow ZigZag

Input Parameters

# = position in iCustom() call (0-based, after Symbol / Period / FileName)

# Name Type Default Range Description
LEVEL 1 — Fast ZigZag
0 Period1 int 5 2–500 Pivot lookback depth (bars)
1 Deviation1 int 1 1–100 Minimum deviation in points
2 Backstep1 int 3 1–(P-1) Min bars between consecutive pivots
3 HighSymbol1 int 159 Wingdings Arrow for Highs (159=dot, 108=circle, 116=diamond)
4 LowSymbol1 int 159 Wingdings Arrow for Lows
5 ConfirmBars1 int 2 1–50 Confirmation bars before signal is final
LEVEL 2 — Medium ZigZag
6 Period2 int 13 2–500 Pivot lookback depth
7 Deviation2 int 8 1–100 Minimum deviation in points
8 Backstep2 int 5 1–(P-1) Min bars between consecutive pivots
9 HighSymbol2 int 108 Wingdings Arrow for Highs
10 LowSymbol2 int 108 Wingdings Arrow for Lows
11 ConfirmBars2 int 3 1–50 Confirmation bars
LEVEL 3 — Slow ZigZag
12 Period3 int 34 2–500 Pivot lookback depth
13 Deviation3 int 21 1–100 Minimum deviation in points
14 Backstep3 int 12 1–(P-1) Min bars between consecutive pivots
15 HighSymbol3 int 108 Wingdings Arrow for Highs
16 LowSymbol3 int 108 Wingdings Arrow for Lows
17 ConfirmBars3 int 4 1–50 Confirmation bars
INSTANCE MANAGEMENT
18 InstanceID string "A" any Unique tag — must differ from any visible chart copy
19 DebugMode ENUM_ONOFF OFF (0) 0 / 1 Print diagnostics to Journal
20 HeadlessMode ENUM_ONOFF OFF (0) 0 / 1 Set 1 (ON) when using via iCustom — suppresses all UI and alerts
ANTI-REPAINT
21 AntiRepaint ENUM_ONOFF ON (1) 0 / 1 ON = confirmed signals only — required for stable EA logic
22 SafeArrows ENUM_ONOFF OFF (0) 0 / 1 ON = arrows use full retroactive-safe shift (stricter)
ALERT SYSTEM
23 AlertMode ENUM_ALERT_MODE 1 (Popup) 0–3 0=None  1=Popup  2=Push  3=All — set 0 inside EA
24 AlertLevel1 ENUM_ONOFF OFF (0) 0 / 1 Alert on Level 1 pivots
25 AlertLevel2 ENUM_ONOFF ON (1) 0 / 1 Alert on Level 2 pivots
26 AlertLevel3 ENUM_ONOFF ON (1) 0 / 1 Alert on Level 3 pivots

Total: 27 parameters (indices 0–26)

iCustom Code Example

File name: "TriZone_Semafor" (no .ex5)  —  Always set HeadlessMode = true inside any EA.

//+------------------------------------------------------------------+ //| iCustom handle — TriZone_Semafor | //+------------------------------------------------------------------+ int g_tzsHandle = INVALID_HANDLE; int OnInit() { g_tzsHandle = iCustom( _Symbol, PERIOD_CURRENT, "TriZone_Semafor", // exact file name, no .ex5 // ---- Level 1: Fast ---- 5, // Period1 1, // Deviation1 3, // Backstep1 159, // HighSymbol1 (dot) 159, // LowSymbol1 (dot) 2, // ConfirmBars1 // ---- Level 2: Medium ---- 13, // Period2 8, // Deviation2 5, // Backstep2 108, // HighSymbol2 (circle) 108, // LowSymbol2 (circle) 3, // ConfirmBars2 // ---- Level 3: Slow ---- 34, // Period3 21, // Deviation3 12, // Backstep3 108, // HighSymbol3 (circle) 108, // LowSymbol3 (circle) 4, // ConfirmBars3 // ---- Instance ---- "EA1", // InstanceID — must differ from any chart copy false, // DebugMode = OFF true, // HeadlessMode = ON ← required for EA usage // ---- Anti-Repaint ---- true, // AntiRepaint = ON (stable EA signals) false, // SafeArrows = OFF // ---- Alerts: all OFF inside EA ---- 0, // AlertMode = ALERT_NONE false, // AlertLevel1 false, // AlertLevel2 false // AlertLevel3 ); if(g_tzsHandle == INVALID_HANDLE) { PrintFormat("[EA] TriZone_Semafor handle failed: err=%d", GetLastError()); return INIT_FAILED; } return INIT_SUCCEEDED; } //+------------------------------------------------------------------+ //| Reading buffers at confirmed shift | //+------------------------------------------------------------------+ void OnTick() { // Minimum safe read shift = max(ConfirmBars1, ConfirmBars2, ConfirmBars3) // Default values: max(2, 3, 4) = 4 int safeShift = 4; double lo1[1], hi1[1]; // Buffer 0, 1 — Level 1 double lo2[1], hi2[1]; // Buffer 2, 3 — Level 2 double lo3[1], hi3[1]; // Buffer 4, 5 — Level 3 if(CopyBuffer(g_tzsHandle, 0, safeShift, 1, lo1) != 1) return; if(CopyBuffer(g_tzsHandle, 1, safeShift, 1, hi1) != 1) return; if(CopyBuffer(g_tzsHandle, 2, safeShift, 1, lo2) != 1) return; if(CopyBuffer(g_tzsHandle, 3, safeShift, 1, hi2) != 1) return; if(CopyBuffer(g_tzsHandle, 4, safeShift, 1, lo3) != 1) return; if(CopyBuffer(g_tzsHandle, 5, safeShift, 1, hi3) != 1) return; double ev = EMPTY_VALUE; // Exclusivity already applied by the indicator // Only one level non-empty per candle int buyLevel = (lo3[0] != ev) ? 3 : (lo2[0] != ev) ? 2 : (lo1[0] != ev) ? 1 : 0; int sellLevel = (hi3[0] != ev) ? 3 : (hi2[0] != ev) ? 2 : (hi1[0] != ev) ? 1 : 0; if(buyLevel > 0 && sellLevel == 0) PrintFormat("BUY signal | Level %d | shift %d", buyLevel, safeShift); else if(sellLevel > 0 && buyLevel == 0) PrintFormat("SELL signal | Level %d | shift %d", sellLevel, safeShift); } //+------------------------------------------------------------------+ //| OnDeinit — Release the handle | //+------------------------------------------------------------------+ void OnDeinit(const int reason) { if(g_tzsHandle != INVALID_HANDLE) { IndicatorRelease(g_tzsHandle); g_tzsHandle = INVALID_HANDLE; } }

Common Mistakes

Most common cause of INIT_PARAMETERS_INCORRECT: InstanceID is already in use by a chart copy of the same indicator. Use a unique string such as "EA1" , "EA2" …
Mistake Symptom Fix
Same InstanceID as chart copy INIT_PARAMETERS_INCORRECT Unique ID: "EA1" , "EA2" …
HeadlessMode = false in EA Indicator draws chart objects + fires alerts per EA instance Set parameter #20 to true
Reading shift = 0 with AntiRepaint ON EMPTY_VALUE always — bar not yet confirmed Read at shift ≥ 4 (default CB max)
AlertMode ≠ 0 inside EA Alert() popups block Tester execution Set parameter #23 to 0
Wrong file name in iCustom INVALID_HANDLE Use exact name: "TriZone_Semafor"
No IndicatorRelease in OnDeinit Memory leak on EA reload Call IndicatorRelease(g_tzsHandle)


Recommended products
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
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
MTF RSI Fusion Basic MTF RSI Fusion is a multi-timeframe RSI oscillator designed to combine momentum information from multiple RSI calculations into a single structured indicator. Instead of relying on one RSI source, the indicator blends up to three RSI streams across different timeframes into one “Fusion RSI” line. Additional tools such as adaptive overbought/oversold zones, trend bias visualization, divergence detection, signal generation, and optional VWAP filtering can also be enabled withi
FREE
PROMETHEUS TECHNICAN VERSION Free | By THE SONS A gift from The Sons — no strings, no trial, no expiry. Every trader deserves access to professional-grade market intelligence. That belief is why Prometheus Technical Version exists, and why it costs nothing. Consider it our handshake to the trading community. What You're Getting This is not a simplified tool dressed up as a gift. Prometheus Technican Version is a fully built, institutional-quality technical analysis indicator running a dual-model
FREE
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
Donchian Breakout And Rsi
Mattia Impicciatore
4.5 (2)
General Description This indicator is an enhanced version of the classic Donchian Channel , upgraded with practical trading functions. In addition to the standard three lines (high, low, and middle), the system detects breakouts and displays them visually with arrows on the chart, showing only the line opposite to the current trend direction for a cleaner view. The indicator includes: Visual signals : colored arrows on breakout Automatic notifications : popup, push, and email RSI filter : to val
FREE
KCI Candle
Syamsurizal Dimjati
KCI Candle: Advanced Kinematics Price Action The KCI (Kinematics Computing Index) Candle is a next-generation analytical tool designed to transform raw market data into crystal-clear visual intelligence. By painting the chart's candles based on deep mathematical kinematics, this indicator provides traders with an immediate, unambiguous reading of the current market direction and momentum. Built for professional traders who demand clean charts and pure data, the KCI Candle eliminates second-guess
FREE
Pivot Points Indicator – a fast, reliable, and fully customizable pivot detection for MetaTrader 5. This indicator uses MetaTrader’s native iHighest and iLowest functions to identify pivot highs and lows by scanning for the highest and lowest prices within a user-defined window of bars. A pivot is confirmed only when the current bar is the absolute maximum or minimum within the selected range, ensuring accurate and timely signals based on robust built-in logic. Key Features No Repainting : Onc
FREE
Balance of Power (BOP) indicator with multi-timeframe support, customizable visual signals, and configurable alert system. Freelance programming services, updates, and other TrueTL products are available on my MQL5 profile . Feedback and reviews are highly appreciated! What is BOP? Balance of Power (BOP) is an oscillator that measures the strength of buyers versus sellers by comparing the change in price to the range of the bar. The indicator is calculated as (Close - Open) / (High - Low), th
FREE
This indicator is an automated version of the Fibonacci retracement (Fib) indicator. Deciding the best areas to use when drawing the fib can be tricky and this  indicator was made with that in mind. When you drop it on the chart it will automatically choose the best points to draw the fib with, but in case you aren't satisfied with those regions, you can adjust it as you wish.
FREE
Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
FREE
SmartPullback
Samuel Jesus Fidalgo Lopez
Smart Pullback Pro v4 High-Probability Pullback Indicator for MT5 Smart Pullback Pro v4 is a professional trend-following indicator for MetaTrader 5 that identifies high-probability pullback entries in real time. It automatically plots entry zones, Stop Loss, and Take Profit levels directly on the chart, giving traders a complete visual trading plan with every signal. How It Works Smart Pullback Pro v4 combines multiple confluence filters to eliminate low-quality signals and focus only on va
FREE
MACD Enhanced
Nikita Berdnikov
4 (4)
Introducing the MACD  Enhanced – an advanced MACD (Moving Average Convergence Divergence) indicator that provides traders with extended capabilities for trend and momentum analysis in financial markets. The indicator uses the difference between the fast and slow exponential moving averages to determine momentum, direction, and strength of the trend, creating clear visual signals for potential entry and exit points. Attention! To achieve the best results, it is recommended to adapt the indicator
FREE
Multi-timeframe trend indicator based on the ADX / ADXWilder indicator with Fibonacci levels The indicator shows trend areas using ADX or ADXWilder indicator data from multiple timeframes. The impulse mode of the indicator allows you to catch the beginning of a trend, and several "Screens" with different timeframes allow you to filter out market noise. Fibonacci levels are added to the price chart, which have flexible settings. How the indicator works: if PDI is greater than NDI, then   it`s
FREE
VolumeBasedColorsBars
Henrique Magalhaes Lopes
VolumeBasedColorsBars — Free Powerful Volume Analysis for All Traders Unlock the hidden story behind every price bar! VolumeBasedColorsBars is a professional-grade, 100% FREE indicator that colorizes your chart candles based on real, adaptive volume analysis. Instantly spot surges in market activity, identify exhaustion, and catch the moves that matter. This indicator gives you:    • Dynamic color-coded bars for instant volume context    • Adaptive thresholds based on historical, session-awar
FREE
Follow The Line MT5
Oliver Gideon Amofa Appiah
4.6 (35)
This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL. (you can change the colors). It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more powerful and reliable signals. Get them here: https://www.m
FREE
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
Mtf Rsi Fusion
Hadi Pourkerman
5 (1)
MTF RSI Fusion MTF RSI Fusion is a multi-timeframe RSI oscillator designed to combine momentum information from multiple RSI calculations into a single structured indicator. Instead of relying on one RSI source, the indicator blends up to three RSI streams across different timeframes to create a combined “Fusion RSI” line. Additional tools such as adaptive overbought/oversold zones, trend bias visualization, divergence detection, VWAP filtering, and signal generation can also be enabled within t
The   Trendlines Oscillator   helps traders identify trends and momentum based on the normalized distances between the current price and the most recently detected bullish and bearish trend lines. The indicator features bullish and bearish momentum, a signal line with crossings, and multiple smoothing options. USAGE The   Trendlines Oscillator   works by systematically: Identifying pivot highs and lows. Connecting pivots to form bullish (support) and bearish (resistance) trendlines. Measuring
Best SAR MT5
Ashkan Hazegh Nikrou
4.33 (3)
Description :  we are happy to introduce our new free indicator based on one of professional and popular indicators in forex market (Parabolic SAR) this indicator is new modification on original Parabolic SAR indicator, in pro SAR indicator you can see cross over between dots and price chart, this crossover is not signal but talk about end of movement potential, you can start buy by new blue dot, and place stop loss one atr before first blue dot, and finally you can exit as soon as dots cross p
FREE
Fvg Edge
Ahmad Meftah Abdulsalam Alawwami
5 (3)
FVG Smart Zones – Free Edition Fair Value Gap Detection Indicator for MetaTrader 5 (MT5) Are you looking for a real trading tool – not just another random indicator? FVG Smart Zones – Free Edition gives you professional market insight by automatically detecting Fair Value Gaps (FVGs) and highlighting high-probability trading zones directly on your chart. Built for traders following: Smart Money Concepts (SMC) ICT Trading Concepts Price Action Supply & Demand Analysis Institutiona
FREE
Auto Optimized RSI   is a smart and easy-to-use arrow indicator designed for precision trading. It automatically finds the most effective RSI Buy and Sell levels for your selected symbol and timeframe using real historical data simulations. The indicator can be used as a standalone system or as part of your existing trading strategy. It is especially useful for intraday trading. Unlike traditional RSI indicators that rely on fixed 70/30 levels,   Auto Optimized RSI   dynamically adjusts its lev
EA13 Gold Whale Hunter
Nhat Tien Duong
3 (1)
Gold Whale Hunter EA (EA13_M3RX): The Prop Firm Survivor Are you tired of EAs that only work on "Zero Spread" accounts but fail miserably on real Prop Firm conditions? Meet Gold Whale Hunter , the EA designed specifically for XAUUSD (Gold) on the M15 timeframe. It doesn't scalp for pennies; it hunts for the big trends.   ENTER YOUR KEY HERE: [  EA13_99999D_TANINCODER_5946594662422 ] -- MANDATORY: ALLOW WEBREQUEST TO ACTIVATE THE BOT To verify your License Key, the Bot needs permission
FREE
Our offer also includes a free panel — Indicator Panel — which allows you to show or hide indicators created by BOToBRACIA. High and Low Points is a practical technical analysis indicator that plots levels corresponding to the highs and lows from previous periods (day / week / month) — levels that, in the Smart Money Concepts (SMC) and ICT approach, are treated as liquidity zones, while in classical technical analysis they serve as potential support and resistance levels. Indicator settings: •
FREE
"Adjustable Fractals" - is an advanced version of fractal indicator, very useful trading tool! As we know   Standard fractals MT5 indicator does not have settings at all   - this is very inconvenient for traders. Adjustable Fractals has resolved that issue - it has all necessary settings: Adjustable period   of indicator (recommended values - above 7). Adjustable distance   from Highs/Lows of price. Adjustable design  o f fractal arrows. Indicator has built-in Mobile and PC alerts. Click here
Auto Fibonacci Retracement Indicator — Flexible and Reliable This isn’t just another Auto Fibonacci Retracement indicator. It’s one of the most flexible and dependable tools available . If you find it useful, please consider leaving a review or comment — your feedback means a lot! Check out my other helpful tools below: Telegram to MT5 using AI   - AI-Powered Signal Copier Bot Smart Alert Manager   - Set up advanced alerts and send them to Mobile, Telegram, Discord, Webhook... Timeframes Trend
FREE
LT Rainbow Trend
Thiago Duarte
5 (1)
== LT RAINBOW TREND - THE TREND INDICATOR WITH 36 MOVING AVERAGES == OVERVIEW LT Rainbow Trend is an advanced technical trend analysis indicator that utilizes 36 simultaneous Moving Averages with a smart color system (Rainbow). Developed for traders who want to trade in the direction of the main trend with maximum visual clarity, the indicator transforms the complexity of multi-timeframe analysis into a simple, colorful, and highly intuitive visualization. Ideal for traders who understand that
The Swing High Low and Fibonacci Retracement Indicator is a powerful technical analysis tool designed to identify key price levels and potential reversal zones in the market. It automatically detects recent swing highs and swing lows on the chart and overlays Fibonacci retracement levels based on these points. This indicator helps traders: Visualize market structure by highlighting recent swing points. Identify support and resistance zones using Fibonacci ratios (e.g., 38.2%, 50%, 61.8%). Adapt
FREE
Let us introduce the Heikin Ashi RSI Oscillator! This indicator combines the concepts of Heikin Ashi candles with the RSI (Relative Strength Index) to produce an oscillator-like format that can be used to filter out some of the noise associated with standard RSI readings. This provides traders with a smoother representation of market conditions. Here are some articles to read more about the RSI and Heikin Ashi candles: https://www.investopedia.com/terms/r/rsi.asp https://www.investopedia.com/ter
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
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. Smart Trend Trading System is a complete non-repainting, non-redrawing, and non-laggi
Trend Sniper X
Sarvarbek Abduvoxobov
5 (8)
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
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
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
SuperScalp Pro
Van Minh Nguyen
4.6 (30)
SuperScalp Pro –  Professional Multi-Layer Confluence Scalping System SuperScalp Pro is a professional multi-layer confluence scalping system designed to help traders identify higher-probability opportunities with clearer entry confirmation, ATR-based Stop Loss and Take Profit levels, and flexible signal filtering across XAUUSD, BTCUSD, and major Forex pairs. Full documentation available in the product blog:   [User Guide] Auto trading available via SuperScalp Pro Auto Trader EA:   [Auto Trader
Welcome to ENTRY IN THE ZONE AND SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a professional trading indicator built on Smart Money Concepts (SMC) , combining market structure analysis with a No Repaint BUY / SELL signal system in a single indicator. It helps traders understand market structure more clearly, identify key price zones, and focus on higher-quality trading opportunities. By combining Multi-Timeframe Analysis , Points of Interest (POIs) , and real-time signals, th
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
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
GoldenX Entry MT5
Kareem Abbas
5 (15)
Price will increase by $20 every 10 buyers to maintain premium value. After purchase, contact via   MQL5 inbox   to receive your buyer kit and bonus. You have probably tested dozens of indicators before. But we are not here to be “just another signals indicator.” Behind GoldenX Entry is intensive research & development focused on building sophisticated algorithms designed to adapt to the real behavior of every instrument — not generic signals recycled everywhere else. From advanced Auto Optim
Gold Entry Sniper
Tahir Mehmood
5 (18)
Gold Entry Sniper – Professional Multi-Timeframe ATR Dashboard for Gold Scalping & Swing Trading Gold Entry Sniper is a cutting-edge MetaTrader 5 indicator designed to give traders precise buy/sell signals for XAUUSD and other symbols, powered by ATR Trailing Stop logic and a multi-timeframe analysis dashboard . Built for both scalpers and swing traders, it combines real-time market direction , dynamic stop levels , and professional visual dashboards to help you identify high-probability gold en
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
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
Zoryk Gold
Reda El Koutbane
5 (6)
discount ends SOON next price 69 $ ZORYK — Advanced XAUUSD Signal System for MetaTrader 5 You know the feeling. You spend time analyzing gold. You wait for the entry. You finally open the trade, and price immediately moves against you. You close too early, move the Stop Loss or hesitate for a few seconds. Then the market reaches the exact destination you originally expected without you. The direction was not always the problem. The real problem was uncertainty. You did not know exactly where th
Atomic Analyst MT5
Issam Kassas
4.4 (48)
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 indicator designed
Divergence Bomber
Ihor Otkydach
4.9 (92)
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"
Trend Catcher ind mt5
Ramil Minniakhmetov
5 (17)
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
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.) Version 1.4 is game changer, default setting adjusted for GBPUSD M1 Price Plan: Current Price: $169 (Early Adopter Offer) Next Planned Price: $189 Planned Retail Price: $299 Developer Note:  After your purchase, please contact me to receive the latest  recommended settings (set file) , trading tips, and an invitation to our  VIP Support Group , where y
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
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
Crystal Heikin Ashi Signals
Muhammad Jawad Shabir
5 (2)
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
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
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
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
TrendMaestro5
Stefano Frisetti
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.5 TRENDMAESTRO recognizes a new TREND from the start, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these da
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
Reversion King Indicator
Eugen-alexandru Zibileanu
5 (5)
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  This indicator includes an advanced Strategy, a trading system with customisable order management and a mean reversion system that combines envelope extensions, backed by multiple intelligent confirmation filters like RSI to catch high probability reversal entries with BUY and SELL signals . The indi
Atbot
Zaha Feiz
4.69 (55)
ATy Gold and BTC  Join my MQL5 channel to update the latest news from me.  My community of over 80,000 members on MQL5 ATbot : How It Works and How to Use It How It Works The "AtBot" indicator for the MT5 platform generates buy and sell signals using a combination of technical analysis tools. It integrates Simple Moving Average (SMA), Exponential Moving Average (EMA), and the Average True Range (ATR) index to identify trading opportunities. Additionally, it can utilize Heikin Ashi candles to en
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
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
Crystal Quantum Pro
Muhammad Jawad Shabir
5 (1)
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
More from author
VWAP Suite Pro
Ahmed Hamed Hamed Eadwan
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 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