Boom Crash Divergence Tool

An MT5 divergence scanner that automatically finds divergence / hidden divergence between price and a chosen oscillator, then draws the matching trendlines/channels in the indicator window and can alert you when the line is crossed.

Key features (simple)

  • Auto Divergence Detection

    • Bullish divergence: price makes a lower low while oscillator makes a higher low (possible reversal up).

    • Bearish divergence: price makes a higher high while oscillator makes a lower high (possible reversal down).

  • Hidden divergence (called “convergence” in settings)

    • Finds continuation-style setups (useful for trend trading).

  • Works with many oscillators

    • RSI (default), MACD, Stochastic, CCI, Momentum, ADX, ATR, AO/AC, OBV, etc.

  • Clear visuals

    • Draws trendlines and optional channels (parallel / regression / std-dev channel).

    • Shows buy/sell arrows on detected swing points.

  • Noise reduction

    • Uses T3 smoothing on the oscillator line to reduce false pivots on volatile markets (handy for Boom/Crash).

  • Alerts

    • Popup, push notification, email, sound, optional external program launch, plus optional advanced alerts (Telegram/Discord/etc via DLL).

  • Performance controls

    • Limits bars processed to keep the indicator fast.

How it works (logic overview)

  1. Calculates the selected oscillator (or selected price source).

  2. Applies T3 smoothing to produce a cleaner oscillator curve.

  3. Detects swing highs/lows using “left/right strength” (how many bars on each side must be lower/higher).

  4. Compares recent swings:

    • For regular divergence and hidden divergence

  5. Draws trendlines/channels for the detected setups and optionally triggers alerts when the line is crossed.

Note: swing points are confirmed only after the “right-side” bars are complete, which helps reduce noise.

Oscillator selector (Osc)

Use Osc to choose what the tool compares against price:

1 AC, 2 AD, 3 ADX, 4 ATR, 5 AO, 6 BearsPower, 7 BullsPower, 8 CCI, 9 DeMarker, 10 Force, 11 Momentum, 12 MFI, 13 MACD, 14 MAO, 15 OBV, 16 RVI, 17 StdDev, 18 Stochastic, 19 Volume, 20 Close, 21 Open, 22 High, 23 Low, 24 (H+L)/2, 25 (H+L+C)/3, 26 (H+L+2C)/4, 27 (O+C+H+L)/4, 28 (O+C)/2, 29 RSI, 30 RBCI, 31 FTLM, 32 STLM, 33 JRSX, 34 RSI, 35 Williams %R.

Inputs (parameters) — with plain-English descriptions

A) Core detection

  • Osc (int, default: 29) — Which oscillator/source to use for divergence (see list above).

  • TH (bool, default: true) — Enable high-side (bearish) divergence checks.

  • TL (bool, default: true) — Enable low-side (bullish) divergence checks.

  • trend (bool, default: true) — Draw basic oscillator trendlines (not only divergence).

  • convergen (bool, default: true) — Enable hidden divergence detection.

  • Complect (int, default: 1) — Visual set/slot used in object names & styling (helps separate drawings).

  • _qSteps (int, default: 1) — How many “recent setups” to draw/scan (max 3).

  • _BackSteph (int, default: 0) — Skip this many swing points back before starting (highs).

  • _BackStepl (int, default: 0) — Skip this many swing points back before starting (lows).

  • BackStep (int, default: 0) — One value to override both back-step settings above.

B) Swing-point (pivot) sensitivity

  • LevDPl (int, default: 5) — Left-side strength: bars to the left that must confirm a swing point.

  • LevDPr (int, default: 1) — Right-side strength: bars to the right that must confirm a swing point.

  • LeftStrong (bool, default: false) — If true , equal-values on the left are treated as “strong” (fewer duplicate pivots).

  • RightStrong (bool, default: true) — If true , equal-values on the right are treated as “strong”.

C) Indicator calculation settings

  • period (int, default: 8) — Main period used by many oscillators (and RSI used for alerts).

  • applied_price (int, default: 4) — Price type used by some indicators (commonly Close).

  • mode (int, default: 0) — Buffer/line index for multi-line indicators (example: MACD line vs signal).

  • ma_method (ENUM_MA_METHOD, default: MODE_SMA) — MA method used by some calculations (e.g., StdDev).

  • ma_shift (int, default: 0) — MA shift used by some calculations.

MACD-only

  • fast_ema_period (int, default: 12) — MACD fast EMA.

  • slow_ema_period (int, default: 26) — MACD slow EMA.

  • signal_period (int, default: 9) — MACD signal SMA/EMA period.

Stochastic-only

  • Kperiod (int, default: 13) — %K period.

  • Dperiod (int, default: 5) — %D period.

  • slowing (int, default: 3) — Slowing factor.

  • price_field (ENUM_STO_PRICE, default: 0) — Price field for Stochastic.

Smoothing

  • T3_Period (int, default: 1) — T3 smoothing length (higher = smoother).

  • b (double, default: 0.7) — T3 smoothing factor (controls smoothness/lag).

