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.

Produits recommandés
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 Analyse Market Profile Professionnelle pour MT5 (L'indicateur idéal pour le trading de type Grid) QU'EST-CE QUE LE VOLUME PROFILE ? Le Volume Profile est un outil institutionnel qui affiche l'activité de trading à des niveaux de prix spécifiques, contrairement aux indicateurs de volume classiques qui montrent le volume en fonction du temps. Il révèle OÙ les transactions ont eu lieu, aidant ainsi à identifier : ZONES DE VALEUR (VAH/VAL) – Niveaux de prix où la majorité des
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
La Master Edition est un outil d'analyse de qualité professionnelle conçu pour visualiser la structure du marché à travers le prisme du volume et du flux monétaire. Contrairement aux indicateurs de volume standard, cet outil affiche un Profil de Volume Quotidien directement sur votre graphique, vous permettant de voir exactement où la découverte des prix a eu lieu et où est positionné "l'argent intelligent". Cette Master Edition est conçue pour la clarté et la rapidité, dotée d'un système unique
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
L'indicateur construit les cotations actuelles, qui peuvent être comparées aux cotations historiques et, sur cette base, faire une prévision de l'évolution des prix. L'indicateur dispose d'un champ de texte pour une navigation rapide jusqu'à la date souhaitée. Option : Symbole - sélection du symbole que l'indicateur affichera ; SymbolPeriod - sélection de la période à partir de laquelle l'indicateur prendra des données ; IndicatorColor - couleur de l'indicateur ; HorisontalShift - décalage
Le niveau Premium est un indicateur unique avec une précision de plus de 80 % des prédictions correctes ! Cet indicateur a été testé par les meilleurs Trading Specialists depuis plus de deux mois ! L'indicateur de l'auteur que vous ne trouverez nulle part ailleurs ! À partir des captures d'écran, vous pouvez constater par vous-même la précision de cet outil ! 1 est idéal pour le trading d'options binaires avec un délai d'expiration de 1 bougie. 2 fonctionne sur toutes les paires de devises
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 – Édition Gratuite Indicateur de Détection des Gaps de Valeur Juste pour MetaTrader 5 (MT5) Vous recherchez un véritable outil de trading – pas juste un autre indicateur au hasard ? FVG Smart Zones – Édition Gratuite offre une vision professionnelle du marché en détectant automatiquement les Gaps de Valeur Juste (FVG) et en mettant en évidence des zones de trading à haute probabilité directement sur votre graphique. Conçu pour les traders suivant : Smart Money Concepts (
FREE
Best SAR MT5
Ashkan Hazegh Nikrou
4.33 (3)
La description :  nous sommes heureux de vous présenter notre nouvel indicateur gratuit basé sur l'un des indicateurs professionnels et populaires du marché des changes (PSAR). Cet indicateur est une nouvelle modification de l'indicateur SAR parabolique original. Dans l'indicateur pro SAR, vous pouvez voir un croisement entre les points et le graphique des prix. le croisement n'est pas un signal mais parle du potentiel de fin de mouvement, vous pouvez commencer à acheter par un nouveau point b
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.
L'indicateur DYJ BoS identifie et marque automatiquement les éléments essentiels des changements de structure du marché, notamment : Rupture de structure (BoS) : détectée lorsque le prix effectue un mouvement significatif, franchissant un point de structure précédent. Il marque les lignes de tendance haussière et baissière possibles (UP & DN, c'est-à-dire de nouveaux sommets et de nouveaux creux continus), et une fois que le prix franchit ces lignes, il marque des flèches rouges (BEAR) et ver
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
Définir TP et SL par Prix – Modificateur automatique d’ordres pour MT5 Définissez automatiquement des niveaux de TP et SL précis sur toute opération ️ Fonctionne avec toutes les paires et tous les EAs, filtrage par symbole ou Magic Number Cet Expert Advisor vous permet de définir et d’appliquer des niveaux exacts de Take Profit (TP) et Stop Loss (SL) à l’aide de valeurs de prix directes (ex. : 1.12345 sur EURUSD). Aucun point, aucun pip. Une gestion de trade propre et précise, sur toutes l
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 — votre partenaire de confiance pour un trading discipliné du Bitcoin. La nouvelle version est désormais renforcée par l’intelligence artificielle OpenAI , offrant une exécution plus intelligente et un filtrage optimisé des transactions dans des conditions de forte volatilité du marché crypto. Ce robot de trading professionnel (Expert Advisor) est spécialement conçu pour le trading du Bitcoin (BTCUSD) sur la plateforme MetaTrader 5 , en mettant l’accent sur une exécution structuré
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 - Une nouvelle perspective sur l'analyse de la liquidité Découvrez la mise à jour majeure — Haven Stop Loss Hunter 2.0 ! Il s'agit d'un outil professionnel conçu pour identifier les zones de liquidité et les fausses cassures (Sweeps), désormais plus flexible et fonctionnel [1]. Dans cette version, nous avons implémenté une analyse multi-timeframe (MTF) complète ainsi qu'un système d'alerte avancé pour vous aider à suivre les manipulations institutionnelles basées sur l
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
Les acheteurs de ce produit ont également acheté
Ce produit a été mis à jour pour le marché 2026 et optimisé pour les dernières versions de MT5. AVIS DE MISE À JOUR DU PRIX : Smart Trend Trading System est actuellement disponible à $99 . Le prix passera à $199 après les 30 prochains achats . OFFRE SPÉCIALE : Après avoir acheté Smart Trend Trading System, envoyez-moi un message privé pour recevoir Smart Universal EA GRATUITEMENT et transformer vos signaux Smart Trend en trades automatisés. Smart Trend Trading System est un système de trading c
Trend Sniper X
Sarvarbek Abduvoxobov
5 (8)
Trend Sniper X est un indicateur de suivi de tendance multi-période pour MetaTrader 5 qui aide les traders à identifier la direction de la tendance et les points de retournement potentiels avec clarté et précision. Informations sur le prix : Le prix actuel est un prix promotionnel et est sujet à changement à mesure que les futures mises à jour et nouvelles fonctionnalités seront publiées. Canal Code2Profit Maîtrisez le marché grâce à l'analyse multi-période ! Spécifications techniques Plateforme
SuperScalp Pro
Van Minh Nguyen
4.69 (29)
SuperScalp Pro –  Système Professionnel de Scalping à Confluence Multicouche SuperScalp Pro est un système professionnel de scalping à confluence multicouche, conçu pour aider les traders à identifier des opportunités à plus forte probabilité grâce à des confirmations d'entrée plus claires, des niveaux de Stop Loss et de Take Profit basés sur l'ATR, ainsi qu'un filtrage flexible des signaux sur le XAUUSD, le BTCUSD et les principales paires de devises du Forex. La documentation complète est disp
Commençons par être honnêtes. Aucun indicateur ne vous rendra rentable à lui seul. Si quelqu’un vous dit le contraire, il vous vend un rêve. Tout indicateur qui affiche des flèches parfaites d’achat/vente peut être rendu impeccable — il suffit de zoomer sur la bonne partie de l’historique et de capturer uniquement les trades gagnants. Nous ne faisons pas cela.  SMC Intraday Formula est un outil. Il lit la structure du marché pour vous, identifie les zones de prix à la probabilité la plus élevée
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
Neuro Poseidon MT5
Daria Rezueva
4.8 (54)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for al
M1 Quantum MT5
Hamed Dehgani
4.6 (10)
Signaux de Trading en Direct avec M1 Quantum : Signal   (L’opération est exécutée automatiquement par le Quantum Trade Assistant , inclus gratuitement avec ce produit.) Plan de prix : Prix actuel : $169 (Offre de lancement) Prochain prix prévu : $189 Prix de vente prévu : $299 Note du développeur : Après votre achat, veuillez me contacter pour recevoir le dernier fichier de configuration recommandé (Set File) , des conseils d'utilisation, ainsi qu'une invitation au groupe d'assistance VIP , où
La légende est de retour : Entry Points Pro 10. La relance de l'indicateur légendaire qui s'est maintenu 3 ans dans le Top-3 du MQL5 Market. Des centaines d'avis enthousiastes (589 sur les deux versions), des milliers de traders l'utilisent chaque jour, 31 000+ téléchargements de la démo   MT4+MT5 . J'ai lu chacun de vos avis publiés en cinq ans — et au lieu de promettre, j'ai intégré les réponses directement dans la version 10. Par un auteur présent sur les marchés depuis 1999, qui tient à l'ho
L'indicateur UZFX {SSS} Scalping Smart Signals v4.0 MT5 est un indicateur de trading haute performance sans « repaint », conçu pour les scalpers, les day traders et les swing traders qui recherchent des signaux précis et en temps réel sur des marchés très volatils. Développé par (UZFX-LABS), cet indicateur combine l'analyse de l'action des prix, la confirmation de tendance et un filtrage intelligent pour générer des signaux d'achat et de vente à forte probabilité, des signaux d'alerte et des opp
Divergence Bomber
Ihor Otkydach
4.9 (92)
Chaque acheteur de cet indicateur reçoit également gratuitement : L’outil exclusif « Bomber Utility », qui accompagne automatiquement chaque opération de trading, fixe les niveaux de Stop Loss et de Take Profit, et clôture les positions selon les règles de la stratégie Des fichiers de configuration (set files) pour adapter l’indicateur à différents actifs Des set files pour configurer le Bomber Utility selon différents modes : « Risque Minimum », « Risque Équilibré » et « Stratégie d’Attente » U
Gann Made Easy   est un système de trading Forex professionnel et facile à utiliser qui est basé sur les meilleurs principes de trading en utilisant la théorie de mr. WD Gann. L'indicateur fournit des signaux d'ACHAT et de VENTE précis, y compris les niveaux Stop Loss et Take Profit. Vous pouvez échanger même en déplacement en utilisant les notifications PUSH. VEUILLEZ ME CONTACTER APRÈS L'ACHAT POUR RECEVOIR GRATUITEMENT DES INSTRUCTIONS DE TRADING ET D'EXCELLENTS INDICATEURS SUPPLÉMENTAIRES! V
Atomic Analyst MT5
Issam Kassas
4.37 (46)
Ce produit a été mis à jour pour le marché 2026 et optimisé pour les dernières versions de MT5. AVIS DE MISE À JOUR DU PRIX : Atomic Analyst est actuellement disponible à $99 . Le prix passera à $199 après les 30 prochains achats . OFFRE SPÉCIALE : Après avoir acheté Atomic Analyst, envoyez-moi un message privé pour recevoir Smart Universal EA GRATUITEMENT et transformer vos signaux Atomic Analyst en trades automatisés. Atomic Analyst est un indicateur de trading Price Action sans repaint, san
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
Power Candles MT5
Daniel Stein
5 (9)
Power Candles V3 - Indicateur de force à optimisation automatique Power Candles V3 transforme la force des devises et des instruments en un plan de trading exploitable sur chaque graphique auquel il est associé. Au lieu de se contenter de colorer les bougies, il effectue une optimisation automatique en temps réel en arrière-plan et vous fournit les meilleurs niveaux de Stop Loss, Take Profit et seuils de signal pour le symbole que vous avez sous les yeux. Un simple clic suffit pour l'adopter en
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
Présentation de   Quantum TrendPulse   , l'outil de trading ultime qui combine la puissance de   SuperTrend   ,   RSI   et   Stochastic   dans un seul indicateur complet pour maximiser votre potentiel de trading. Conçu pour les traders qui recherchent précision et efficacité, cet indicateur vous aide à identifier les tendances du marché, les changements de dynamique et les points d'entrée et de sortie optimaux en toute confiance. Caractéristiques principales : Intégration SuperTrend :   suivez f
M1 Sniper MT5
Oleg Rodin
5 (4)
M1 SNIPER   est un système d'indicateurs de trading facile à utiliser. Il s'agit d'un indicateur à flèche conçu pour l'unité de temps M1. Cet indicateur peut être utilisé seul pour le scalping sur l'unité de temps M1 ou intégré à votre système de trading existant. Bien que conçu spécifiquement pour le trading sur l'unité de temps M1, ce système peut également être utilisé avec d'autres unités de temps. Initialement, j'avais conçu cette méthode pour le trading du XAUUSD et du BTCUSD. Cependant, j
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
Ce produit a été mis à jour pour le marché 2026 et optimisé pour les dernières versions de MT5. AVIS DE MISE À JOUR DU PRIX : Smart Price Action Concepts est actuellement disponible à $200 . Le prix passera à $299 après les 30 prochains achats . OFFRE SPÉCIALE : Après l’achat, envoyez-moi un message privé pour recevoir un bonus gratuit + un cadeau . Tout d’abord, il est important de souligner que cet outil de trading est un indicateur sans repaint, sans redrawing et sans retard, ce qui le rend
Gem SIGNAL
Shengzu Zhong
5 (1)
GEM Signal Pro GEM Signal Pro est un indicateur de suivi de tendance pour MetaTrader 5, conçu pour les traders qui souhaitent des signaux plus clairs, des configurations de trade plus structurées et une gestion du risque plus pratique directement sur le graphique. Au lieu d’afficher simplement une flèche, GEM Signal Pro aide à présenter l’idée complète du trade de manière plus claire et plus lisible. Lorsque les conditions sont confirmées, l’indicateur peut afficher le prix d’entrée, le stop los
Présentation       Quantum Breakout PRO   , l'indicateur révolutionnaire MQL5 qui transforme la façon dont vous négociez les zones d'évasion ! Développé par une équipe de traders expérimentés avec une expérience commerciale de plus de 13 ans,       Évasion quantique PRO       est conçu pour propulser votre parcours commercial vers de nouveaux sommets grâce à sa stratégie de zone de discussion innovante et dynamique. Quantum Breakout Indicator vous donnera des flèches de signalisation sur les z
DayTrader PRO
Davit Beridze
5 (2)
DayTrader PRO DayTrader PRO est un indicateur de trading avancé qui combine le filtre Laguerre de John Ehlers avec un puissant moteur d'auto-optimisation. Au lieu d'utiliser des paramètres fixes, l'indicateur recherche automatiquement les meilleurs réglages en fonction des conditions récentes du marché, vous aidant à vous adapter à la volatilité changeante sans ajustements manuels constants. L'indicateur génère des signaux clairs d'ACHAT (BUY) et de VENTE (SELL), accompagnés de niveaux de Stop L
Axiom Matrix
Issam Kassas
5 (4)
AXIOM MATRIX MT5 PRIX DE LANCEMENT : $99 Axiom Matrix est disponible au prix de lancement de $99. Le prix passera à $199 après les 30 premiers achats. Après votre achat, envoyez-moi un message direct pour recevoir les instructions et réclamer votre bonus cadeau exclusif. Axiom Matrix est un scanner de marché professionnel multi-symboles et multi-timeframes, ainsi qu’un tableau de bord de décision pour MetaTrader 5. Il scanne votre Market Watch, analyse plusieurs timeframes, lit plusieurs moteurs
FX Power MT5 NG
Daniel Stein
5 (33)
FX Power : Analysez la force des devises pour des décisions de trading plus intelligentes Aperçu FX Power est l'outil essentiel pour comprendre la force réelle des principales devises et de l'or, quelles que soient les conditions du marché. En identifiant les devises fortes à acheter et les faibles à vendre, FX Power simplifie vos décisions de trading et révèle des opportunités à forte probabilité. Que vous suiviez les tendances ou anticipiez les retournements à l'aide de valeurs extrêmes de D
The Oracle Pro
Ottaviano De Cicco
5 (1)
The Oracle Pro: Synthetic Multi-Timeframe Bias Engine for MT5 ️ Summer Launch Offer — Get The Oracle Pro for USD 199 (early buyers). Price rises with traction; final price USD 399. The Oracle Pro is a premium multi-timeframe bias engine for MetaTrader 5, built for demanding and professional traders. It answers one question with discipline: what is the directional bias on each timeframe right now, how strong is it, and how much do the timeframes agree? Everything is computed on closed bars only
Actualités du produit : Strategy Assistant a été mis à jour vers la nouvelle version 1.9 avec des performances plus rapides, une interface professionnelle repensée et une expérience utilisateur améliorée. Note du développeur : Strategy Assistant est en développement continu avec des mises à jour et des améliorations régulières. Prochaine mise à jour : ajout de Strategy Agent (combinaisons intelligentes de plusieurs stratégies de trading). Note sur le prix : Le prix actuel reste à 50 $ pour les
Berma Bands
Muhammad Elbermawi
5 (10)
L'indicateur Berma Bands (BB) est un outil précieux pour les traders qui cherchent à identifier et à capitaliser sur les tendances du marché. En analysant la relation entre le prix et les BB, les traders peuvent déterminer si un marché est dans une phase de tendance ou de range. Visitez le [ Berma Home Blog ] pour en savoir plus. Les bandes de Berma sont composées de trois lignes distinctes : la bande de Berma supérieure, la bande de Berma moyenne et la bande de Berma inférieure. Ces lignes sont
Reversion King Indicator
Eugen-alexandru Zibileanu
5 (5)
Un nouveau Roi en ville - Indicateur + Gestion des ordres (TP1 + TP2 + TP3) + Envoi optionnel de signaux Telegram INCLUS (GRATUIT) (SYSTÈME COMPLET DE TRADING et DE SIGNAUX) Notre meilleur EA pour l’Or : Gold Slayer Cet indicateur inclut une stratégie avancée, un système de trading avec gestion des ordres personnalisable ainsi qu’un système de retour à la moyenne combinant des extensions d’enveloppes, soutenu par plusieurs filtres intelligents de confirmation comme le RSI afin de détecter des en
Trade smarter, not harder: Empower your trading with Harmonacci Patterns This is arguably the most complete harmonic price formation auto-recognition indicator you can find for the MetaTrader Platform. It detects 19 different patterns, takes fibonacci projections as seriously as you do, displays the Potential Reversal Zone (PRZ) and finds suitable stop-loss and take-profit levels. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  ] It detects 19 different harmonic pric
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
Atbot
Zaha Feiz
4.69 (55)
AtBot : Comment ça fonctionne et comment l'utiliser ### Comment ça fonctionne L'indicateur "AtBot" pour la plateforme MT5 génère des signaux d'achat et de vente en utilisant une combinaison d'outils d'analyse technique. Il intègre la Moyenne Mobile Simple (SMA), la Moyenne Mobile Exponentielle (EMA) et l'indice de la Plage Vraie Moyenne (ATR) pour identifier les opportunités de trading. De plus, il peut utiliser des bougies Heikin Ashi pour améliorer la précision des signaux. Laissez un avis ap
Plus de l'auteur
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
Filtrer:
Aucun avis
Répondre à l'avis