TriZone Semafor MT4


TriZone Semafor — 3-Level Exclusive Signal ZigZag (Standalone — Built-in ZigZag, No External Indicators)

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 4
  • 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 4 — any broker, any symbol, any timeframe. No external libraries. No DLL imports. Single .ex4 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)
In MT4, ALL input parameters must be passed in order. You cannot skip middle parameters.
Trailing parameters may be omitted (defaults used).

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

Total: 33 parameters (indices 0-32)

iCustom Code Example

File name: "TriZone_Semafor" (no .ex4) — Always set HeadlessMode = true inside any EA.
In MT4, iCustom returns a double directly for a specific buffer index and shift.
No handle management, no CopyBuffer, no IndicatorRelease needed.

// MT4 iCustom signature:
// double iCustom(symbol, timeframe, "name", params..., bufferIndex, shift)
// We wrap it in a helper function for cleaner EA code.

double TZS_GetBuffer(int bufferIndex, int shift)
{
   return iCustom(
      Symbol(),          // symbol
      Period(),          // timeframe
      "TriZone_Semafor",  // exact file name, no .ex4
      // ---- Level 1: Fast ----
      clrAqua,            // #0  ColorL1Low
      clrMagenta,        // #1  ColorL1High
      5,                // #2  Period1
      1,                // #3  Deviation1
      3,                // #4  Backstep1
      159,              // #5  HighSymbol1 (dot)
      159,              // #6  LowSymbol1 (dot)
      2,                // #7  ConfirmBars1
      // ---- Level 2: Medium ----
      clrDodgerBlue,     // #8  ColorL2Low
      clrOrchid,        // #9  ColorL2High
      13,              // #10 Period2
      8,                // #11 Deviation2
      5,                // #12 Backstep2
      108,              // #13 HighSymbol2 (circle)
      108,              // #14 LowSymbol2 (circle)
      3,                // #15 ConfirmBars2
      // ---- Level 3: Slow ----
      clrGold,          // #16 ColorL3Low
      clrOrangeRed,     // #17 ColorL3High
      34,              // #18 Period3
      21,              // #19 Deviation3
      12,              // #20 Backstep3
      116,              // #21 HighSymbol3 (diamond)
      116,              // #22 LowSymbol3 (diamond)
      4,                // #23 ConfirmBars3
      // ---- Instance ----
      "EA1",           // #24 InstanceID — must differ from any chart copy
      false,            // #25 DebugMode = OFF
      true,            // #26 HeadlessMode = ON <- required for EA usage
      // ---- Anti-Repaint ----
      true,            // #27 AntiRepaint = ON (stable EA signals)
      false,            // #28 SafeArrows = OFF
      // ---- Alerts: all OFF inside EA ----
      0,                // #29 AlertMode = ALERT_NONE
      false,            // #30 AlertLevel1
      false,            // #31 AlertLevel2
      false,            // #32 AlertLevel3
      // ---- Buffer + Shift ----
      bufferIndex,       // buffer index (0-5)
      shift              // bar shift
   );
}

// Reading buffers at confirmed shift

