Composite MA

Composite MA Indicator - Comprehensive Guide

Description:
The Composite MA indicator is a sophisticated multi-timeframe trend analysis tool that calculates the average value of multiple moving averages across a user-defined period range. It provides comprehensive market trend visualization through both a color-coded composite moving average line on the chart and an Excel-style panel displaying trend direction across 21 different timeframes. The indicator uses canvas technology for smooth GUI rendering and offers real-time multi-timeframe trend analysis.

Usefulness:
This indicator is exceptionally valuable for traders seeking comprehensive market context across multiple timeframes. It helps identify trend direction, strength, and consistency across various trading horizons from minutes to monthly charts. The composite approach smooths out noise from individual MAs, providing more reliable trend signals. The visual panel allows quick assessment of market sentiment alignment, enabling better entry/exit timing and confirmation of trend reversals.

Logical Concept:
The core logic involves calculating multiple moving averages (from PeriodFrom to PeriodTo) and computing their average value to create a composite MA. This composite line changes color based on trend direction (blue for uptrend, red for downtrend). For multi-timeframe analysis, the indicator calculates separate composite MAs for each enabled timeframe and compares current vs previous values to determine trend direction. The unique arrow system shows both composite MA direction and price position relative to the composite MA.

Trend Detection Methodology:

  • Single Timeframe Trend: Compare current composite MA value with previous value. Rising values indicate uptrend (blue), falling values indicate downtrend (red)

  • Multi-Timeframe Alignment: Analyze trend consistency across timeframes. Strong trends show uniform direction across multiple timeframes

  • Trend Strength Assessment: Count how many timeframes align in direction. More aligned timeframes indicate stronger trend momentum

  • Reversal Detection: Watch for changes in arrow colors and directions across multiple timeframes simultaneously

Using the Indicator for Trend and Index Movements:

  1. Primary Trend Identification: Use the main chart composite MA line for current timeframe trend direction

  2. Multi-Timeframe Confirmation: Check the panel for alignment - optimal entries occur when multiple timeframes show same direction

  3. Trend Strength Measurement: Count "Up" or "Down" statuses across timeframes - more consistent signals indicate stronger trends

  4. Divergence Detection: Look for disagreement between timeframes (e.g., H1 up but M15 down) suggesting potential reversals

  5. Support/Resistance Levels: Use composite MA values from higher timeframes as dynamic support/resistance

  6. ▲ and ▼ arrows indicate position of index price related to Composite MA price for corresponding timeframe

Basic MQL5 EA Integration Code:

//+------------------------------------------------------------------+
//|                      Composite MA EA Sample                      |
//+------------------------------------------------------------------+
#property copyright "2025"
#property version   "1.00"
#property description "EA using Composite MA Indicator"

//--- Input parameters
input group "=== Composite MA Settings ==="
input int                 MA_PeriodFrom = 1;           // MA Starting Period
input int                 MA_PeriodTo = 100;           // MA Ending Period  
input int                 MA_Shift = 0;                // MA Shift
input ENUM_MA_METHOD      MA_Method = MODE_SMA;        // MA Method
input ENUM_APPLIED_PRICE  MA_Price = PRICE_CLOSE;      // MA Applied Price
input ENUM_TIMEFRAMES     MA_Timeframe = PERIOD_CURRENT; // MA Timeframe

input group "=== Trading Settings ==="
input double              LotSize = 0.1;               // Lot Size
input int                 MagicNumber = 12345;         // Magic Number
input int                 Slippage = 3;                // Slippage

//--- Global variables
int composite_ma_handle;  // Handle for the Composite MA indicator

//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
{
   //--- Create Composite MA indicator handle
   composite_ma_handle = iCustom(_Symbol, _Period, "Composite MA.ex5", 
                                 true,      // Trendline_ON
                                 MA_PeriodFrom,
                                 MA_PeriodTo,
                                 MA_Shift,
                                 MA_Method,
                                 MA_Price,
                                 MA_Timeframe,
                                 200,       // DisplayBars
                                 false,     // Panel_ON - turn off panel in EA
                                 false, false, false, false, false, false, false, false, false, false, // All M timeframe panels off
                                 false, false, false, false, false, false, false, false, // All H timeframe panels off  
                                 false, false, false, // D1, W1, MN1 panels off
                                 clrDodgerBlue, clrRed, clrGray, clrBrown // Colors
                                );
   
   if(composite_ma_handle == INVALID_HANDLE)
   {
      Print("Error creating Composite MA indicator handle: ", GetLastError());
      return INIT_FAILED;
   }
   
   Print("Composite MA indicator loaded successfully");
   return INIT_SUCCEEDED;
}

