DynamicSwing vwap

EWMA-VWAP that automatically re-anchors at swing pivots, color-codes trend direction, and carries the prior segment forward until price invalidates it.


▶ WHAT IT DOES


Dynamic Swing VWAP is an adaptive Volume-Weighted Average Price indicator that eliminates the guesswork of manual VWAP anchor selection. Instead of anchoring to a fixed session or calendar reset, it anchors automatically whenever the market forms a confirmed swing pivot — a Higher High, Lower Low, Lower High, or Higher Low — then re-anchors with every new structural swing.


The result is two simultaneous VWAP lines on your chart at all times:


  • Active Segment (DS-VWAP) — the VWAP running from the most recent swing anchor forward, colored lime (bullish) or red (bearish) according to the current trend direction.


  • Previous Segment (DS-VWAP prev) — the VWAP from the segment just retired, continuing to advance and draw forward until price closes beyond its outer ATR band, at which point it fades. This "ghost" line lets you see at a glance whether the previous structure is still acting as support or resistance.


Each line is accompanied by optional ATR-scaled bands (upper and lower, dotted) that define dynamic support/resistance zones. Swing pivot labels (LL, HH, HL, LH, EL, EH, IL, IH) are placed directly on the chart at each pivot bar.


An on-chart dashboard panel (configurable corner) displays the current trend bias, live VWAP value, last swing type, and timeframe/version info.



▶ CORE FORMULA & DETECTION LOGIC


The VWAP computation uses an Exponential Weighted Moving Average (EWMA) formulation rather than a simple cumulative sum. The smoothing factor α is derived from an Adaptive Period Time (APT) parameter:


    α = 1 − exp(−ln(2) / max(1, APT))


Each bar, the numerator (price × volume) and denominator (volume) are updated:


    P_new  = (1−α)·P_old  + α·HLC3·vol_capped

    V_new  = (1−α)·V_old  + α·vol_capped

    VWAP   = P_new / V_new


Price used is the HLC3 typical price (High + Low + Close) / 3.


Volume is capped at 3× the 20-bar SMA of volume, with a fallback to the 50-bar rolling median when real volume is unavailable (tick volume is used automatically on instruments without real volume).


ATR bands: Band = VWAP ± (EWMA_ATR × BandMultiplier), where EWMA_ATR is a parallel exponential-smoothed ATR computed over 50 bars.


Adaptive APT (optional): When InpUseAdapt is enabled, APT is inversely scaled by the ratio of current ATR to its 50-bar average, raised to the power of InpVolBias. High-volatility environments tighten the APT (faster response); low-volatility environments widen it.


Swing detection: A bar is classified as a swing high (or low) if it is the highest high (lowest low) within the preceding InpSwingPeriod bars, evaluated on bar close. The most recent swing high and low bar indices are tracked; whichever was more recent determines the current trend direction (g_dir). A flip in g_dir triggers an anchor handoff.


Anchor re-seeding: When a new anchor fires, the active segment state is handed to the previous-segment slot, and the new active segment is seeded from the pivot bar with a 5-bar ramp-up smoothing (when InpSmoothAnchor is enabled) to suppress the sharp initial VWAP discontinuity.


Previous-segment invalidation: The previous VWAP continues advancing each bar using the same EWMA formula. It is invalidated — and stops drawing — when the closing price crosses beyond the previous segment's outer band (VWAP_prev ± EWMA_ATR_prev × BandMult).



▶ WHAT MAKES THIS DIFFERENT


  1. DUAL-SEGMENT DISPLAY — most swing-anchored VWAP tools show only the current segment. This indicator also carries the prior segment forward dynamically, giving you a second contextual reference without cluttering the chart with permanent historical lines.


  2. EWMA FORMULATION — unlike cumulative-sum VWAP (which gives equal weight to every bar from anchor to present), the EWMA formulation makes recent price/volume interactions more influential. This makes the VWAP more responsive to intraday structure changes.


  3. SELF-INVALIDATING PREVIOUS SEGMENT — the prior VWAP does not linger indefinitely. It disappears the moment price commits beyond its band, so the chart stays clean and the remaining line is always actionable.


  4. VOLUME CAPPING — volume spikes (news events, open/close surges) are capped at 3× the rolling SMA to prevent a single high-volume bar from distorting the VWAP anchor.


  5. STRUCTURAL PIVOT LABELS — every swing inflection is labeled with its market structure classification (LL/HH/HL/LH/EL/EH/IL/IH), giving a built-in market structure map alongside the VWAP.


  6. OPTIONAL ANCHOR FILTER — the InpOnlyLLHH flag restricts re-anchoring to only confirmed Lower Lows and Higher Highs, filtering out internal retracements when you only want anchors at major structure breaks.