void OnTick()
{
   int safeShift = 4;
   double lo1 = TZS_GetBuffer(0, safeShift);  // BufLow1 — Level 1 BUY
   double hi1 = TZS_GetBuffer(1, safeShift);  // BufHigh1 — Level 1 SELL
   double lo2 = TZS_GetBuffer(2, safeShift);  // BufLow2 — Level 2 BUY
   double hi2 = TZS_GetBuffer(3, safeShift);  // BufHigh2 — Level 2 SELL
   double lo3 = TZS_GetBuffer(4, safeShift);  // BufLow3 — Level 3 BUY
   double hi3 = TZS_GetBuffer(5, safeShift);  // BufHigh3 — Level 3 SELL
   double ev = EMPTY_VALUE;
   int buyLevel = (lo3 != ev) ? 3 : (lo2 != ev) ? 2 : (lo1 != ev) ? 1 : 0;
   int sellLevel = (hi3 != ev) ? 3 : (hi2 != ev) ? 2 : (hi1 != 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 — No handle cleanup needed in MT4
void OnDeinit(const int reason)
{
   // MT4 does not use indicator handles — nothing to release.
   // iCustom calls are stateless per invocation.
}

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 objects + alerts Set parameter #26 to true
Reading shift = 0 with AntiRepaint EMPTY_VALUE always — bar not yet confirmed Read at shift >= 4
AlertMode != 0 inside EA Alert() popups block Tester execution Set parameter #29 to 0
Wrong file name in iCustom Returns 0 / EMPTY_VALUE Use exact name: "TriZone_Semafor"
Missing color parameters in iCustom Wrong buffer values or 0 returned Pass ALL 33 parameters in order
Wrong parameter order Incorrect signals or none Follow the table above exactly (0-32)
Recommended products
Email Drawdown Alert
Roman Starostin
5 (12)
Free informative Indicator-helper. It'll be usefull for traders who trade many symbols or using grid systems (Averaging or Martingale). Indicator counts drawdown as percent and currency separate. It has a number of settings: Count deposite drawdown according equity value and send e-mail or notifications to user if DD more than set; Sending e-mail when max open orders reached; Shows price and remaining pips amount before MarginCall on current chart and Account generally; Display summary trade lot
FREE
Double HMA lines MTF
Pavel Zamoshnikov
5 (2)
This is a multi-timeframe version of the popular Hull Moving Average (HMA). The Double HMA MTF Light indicator combines two timeframes on a single chart. The HMA of the higher timeframe defines the trend, and the HMA of the current timeframe defines short-term price movements. The indicator is freely distributed and hasn't audio signals or messages. Its main function is the visualization of price movements. If you need advanced functionality of the HMA multi-timeframe indicator (information ab
FREE
SX Supply Demand Zones accurately identifies and draws high-probability Supply and Demand zones using a sophisticated algorithm. Unlike traditional indicators that clutter your chart, this indicator is designed with a focus on performance and a clean user experience. New Unique Feature: Interactive Legend System What truly sets this indicator apart from everything else is the Interactive Control Legend. You have a professional dashboard directly on your chart that allows you to: Show/Hide: Ins
FREE
Quantum Falcon Signal Free is a smart visual trading indicator for MetaTrader 4 designed for Forex and Gold traders. The indicator combines: • Trend analysis • RSI momentum confirmation • MACD momentum filtering • ATR volatility filtering • Higher timeframe confirmation • Smart exit signal detection Main Features: • Smart Buy and Sell signals • Exit Buy / Exit Sell alerts • Real-time dashboard on chart • Professional candle arrows • Multi-timeframe trend confirmation • ATR market volatility filt
FREE
Rainbow MT4
Jamal El Alama
Rainbow MT4 is a technical indicator based on Moving average with period 34 and very easy to use. When price crosses above MA and MA changes color to green, it’s a signal to buy. When price crosses below MA and MA changes color to red, it’s a signal to sell. The Expert advisor ( Rainbow EA MT4) based on Rainbow MT4 indicator, as you can see in the short video below is now available here .
FREE
SC MTF Trix MT4
Krisztian Kenedi
5 (1)
Triple Exponential Moving Average (TRIX) indicator with dual-line signals, 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 TRIX? TRIX is a momentum oscillator that displays the rate of change of a triple exponentially smoothed moving average. The indicator is calculated by applying three consecutive Expo
FREE
QuantumAlert Stoch Navigator is a free indicator available for MT4/MT5 platforms, its work is to provide "alerts" when the market is inside "overbought and oversold" regions in the form of "buy or sell" signals. This indicator comes with many customization options mentioned in the parameter section below, user can customise these parameters as needful. Join our   MQL5 group , where we share important news and updates. You are also welcome to join our private channel as well, contact me for the p
FREE
Smart FVG Indicator MT4   delivers professional Fair Value Gap (FVG) detection, monitoring, and alerting directly on your charts. It combines   ATR-based filtering   with structure-aware logic to remove noise, adapt to liquidity, and keep only the most relevant imbalances for precise decisions. Key Advantages Accurate FVG detection:   Identifies genuine inefficiencies, not just simple candle gaps. ATR-based precision:   Adaptive sensitivity filters out low-quality signals across markets and time
FREE
Skan
Niravkumar Maganbhai Patel
4.75 (4)
SKAN   This indicator helps you to scan all symbols which are in the Market Watch window and filter out a trend with alerts. It works on five most effective indicators which are used by most of traders for trading: Moving Average Super Trend (ST) Bolinger Band (BB) OPRC BFD It calculates two bars for scanning. When box colour changes to coral or royal blue colour, it indicates you for trend change for long and short entry. And also you will get alert on screen. When it changes to royal blue, it
FREE
The Scaled Awesome Oscillator (SAO) represents a refined adaptation of the Awesome Oscillator, aimed at establishing consistent benchmarks for identifying market edges. Unlike the standard Awesome Oscillator, which records the variation in pips across different commodities, the only unchanging reference point is the zero line. This limitation hampers investors and traders from pinpointing specific levels for trend reversals or continuations using the traditional Awesome Indicator, a creation of
FREE
Silver Bullet MT4
Saksham Solanki
5 (2)
Contact me for any queries or custom orders, if you want to use this in an EA. Key Features: Pattern Recognition : Identifies Fair Value Gaps (FVGs) Spots Break of Structure (BOS) points Detects Change of Character (CHoCH) patterns Versatile Application : Optimized for candlestick charts Compatible with any chart type and financial instrument Real-Time and Historical Analysis : Works seamlessly with both real-time and historical data Allows for backtesting strategies and live market analysis Vi
FREE
Liquidity Grab X — Liquidity Sweep & Grab Detector (MT4 & MT5) Liquidity Grab X automatically detects buyside and sellside liquidity sweeps (stop-hunts) at swing pivots and classifies each grab by strength — helping you spot exhaustion moves and potential reversal zones in real time, with instant push notifications to your phone. Full Description Liquidity Grab X is a free rule-based indicator for MetaTrader 4 and MetaTrader 5 that identifies liquidity grabs — moments where price sweeps above a
FREE
The indicator allows you to trade binary options. The recommended time frame is М1 and the expiration time is 1,2,3 minutes. The indicator suitable for auto and manual trading. A possible signal is specified as a arrows above/under a candle. You should wait until the candle closes! Arrows are not re-painted Trade sessions: TOKYO section (Half-end) Currency pairs: USD/JPY Working time frame: M1 Expiration time: 1,2,3 minutes. The indicator also shows good results when using the martingale strateg
FREE
Powered by SVX Strategies Quant Team This indicator is a Smart Trend Regime Filter that changes its state based on internal market strength. Automated Trading Options: Stop guessing the trend. Use our official algorithms for automated execution: Copy "Friday Pulse" (Conservative) Copy "SVX AI Systems" (High Growth) HOW IT WORKS It fuses the smoothness of an EMA with the sensitivity of the RSI to filter out noise. Color Logic: Green Line: Bullish (RSI > 55). Buyers are in control. Red Line: Bea
FREE
Auto Fibonacci displays the 38.2, 61.8, and 78.6 Fib levels directly on the chart, helping traders who use these key retracement zones consistently for trade planning or confluence. Drawing Fibonacci levels manually over and over again can take time, especially when done with wick-to-wick precision. Auto Fibonacci removes that friction by detecting the latest trend leg and placing the main Fibonacci levels automatically. Key Benefits Shows only the major Fibonacci levels to keep the chart clean
FREE
Triple RSI
Pablo Leonardo Spata
1 (1)
LOOK AT THE FOLLOWING STRATEGY WITH THIS INDICATOR. Triple RSI is a tool that uses the classic Relative Strength Indicator, but in several timeframes to find market reversals.    1.  ️ Idea behind the indicator and its strategy: In Trading, be it Forex or any other asset, the ideal is to keep it simple, the simpler the better . The triple RSI strategy is one of the simple strategies that seek market returns. In our experience, where there is more money to always be won, is in the marke
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
Follow The Line
Oliver Gideon Amofa Appiah
3.94 (16)
FOLLOW THE LINE GET THE FULL VERSION HERE: https://www.mql5.com/en/market/product/36024 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.  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
FREE
FXDragunov.MyThemes. Forex Chart Color Themes. Chart templates are responsible for chart layout and for contents of technical indicators applied to them. Chart templates are used: When customizing an opened chart window. When customizing settings of a new chart window. When customizing a chart opened via the “New chart” window. Original code by FXDragunov Indonesia
FREE
Discover the power of precision and efficiency in your trading with the " Super Auto Fibonacci " MT4 indicator. This cutting-edge tool is meticulously designed to enhance your technical analysis, providing you with invaluable insights to make informed trading decisions. Key Features: Automated Fibonacci Analysis: Say goodbye to the hassle of manual Fibonacci retracement and extension drawing. "Super Auto Fibonacci" instantly identifies and plots Fibonacci levels on your MT4 chart, saving you tim
FREE
PZ Penta O MT4
PZ TRADING SLU
2.33 (3)
The Penta-O is a 6-point retracement harmonacci pattern which usually precedes big market movements. Penta-O patterns can expand and repaint quite a bit. To make things easier this indicator implements a twist: it waits for a donchian breakout in the right direction before signaling the trade. The end result is an otherwise repainting indicator with a very reliable trading signal. The donchian breakout period is entered as an input. [ Installation Guide | Update Guide | Troubleshooting | FAQ | A
FREE
High Low Open Close MT4
Alexandre Borela
4.81 (21)
If you like this project, leave a 5 star review. This indicator draws the open, high, low and closing prices for the specified period and it can be adjusted for a specific timezone. These are important levels looked by many institutional and professional traders and can be useful for you to know the places where they might be more active. The available periods are: Previous Day. Previous Week. Previous Month. Previous Quarter. Previous year. Or: Current Day. Current Week. Current Month. Current
FREE
Chances MT4
Ahmed Alaaeldin Abdulrahman Ahmed Elherzawi
4.67 (3)
Investment Castle Chances — Clear Buy & Sell Signals The Investment Castle Chances indicator marks buy and sell opportunities right on your chart, with two strengths of signal so you can weigh each setup at a glance. What it does for you Two signal strengths: Buy / Sell on orange candles, and Strong Buy (green) / Strong Sell (red) for higher-conviction setups. On-chart and obvious: act when you see the signal — no scanning or second-guessing. Flexible: trade the signals directly, or use them t
FREE
MT Scanner
Niravkumar Maganbhai Patel
4 (2)
This indicator helps you to Scan symbols which are in the Market Watch Window  and filter out trends with alerts. It works based on the effective indicator "SUPERTREND" which is used by many traders for trading: When box color changes to " Green " or " Red " color, it indicates you for trend change for long and short entry. And also you will get alerted on screen. When it changes to " Green ", it indicates you that trend is going upwards, and you can take the long entry. If the color changes to
FREE
Ut Bot Indicator
Menaka Sachin Thorat
5 (1)
Evolutionize Your Trading with the UT Alert Bot Indicator for MQL4 The UT Alert Bot Indicator is your ultimate trading companion, meticulously designed to give you an edge in the fast-paced world of financial markets. Powered by the renowned UT system, this cutting-edge tool combines advanced analytics, real-time alerts, and customizable features to ensure you never miss a profitable opportunity. Whether you’re trading forex, stocks, indices, or commodities, the UT Alert Bot Indicator is your k
FREE
Elder's Force Index (EFI) 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 EFI? Elder's Force Index (EFI) is a technical indicator developed by Dr. Alexander Elder that measures the power behind price movements by combining price change, direction, and volume. The indicator is calculated as
FREE
Shape Pack
John Louis Fernando Diamante
5 (1)
This indicator provides common shapes as drawing object options. The shapes are rotatable, resizable, draggable, and will keep their proportions (according to their handle trendline) across different chart scales. Multiple drawings are supported. Shapes: Square Rhombus Triangle (quadrilateral & isosceles) Circle (grid, overlapped grid, flexi grid, rotatable grid, concentric circles) Features: rays (all object edges will be rays) show/hide each individual drawing type, or all delete last drawn ob
FREE
Forex Market Profile and Vwap
Lorentzos Roussos
4.86 (7)
Volume Profile Indicator / Market Profile Indicator What this is not : FMP is not the classic letter-coded TPO display , does not display the overall chart data profile calculation , and , it does not segment the chart into periods and calculate them. What it does :  Most importantly ,the FMP indicator will process data that resides between the left edge of the user defined spectrum and the right edge of the user defined spectrum. User can define the spectrum by just pulling each end of the indi
FREE
Reversal Monster Mini
Abdulfattah Yahya Mohammed Alhazmi
The Most advanced and comprehensive EA to trade Trend Reversals/Pullbacks It is a very profitable EA, to trade trends breakout, and manage trades, takeprofit, stoploss, move to breakeven, and trailing stop. The   “Reversal Monster EA”   trades Reversal/Pullbacks when the current price of the pair pullback to a predefined horizontal level or trendline on the currency chart. The opening of the position can be immediate after pullback to the drawn trendline or after closing the candle below/above
FREE
QuantumAlert CCI Navigator is a free indicator available for MT4/MT5 platforms, its work is to provide "alerts" when the market is inside "overbought and oversold" regions in the form of "buy or sell" signals. This indicator comes with many customization options mentioned in the parameter section below, user can customise these parameters as needful. Join our   MQL5 group , where we share important news and updates. You are also welcome to join our private channel as well, contact me for the pri
FREE
Buyers of this product also purchase
SR Liquidity
Oleg Rodin
5 (1)
SR Liquidity is a trading indicator designed to reveal the hidden zones where market liquidity concentrates and price reacts most strongly. These special liquidity areas act as powerful support and resistance levels, giving you a clear map of where the market is most likely to reverse. Instead of drawing ordinary Support/Resistance lines, SR Liquidity analyzes real price behavior to detect the zones where buying and selling pressure accumulate. These are actually the pools of liquidity that driv
DayTrader PRO MT4
Davit Beridze
5 (2)
DayTrader PRO DayTrader PRO   is an advanced trading indicator that combines John Ehlers' Laguerre Filter with a powerful Auto-Optimization Engine. Instead of using fixed parameters, the indicator automatically searches for the best settings based on recent market conditions, helping you adapt to changing volatility without constant manual adjustments. The indicator generates clear   BUY   and   SELL   signals together with adaptive   Stop Loss   and   Take Profit   levels calculated from curre
Zoryk Gold mt4
Reda El Koutbane
5 (1)
discount ends soon original price 69 $ ZORYK — Advanced XAUUSD Signal System for MetaTrader 4 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 exactl
Neuro Poseidon MT4
Daria Rezueva
4.8 (45)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for all
Gann Made Easy
Oleg Rodin
4.84 (171)
Gann Made Easy is a professional and easy to use Forex trading system which is based on the best principles of trading using the theory of W.D. Gann. The indicator provides accurate BUY and SELL signals including Stop Loss and Take Profit levels. You can trade even on the go using PUSH notifications. PLEASE CONTACT ME AFTER PURCHASE TO GET TRADING  INSTRUCTIONS   AND GREAT EXTRA INDICATORS  FOR FREE! Probably you already heard about the Gann trading methods before. Usually the Gann theory is a
M1 Sniper
Oleg Rodin
5 (27)
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
Presenting one-of-a-kind Gann Indicator for XAUUSD IQ Gold Gann Levels is a non-repainting, precision tool designed exclusively for XAUUSD intraday trading. It uses W.D. Gann’s square root method to plot real-time support and resistance levels, helping traders spot high-probability entries with confidence and clarity. William Delbert Gann (W.D. Gann) was an exceptional market analyst whose trading technique was based on a complex blend of mathematics, geometry, astrology, and ancient calculation
BTMM State Engine Pro by G-Labs — Beat The Market Maker indicator for MetaTrader 4. Asian session range, London and New York kill zones, level progression (L1/L2/L3), peak formation detection (PFH/PFL), entry signals, and a multi-pair scanner from one chart. Stop scanning charts one pair at a time. The State Engine tracks the BTMM daily cycle automatically — Asian box, room boundaries, level blocks, peak formations, and filtered entries — while the scanner dashboard shows level, peak status,
PRO Renko System
Oleg Rodin
5 (31)
PRO Renko System is a highly accurate trading system specially designed for trading RENKO charts. The ARROWS and Trend Indicators DO NOT REPAINT! The system effectively neutralizes so called market noise giving you access to accurate reversal signals. The indicator is very easy to use and has only one parameter responsible for signal generation. You can easily adapt the tool to any trading instrument of your choice and the size of the renko bar. I am always ready to provide extra support to help
Prop Firm Sniper
Mohamed Hassan
4.33 (6)
Prop Firm Sniper MT4  is a professional market structure indicator that automatically identifies high-probability BUY and SELL opportunities using BOS and CHoCH analysis. Recommended Timeframes: For backtesting, use the indicator on   M5 or M15   for Gold (XAUUSD), and   M15 or H1   for more volatile Forex pairs such as   GBPUSD, USDJPY, EURGBP , and similar markets. CONTACT ME AFTER PURCHASE TO CLAIM YOUR FREE BONUSES! Prop Firm Sniper  is a professional market structure indicator designed t
Atomic Analyst
Issam Kassas
5 (11)
This product was   updated   for   the 2026 market   and   optimized   for the   latest MT5 builds. PRICE UPDATE NOTICE: Atomic Analyst is currently available for $99. The price will increase to $199 after the next 30 purchases. SPECIAL OFFER:  After purchasing Atomic Analyst, send me a private message to claim the Smart Universal EA for FREE and turn your Atomic Analyst signals into automated trades. Atomic Analyst is a non-repainting, non-redrawing, and non-lagging price action trading indic
KT Renko Patterns MT4
KEENBASE SOFTWARE SOLUTIONS
2.33 (3)
KT Renko Patterns identifies eight formations on an existing live Renko chart and draws the pattern structure, a stop-loss reference, and Fibonacci target levels directly on the chart. Set up the Renko chart first. MetaTrader does not create Renko charts by default. Open a live Renko chart with the generator of your choice, then attach this indicator to that chart. The indicator analyzes Renko bricks. It does not create the bricks or place trades. As new bricks arrive, the indicator watches for
KURAMA GOLD SIGNAL PRO (MT4) — 7-Layer Filter, Auto TP/SL, Quality Score & Signal History Save | Complete XAUUSD Trading System No repaint in real time. The moment a signal appears, the arrow, entry, TP and SL are locked on the spot and never move afterward. What you trade is this real-time signal. And in v7.20, every signal that is actually sent is auto-saved and restored exactly after restart. BUYER BONUS Buy the lifetime license and receive AI Zone Radar (
Super Signal – Skyblade Edition Professional No-Repaint / No-Lag Trend Signal System with Exceptional Win Rate | For MT4 / MT5 It works best on lower timeframes, such as 1-minute, 5-minute, and 15-minute charts. Core Features: Super Signal – Skyblade Edition is a smart signal system designed specifically for trend trading. It applies a multi-layered confirmation mechanism to detect only strong, directional moves supported by real momentum. This system does not attempt to predict tops or bottoms
A. What is A2SR ?   * It's a leading technical indicator (no repaint, no lagging). -- Guidance : -- at   https://www.mql5.com/en/blogs/post/734748/page4#comment_16532516 -- and  https://www.mql5.com/en/users/yohana/blog .. MT5 version:  https://www.mql5.com/en/market/product/140111 A2SR has a special technique in determining the levels of Support ( demand ) and Resistance ( supply ) . Unlike the ordinary way that we seen on the net, A2SR has a original concept in determining actual SR levels.
ORB Seeker
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 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 optional 50
IQ FX Gann Levels a precision trading indicator based on W.D. Gann’s square root methods . It plots real-time, non-repainting support and resistance levels to help traders confidently spot intraday and scalping opportunities with high accuracy. William Delbert Gann (W.D. Gann) was an exceptional market analyst, whose trading technique was based on a complex blend of mathematics, geometry, astrology, and ancient mathematics which proved to be extremely accurate. Setup & Guide:  Download  MT5 Ver
Price Action Sniper
Elmira Memish
5 (3)
Price Action Sniper is designed to trade the Price Action on the desired chart time frame. - Trend Reversals. - Trend Continuation. - Brekaouts. - Good tool for Binary Options Price action forms the basis for all technical analysis of a currency pair, commodity or other asset chart. Many short-term traders rely exclusively on price action and the formations and trends extrapolated from it to make trading decisions. Technical analysis as a practice is a derivative of price action since it uses p
Built-in multi-symbol scanner — traffic-light grid for up to 30 pairs across four timeframes. No separate scanner file required. BUY, SELL, WAIT cells with confluence score and recent structure event. Full alignment with AI Trade Idea — current chart cell reads live engine data so scanner, dashboard, and AI panel always show the same verdict, score, and reason. Per-cell explain popup — four-section breakdown of what is happening, how the score was built, what to look for, and what to watch out
Scalper Inside PRO
Alexey Minkov
4.74 (68)
Scalper Inside PRO helps you read the intraday trend and plan a trade before you enter the market. It is built around three exclusive strategies for a sharper read of the market. The moment a signal appears, the indicator evaluates market direction and calculates the key levels, so you see the potential entry, the expected stop-loss and several profit-taking levels in advance. Detailed performance statistics show how different instruments and strategies performed in history and help you pick ass
PZ Turning Points MT4
PZ TRADING SLU
1 (1)
Identify key turning points with reliable fractal analysis This indicator examines the price structure of fractals of different periods to determine possible reversal points in the market, providing timing to positional traders that already have a fundamental or technical valuation model. Unlike its younger brother, Reversal Fractals , this indicator won't miss reversals because of the period selected, and will find reversal fractals on a zig-zag fashion, ignoring those reversals which do not
Friends, we present to your attention our new Forex Gump Laser indicator. Since there are no designers in our team, but mainly mathematicians, financiers, programmers and traders, we did not make any special changes in the indicator design. In appearance, it resembles the usual Forex Gump. On the other hand, Forex Gump has become not just the name of an indicator, it is a brand. And we try to preserve the corporate identity in all its varieties. The whole essence of the indicator in its operatio
Level Breakout Indicator is a technical analysis product that works from upper and lower boundaries, which can determine the direction of the trend. Works on candle 0 without redrawing or delays. In its work, it uses a system of different indicators, the parameters of which have already been configured and combined into a single parameter - “ Scale ”, which performs gradation of periods. The indicator is easy to use, does not require any calculations, using a single parameter you need to select
Trading Special – 30% OFF Best Solution for any Newbie or Expert Trader! This dashboard software is working on 28 currency pairs plus one. It is based on 2 of our main indicators (Advanced Currency Strength 28 and Advanced Currency Impulse). It gives a great overview of the entire Forex market plus Gold or 1 indices. It shows Advanced Currency Strength values, currency speed of movement and signals for 28 Forex pairs in all (9) timeframes. Imagine how your trading will improve when you can watch
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
Scalper Vault
Oleg Rodin
5 (38)
Scalper Vault is a professional scalping system which provides you with everything you need for successful scalping. This indicator is a complete trading system which can be used by forex and binary options traders. The recommended time frame is M5. The system provides you with accurate arrow signals in the direction of the trend. It also provides you with top and bottom signals and Gann market levels. The indicator provides all types of alerts including PUSH notifications. PLEASE CONTACT ME AFT
Trend Lines PRO
Roman Podpora
5 (1)
TREND LINES PRO    helps understand where the market is truly changing direction. The indicator shows real trend reversals and points where major players re-enter. You see   BOS lines   Trend changes and key levels on higher timeframes — without complex settings or unnecessary noise. Signals don't repaint and remain on the chart after the bar closes. VERSION MT 5     -     Reveals its maximum potential when paired with the   RFI LEVELS PRO  indicator What the indicator shows: Real shifts   tren
Crypto_Forex Indicator "ReTest Histogram" for MT4, No Repaint. - ReTest_Histogram indicator can be used for search of entry signals into the main trend direction after the retesting of strong S/R level. - ReTest Histogram can be in 2 colors: red for bearish trend and green for bullish one. - Once you see steady consecutive histogram columns of the same color it means new trend takes place. - ReTest signal is 1 column with opposite color in histogram and next column with trend color (see the pic
Adopt market correlation and indicator resonance Here are some trading recommendations based on the current market conditions: (1) Note: It doesn't mean you have a perfect deal, but rather helps you avoid bad trades (2) Why traditional indicators are prone to distortion. For example, the 10-day moving average is calculated by calculating the average price of the top 10 candlesticks. Result: I prove I want to rise, and the signal is easily distorted. This indicator adopts a self-proof + corrob
Money Flow Profile MT5 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 This Master Edition is engineered for clarity and speed, featuring a unique Auto-Theme Sync system that instantly beautifies your chart layout upon loading. Key Features: True Money Flow Calculation: Goes beyond stand
More from author
TriZone Semafor Pro
Ahmed Hamed Hamed Eadwan
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
TriZone Semafor
Ahmed Hamed Hamed Eadwan
5 (1)
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
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 Pro MT4
Ahmed Hamed Hamed Eadwan
TriZone Semafor — 3-Level Exclusive Signal ZigZag (Standalone — Built-in ZigZag, No External Indicators) 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 Le
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