D) Drawing options (look & behavior)

  • TrendLine (bool, default: true) — Master switch for drawing the lines.

  • Trend_Down (bool, default: true) — Show downtrend/bearish-side drawings.

  • Trend_Up (bool, default: true) — Show uptrend/bullish-side drawings.

  • HandyColour (bool, default: true) — Auto-color lines based on setup/step.

  • Highline (color, default: Red) — Manual color for high-side lines (if auto-color off).

  • Lowline (color, default: DeepSkyBlue) — Manual color for low-side lines (if auto-color off).

  • ChannelLine (bool, default: true) — Draw a parallel “channel” style line.

  • Trend (int, default: 0) — Direction filter: 1 only up, -1 only down, 0 both.

  • Channel (bool, default: false) — Use a classic channel object style.

  • Regression (bool, default: false) — Use regression channel mode.

  • RayH (bool, default: true) — Extend high-side channel/line to the right.

  • RayL (bool, default: true) — Extend low-side channel/line to the right.

  • ChannelH (color, default: Red) — High-side channel color.

  • ChannelL (color, default: DeepSkyBlue) — Low-side channel color.

  • STDwidthH (double, default: 1.0) — StdDev channel width (high-side).

  • STDwidthL (double, default: 1.0) — StdDev channel width (low-side).

  • Back (int, default: -1) — Reserved/legacy parameter (not essential for normal use).

  • code_buy (int, default: 159) — Wingdings code for the “buy” arrow symbol.

  • code_sell (int, default: 159) — Wingdings code for the “sell” arrow symbol.

E) Performance

  • _showBars (int, default: 1000) — Bars to visually work with.

  • bars_limit (int, default: 1000) — Bars to calculate per tick (speed control).

F) Alerts

  • SIGNAL_BAR (int, default: 1) — Which bar is used to confirm/trigger alerts ( 1 = closed bar).

  • popup_alert (bool, default: false) — MT5 popup alert.

  • notification_alert (bool, default: false) — Push notification.

  • email_alert (bool, default: false) — Email alert.

  • play_sound (bool, default: false) — Play a sound.

  • sound_file (string, default: "") — Sound file name.

  • start_program (bool, default: false) — Launch an external program on alert.

  • program_path (string, default: "") — Path to the program executable.

  • advanced_alert (bool, default: false) — Advanced alert via DLL (Telegram/Discord/etc).

  • advanced_key (string, default: "") — Key for advanced alert service.

  • AlertsSection / Comment2 / Comment3 / Comment4 (string) — UI separators/info text (no trading logic impact).

Practical advantages for Boom/Crash traders

  • Saves time: no manual divergence drawing.

  • Cleaner signals on fast, spiky markets thanks to pivot confirmation + smoothing.

  • Flexible: switch oscillator types without changing the workflow.

  • No alert spam: it tracks last alerted line/time to avoid duplicates.