//+------------------------------------------------------------------+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick()
{
   //--- Check if we have enough bars
   if(Bars(_Symbol, _Period) < 100) return;
   
   //--- Get Composite MA values
   double ma_current = GetCompositeMAValue(0);   // Current bar
   double ma_previous = GetCompositeMAValue(1);  // Previous bar
   
   if(ma_current == 0 || ma_previous == 0) return;
   
   //--- Get current price
   double current_price = SymbolInfoDouble(_Symbol, SYMBOL_ASK);
   
   //--- Trading logic
   bool buy_signal = ma_current > ma_previous && current_price > ma_current;
   bool sell_signal = ma_current < ma_previous && current_price < ma_current;
   
   //--- Check for existing positions
   bool has_buy = PositionExists(POSITION_TYPE_BUY);
   bool has_sell = PositionExists(POSITION_TYPE_SELL);
   
   //--- Execute trading signals
   if(buy_signal && !has_buy)
   {
      if(has_sell) ClosePosition(POSITION_TYPE_SELL);
      OpenPosition(POSITION_TYPE_BUY);
   }
   else if(sell_signal && !has_sell)
   {
      if(has_buy) ClosePosition(POSITION_TYPE_BUY);
      OpenPosition(POSITION_TYPE_SELL);
   }
}

//+------------------------------------------------------------------+
//| Get Composite MA value from indicator buffer                    |
//+------------------------------------------------------------------+
double GetCompositeMAValue(int shift)
{
   double ma_value[1];
   ArraySetAsSeries(ma_value, true);
   
   if(CopyBuffer(composite_ma_handle, 0, shift, 1, ma_value) < 1)
   {
      Print("Error copying Composite MA buffer: ", GetLastError());
      return 0;
   }
   
   return ma_value[0];
}

//+------------------------------------------------------------------+
//| Check if position exists                                        |
//+------------------------------------------------------------------+
bool PositionExists(ENUM_POSITION_TYPE type)
{
   for(int i = 0; i < PositionsTotal(); i++)
   {
      if(PositionGetSymbol(i) == _Symbol && PositionGetInteger(POSITION_MAGIC) == MagicNumber)
      {
         if(PositionGetInteger(POSITION_TYPE) == type)
            return true;
      }
   }
   return false;
}

//+------------------------------------------------------------------+
//| Open position                                                   |
//+------------------------------------------------------------------+
void OpenPosition(ENUM_POSITION_TYPE type)
{
   MqlTradeRequest request = {0};
   MqlTradeResult result = {0};
   
   request.action = TRADE_ACTION_DEAL;
   request.symbol = _Symbol;
   request.volume = LotSize;
   request.magic = MagicNumber;
   request.slippage = Slippage;
   
   if(type == POSITION_TYPE_BUY)
   {
      request.type = ORDER_TYPE_BUY;
      request.price = SymbolInfoDouble(_Symbol, SYMBOL_ASK);
   }
   else
   {
      request.type = ORDER_TYPE_SELL;
      request.price = SymbolInfoDouble(_Symbol, SYMBOL_BID);
   }
   
   if(!OrderSend(request, result))
   {
      Print("Error opening position: ", GetLastError());
   }
}

//+------------------------------------------------------------------+
//| Close position                                                  |
//+------------------------------------------------------------------+
void ClosePosition(ENUM_POSITION_TYPE type)
{
   for(int i = 0; i < PositionsTotal(); i++)
   {
      if(PositionGetSymbol(i) == _Symbol && PositionGetInteger(POSITION_MAGIC) == MagicNumber)
      {
         if(PositionGetInteger(POSITION_TYPE) == type)
         {
            MqlTradeRequest request = {0};
            MqlTradeResult result = {0};
            
            request.action = TRADE_ACTION_DEAL;
            request.symbol = _Symbol;
            request.volume = PositionGetDouble(POSITION_VOLUME);
            request.magic = MagicNumber;
            
            if(type == POSITION_TYPE_BUY)
            {
               request.type = ORDER_TYPE_SELL;
               request.price = SymbolInfoDouble(_Symbol, SYMBOL_BID);
            }
            else
            {
               request.type = ORDER_TYPE_BUY;
               request.price = SymbolInfoDouble(_Symbol, SYMBOL_ASK);
            }
            
            if(!OrderSend(request, result))
            {
               Print("Error closing position: ", GetLastError());
            }
            break;
         }
      }
   }
}

