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.

Prodotti consigliati
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 Analisi Market Profile Professionale per MT5 (L'indicatore ideale per i trader che utilizzano strategie Grid) COS'È IL VOLUME PROFILE? Il Volume Profile è uno strumento istituzionale professionale che visualizza l'attività di trading a specifici livelli di prezzo, a differenza dei tradizionali indicatori di volume che mostrano il volume nel tempo. Rivela DOVE sono avvenuti gli scambi all'interno della finestra temporale scelta, aiutando a identificare: VALUE AREAS (VAH/VA
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 è uno strumento analitico di livello professionale progettato per visualizzare la struttura del mercato attraverso l'obiettivo del volume e del flusso di denaro. A differenza degli indicatori di volume standard, questo strumento visualizza un Profilo di Volume Giornaliero direttamente sul tuo grafico, permettendoti di vedere esattamente dove si è verificata la scoperta dei prezzi e dove è posizionato il "denaro intelligente". Questa Master Edition è progettata per chiarezza e v
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'indicatore costruisce le quotazioni attuali, che possono essere confrontate con quelle storiche e su questa base fanno una previsione del movimento dei prezzi. L'indicatore ha un campo di testo per una rapida navigazione fino alla data desiderata. Opzioni: Simbolo - selezione del simbolo che visualizzerà l'indicatore; SymbolPeriod - selezione del periodo da cui l'indicatore prenderà i dati; IndicatorColor - colore dell'indicatore; HorisontalShift - spostamento delle virgolette disegnate d
Il livello Premium è un indicatore unico con una precisione superiore all'80% delle previsioni corrette! Questo indicatore è stato testato dai migliori Specialisti di Trading per più di due mesi! L'indicatore dell'autore che non troverai da nessun'altra parte! Dagli screenshot puoi vedere di persona la precisione di questo strumento! 1 è ottimo per il trading di opzioni binarie con un tempo di scadenza di 1 candela. 2 funziona su tutte le coppie di valute, azioni, materie prime, criptovalu
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 – Edizione Gratuita Indicatore di Rilevamento dei Gap di Valore Equo per MetaTrader 5 (MT5) Cerchi uno strumento di trading reale – non solo un altro indicatore casuale? FVG Smart Zones – Edizione Gratuita fornisce una visione professionale del mercato rilevando automaticamente i Fair Value Gap (FVG) e evidenziando zone di trading ad alta probabilità direttamente sul grafico. Ideato per trader che seguono: Smart Money Concepts (SMC) ICT Trading Concepts Price Action
FREE
Best SAR MT5
Ashkan Hazegh Nikrou
4.33 (3)
Descrizione:  siamo felici di presentare il nostro nuovo indicatore gratuito basato su uno degli indicatori professionali e popolari nel mercato forex (PSAR) questo indicatore è una nuova modifica sull'indicatore SAR parabolico originale, nell'indicatore pro SAR puoi vedere l'incrocio tra i punti e il grafico dei prezzi, questo il crossover non è un segnale ma parla del potenziale di fine movimento, puoi iniziare a comprare con un nuovo punto blu e posizionare lo stop loss un atr prima del pri
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'indicatore DYJ BoS identifica e contrassegna automaticamente gli elementi essenziali dei cambiamenti nella struttura del mercato, tra cui: Breakout of Structure (BoS): rilevato quando il prezzo effettua una mossa significativa, rompendo un precedente punto di struttura. Segna possibili linee di tendenza al rialzo e al ribasso (UP e DN, ovvero nuovi massimi e nuovi minimi continui) e una volta che il prezzo sfonda queste linee, segna frecce rosse (ORSO) e verdi (TORO) Il BoS si verifica sol
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
Imposta TP e SL per Prezzo – Modificatore automatico di ordini per MT5 Imposta automaticamente livelli di TP e SL precisi su qualsiasi operazione ️ Funziona con tutte le coppie e con tutti gli EAs, con filtro per simbolo o numero magico Questo Expert Advisor ti consente di definire e applicare livelli esatti di Take Profit (TP) e Stop Loss (SL) utilizzando valori di prezzo diretti (es. : 1.12345 su EURUSD). Nessun punto, nessun pip. Solo una gestione precisa e pulita delle operazioni, per
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 — il tuo partner affidabile per un trading disciplinato su Bitcoin. La nuova versione è ora potenziata con intelligenza artificiale OpenAI , offrendo un’esecuzione più intelligente e un filtraggio migliorato delle operazioni in condizioni di elevata volatilità del mercato crypto. Questo Expert Advisor professionale è stato sviluppato specificamente per il trading di Bitcoin (BTCUSD) sulla piattaforma MetaTrader 5 , con particolare attenzione a un’esecuzione strutturata, esposizion
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 - Una nuova prospettiva sull'analisi della liquidità Scopri l'importante aggiornamento — Haven Stop Loss Hunter 2.0 ! Si tratta di uno strumento professionale progettato per identificare le zone di liquidità e i falsi breakout (Sweeps), ora più flessibile e funzionale [1]. In questa versione, abbiamo implementato un'analisi multi-timeframe (MTF) completa e un sistema di alert avanzato per aiutarti a monitorare le manipolazioni istituzionali basate sul concetto di Smart
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
Gli utenti di questo prodotto hanno anche acquistato
Questo prodotto è stato aggiornato per il mercato 2026 e ottimizzato per le ultime build di MT5. AVVISO DI AGGIORNAMENTO PREZZO: Smart Trend Trading System è attualmente disponibile a $99 . Il prezzo aumenterà a $199 dopo i prossimi 30 acquisti . OFFERTA SPECIALE: Dopo aver acquistato Smart Trend Trading System, inviami un messaggio privato per ricevere Smart Universal EA GRATIS e trasformare i tuoi segnali Smart Trend in operazioni automatiche. Smart Trend Trading System è un sistema di tradin
Trend Sniper X
Sarvarbek Abduvoxobov
5 (8)
Trend Sniper X è un indicatore di trend following multi-timeframe per MetaTrader 5 che aiuta i trader a identificare la direzione del trend e i potenziali punti di inversione con chiarezza e precisione. Informazioni sul prezzo: Il prezzo attuale è promozionale ed è soggetto a modifiche con il rilascio di futuri aggiornamenti e nuove funzionalità. Canale Code2Profit Padroneggia il mercato con l'analisi multi-timeframe! Specifiche tecniche Piattaforma MetaTrader 5 Tipo di indicatore Indicatore di
SuperScalp Pro
Van Minh Nguyen
4.69 (29)
SuperScalp Pro –  Sistema Professionale di Scalping con Confluenza Multilivello SuperScalp Pro è un sistema professionale di scalping con confluenza multilivello, progettato per aiutare i trader a individuare opportunità con una probabilità più elevata grazie a conferme di ingresso più chiare, livelli di Stop Loss e Take Profit basati sull'ATR e un filtro flessibile dei segnali per XAUUSD, BTCUSD e le principali coppie Forex. La documentazione completa è disponibile nel blog del prodotto:   [Use
Cominciamo con la verità. Nessun indicatore da solo ti renderà profittevole. Se qualcuno ti dice il contrario, ti sta vendendo un sogno. Qualsiasi indicatore che mostra frecce perfette di acquisto/vendita può essere reso impeccabile — basta ingrandire la giusta sezione della storia e catturare solo i trade vincenti. Noi non lo facciamo.  SMC Intraday Formula è uno strumento. Legge la struttura del mercato per te, identifica le zone a più alta probabilità e ti mostra esattamente come appare la t
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.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
M1 Quantum MT5
Hamed Dehgani
4.6 (10)
Segnali di Trading Live con M1 Quantum: Segnale   (Operazione eseguita automaticamente dal Quantum Trade Assistant , incluso gratuitamente con questo prodotto.) Piano prezzi: Prezzo attuale: $169 (Offerta per i primi utenti) Prossimo prezzo previsto: $189 Prezzo al dettaglio previsto: $299 Nota dello sviluppatore: Dopo l’acquisto, contattami per ricevere il file di configurazione più recente (Set File) , consigli operativi e l’invito al gruppo VIP di supporto , dove potrai interagire con altri
La leggenda ritorna: Entry Points Pro 10. Il rilancio del leggendario indicatore che per 3 anni è rimasto nella Top-3 del MQL5 Market. Centinaia di recensioni entusiaste (589 su due versioni), migliaia di trader lo usano ogni giorno per operare, 31.000+ download della demo   MT4+MT5 . Ho letto ogni vostra recensione degli ultimi cinque anni — e invece di promesse ho inserito nella versione 10 le risposte. Dall'autore che opera sui mercati dal 1999 e tiene all'onestà, alla propria reputazione e a
L'indicatore UZFX {SSS} Scalping Smart Signals v4.0 MT5 è un indicatore di trading ad alte prestazioni che non subisce ripaint, progettato per scalper, day trader e swing trader che necessitano di segnali accurati e in tempo reale in mercati in rapida evoluzione. Sviluppato da (UZFX-LABS), questo indicatore combina l’analisi dell’azione dei prezzi, la conferma del trend e il filtraggio intelligente per generare segnali di acquisto e vendita ad alta probabilità, segnali di allerta e opportunità d
Divergence Bomber
Ihor Otkydach
4.9 (92)
Ogni acquirente dell’indicatore riceverà inoltre gratuitamente: L’utilità esclusiva “Bomber Utility”, che gestisce automaticamente ogni operazione, imposta i livelli di Stop Loss e Take Profit e chiude le posizioni secondo le regole della strategia I file di configurazione (set file) per adattare l’indicatore a diversi asset I set file per configurare il Bomber Utility in tre modalità: “Rischio Minimo”, “Rischio Bilanciato” e “Strategia di Attesa” Una guida video passo-passo per installare, conf
Gann Made Easy è un sistema di trading Forex professionale e facile da usare che si basa sui migliori principi del trading utilizzando la teoria di mr. WD Gann. L'indicatore fornisce segnali ACQUISTA e VENDI accurati, inclusi i livelli di Stop Loss e Take Profit. Puoi fare trading anche in movimento utilizzando le notifiche PUSH. CONTATTAMI DOPO L'ACQUISTO PER RICEVERE GRATUITAMENTE LE ISTRUZIONI DI TRADING E OTTIMI INDICATORI EXTRA! Probabilmente hai già sentito parlare molte volte dei metodi d
Atomic Analyst MT5
Issam Kassas
4.37 (46)
Questo prodotto è stato aggiornato per il mercato 2026 e ottimizzato per le ultime build di MT5. AVVISO DI AGGIORNAMENTO PREZZO: Atomic Analyst è attualmente disponibile a $99 . Il prezzo aumenterà a $199 dopo i prossimi 30 acquisti . OFFERTA SPECIALE: Dopo aver acquistato Atomic Analyst, inviami un messaggio privato per ricevere Smart Universal EA GRATIS e trasformare i tuoi segnali Atomic Analyst in operazioni automatiche. Atomic Analyst è un indicatore di trading Price Action non-repainting
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 - Indicatore di forza ad ottimizzazione automatica Power Candles V3 trasforma la forza delle valute e degli strumenti in un piano di trading attuabile su ogni grafico a cui è collegato. Invece di limitarsi a colorare le candele, esegue un'auto-ottimizzazione in tempo reale in background e ti fornisce i migliori valori di Stop Loss, Take Profit e soglia di segnale per il simbolo che hai davanti. Basta un clic per adottarlo nel trading live: i raggi di ingresso, Stop Loss e Take P
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
Ecco   Quantum TrendPulse   , lo strumento di trading definitivo che combina la potenza di   SuperTrend   ,   RSI   e   Stocastico   in un unico indicatore completo per massimizzare il tuo potenziale di trading. Progettato per i trader che cercano precisione ed efficienza, questo indicatore ti aiuta a identificare con sicurezza le tendenze di mercato, i cambiamenti di momentum e i punti di entrata e uscita ottimali. Caratteristiche principali: Integrazione SuperTrend:   segui facilmente l'andame
M1 Sniper MT5
Oleg Rodin
5 (4)
M1 SNIPER   è un sistema di indicatori di trading facile da usare. Si tratta di un indicatore a freccia progettato per l'intervallo temporale M1. L'indicatore può essere utilizzato come sistema autonomo per lo scalping sull'intervallo temporale M1 e come parte del tuo sistema di trading esistente. Sebbene questo sistema di trading sia stato progettato specificamente per il trading sull'intervallo temporale M1, può comunque essere utilizzato anche con altri intervalli temporali. Inizialmente ho p
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
Questo prodotto è stato aggiornato per il mercato 2026 e ottimizzato per le ultime build di MT5. AVVISO DI AGGIORNAMENTO PREZZO: Smart Price Action Concepts è attualmente disponibile a $200 . Il prezzo aumenterà a $299 dopo i prossimi 30 acquisti . OFFERTA SPECIALE: Dopo l’acquisto, inviami un messaggio privato per ricevere un bonus gratuito + regalo . Prima di tutto, vale la pena sottolineare che questo strumento di trading è un indicatore non-repainting, non-redrawing e non-lagging, il che lo
Gem SIGNAL
Shengzu Zhong
5 (1)
GEM Signal Pro GEM Signal Pro è un indicatore trend-following per MetaTrader 5, progettato per i trader che desiderano segnali più chiari, configurazioni operative più strutturate e una gestione del rischio più pratica direttamente sul grafico. Invece di mostrare solo una semplice freccia, GEM Signal Pro aiuta a presentare l’intera idea di trading in modo più chiaro e leggibile. Quando le condizioni sono confermate, l’indicatore può mostrare sul grafico il prezzo di ingresso, lo stop loss e gli
Presentazione       Quantum Breakout PRO   , l'innovativo indicatore MQL5 che sta trasformando il modo in cui scambi le zone di breakout! Sviluppato da un team di trader esperti con un'esperienza di trading di oltre 13 anni,       Quantum Breakout PRO       è progettato per spingere il tuo viaggio di trading a nuovi livelli con la sua strategia innovativa e dinamica della zona di breakout. Quantum Breakout Indicator ti fornirà frecce di segnalazione sulle zone di breakout con 5 zone target di
DayTrader PRO
Davit Beridze
5 (2)
DayTrader PRO DayTrader PRO è un indicatore di trading avanzato che combina il filtro Laguerre di John Ehlers con un potente motore di auto-ottimizzazione. Invece di utilizzare parametri fissi, l'indicatore ricerca automaticamente le migliori impostazioni in base alle condizioni recenti del mercato, aiutandoti ad adattarti alla volatilità variabile senza costanti aggiustamenti manuali. L'indicatore genera segnali chiari di ACQUISTO (BUY) e VENDITA (SELL), insieme a livelli adattivi di Stop Loss
Axiom Matrix
Issam Kassas
5 (4)
AXIOM MATRIX MT5 PREZZO DI LANCIO: $99 Axiom Matrix è disponibile al prezzo di lancio di $99. Il prezzo aumenterà a $199 dopo i primi 30 acquisti. Dopo il tuo acquisto, inviami un messaggio diretto per ricevere le istruzioni e richiedere il tuo bonus regalo esclusivo. Axiom Matrix è uno scanner di mercato professionale multi-simbolo e multi-timeframe, oltre a un pannello decisionale per MetaTrader 5. Scansiona il tuo Market Watch, analizza più timeframe, legge più motori di evidenza, confronta l
FX Power MT5 NG
Daniel Stein
5 (33)
FX Power: Analizza la Forza delle Valute per Decisioni di Trading Più Intelligenti Panoramica FX Power è lo strumento essenziale per comprendere la reale forza delle principali valute e dell'oro in qualsiasi condizione di mercato. Identificando le valute forti da comprare e quelle deboli da vendere, FX Power semplifica le decisioni di trading e rivela opportunità ad alta probabilità. Che tu segua le tendenze o anticipi inversioni utilizzando valori estremi di Delta, questo strumento si adatta
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
Novità sul prodotto: Strategy Assistant è stato aggiornato alla nuova versione 1.9 con prestazioni più veloci, un'interfaccia professionale completamente ridisegnata e una migliore esperienza utente. Nota dello sviluppatore: Strategy Assistant è in continuo sviluppo con aggiornamenti e miglioramenti regolari. Prossimo aggiornamento: aggiunta di Strategy Agent (combinazioni intelligenti di più strategie di trading). Nota sul prezzo: Il prezzo attuale rimane a 50$ per i primi 100 utenti . Success
Berma Bands
Muhammad Elbermawi
5 (10)
L'indicatore Berma Bands (BBs) è uno strumento prezioso per i trader che cercano di identificare e capitalizzare i trend di mercato. Analizzando la relazione tra il prezzo e le BBs, i trader possono discernere se un mercato è in una fase di trend o di range. Visita il [ Berma Home Blog ] per saperne di più. Le Berma Bands sono composte da tre linee distinte: la Upper Berma Band, la Middle Berma Band e la Lower Berma Band. Queste linee sono tracciate attorno al prezzo, creando una rappresentazion
Reversion King Indicator
Eugen-alexandru Zibileanu
5 (5)
Un nuovo Re in città - Indicatore + Gestione ordini (TP1 + TP2 + TP3) + Invio opzionale di segnali Telegram INCLUSO (GRATIS) (SISTEMA COMPLETO DI TRADING e SEGNALI) Il nostro miglior EA per l’Oro: Gold Slayer Questo indicatore include una strategia avanzata, un sistema di trading con gestione ordini personalizzabile e un sistema mean reversion che combina estensioni di envelope, supportato da molteplici filtri intelligenti di conferma come RSI per individuare ingressi di inversione ad alta proba
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:  Come funziona e come usarlo ### Come funziona L'indicatore "AtBot" per la piattaforma MT5 genera segnali di acquisto e vendita utilizzando una combinazione di strumenti di analisi tecnica. Integra la Media Mobile Semplice (SMA), la Media Mobile Esponenziale (EMA) e l'indice di Gamma Vero Medio (ATR) per identificare opportunità di trading. Inoltre, può utilizzare le candele Heikin Ashi per migliorare la precisione dei segnali. Lascia una recensione dopo l'acquisto e ricevi un regalo bon
Altri dall’autore
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
Filtro:
Nessuna recensione
Rispondi alla recensione