Önerilen ürünler
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
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
Mitimom
Danil Poletavkin
The indicator is based on Robert Miner's methodology described in his book "High probability trading strategies" and displays signals along with momentum of 2 timeframes. A Stochastic oscillator is used as a momentum indicator. The settings speak for themselves period_1 is the current timeframe, 'current' period_2 is indicated - the senior timeframe is 4 or 5 times larger than the current one. For example, if the current one is 5 minutes, then the older one will be 20 minutes The rest of the s
FREE
Are you tired of drawing trendlines every time you're analyzing charts? Or perhaps you would like more consistency in your technical analysis. Then this is for you. This indicator will draw trend lines automatically when dropped on a chart. How it works Works similar to standard deviation channel found on mt4 and mt5. It has 2 parameters: 1. Starting Bar 2. Number of bars for calculation The   starting bar   is the bar which drawing of the trend lines will begin, while the   number of bars for c
FREE
MACD Enhanced
Nikita Berdnikov
5 (3)
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
The MACD indicator in MetaTrader 5 does not look like MACD as it was designed. That is because the MetaTrader 5 version of MACD displays the MACD line as a histogram when it is traditionally displayed as a line. Additionally, the MetaTrader 5 version computes the Signal line using an SMA, while according to MACD definition it is supposed to be an EMA. The MetaTrader 5 version also does not compute a true MACD Histogram (the difference between the MACD/Signal lines). This can be confusing for peo
FREE
Infinity'nin para birimlerinin gücünü ölçen bu yenilikçi gösterge, scalper'lar ve uzun vadeli ticaret yapan tüccarlar için vazgeçilmez bir yardımcıdır. Para birimlerinin Güç / zayıflık analiz sistemi uzun zamandır bilinmektedir ve dünyanın önde gelen tüccarları tarafından piyasada kullanılmaktadır. Herhangi bir arbitraj ticareti bu analiz olmadan tamamlanamaz. Göstergemiz, temel para birimlerinin birbirine göre gücünü kolayca belirler. Tüm para birimlerinde veya mevcut para birimlerinde çizgi g
FREE
Donchian Breakout And Rsi
Mattia Impicciatore
5 (1)
Genel Açıklama Bu gösterge, klasik Donchian Kanalı ’nın geliştirilmiş bir versiyonudur ve gerçek işlem için pratik işlevlerle zenginleştirilmiştir. Standart üç çizgiye (üst, alt ve orta çizgi) ek olarak sistem breakout (fiyat kırılımı) noktalarını tespit eder ve bunları grafikte oklarla görsel olarak gösterir. Ayrıca grafiği sadeleştirmek için mevcut trend yönünün tersindeki çizgi yalnızca görüntülenir. Gösterge şunları içerir: Görsel sinyaller : Kırılım sırasında renkli oklar Otomatik bildiriml
FREE
LT Donchian Channel
Thiago Duarte
4.83 (6)
Donchian Channel is an indicator created by Richard Donchian. It is formed by taking the highest high and the lowest low of the last specified period in candles. The area between high and low is the channel for the chosen period. Its configuration is simple. It is possible to have the average between the upper and lower lines, plus you have alerts when price hits one side. If you have any questions or find any bugs, please contact me. Enjoy!
FREE
Important Lines
Terence Gronowski
4.88 (24)
This indicator displays Pivot-Lines, preday high and low, preday close and the minimum and maximum of the previous hour. You just have to put this single indicator to the chart to have all these important lines, no need to setup many single indicators. Why certain lines are important Preday high and low : These are watched by traders who trade in a daily chart. Very often, if price climbs over or falls under a preday low/high there is an acceleration in buying/selling. It is a breakout out of a
FREE
Zigzag Price Arrows
Aiman Saeed Salem Dahbag
The Zigzag Price Arrow indicator is an enhanced version of the classic Zigzag indicator, combining the traditional zigzag pattern with advanced visual features. It not only identifies major market turning points but also provides clear trading signals through: • Directional arrows: Displays colored arrows (green for buy, magenta for sell) indicating potential trend directions. • Price labels: Shows the exact price values at each pivot point directly on the chart. • Improved visual clarity: Make
FREE
The indicator identifies when a divergence occurs between price and an indicator or oscillator. It identifies both regular and hidden divergences. Combined with your own rules and techniques, this indicator will allow you to create (or enhance) your own powerful system. For higher probability setups I can recommend you to use my Supply Demand indicator and trade only if the divergence occurs inside a zone. Supply zone for bearish div and demand zone for bullish div. The optimal scenario is if it
FREE
Cross MA histogram
Mariusz Piotr Rodacki
The Cossover MA Histogram indicator is a simple tool showing the trend based on crossover of moving averages. Simply specify two mobving averages and addicional parameters like MA method and Applied price. When fast MA is above slow MA the histogram is green, indicating an uptrend. When MA fast is below MA slow the histogram is red, indicating an downtrend.
FREE
"Haven Key Levels PDH PDL"   göstergesi, yatırımcıların grafikteki kilit seviyeleri görselleştirmesine yardımcı olur. Aşağıdaki seviyeleri otomatik olarak işaretler: DO (Daily Open)   — Günlük Açılış seviyesi. NYM (New York Midnight)   — New York Gece Yarısı seviyesi. PDH (Previous Day High)   — Önceki Günün En Yüksek seviyesi. PDL (Previous Day Low)   — Önceki Günün En Düşük seviyesi. WO (Weekly Open)   — Haftalık Açılış seviyesi. MO (Monthly Open)   — Aylık Açılış seviyesi. PWH (Previous Week
FREE
The idea of the system is to indentify the reversal patterns using the calculation of the composite candle. The reversal patterns is similar to the "Hammer" and "Hanging Man" patterns in Japanese candlestick analysis. But it uses the composite candle instead the single candle and doesn't need the small body of the composite candle to confirm the reversal. Input parameters: Range - maximal number of bars, used in the calculation of the composite candle. Minimum - minimal size of the composite can
FREE
Friend of the Trend: Your Trend Tracker Master the market with Friend of the Trend , the indicator that simplifies trend analysis and helps you identify the best moments to buy, sell, or wait. With an intuitive and visually striking design, Friend of the Trend analyzes price movements and delivers signals through a colorful histogram: Green Bars : Signal an uptrend, indicating buying opportunities. Red Bars : Alert to a downtrend, suggesting potential selling points. Orange Bars : Represent cons
FREE
Dual RSI
Paul Conrad Carlson
3.5 (2)
Indicator alerts for Dual Relative strength index rsi. Large rsi preset at 14 is below 30 small rsi preset at 4 is below 10 for buy bullish signals . Large rsi preset are 14 is above 70 small rsi preset at 4 is above 90 for sell bearish signals . Includes mobile and terminal alerts. draws lines when alerts. This indicator can help identify extremes and then the tops or bottoms of those extremes .
FREE
Indicator and Expert Adviser  EA Available in the comments section of this product. Download with Indicator must have indicator installed for EA to work. Mt5 indicator alerts for bollinger band and envelope extremes occurring at the same time. Buy signal alerts occur when A bullish candle has formed below both the lower bollinger band and the lower envelope  Bar must open and close below both these indicators. Sell signal occur when A bear bar is formed above the upper bollinger band and upper
FREE
PZ Penta O MT5
PZ TRADING SLU
3.5 (4)
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
Multi-timeframe trend indicator, based on the ADX / ADXWilder indicator 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. How the indicator works: if PDI is greater than NDI, then it`s bullish movement; if PDI is less than NDI, then it`s bearish movement; to determine any trend, it is
FREE
The Dual MACD & Stochastic Expert Advisor (EA)  is a fully automated trading system that utilizes two  MACD (Moving Average Convergence Divergence) indicators along with the  Stochastic Oscillator  to identify high-probability trading opportunities. By combining trend confirmation from MACD with momentum analysis from Stochastic, this EA provides precise entry and exit points for optimized trading performance. Key Features: • Dual MACD Strategy – Uses two MACD indicators with different setting
FREE
Indicator Description 4 Hull MA Color + Envelopes is a powerful trend-following indicator for MetaTrader 5 that combines four Hull Moving Averages (HMA) with Moving Average Envelopes to clearly identify market direction, trend strength, and potential reversal or pullback zones. This indicator is designed to reduce noise, react quickly to price movement, and provide a clean visual structure for professional trading.   Key Features   4 Hull Moving Averages (20, 50, 100, 200) Automatic color change
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
Fibonacci Trend Indicator
Vinoth Durairaj Durairaj
Fibonacci Trend Indicator for MT5 Unlock the power of Fibonacci analysis on your MetaTrader 5 charts! Our   Fibonacci Trend Indicator   automatically plots dynamic support and resistance levels so you can spot trends, reversals, and breakout opportunities at a glance. Features & Advantages Automatic Fibonacci Levels Instantly displays seven key Fibonacci retracement levels based on the highest and lowest prices from your chosen lookback period — no manual work required. Dynamic Trend Adaptatio
FREE
HighLow MT5
Azamat Mullayanov
4 (2)
The indicator plots two lines by High and Low prices. The lines comply with certain criteria. The blue line is for buy. The red one is for sell. The entry signal - the bar opens above\below the lines. The indicator works on all currency pairs and time frames It can be used either as a ready-made trading system or as an additional signal for a custom trading strategy. There are no input parameters. Like with any signal indicator, it is very difficult to use the product during flat movements. You
FREE
Show Pips for MT5
Roman Podpora
4.52 (27)
Bu bilgi göstergesi her zaman hesaptaki güncel durumdan haberdar olmak isteyenler için faydalı olacaktır. VERSION MT 4 -   More useful indicators Gösterge, puan cinsinden kâr, yüzde ve para birimi gibi verilerin yanı sıra mevcut çiftin spreadini ve mevcut zaman diliminde çubuğun kapanmasına kadar geçen süreyi görüntüler. Bilgi satırını grafiğe yerleştirmek için birkaç seçenek vardır: Fiyatın sağında (fiyatın arkasında); Yorum olarak (grafiğin sol üst köşesinde); Ekranın seçilen köşesinde. Bilgi
FREE
Tabajara V5
Flavio Javier Jarabeck
4.83 (36)
Metatrader 5 version of the famous Andre Machado's Tabajara indicator. If you don't know Andre Machado's Technical Analysis work you don't need this indicator... For those who need it and for those several friend traders who asked this porting from other platforms, here it is... FEATURES 8-period Moving Average 20-period Moving Average 50-period Moving Average 200-period Moving Average Colored candles according to the inflexion of the 20-period MA SETTINGS You can change the Period of all MA's
FREE
Stamina HUD
Michele Todesco
STAMINA HUD – Advanced Market & Trend Dashboard (MT5) STAMINA HUD   is a professional   market information panel   designed for traders who want   clarity, speed, and control   directly on the chart. It provides a   clean heads-up display (HUD)   with essential market data and   multi-timeframe trend direction , without cluttering the chart or generating trading signals. What STAMINA HUD Shows   Current Price   Spread (in real pips)   Today High–Low range (pips)   Average D
FREE
This is a buyer and seller aggression indicator that analyzes the shape of each candle and project this data in a histogram form. There are 4 histograms in one. On the front we have two: Upper - Buyer force. Lower - Seller force. At the background we also have two histogram, both with same color. They measure the combined strenght of buyers and sellers. This histograms can be turned off in Input Parameters. It is also possible to have the real or tick volume to help on this force measurement. IN
FREE
Heiken Ashi MT5 Göstergesi Heiken Ashi MT5 Göstergesi, standart fiyat verilerini daha yumuşak ve trend odaklı mumlara dönüştürerek, piyasa trendlerini ve potansiyel dönüş noktalarını daha kolay belirlemenizi sağlayan güçlü bir araçtır. Ana Özellikler: Net trend tanımlama: Yükseliş ve düşüş trendlerini farklı mum renkleriyle görsel olarak ayırt eder. Gürültü azaltma: Fiyat dalgalanmalarını filtreleyerek piyasanın ana hareketlerine daha net odaklanmanızı sağlar. Erken trend tespiti: Standart graf
FREE
Bu ürünün alıcıları ayrıca şunları da satın alıyor
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
SuperScalp Pro
Van Minh Nguyen
5 (9)
SuperScalp Pro – Gelişmiş Çoklu Filtreli Scalping Gösterge Sistemi SuperScalp Pro, klasik Supertrend ile çok sayıda akıllı onay filtresini birleştiren gelişmiş bir scalping gösterge sistemidir. Gösterge M1’den H4’e kadar tüm zaman dilimlerinde verimli çalışır ve özellikle XAUUSD, BTCUSD ve ana Forex pariteleri için uygundur. Bağımsız bir sistem olarak kullanılabilir veya mevcut ticaret stratejilerine esnek şekilde entegre edilebilir. Gösterge, hız ve yavaş EMA’lar, trend belirleyen üç EMA, EMA e
AriX
Temirlan Kdyrkhan
1 (4)
AriX Indicator for MT5 A powerful trend-following and signal-evaluation tool AriX is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking with real-time stat
Bu indikatörü satın alırsanız, Profesyonel Trade Manager’ımı  + EA ÜCRETSİZ olarak alacaksınız. Öncelikle, bu Ticaret Sistemi'nin Non-Repainting, Non-Redrawing ve Non-Lagging Göstergesi olduğunu vurgulamak önemlidir, bu da hem manuel hem de robot ticareti için ideal hale getirir. Online kurs, kılavuz ve ön ayarları indir. "Smart Trend Trading System MT5", yeni ve deneyimli tüccarlar için özelleştirilmiş kapsamlı bir ticaret çözümüdür. 10'dan fazla premium göstergeyi birleştiriyor ve 7'den fazla
FX Trend MT5 NG
Daniel Stein
5 (4)
FX Trend NG: Yeni Nesil Çoklu Piyasa Trend Zekâsı Genel Bakış FX Trend NG , çoklu zaman dilimlerinde çalışan profesyonel bir trend analiz ve piyasa izleme aracıdır. Piyasanın yapısını saniyeler içinde anlamanızı sağlar. Birden fazla grafik arasında geçiş yapmak yerine, hangi enstrümanların trendde olduğunu, momentumun nerede zayıfladığını ve hangi zaman dilimlerinin uyumlu olduğunu anında görebilirsiniz. Lansman Teklifi – FX Trend NG sadece $30 (6 Ay) veya $80 Ömür Boyu Lisans ile edinin. Zate
Divergence Bomber
Ihor Otkydach
4.89 (83)
Bu göstergeyi satın alan herkese aşağıdaki ekstra içerikler ücretsiz olarak sunulmaktadır: Her işlemi otomatik olarak yöneten, Stop Loss ve Take Profit seviyelerini ayarlayan ve işlemleri strateji kurallarına göre kapatan özel yardımcı araç: "Bomber Utility" Göstergenin farklı varlıklar üzerinde kullanılmasına yönelik ayar dosyaları (set dosyaları) Bomber Utility için 3 farklı modda kullanım sunan ayar dosyaları: "Minimum Risk", "Dengeli Risk" ve "Bekle-Gör Stratejisi" Bu ticaret stratejisini hı
Market Flow Pro
Gabriele Sabatino
4 (1)
Market Flow Pro Market Flow Pro is an intelligent trading advisor for the MetaTrader 5 platform, designed for automatic trading on financial markets using algorithmic analysis and strict risk management. -Key features: - Fully automatic trading 24/5 - Adaptive trend and momentum entry algorithm -  Built-in risk management - Flexible lot settings (fixed/auto-calculation) - Support for major currency pairs and indices - Optimised for operation on various timeframes  How it works Market
Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool developed based on Smart Money Concepts (SMC). It is designed to analyze market structure, price direction, reversal points, and key zones across multiple timeframes in a systematic way. The system displays Points of Interest (POI) and real-time No Repaint signals, with instant alerts when price reaches key zones or when signals occur within those zones. It functions as both an Indicator and a Signal System (2-in-1), c
Gold Entry Sniper
Tahir Mehmood
5 (5)
Gold Entry Sniper – Altın Scalping & Swing Trading için Profesyonel Çoklu Zaman Çerçeveli ATR Paneli Gold Entry Sniper , XAUUSD ve diğer enstrümanlar için doğru al/sat sinyalleri veren, ATR Trailing Stop mantığı ve çoklu zaman çerçevesi analizi ile geliştirilmiş gelişmiş bir MetaTrader 5 göstergesidir. Temel Özellikler ve Avantajlar Çoklu Zaman Çerçevesi Analizi – M1, M5, M15 trendlerini tek panelde gösterir. ATR Tabanlı Trailing Stop – Volatiliteye göre dinamik olarak ayarlanır. Profesyonel Gra
Grabber System MT5
Ihor Otkydach
4.82 (22)
Size mükemmel bir teknik gösterge olan Grabber’ı tanıtıyorum. Bu araç, kullanıma hazır bir “her şey dahil” işlem stratejisi olarak çalışır. Tek bir yazılım kodu içinde güçlü piyasa teknik analiz araçları, işlem sinyalleri (oklar), uyarı işlevleri ve push bildirimleri entegre edilmiştir. Bu göstergeyi satın alan herkes aşağıdaki hediyeleri ücretsiz olarak alır: Açık emirleri otomatik yönetmek için Grabber Yardımcı Aracı Kurulum, yapılandırma ve nasıl işlem yapılacağını adım adım anlatan video kıl
Power Candles – Tüm Piyasalar İçin Güce Dayalı Giriş Sinyalleri Power Candles , Stein Investments’ın kanıtlanmış güç analizini doğrudan fiyat grafiğinize taşır. Sadece fiyata tepki vermek yerine, her mum gerçek piyasa gücüne göre renklendirilir. Bu sayede momentum birikimleri, güç hızlanmaları ve net trend geçişleri anında görülebilir. Tüm Piyasalar İçin Tek Mantık Power Candles tüm işlem sembollerinde otomatik olarak çalışır. Gösterge, mevcut sembolün Forex mi yoksa Forex dışı bir piyasa mı old
RFI levels PRO MT5
Roman Podpora
3.67 (3)
Bu gösterge, fiyat dönüş noktalarını ve fiyat geri dönüş bölgelerini doğru bir şekilde gösterir.       Başlıca oyuncular   . Yeni trendlerin nerede oluştuğunu görüyorsunuz ve her işlem üzerinde kontrolü elinizde tutarak, azami hassasiyetle kararlar alıyorsunuz. TREND LINES PRO   göstergesiyle birlikte kullanıldığında maksimum potansiyelini ortaya koyar.  VERSION MT4 Göstergenin gösterdiği şey: Yeni bir trendin başlangıcında aktivasyonla birlikte tersine dönüş yapıları ve tersine dönüş seviyeler
Game Changer è un indicatore di tendenza rivoluzionario, progettato per essere utilizzato su qualsiasi strumento finanziario, per trasformare il tuo MetaTrader in un potente analizzatore di trend. Funziona su qualsiasi intervallo temporale e aiuta a identificare i trend, segnala potenziali inversioni, funge da meccanismo di trailing stop e fornisce avvisi in tempo reale per risposte tempestive del mercato. Che tu sia un professionista esperto o un principiante in cerca di un vantaggio, questo st
FX Power MT5 NG
Daniel Stein
5 (31)
FX Power: Daha Akıllı Ticaret Kararları için Para Birimlerinin Gücünü Analiz Edin Genel Bakış FX Power , her piyasa koşulunda başlıca para birimlerinin ve altının gerçek gücünü anlamak için vazgeçilmez bir araçtır. Güçlü para birimlerini alıp zayıf olanları satarak, FX Power ticaret kararlarınızı basitleştirir ve yüksek olasılıklı fırsatları ortaya çıkarır. İster trendlere sadık kalın ister Delta'nın aşırı değerlerini kullanarak tersine dönüşleri öngörün, bu araç ticaret tarzınıza mükemmel bir
Azimuth Pro
Ottaviano De Cicco
5 (4)
LAUNCH PROMO Azimuth Pro price is initially set at 299$ for the first 100 buyers. Final price will be 499$ . THE DIFFERENCE BETWEEN RETAIL AND INSTITUTIONAL ENTRIES ISN'T THE INDICATOR — IT'S THE LOCATION. Most traders enter at arbitrary price levels, chasing momentum or reacting to lagging signals. Institutions wait for price to reach structured levels where supply and demand actually shift. Azimuth Pro maps these levels automatically: swing-anchored VWAP, multi-timeframe structure lines, an
Smart Stop Indicator – Stop-loss düzeylerini doğrudan grafikte akıllı ve hassas şekilde belirleyin Genel Bakış Smart Stop Indicator, stop-loss seviyesini tahmin ederek veya sezgilere güvenerek değil, net ve sistematik bir şekilde belirlemek isteyen traderlar için özel olarak geliştirilmiştir. Bu araç, klasik price-action mantığını (yükselen tepeler, düşen dipler) modern breakout algılama ile birleştirerek bir sonraki mantıklı stop seviyesini belirler. Trendlerde, yatay piyasalarda veya hızlı k
Atomic Analyst MT5
Issam Kassas
4.1 (29)
Öncelikle belirtmek gerekir ki bu Ticaret Göstergesi Yeniden Çizim Yapmaz, Gecikmez ve Gecikme Göstermez, bu da hem manuel hem de robot ticareti için ideal hale getirir. Kullanıcı kılavuzu: ayarlar, girişler ve strateji. Atom Analisti, Piyasada Daha İyi Bir Avantaj Bulmak İçin Fiyatın Gücünü ve Momentumunu Kullanan PA Fiyat Hareketi Göstergesidir. Gürültüleri ve Yanlış Sinyalleri Kaldırmaya ve Ticaret Potansiyelini Artırmaya Yardımcı Olan Gelişmiş Filtrelerle Donatılmıştır. Birden fazla katmanl
RelicusRoad Pro: Kantitatif Piyasa İşletim Sistemi ÖMÜR BOYU ERİŞİMDE %70 İNDİRİM (SINIRLI SÜRE) - 2.000+ TRADER'A KATILIN Neden çoğu trader "mükemmel" indikatörlere rağmen başarısız olur? Çünkü tekil kavramları boşlukta trade ederler. Bağlamı olmayan bir sinyal kumardır. Sürekli kazanmak için KONFLÜANS (UYUM) gerekir. RelicusRoad Pro basit bir ok indikatörü değildir. Tam bir Kantitatif Piyasa Ekosistemi dir. Tescilli volatilite modellemesini kullanarak fiyatın ilerlediği "Adil Değer Yolu"nu har
Quantum TrendPulse
Bogdan Ion Puscasu
5 (22)
SuperTrend   ,   RSI   ve   Stochastic'in   gücünü tek bir kapsamlı göstergede birleştirerek işlem potansiyelinizi en üst düzeye çıkaran nihai işlem aracı olan   Quantum TrendPulse'u   tanıtıyoruz. Hassasiyet ve verimlilik arayan yatırımcılar için tasarlanan bu gösterge, piyasa trendlerini, momentum değişimlerini ve en uygun giriş ve çıkış noktalarını güvenle belirlemenize yardımcı olur. Temel Özellikler: SuperTrend Entegrasyonu:   Güncel piyasa trendlerini kolayca takip edin ve karlılık dalgası
TREND ÇİZGİLERİ PRO       Piyasanın gerçek yön değiştirdiği noktayı anlamaya yardımcı olur. Gösterge, gerçek trend dönüşlerini ve büyük oyuncuların piyasaya yeniden girdiği noktaları gösterir. Anlıyorsun   BOS hatları   Daha yüksek zaman dilimlerindeki trend değişiklikleri ve önemli seviyeler, karmaşık ayarlar veya gereksiz gürültü olmadan gösterilir. Sinyaller yeniden çizilmez ve çubuk kapandıktan sonra grafikte kalır. MT4 SÜRÜMÜ   -   RFI LEVELS PRO   göstergesiyle   birlikte kullanıldığında m
Trend indicator AI mt5
Ramil Minniakhmetov
5 (15)
Trend Ai göstergesi, trend tanımlamasını işlem yapılabilir giriş noktaları ve geri dönüş uyarılarıyla birleştirerek bir yatırımcının piyasa analizini geliştirecek harika bir araçtır. Bu gösterge, kullanıcıların forex piyasasının karmaşıklıklarında güvenle ve hassasiyetle yol almalarını sağlar. Birincil sinyallerin ötesinde, Trend Ai göstergesi geri çekilmeler veya düzeltmeler sırasında ortaya çıkan ikincil giriş noktalarını belirleyerek, yatırımcıların belirlenen trend içindeki fiyat düzeltmele
FX Dynamic MT5
Daniel Stein
5 (5)
FX Dynamic: Özelleştirilebilir ATR Analiziyle Volatilite ve Trendleri Takip Edin Genel Bakış FX Dynamic , ortalama gerçek aralık (ATR) hesaplamalarını kullanarak günlük ve gün içi volatilite hakkında rakipsiz bilgiler sağlayan güçlü bir araçtır. 80%, 100%, 130% gibi net volatilite eşikleri ayarlayarak, piyasa olağan hareketlerinin ötesine geçtiğinde hızlı şekilde uyarı alabilir ve potansiyel kazanç fırsatlarını süratle tespit edebilirsiniz. FX Dynamic , brokerınızın zaman dilimine uyum sağlaya
Trend Screener Pro MT5
STE S.S.COMPANY
4.84 (101)
Trend Göstergesi, Trend Alım Satım ve Filtreleme için Çığır Açan Benzersiz Çözüm, Tüm Önemli Trend Özellikleriyle Tek Bir Araç İçinde Yerleştirildi! Forex, emtialar, kripto para birimleri, endeksler ve hisse senetleri gibi tüm sembollerde/araçlarda kullanılabilen %100 yeniden boyamayan çoklu zaman çerçevesi ve Çoklu para birimi göstergesidir. Trend Screener, grafikte noktalarla ok trend sinyalleri sağlayan etkili bir trend trend göstergesidir. Trend analizörü göstergesinde bulunan özellikler: 1.
FX Levels MT5
Daniel Stein
5 (13)
FX Levels: Tüm Piyasalar İçin Son Derece Hassas Destek ve Direnç Hızlı Bakış Döviz kurları, endeksler, hisseler veya emtialar gibi herhangi bir piyasada güvenilir destek ve direnç seviyeleri belirlemek mi istiyorsunuz? FX Levels geleneksel “Lighthouse” yöntemini ileri düzey bir dinamik yaklaşımla birleştirerek neredeyse evrensel bir doğruluk sağlar. Gerçek broker deneyimimize ve otomatik günlük güncellemeler ile gerçek zamanlı güncellemelerin birleşimine dayalı olarak, FX Levels size dönüş nok
Top indicator for MT5   providing accurate signals to enter a trade without repainting! It can be applied to any financial assets:   forex, cryptocurrencies, metals, stocks, indices .  Watch  the video  (6:22) with an example of processing only one signal that paid off the indicator! MT4 version is here It will provide pretty accurate trading signals and tell you when it's best to open a trade and close it. Most traders improve their trading results during the first trading week with the help of
Candle Smart Range
Gianny Alexander Lugo Sanchez
MetaTrader 5 için Candle Smart Range (CSR) Candle Smart Range, birden fazla zaman diliminde fiyat aralıklarının otomatik olarak tanımlanması için tasarlanmış teknik bir göstergedir. Bu araç, piyasa yapısını mum formasyonlarına ve fiyatın önceki en yüksek/en düşük seviyelerle olan etkileşimine dayanarak analiz eder. Ana Özellikler: Aralık Tespiti: İmpulsif hareketlerden önceki konsolidasyon bölgelerini tanımlar. Sahte Kırılma Tanımlama: Fiyatın önceki seviyeyi aştığı ancak mum kapanış kriterlerin
Mirage Trading System — False Breakout (Fakey) Pattern Detector for MetaTrader 5 MANUAL   ,   MQL5 Channel Buy any indicator and get a FREE bonus indicator Phantom trading System, SMC retest Trading system, GOLD SCALP System! Send me a private message for details. Overview   Mirage Trading System detects the Fakey pattern (false breakout reversal) on completed bars and draws entry, stop loss, and take profit levels on the chart. Detection is non-repainting: signal values do not change after bar
IX Power MT5
Daniel Stein
4.92 (13)
IX Power: Endeksler, Emtialar, Kripto Paralar ve Forex Piyasaları için İçgörüler Genel Bakış IX Power , endeksler, emtialar, kripto paralar ve forex sembollerinin gücünü analiz etmek için tasarlanmış çok yönlü bir araçtır. FX Power , tüm kullanılabilir döviz çiftlerinin verilerini kullanarak döviz çiftleri için maksimum doğruluk sağlarken, IX Power yalnızca temel sembolün piyasa verilerine odaklanır. Bu, IX Power 'ı forex dışındaki piyasalar için ideal ve daha basit forex analizleri için güven
ARIPoint
Temirlan Kdyrkhan
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
Trend Forecaster
Alexey Minkov
5 (7)
The Trend Forecaster indicator utilizes a unique proprietary algorithm to determine entry points for a breakout trading strategy. The indicator identifies price clusters, analyzes price movement near levels, and provides a signal when the price breaks through a level. The Trend Forecaster indicator is suitable for all financial assets, including currencies (Forex), metals, stocks, indices, and cryptocurrencies. You can also adjust the indicator to work on any time frames, although it is recommen
Yazarın diğer ürünleri
SnR FVG Sweep Levels
Stephen Muriithi Muraguri
SNR + FVG + HTF Sweeps Levels Indicator Documentation — Version 71.10 Smart Money Concepts (SMC) / Inner Circle Trader (ICT) Methodology By Ultimate Trader Overview This indicator combines three institutional trading concepts into a single chart overlay for MetaTrader 5. It identifies where institutions sweep liquidity at key structural levels, detects the displacement (Fair Value Gap) that follows, and maps the support and resistance zones where these events occur. The result is a high-probabil
FREE
The TrendGate TriMA Ultimate EA is a professional trend-following trading system designed for the MetaTrader 5 platform. This Expert Advisor utilizes a triple moving average crossover strategy combined with a multi-layered filtering system to capture high-probability market movements while minimizing false signals. Advantages and Core Features Precision Crossover Logic : The EA identifies trend shifts by monitoring the intersection of a Fast MA and a Slow MA , while a third Filter MA ensures tra
FREE
This EA finds Fair Value Liquidity (FVL) on the chart, tracks when they get mitigated , and then looks for an inversion signal (price “fails” through the zone). When that inversion happens, it places a trade in the opposite direction of the original Liquidity gap (an Inverse FVG approach). It also lets you control when it trades using market sessions , and it can auto-close positions at New York open (all positions or profitable-only). Key advantages Clear, rule-based entries (no guessing): trad
FREE
GapRush iFVG EA
Stephen Muriithi Muraguri
Gap Rush iFVG EA is an automated trading Expert Advisor built around Fair Value Gaps (FVGs) . It scans the chart for valid bullish/bearish gaps, draws them clearly as rectangles , and can place trades when price reacts to those gaps—optionally filtered by higher-timeframe trend bias , sessions , and days of the week . It also includes built-in risk checks and trade management (SL/TP + trailing + end-of-day flat). Key advantages Automatic FVG detection: Identifies bullish and bearish fair value g
ZoneSniper EA is a Supply & Demand zone trading robot built for MetaTrader 5. It identifies high-probability price zones formed by consolidation, waits for a confirmed impulse breakout away from those zones, then enters trades precisely when price returns to retest them. Zone Detection The EA scans for consolidation clusters — a defined number of candles trading within a tight range. When price breaks out of that cluster with a strong impulse candle, the consolidation area is marked as either a
FREE
Filtrele:
İnceleme yok
İncelemeye yanıt