//+------------------------------------------------------------------+
//| Expert deinitialization function                                |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
   if(composite_ma_handle != INVALID_HANDLE)
   {
      IndicatorRelease(composite_ma_handle);
      Print("Composite MA indicator handle released");
   }
}
//+------------------------------------------------------------------+

Important Notes for EA Developers:

  1. Only visible timeframes have valid data - check the input parameters to see which timeframes are enabled

  2. Status values interpretation:

    • 1.0  = Up trend

    • -1.0  = Down trend

    • 0.0  = Flat

    • -2.0  = Not available/not calculated

  3. Price buffers contain the actual composite MA value for that specific timeframe

  4. The indicator only calculates for the last  DisplayBars  bars, so copying historical data beyond that range may return zeros.

Key Buffer Mapping for EA Developers:

  • Buffer 0: CompositeMABuffer - Main composite MA values

  • Buffer 1: ColorBuffer - Color index (0=Blue/Up, 1=Red/Down)

  • Buffers 2-22: Timeframe status buffers (M1 to MN1) - Values: 1=Up, -1=Down, 0=Flat, -2=N/A

  • Buffers 23-43: Timeframe price buffers - Composite MA values for each timeframe

This indicator provides robust multi-timeframe trend analysis that EA developers can leverage for sophisticated trading decision systems.