▶ KEY PARAMETERS TABLE


┌──────────────────┬──────────────┬────────────────────────────────────────────────────────────────┐

│ Parameter        │ Default      │ Description                                                    │

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpSwingPeriod   │ 55           │ Lookback bars for swing high/low detection. Larger = fewer,     │

│                  │              │ more significant pivots. Range 5–200 recommended.               │

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpBaseAPT       │ 21.0         │ Base Adaptive Period Time. Controls EWMA smoothing speed.        │

│                  │              │ Lower = faster response, higher = smoother. Range 5–300.        │

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpUseAdapt      │ false        │ Enable adaptive APT scaling by ATR ratio. When true, APT        │

│                  │              │ automatically tightens in high-volatility, widens in quiet.     │

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpVolBias       │ 10.0         │ Exponent applied to ATR ratio in adaptive mode. Higher values   │

│                  │              │ amplify the adaptive effect. Active only when InpUseAdapt=true. │

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpVolCap        │ true         │ Cap volume at 3× 20-bar SMA to suppress volume-spike distortion.│

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpSmoothAnchor  │ true         │ Apply 5-bar ramp-up when seeding a new anchor to reduce the     │

│                  │              │ visible VWAP discontinuity at re-anchor events.                 │

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpOnlyLLHH      │ false        │ Restrict re-anchoring to confirmed LL and HH pivots only.       │

│                  │              │ Ignores HL/LH internal swings for a higher-timeframe feel.      │

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpShowBands     │ true         │ Show ATR-scaled upper and lower deviation bands (dotted lines). │

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpBandMult      │ 0.618        │ ATR multiplier for band width. 0.618 (phi) for tight zones;     │

│                  │              │ 1.0–1.5 for wider standard-deviation style bands.               │

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpShowPivots    │ true         │ Display swing pivot labels (LL/HH/HL/LH/EL/EH/IL/IH) on chart. │

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpBullColor     │ Lime         │ Color for bullish (uptrend) VWAP and bands.                     │

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpBearColor     │ Red          │ Color for bearish (downtrend) VWAP and bands.                   │

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpLineWidth     │ 2            │ Width of the main VWAP line (1–5). Bands always draw at width 1.│

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpShowDash      │ true         │ Show the on-chart info dashboard panel.                         │

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpDashPos       │ "Top Right"  │ Dashboard position: "Top Right", "Top Left", "Bottom Right",    │

│                  │              │ "Bottom Left".                                                  │

├──────────────────┼──────────────┼────────────────────────────────────────────────────────────────┤

│ InpLookbackBars  │ 2000         │ Maximum bars to process on full recalculation. Set to 0 for     │

│                  │              │ unlimited (may be slow on long histories).                      │

└──────────────────┴──────────────┴────────────────────────────────────────────────────────────────┘



▶ COMPATIBILITY


  • Platform: MetaTrader 5 (build 2755+)

  • Instruments: All — Forex, Indices, Commodities, Crypto, Stocks

  • Timeframes: All — works on M1 through MN; recommended M5, M15, H1, H4

  • Real volume / tick volume: Auto-detected (uses real volume when available, tick volume as fallback)

  • Buffers used: 12 (6 data + 6 color-index buffers for DRAW_COLOR_LINE)

  • Chart type: Main window overlay



▶ HOW TO USE


  1. INSTALLATION

     Copy DynamicSwingVWAP.mq5 to: [MT5 Data Folder]\MQL5\Indicators\

     In MetaEditor, compile the file (F7). The indicator appears in the Navigator panel.


  2. ATTACH

     Drag onto any chart. The default settings (InpSwingPeriod=55, InpBaseAPT=21) are tuned for M15–H1 charts on major Forex pairs.


  3. READING THE CHART

     • Lime (green) VWAP line = current bullish segment; price above = bullish bias

     • Red VWAP line = current bearish segment; price below = bearish bias

     • The dimmer/older-colored line is the previous segment (labeled "DS-VWAP prev")

     • Dotted lines above/below = ATR bands — support/resistance zones

     • Triangle labels = pivot classification (LL, HH, HL, LH, EL, EH, IL, IH)


  4. TUNE FOR TIMEFRAME

     • Scalping (M1–M5): InpSwingPeriod=21, InpBaseAPT=10

     • Intraday (M15–H1): InpSwingPeriod=55, InpBaseAPT=21 (defaults)

     • Swing (H4–D1): InpSwingPeriod=89–144, InpBaseAPT=34–55


  5. USE BANDS AS ENTRIES

     Price returning to the active VWAP line or its lower band (in a bullish segment) is

     a mean-reversion zone. Price rejecting the upper band can signal a continuation pullback.


  6. PREVIOUS SEGMENT AS S/R

     The previous-segment VWAP often acts as support after a bullish re-anchor, and

     resistance after a bearish one. Watch for it to vanish — that confirms the prior

     structure has been invalidated.


  7. ALERTS (not present in v1.0 — see roadmap)

     Alert support for anchor events and band breaks is planned for v1.1.