Prodotti consigliati
RBreaker
Zhong Long Wu
RBreaker Gold Indicators is a short-term intraday trading strategy for gold futures that combines trend following and intraday reversal approaches. It not only captures profits during trending markets but also enables timely profit-taking and counter-trend trading during market reversals. This strategy has been ranked among the top ten most profitable trading strategies by the American magazine   Futures Truth   for 15 consecutive years. It boasts a long lifecycle and remains widely used and st
Price Magnet — Price Density and Attraction Levels Indicator Price Magnet is a professional analytical tool designed to identify key support and resistance levels based on statistical Price Density. The indicator analyzes a specified historical period and detects price levels where the market spent the most time. These zones act as “magnets,” attracting price action or forming a structural base for potential reversals. Unlike traditional Volume Profile tools, Price Magnet focuses on price-time d
"Adjustable Fractals" - è una versione avanzata dell'indicatore frattale, uno strumento di trading molto utile! - Come sappiamo, l'indicatore MT5  Standard fractals non ha impostazioni, il che è molto scomodo per i trader. - Adjustable Fractals ha risolto questo problema, ha tutte le impostazioni necessarie: - Periodo regolabile dell'indicatore (valori consigliati: superiori a 7). - Distanza regolabile dai massimi/minimi del prezzo. - Design regolabile delle frecce frattali. - L'indicatore è do
Follow The Line MT5
Oliver Gideon Amofa Appiah
4.6 (35)
This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL. (you can change the colors). It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more powerful and reliable signals. Get them here: https://www.m
FREE
Donchian Channel DC is the indicator of Donchian Channels, that plots maximum and minimum values of a specific period, besides mean value line. It´s possible to configure simple period for analysis and the indicator will plot all three values. You can trade with this indicator as trend or reversal, according to each strategy. Do not let to test others indicators as soon as others expert advisors.
CosmiCLab SMC FIBO CosmiCLab SMC FIBO is a professional trading indicator designed for traders who use Smart Money Concepts (SMC), market structure analysis and Fibonacci retracement levels. The indicator automatically detects market swings and builds Fibonacci levels based on the latest impulse movement. It also identifies market structure changes such as BOS (Break of Structure) and CHOCH (Change of Character), helping traders understand the current market direction. CosmiCLab SMC FIBO also pr
HAS RSI Signal — Indicatore di Tendenza Professionale con Calcolo SL/TP HAS RSI Signal è un potente strumento di trading che combina classici intramontabili con moderni algoritmi di filtraggio del rumore. L'indicatore analizza il mercato attraverso le candele Heiken Ashi Smoothed (HAS) e l'oscillatore RSI , fornendo al trader segnali di ingresso chiari durante le inversioni di tendenza o l'uscita dalle zone di ipercomprato/ipervenduto. Vantaggi Principali: Doppio Filtraggio: L'uso di Heiken Ashi
BlueBoat – Prime Cycle is a technical indicator for MetaTrader 5 that visualizes market cycles based on the Fimathe cycle model (Marcelo Ferreira) . It identifies and displays historic and live cycle structures such as CA, C1, C2, C3, etc., helping traders understand the rhythm and timing of price movement across multiple sessions. This tool is ideal for manual analysis or as a supporting signal in discretionary strategies. Key Features Historical Cycle Analysis – Backtest and visualize as many
STRICTLY FOR BOOM INDEX ONLY!!!!! Here I bring the Maximum Trend Arrows OT1.0 MT5 indicator. This indicator is made up of a combination of different trend indicators for entries and exits, for entries an orange arrow will paint on the chart below the current market and a red flag for closing of trades and it produces buy arrows only. When the orange arrow appears, it will appear along with it's sound to notify you. The 1H timeframe is recommended, don't use it anywhere else than on the 1H timefr
Footprint is an indicator for order flow and volume analysis. It helps identify market structure at the cluster level, find key zones with increased activity, and work with filters directly on the chart without constantly opening the settings window. Footprint Indicator Features cluster-based Bid x Ask and Delta charts; on-chart control panel; sliders for filter adjustments; Absorption; Initiative; Stacked Imbalances; Big Trades; dPOC / Dynamic Point of Control; Delta; side market profile; cumul
Caicai L&S Yield Histogram Important Notice: This indicator is an integral tool of the automated EA Caicai Long and Short Pair Trading . This indicator visually displays the percentage deviation (Yield %) of a pair's current spread relative to its own historical mean. It is an excellent tool for quickly visualizing the gross financial potential of a market distortion in Long & Short operations. Main Features: Percentage Visualization: Understand the size of the distortion in palpable percentage
Donchian Breakout And Rsi
Mattia Impicciatore
4.5 (2)
Descrizione generale Questo indicatore è una versione avanzata del classico Donchian Channel , arricchita con funzioni operative per il trading reale. Oltre alle tre linee tipiche (massimo, minimo e linea centrale), il sistema rileva i breakout e li segnala graficamente con frecce sul grafico, mostrando solo la linea opposta alla direzione del trend per semplificare la lettura. L’indicatore include: Segnali visivi : frecce colorate al breakout Notifiche automatiche : popup, push e email Filtro R
FREE
Trend Master V2
Oratile Pitsoane
What Is Trend Master Pro? Trend Master Pro   is a professional-grade trend trading indicator built for MetaTrader 5. It was designed with one goal in mind — to keep you on the right side of the market at all times by combining three powerful technical tools into a single, clean, easy-to-read display directly on your price chart. Instead of cluttering your screen with multiple separate indicators, Trend Master Pro fuses an   EMA Ribbon trend filter , a   ZigZag swing point engine , and a   breako
Renko System
Marco Montemari
This indicator can be considered as a trading system. It offers a different view to see the currency pair: full timeless indicator, can be used for manual trading or for automatized trading with some expert advisor. When the price reaches a threshold a new block is created according to the set mode. The indicator beside the Renko bars, shows also 3 moving averages. Features renko mode median renko custom median renko 3 moving averages wicks datetime indicator for each block custom notification
Indicatore Crypto_Forex "Hammer and Shooting Star Pattern" per MT5, senza ridisegnazione, senza ritardo. - L'indicatore "Hammer and Shooting Star Pattern" è un indicatore molto potente per il trading basato sulla Price Action. - L'indicatore rileva pattern Hammer rialzisti e Shooting Star ribassisti sul grafico: - Bullish Hammer - Segnale freccia blu sul grafico (vedi immagini). - Bearish Shooting Star - Segnale freccia rossa sul grafico (vedi immagini). - PC, Mobile alerts. - L'indicatore "Ham
Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
FREE
This indicator is a zero-lag indicator and displays  strength of trend change . True Trend  Oscillator Pro works best in combination with True Trend Moving Average Pro that displays exact trend as is. Oscillator value is exact price change in given direction of the trend. True Trend Moving Average Pro: https://www.mql5.com/en/market/product/103586 If you set PERIOD input parameter to 1 this indicator becomes a sharpshooter for binary options. Developers can use True Trend Oscillator in Exper
FREE
Potential Reversal Price (PRP) Indicator - Ultimate Sniper Entries for XAUUSD Discounted   Price   !!     Secure your lifetime access   now   before it switches to   subscription-only ! Welcome to the Potential Reversal Price (PRP) Indicator , your ultimate trading tool designed to catch high-probability market reversals with extreme precision. Built for serious traders who demand accuracy, the PRP Indicator combines advanced market structure analysis with momentum exhaustion to pinpoint the exa
# DRAWDOWN INDICATOR V4.0 - The Essential Tool to Master Your Trading ## Transform Your Trading with a Complete Real-Time Performance Overview In the demanding world of Forex and CFD trading, **knowing your real-time performance** isn't a luxury—it's an **absolute necessity**. The **Drawdown Indicator V4.0** is much more than a simple indicator: it's your **professional dashboard** that gives you a clear, precise, and instant view of your trading account status. --- ## Why This Indicator
Gioteen Volatility Index (GVI) - your ultimate solution to overcoming market unpredictability and maximizing trading opportunities. This revolutionary indicator helps you in lowering your losing trades due to choppy market movements. The GVI is designed to measure market volatility, providing you with valuable insights to identify the most favorable trading prospects. Its intuitive interface consists of a dynamic red line representing the volatility index, accompanied by blue line that indicate
MercariaPattern1-2-3 відстежує рух ціни, знаходить трьоххвильові структури 1-2-3 та підсвічує момент, коли сценарій підтверджується пробоєм ключового рівня. MercariaPattern1-2-3 tracks price movement, detects three-leg 1-2-3 structures and highlights the moment when the scenario is confirmed by a key level breakout. Індикатор збирає локальні свінги в компактну фігуру 0–1–2–3 , чекає підтвердженого пробою та будує стрілку входу з готовими рівнями SL/TP. The indicator combines local swings into a
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker, but in real time only, without access to its history. The indicator OrderBook Cumulative Indicator accumulates market book data online and visualizes them on the chart. In addition, the indicator can show the market
Half ma
Artem Svistunov
The Half ma arrow indicator for the MetaTrader 5 trading terminal is a simple but effective tool that gives a signal about a change in the current trend. The Half ma indicator looks like a solid dynamic line that changes color at the points where the trend changes. At these points, the indicator draws arrows of the corresponding color and direction.The Half ma arrow indicator for the MT5 terminal is not an independent source of input signals. It will be most effective to use it as a trend filte
PZ Penta O MT5
PZ TRADING SLU
3.5 (4)
The Penta-O is a 6-point retracement harmonacci pattern which usually precedes big market movements. Penta-O patterns can expand and repaint quite a bit. To make things easier this indicator implements a twist: it waits for a donchian breakout in the right direction before signaling the trade. The end result is an otherwise repainting indicator with a very reliable trading signal. The donchian breakout period is entered as an input. [ Installation Guide | Update Guide | Troubleshooting | FAQ | A
FREE
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
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
Auto Optimized RSI   è un indicatore a freccia intelligente e facile da usare, progettato per fornire segnali di acquisto e vendita precisi. Utilizza simulazioni di trading su dati storici per individuare automaticamente i livelli RSI più efficaci per ogni strumento e timeframe. Questo indicatore può essere utilizzato come sistema di trading autonomo o integrato nella tua strategia esistente, ed è particolarmente utile per i trader a breve termine. A differenza dei livelli fissi tradizionali del
L'indicateur SMC Venom Model BPR est un outil professionnel pour les traders travaillant dans le concept Smart Money (SMC). Il identifie automatiquement deux modèles clés sur le graphique des prix: FVG   (Fair Value Gap) est une combinaison de trois bougies, dans laquelle il y a un écart entre la première et la troisième bougie. Forme une zone entre les niveaux où il n'y a pas de support de volume, ce qui conduit souvent à une correction des prix. BPR   (Balanced Price Range) est une combinaiso
FlatBreakout MT5
Aleksei Vorontsov
3 (1)
FlatBreakout MT5 (Free Version) Flat Range Detector and Breakout Panel for MT5 — GBPUSD Only FlatBreakout MT5   is the free version of the professional FlatBreakoutPro MT5 indicator, specially designed for flat (range) detection and breakout signals on the   GBPUSD   pair only. Perfect for traders who want to experience the unique fractal logic of FlatBreakout MT5 and test breakout signals on a live market without limitations. Who Is This Product For? For traders who prefer to trade breakout of
FREE
High Low Open Close
Alexandre Borela
4.98 (44)
Se ti piace questo progetto, lascia una recensione a 5 stelle. Questo indicatore disegna i prezzi aperti, alti, bassi e di chiusura per i specificati periodo e può essere regolato per un determinato fuso orario. Questi sono livelli importanti guardati da molti istituzionali e professionali commercianti e può essere utile per voi per conoscere i luoghi dove potrebbero essere più attivo. I periodi disponibili sono: Giorno precedente. Settimana precedente. Mese precedente. Precedente trimestre. A
FREE
Gli utenti di questo prodotto hanno anche acquistato
Neuro Poseidon MT5
Daria Rezueva
4.89 (46)
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
Divergence Bomber
Ihor Otkydach
4.9 (91)
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
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
PrimeScalping
Temirlan Kdyrkhan
PrimeScalping 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 e
M1 Quantum MT5
Hamed Dehgani
5 (4)
Nota dello sviluppatore: Rimane solo 9   licenza al prezzo di 149 $ . Dopo la sua vendita, il prezzo aumenterà a 169 $ . M1 Quantum è un sistema di trading p rofessionale per M1 che fornisce segnali di trading rapidi e precisi con Stop Loss, Take Profit e gestione intelligente del capitale integrati. M1 Quantum include un sistema professionale di gestione del capitale progettato per far crescere rapidamente il conto concentrandosi su vittorie consecutive . Caratteristiche principali dell' Indic
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
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
The Oracle Pro
Ottaviano De Cicco
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
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
Valtor Edge Pro – Precision Gold Signal Indicator with 3-Level Take-Profit, Session Filter & Live Stats Dashboard Valtor Edge Pro   is a   non-repaint   MetaTrader 5 indicator built exclusively for   XAUUSD (Gold) . It marks high-probability buy/sell signals directly on your chart — each one with a defined stop-loss and a complete three-level take-profit map (TP1 / TP2 / TP3). Designed for disciplined traders, it pairs a clean trend-following signal engine with a professional sidebar dashboard,
KURAMA GOLD SIGNAL PRO (MT5) — Filtro a 7 livelli · TP/SL automatico · Punteggio di qualità · Salvataggio dello storico dei segnali | Sistema di trading completo per XAUUSD Nessun ridisegno (repaint) in tempo reale. Nell'istante in cui appare un segnale, freccia, ingresso, TP e SL vengono bloccati sul posto e non si spostano mai più. Ciò che fai tradare è proprio questo segnale in tempo reale. E nella v7.20, ogni segnale realmente inviato viene salvato automaticamente e ripristinato con esattez
Advanced Supply Demand MT5
Bernhard Schweigert
4.53 (15)
La migliore soluzione per qualsiasi principiante o trader esperto! Questo indicatore è uno strumento di trading unico, di alta qualità e conveniente perché abbiamo incorporato una serie di funzionalità proprietarie e una nuova formula. Con questo aggiornamento, sarai in grado di mostrare fusi orari doppi. Non solo potrai mostrare una TF più alta, ma anche entrambe, la TF del grafico, PIÙ la TF più alta: SHOWING NESTED ZONES. Tutti i trader di domanda di offerta lo adoreranno. :) Informazioni imp
Grabber System MT5
Ihor Otkydach
4.83 (24)
Ti presento un eccellente indicatore tecnico: Grabber, che funziona come una strategia di trading "tutto incluso", pronta all’uso. In un solo codice sono integrati strumenti potenti per l’analisi tecnica del mercato, segnali di trading (frecce), funzioni di allerta e notifiche push. Ogni acquirente di questo indicatore riceve anche gratuitamente: L’utility Grabber: per la gestione automatica degli ordini aperti Video tutorial passo dopo passo: per imparare a installare, configurare e utilizzare
SmartScalping
Temirlan Kdyrkhan
SmartScalping 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 e
RelicusRoad Pro MT5
Relicus LLC
4.96 (24)
RelicusRoad Pro: Sistema Operativo Quantitativo di Mercato 70% DI SCONTO ACCESSO A VITA (TEMPO LIMITATO) - UNISCITI A 2.000+ TRADER Perché la maggior parte dei trader fallisce anche con indicatori "perfetti"? Perché operano su Singoli Concetti isolati. Un segnale senza contesto è una scommessa. Per vincere serve CONFLUENZA . RelicusRoad Pro non è un semplice indicatore. È un Ecosistema Quantitativo completo . Mappa la "Fair Value Road", distinguendo tra rumore e rotture strutturali. Smetti di in
This indicator automatically detects  internal & swing market structure, Breaker block, Strong Imbalance, Liquidity Void, Volume imbalance. Features Full internal & swing market structure labeling in real-time Breaker block Strong Imbalance Liquidity Void volume imbalance After purchasing the indicator, the full source code is provided, and via indicator buffers it can be easily integrated into your Expert Advisors (EAs) for automated trading strategies.
Btmm state engine pro
Garry James Goodchild
5 (5)
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
TrendProMaster
Temirlan Kdyrkhan
MasterTrend Indicator for MT5 A powerful trend-following and signal-evaluation tool MasterTrend   is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking wit
Berma Bands
Muhammad Elbermawi
5 (9)
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
Meravith MT5
Ivan Stefanov
5 (1)
Strumento per market maker. Meravith: Analizzerà tutti i timeframe e mostrerà il trend attualmente in corso. Evidenzierà le zone di liquidità (equilibrio dei volumi) dove i volumi rialzisti e ribassisti sono uguali. Mostrerà tutti i livelli di liquidità dei diversi timeframe direttamente sul grafico. Genererà e presenterà un’analisi di mercato testuale a scopo di riferimento. Calcolerà obiettivi, livelli di supporto e punti di stop-loss in base al trend attuale. Calcolerà il rapporto rischio/ren
Presenting one-of-a-kind Gann Indicator for XAUUSD IQ Gold Gann Levels is a non-repainting, precision tool designed exclusively for XAUUSD intraday trading. It uses W.D. Gann’s square root method to plot real-time support and resistance levels, helping traders spot high-probability entries with confidence and clarity. William Delbert Gann (W.D. Gann) was an exceptional market analyst whose trading technique was based on a complex blend of mathematics, geometry, astrology, and ancient calculation
Bill Williams Advanced
Siarhei Vashchylka
5 (11)
Bill Williams Advanced is designed for automatic chart analysis using Bill Williams' "Profitunity" system. The indicator analyzes four timeframes at once. Manual (Be sure to read before purchasing) Advantages 1. Analyzes the chart using Bill Williams' "Profitunity" system. Signals are displayed in a table in the corner of the screen and on the price chart. 2. Finds all known AO and AC signals, as well as zone signals. Equipped with a trend filter based on the Alligator. 3. Finds "Divergence Bar
ARICoins
Temirlan Kdyrkhan
ARICoin is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cust
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2: Synthetic Fractal Structure and Confirmed Entries for MT5 Overview Azimuth Pro is a multi-level swing structure indicator by Merkava Labs . Four nested swing layers, swing-anchored VWAP, ABC pattern detection, three-timeframe structural filtering, and closed-bar confirmed entries — one chart, one workflow from micro-swings to macro-cycles. This is not a blind signal product. It is a structure-first workflow for traders who care about location, context, and timing. ️ Summer Sale
Precision Spike Detector
Francisco Mandomo Simbine
5 (1)
Precision Spike Detector V3 – Institutional-Grade AI Trading System Attention: The price increases by US$50 for every 10 purchases.  Final price: US$599 Precision Spike Detector V3   is a   state-of-the-art, institutional-grade market analysis system   for   MetaTrader 5 , designed to detect   high-probability market movements   in synthetic indices such as   Boom, Crash, GainX, and PainX . After purchase, please contact me through the MQL5 messaging system to receive the order management tool
L'indicatore UZFX {SSS} Scalping Smart Signals MT5 è un indicatore di trading ad alte prestazioni che non si aggiorna (non repaint) 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'andamento dei prezzi, la conferma del trend e un filtraggio intelligente per generare segnali di acquisto e vendita ad alta probabilità su tutte le coppie di valute
Questo sistema funge da "Assistente avanzato per l'analisi dei grafici e la pianificazione del trading" che automatizza completamente i principi del trading istituzionale (Smart Money Concepts). Escludendo le funzioni relative a notizie e sicurezza, i principali vantaggi e benefici derivanti dall'utilizzo di questo sistema si concentrano direttamente sull'efficienza del trading, come segue: 1. Riduzione del carico analitico ed eliminazione dei pregiudizi emotivi (Automated & Unbiased Analysis) A
Current event:  https://c.mql5.com/1/326/A2SR2025_NoMusic.gif A2SR per MT5 Indicatore: Domanda e Offerta Effettive Automatizzate (S/R). + Strumenti di Trading. Product description in English here. --   Guidance   : -- at   https://www.mql5.com/en/blogs/post/734748/page4#comment_16532516 -- and  https://www.mql5.com/en/users/yohana/blog Potente, Autentico e Risparmio di Tempo per Decisioni di Trading più Intelligenti + Oggetti compatibili con EA. Vantaggi Principali Livelli di SR Effettivi
Account flip MT5 scalper
Presley Annais Tatenda Meck
Important: whether you rent or purchase,  contact the seller via the MQL5 private messaging system and  get the  Key Level Trade Manager  as a bonus gift for the best manual scalping experience. Account Flip MT5 Scalper Welcome to a 5 indicators in 1 scalping workstation. Rapidly growing a small account or passing a prop-firm challenge requires three things: high-probability setups, strict filtering, and explosive momentum. The   Acc
Meta Trend PRO MT5
Roman Podpora
5 (1)
META TREND PRO       — è uno strumento di trend following che elimina le incertezze dal trading e mostra dove il mercato ha già preso la sua decisione. L'indicatore identifica i punti chiave in cui cambiano trend, tendenze e strutture, ed evidenzia le aree in cui il prezzo ritorna, consentendo ai principali operatori di prendere posizione. Non solo visualizzi il movimento, ma ne comprendi anche la logica sottostante. Tutti i segnali vengono registrati dopo la chiusura della candela, non vengono
Altri dall’autore
Trend Signals Pro
Pavel Golovko
4.75 (12)
Simplify your trading experience with Trend Signals Professional indicator. Easy trend recognition. Precise market enter and exit signals. Bollinger Bands trend confirmation support. ATR-based trend confirmation support. (By default this option is OFF to keep interface clean. You can turn it ON in indicator settings.) Easy to spot flat market conditions with  ATR-based trend confirmation  lines. Highly customizable settings. Fast and responsive. Note: Do not confuse ATR-based trend confirmation
FREE
Harmonica Basic
Pavel Golovko
4.67 (3)
Harmonica Basic is a free expert advisor that opens a mesh of positions. It does not close any positions, and its up to you to manually close profitable positions at your desire. There are no options to configure. Distance between positions is automatically set based on market conditions. The higher the timeframe - the wider the distance between positions.
FREE
One of the best trend indicators available to the public. Trend is your friend. Works on any pair, index, commodities, and cryptocurrency Correct trend lines Multiple confirmation lines Bollinger Bands trend confirmation Trend reversal prediction Trailing stop loss lines Scalping mini trends Signals Alerts and Notifications Highly flexible Easy settings Let me know in the reviews section what you think about it and if there are any features missing. Tips: Your confirmation line will predict tre
FREE
A professional fully customizable pull back strategy expert advisor with optional Martingale features. Opens and closes orders above and below moving average based on your settings. Successfully tested on all major Forex pairs, Commodities, Volatility Indexes, Synthetic Indexes. This Expert Advisor can work with pretty much any index available on MT5 platform. Works good on any time frame, but I'd suggest to run it on H1. I've tried to keep Expert Advisor settings as simple as possible to mini
FREE
This indicator is a zero-lag indicator and displays  strength of trend change . True Trend  Oscillator Pro works best in combination with True Trend Moving Average Pro that displays exact trend as is. Oscillator value is exact price change in given direction of the trend. True Trend Moving Average Pro: https://www.mql5.com/en/market/product/103586 If you set PERIOD input parameter to 1 this indicator becomes a sharpshooter for binary options. Developers can use True Trend Oscillator in Exper
FREE
This indicator is a zero-lag indicator and displays exact trend as is. True Trend Moving Average Pro works best in combination with  True Trend Oscillator Pro that displays strength of trend change. True Trend Oscillator Pro: https://www.mql5.com/en/market/product/103589 If you set PERIOD input parameter to 1 this indicator becomes a sharpshooter for binary options. Default input parameters: TT_Period = 10; TT_Meth = MODE_SMA; TT_Price = PRICE_MEDIAN; Before you buy this product, please do t
FREE
During volatile market conditions brokers tend to increase spread. int OnCalculate ( const int rates_total,                  const int prev_calculated,                  const datetime &time[],                  const double &open[],                  const double &high[],                  const double &low[],                  const double &close[],                  const long &tick_volume[],                  const long &volume[],                  const int &spread[])   {    int spread_array[];   
FREE
CCI swing scalper
Pavel Golovko
5 (1)
Check out the new pull back strategy Expert Advisor that I'm working on right now. Get it while it's still free! https://www.mql5.com/en/market/product/97610 Before you buy this expert adviser I strongly recommend to download FREE DEMO and test it in your Strategy tester few times. When you are satisfied with the results, you can come back to this page to buy full version for your real account. This expert adviser was designed specifically for Volatility 75 index ( VIX75 ), also shows outst
Filtro:
Nessuna recensione
Rispondi alla recensione