Recommended products
Profile Map MT5
Dmitriy Sapegin
5 (5)
Market Profile helps the trader to identify the behavior if major market players and define zones of their interest. The key feature is the clear graphical display of the range of price action, in which 70% of the trades were performed. Understanding of the location of volume accumulation areas can help traders increase the probability of success. The tool can be used as an independent system as well as in combination with other indicators and trading systems. this indicator is designed to suit
VolumeProfile MT5
Robert Hess
4.14 (7)
Description: The Volume Profile displays detailed informations of historical trading activities at certain price levels (Market Profile). Locate the areas with the best prices in the market and get an advantage over other market participants. Features: Customizable Market Profile Shows the "fair" Value Area with 70% of all Volume Shows critical low volume zones Shows VPOC, VAL and VAH Points integrated resource management to reduce the load while working with multiple charts Works on all timefr
ALIEN Dashboard
Youssef Esseghaiar
ALIEN DASHBOARD FULL EDITION – Professional ICT & Precision Trading Dashboard for MT5 ( HYBRID ENGINE ) Overview The   Alien Dashboard Full Edition   is a comprehensive, all‑in‑one technical indicator for MetaTrader 5 that merges the most powerful concepts from Inner Circle Trader (ICT) methodology with advanced precision‑entry logic, multi‑timeframe analysis, and an intuitive on‑chart dashboard. Designed for serious traders who want to visualise institutional order flow, identify high‑probabili
Was: $249  Now: $99   Market Profile defines a number of day types that can help the trader to determine market behaviour. A key feature is the Value Area, representing the range of price action where 70% of trading took place. Understanding the Value Area can give traders valuable insight into market direction and establish the higher odds trade. It is an excellent addition to any system you may be using. Inspired by Jim Dalton’s book “Mind Over Markets”, this indicator is designed to suit the
SPECIAL LAUNCH OFFER: $30 (1-Month Rent) Limited time offer to build our community and gather feedback! AmbM GOLD Institutional Scalper A high-precision M5 algorithm for XAUUSD (Gold) , engineered to trade exclusively at Institutional Liquidity Levels ($5/$10 psychological marks). PERFORMANCE DATA (BUY ONLY) • Win Rate: 87.09%. • Safe Growth: +$4,113 profit on $10k (13.75% Max Drawdown). • Extreme Stress Test: Successfully generated +$22,997 in a 5-year stress test (2020-2026), proving
Mine Farm
Maryna Kauzova
Mine Farm is one of the most classic and time-tested scalping strategies based on the breakdown of strong price levels. Mine Farm is the author's modification of the system for determining entry and exit points into the market... Mine Farm - is the combination of great potential with reliability and safety. Why Mine Farm?! - each order has a short dynamic Stop Loss - the advisor does not use any risky methods (averaging, martingale, grid, locking, etc.) - the advisor tries to get the most
VWAP Daily
Anton Polkovnikov
Weighted average price indicator or VWAP. The well-known standard VWAP with the beginning of the day is added with the function of selecting the periodization. It can be calculated both every day and on other periods. Also the indicator allows to exclude the volume from the calculation, which will allow using it on the cryptocurrencies and forex. There is an alert for a VWAP price crossing. There are 1 and 2 standard deviation. Settings: Volume: turning volume on and off in the calculation mecha
VOLUME PROFILE SAF-XII                            Professional Market Profile Analysis for MT5   (The Definitive Tool for Grid & Mean-Reversion Traders)         WHAT IS VOLUME PROFILE? Volume Profile is a professional institutional tool that displays trading activity at specific price levels, unlike traditional volume indicators that show volume over time. It reveals WHERE trading occurred, within your window of choice, helping identify:   • FAIR VALUE AREAS (VAH/VAL) - Price levels wh
Intraday Session TPO: Precision Volume Profiling for Day Traders Stop trading blind during the most volatile hours of the day. Standard daily volume profiles blend everything together, masking the true areas of liquidity and institutional interest. The Intraday Session TPO is engineered specifically for session-to-session traders. It empowers you to isolate and profile specific time windows—like the London Open, the New York Killzone, or the Asian range—so you can see exactly where the volume is
Money Flow Profile MT4  HERE Here our more valuable tools SMC Trend Trading   ,  Easy SMC Trading  ,  Institutional SMC Architect Volume Analysis Tools  ,  Volume flow Profile  ,  Market volume profile  , FVG with Volume  , Liquidity Heatmap Profile  ,  Volume Spread Analysis  Master Edition is a professional-grade analytical tool designed to visualize market structure through the lens of volume and money flow. Unlike standard volume indicators, this tool displays a Daily Volume Profile
This Volume Delta Profile is an advanced MetaTrader 5 indicator that visualizes   volume delta (order flow imbalance)   using a volume profile-style histogram. It shows the difference between buying and selling pressure at specific price levels, helping traders identify supply and demand zones. This indicator provides a unique perspective on market dynamics by visualizing the imbalance between buying and selling pressure, offering insights beyond traditional volume analysis. Core Concept Positiv
This indicator allows you to enjoy the two most popular products for analyzing request volumes and market deals at a favorable price: Actual Depth of Market Chart Actual Tick Footprint Volume Chart This product combines the power of both indicators and is provided as a single file. The functionality of Actual COMBO Depth of Market AND Tick Volume Chart is fully identical to the original indicators. You will enjoy the power of these two products combined into the single super-indicator! Below is
The indicator builds current quotes, which can be compared with historical ones and on this basis make a price movement forecast. The indicator has a text field for quick navigation to the desired date. Options: Symbol - selection of the symbol that the indicator will display; SymbolPeriod - selection of the period from which the indicator will take data; IndicatorColor - indicator color; Inverse - true reverses quotes, false - original view; Next are the settings of the text field, in w
Premium level is a unique indicator with more than 80% accuracy of correct predictions! This indicator has been tested for more than two months by the best Trading Specialists! The author's indicator you will not find anywhere else! From the screenshots you can see for yourself the accuracy of this tool! 1 is great for trading binary options with an expiration time of 1 candle. 2 works on all currency pairs, stocks, commodities, cryptocurrencies Instructions: As soon as the red arrow app
VDelta Profile Pro Volume Profile + Order-Flow Context for XAUUSD, US100 (NAS100) and US500 (SP500) VDelta Profile Pro builds a live volume profile directly on your chart, showing where the market actually traded — the Point of Control (POC), Value Area (VAH/VAL), and High Volume Nodes (HVN). These structural levels act as natural support and resistance zones that price tends to respect, react to, and return to. The core of this tool is volume-at-price : it measures how much activity occurred at
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
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
ICT Kill zone and Macros Indicator mark and display the following zone times on the chart: Kill zones   Kill zone Forex Asian London Open New York Open London Close Central Bank Dealing range Kill zone Indices Asian London Open New York AM New York Lunch New York PM Power Hour Macros London 1 London 2 New York Am 1 New York AM 2 New York Lunch New York PM 1 New York PM 2 Silver bullet London Open New York AM New York PM Sessions Asian London New York Chart The display of  Kill zone , Macro ,
Advanced MT5 Indicator: Precision-Powered with Pivot Points, MAs & Multi-Timeframe Logic Unlock the full potential of your trading strategy with this precision-engineered MetaTrader 5 indicator —an advanced tool that intelligently blends Pivot Points , Adaptive Moving Averages , and Multi-Timeframe Analysis to generate real-time Buy and Sell signals with high accuracy.    If you want to test on Real Market, Let me know. I will give the Demo file to run on Real Account.    Whether you're a scal
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 The    Liquidity Heatmap   is a sophisticated institutional trading tool designed to reveal where over-leveraged traders are trapped. By calculating estimated liquidation levels based on volume spikes and leverage, this indicator draws a dynamic "h
Breakout Boxes with Volume Pressure This indicator automates the identification of key consolidation zones (Supply and Demand) based on Market Pivots and Volatility (ATR). Unlike standard support/resistance tools, this indicator provides a unique   Volume Pressure Analysis   inside every box, giving you insight into the battle between Buyers and Sellers before a breakout occurs. Key Features Automated Supply & Demand Zones:   Automatically detects significant Pivot Highs and Lows to draw dyna
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation.
The indicator automatically identifies and labels essential elements of market structure shift, including: Break of Structure (BoS): Detected when there is a significant price movement breaking previous structural points. It mark possible uptrend and downtrend lines(UP & DN, It means constantly update high and low ), and once the price breaks through these lines, mark the red (BEAR) and green (BULL) arrows. BoS typically occurs when the price decisively moves through swing lows or swing highs t
Initial Balance MT5
Ricardo Almeida Branco
The Initial Balance (Initial Balance / Initial Balance) is a concept related to the study of volume (to learn more, study about Market Profile and Auction Market Theory. You can find some videos in English when searching for "Initial Balance Market Profile"). The IB defines a range in which prices were negotiated in the first hour of trading.The amplitude of the range is important and the break in the range defined by the Initial Balance may have occurred due to the movement of several players
Set TP & SL by Price – Auto Order Modifier for MT5 Automatically set precise TP and SL price levels on any trade ️ Works with all pairs and EAs, filter by symbol or magic number This Expert Advisor lets you define and apply exact Take Profit (TP) and Stop Loss (SL) levels to your trades using direct price values (e.g., 1.12345 on EURUSD). No points, no pips. Just clean, accurate trade management across all orders or filtered by chart or magic number. Key Features: Instantly modify T
Professional Opening Range Breakout (ORB) indicator designed for precision session trading with automatic time handling, breakout alerts, and advanced target levels. This indicator automatically identifies the Opening Range for any configurable session, plots the High, Low, and Midpoint levels, and extends them across the trading day. Built-in breakout detection and alerts, range measurements, and extension targets provide traders with clear structure and actionable levels. Ideal for traders usi
BTC Master Pro
Farzad Saadatinia
4.58 (12)
BTC Master Pro – Your trusted partner in disciplined Bitcoin trading. The new version is now enhanced with OpenAI artificial intelligence , delivering smarter execution and improved trade filtering in volatile crypto conditions. This professional Expert Advisor is built specifically for Bitcoin (BTCUSD) trading on MetaTrader 5 , focusing on structured execution, controlled exposure, and intelligent risk management. Price: $499  →  Next: $699  →  Final: $999 LIVE SIGNAL HERE OpenAI-Powered Exec
Introducing the B4S BidLine CandleTimer An insightful indicator that combines real-time bid line visualization with a dynamic countdown timer. Gain a competitive edge in your trading as you stay informed about the time remaining until the next candle starts, all displayed seamlessly on your chart. Why B4S BidLine CandleTimer? Unleash the potential of your trading strategy with the B4S BidLine CandleTimer. Here's why this indicator stands out: Real-Time Bid Line: Witness market movements like nev
Haven Stop Loss Hunter
Maksim Tarutin
4.4 (5)
Haven Stop Loss Hunter 2.0 - A New Level of Liquidity Analysis Meet the major update — Haven Stop Loss Hunter 2.0 ! This is a professional tool designed for identifying liquidity pools and false breakouts (Sweeps), now with even greater flexibility and functionality [1]. In this version, we have implemented full multi-timeframe (MTF) analysis and an advanced alert system, helping you track market manipulations based on the Smart Money Concept with timely notifications, without wasting time switc
FREE
Overview Heiken Ashi CE Filtered MT5 is a technical indicator for the MetaTrader 5 platform. It integrates smoothed candlestick charting with a dynamic exit strategy and a customizable trend filter to deliver clear buy and sell signals. The indicator is designed to improve trend detection and signal reliability by reducing market noise. If you want to see more high-quality products or order the development/conversion of your own products, visit my partners' website: 4xDev Get 10% OFF on manual
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
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
Launch Discount Ending Soon — 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 s
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
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
M1 Quantum MT5
Hamed Dehgani
4.6 (10)
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
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"
Neuro Poseidon MT5
Daria Rezueva
4.73 (55)
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
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
Atomic Analyst MT5
Issam Kassas
4.38 (47)
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
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
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
Gem SIGNAL
Shengzu Zhong
5 (1)
GEM Signal Pro GEM Signal Pro is a trend-following indicator for MetaTrader 5, designed for traders who want clearer signals, more structured trade setups, and practical risk management directly on the chart. Instead of showing only a simple arrow, GEM Signal Pro helps present the full trade idea in a cleaner and more readable way. When conditions are confirmed, the indicator can display the entry price, stop loss, and take profit targets on the chart, helping traders review the setup more effic
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
The  UZFX {SSS} Scalping Smart Signals v4.0 MT5  is a Non Repaint high-performance trading indicator designed for Scalpers, Day Traders, and Swing Traders  who demand accurate, real-time signals in fast-moving markets. Developed by  (UZFX-LABS) , this indicator combines price action analysis, trend confirmation, and smart filtering to generate high-probability  buy and sell signals, Warning Signals, and Trend Continuation Opportunities across all currency pairs and timeframes.  Stop second-guess
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
RelicusRoad Pro MT5
Relicus LLC
4.96 (24)
RelicusRoad Pro: Quantitative Market Operating System 70% OFF LIFETIME ACCESS (LIMITED TIME) - JOIN 2,000+ TRADERS Why do most traders fail even with "perfect" indicators? Because they trade Single Concepts in a vacuum. A signal without context is a gamble. To win consistently, you need CONFLUENCE . RelicusRoad Pro is not a simple arrow indicator. It is a complete Quantitative Market Ecosystem . It maps the "Fair Value Road" price travels on, distinguishing between random noise and true structur
Introducing   Quantum Breakout PRO , the groundbreaking MQL5 Indicator that's transforming the way you trade Breakout Zones! Developed by a team of experienced traders with trading experience of over 13 years,   Quantum Breakout PRO   is designed to propel your trading journey to new heights with its innovative and dynamic breakout zone strategy. Quantum Breakout Indicator will give you signal arrows on breakout zones with 5 profit target zones and stop loss suggestion based on the breakout b
SkyHammer Signal Pro Professional No-Repaint Trend Signal Indicator with Locked Entry, SL and TP Levels SkyHammer Signal Pro is a structured trend and momentum signal indicator designed for traders who want clear, fixed, and verifiable trading signals. It works best on lower timeframes such as M1 and M5 . The indicator does not try to predict tops or bottoms. Instead, it waits for confirmed market structure, trend direction, momentum strength, volatility quality, and target space before generati
Smc Pro ToolKit
Talal N Z Aljarusha
5 (3)
SMC Pro ToolKit  is a professional chart-based Smart Money Concepts indicator for MetaTrader 5. It helps traders read market structure, identify key liquidity areas, organize trade context, and plan setups directly from the chart. This is not a simple buy/sell arrow indicator. It is a complete visual trading toolkit that combines Smart Money Concepts, multi-timeframe analysis, session context, setup planning, risk assistance, and professional dashboard tools in one clean workspace. Watch setup
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
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
Axiom Matrix
Issam Kassas
5 (4)
AXIOM MATRIX MT5 LAUNCH PRICE: $99 Axiom Matrix is available at the launch price of $99. The price will increase to $199 after the first 30 purchases. After your purchase, send me a direct message to receive your instructions and claim your exclusive gift bonus. Axiom Matrix is a professional multi-symbol, multi-timeframe market scanner and decision dashboard for MetaTrader 5. It scans your Market Watch, analyzes multiple timeframes, reads multiple evidence engines, compares the strongest opport
FX Power MT5 NG
Daniel Stein
5 (33)
FX Power: Analyze Currency Strength for Smarter Trading Decisions Overview FX Power is your go-to tool for understanding the real strength of currencies and Gold in any market condition. By identifying strong currencies to buy and weak ones to sell, FX Power simplifies trading decisions and uncovers high-probability opportunities. Whether you’re looking to follow trends or anticipate reversals using extreme delta values, this tool adapts seamlessly to your trading style. Don’t just trade—trade
Btmm state engine pro
Garry James Goodchild
5 (4)
BTMM State Engine Pro is a MetaTrader 5 indicator for traders who use the Beat The Market Maker approach: Asian session context, kill zone timing, level progression, peak formation detection, and a multi-pair scanner from a single chart. It combines cycle state logic with a built-in scanner dashboard so you do not need the same tool on many charts at once. What it does Draws the Asian session range; session times can follow broker server offset or be set in inputs. Tracks level progression (L
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
DayTrader PRO
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 current market volatili
Berma Bands
Muhammad Elbermawi
5 (10)
The Berma Bands (BBs) indicator is a valuable tool for traders seeking to identify and capitalize on market trends. By analyzing the relationship between the price and the BBs, traders can discern whether a market is in a trending or ranging phase. Visit the [ Berma Home Blog ] to know more. Berma Bands are composed of three distinct lines: the Upper Berma Band, the Middle Berma Band, and the Lower Berma Band. These lines are plotted around the price, creating a visual representation of the pric
Product News:   Strategy Assistant has been upgraded to the new Version 1.9 with faster performance, a redesigned professional interface, and improved user experience. Developer Note:   Strategy Assistant is under continuous development with regular upgrades and improvements, Next update: Adding Strategy Agent (intelligent combinations of multiple strategies). Pricing Note: The current price remains at $50 for the first 100 users , after which the price will increase to $100 . Strategy Assistan
More from author
Supply and Demand Zones Indicator for MT5 Professional institutional-grade Supply and Demand zone detection with intelligent alerts WHAT IS IT? Supply and Demand Zones is a powerful MT5 indicator that automatically identifies high-probability institutional supply and demand zones on any chart. this professional indicator brings advanced zone detection to MetaTrader 5 with enhanced features. Unlike traditional support and resistance levels, this indicator detects actual institutional footprint
Strat Assistant
Alejandro Miguel Basso
Strat Assistant is a comprehensive price action analysis tool designed for traders who rely on candlestick patterns and multi-timeframe confluence. **WHAT IT DOES:** - Automatically detects three powerful price action patterns:   * **Inside Bars**: Consolidation patterns indicating potential breakouts   * **External Bars**: Engulfing patterns showing strong directional moves   * **Failed 2 Patterns (CRT)**: Counter-trend reversal setups based on liquidity grabs - Displays real-time higher time
Mikula Square of Nine — XAUUSD Intraday  v1.0 The most complete implementation of the Gann/Mikula Square of Nine for Gold intraday trading on MetaTrader 5. The Formula > **Level(ring, angle) = ( √DailyOpen + ring + angle/360 )²** Prices move in square root spirals. When price reaches a specific angular position of that spiral — especially the cardinal angles (0, 90, 180, 270) — it tends to pause, reverse, or accelerate. Why this implementation is different **Ring 0 always included**
## What is an Inversion Fair Value Gap? A **Fair Value Gap (FVG)** is a three-candle imbalance where price moves so fast that a price range is left untested. When price later returns and **closes through** that zone rather than respecting it, the imbalance *inverts* — what was support becomes resistance, or vice versa. This flipped zone is called an **Inversion Fair Value Gap (IFVG)**. IFVGs are a core concept in modern Smart Money and ICT-derived analysis. They represent points where institu
Filter:
No reviews
Reply to review