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
CRT Candle Range Theory HTF MT5.   Ultimate CRT Indicator: Advanced ICT Concepts and Malaysian SnR Trading System Master the Market Maker's Footprints with the Most Advanced Candle Range Theory Indicator Unlock the true power of  Smart Money Concepts (SMC)  and trade precisely like the institutions with the  Ultimate CRT Indicator . Built exclusively for serious traders, this indicator automates the highly effective  Candle Range Theory (CRT) , a core pillar of  ICT Concepts (Inner Circle Trader
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
ONNYX INDICATOR versione 1.14 Indicatore di domanda e offerta per MetaTrader 5 con segnali confermati senza repaint. Rileva swing confermati, adatta l'ampiezza delle zone tramite ATR, mostra la qualità in percentuale e disegna frecce BUY/SELL su candele chiuse. FUNZIONI PRINCIPALI - Zone di domanda e offerta con punteggio percentuale all'interno della zona. - Frecce BUY/SELL ingrandite dopo la chiusura della candela. - Filtro trend EMA e conferma opzionale del rifiuto. - Pannello con trend, live
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
Kalman Cone Forecast MT5 Adaptive forecast cone, trend pressure, and exhaustion detection in one clean trading panel. Kaman Cone Forecast is an adaptive predictive indicator for MetaTrader 5. It uses Kalman filter smoothing to reduce market noise, estimate current trend pressure, and project a forward price cone based on live volatility conditions. Instead of showing only a moving average line or a basic volatility band, Kalman Cone Forecast gives you a clearer answer to three important questi
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
# 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
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
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
Multi-Mode Gann Angles Indicator (MT5) Un segnale con statistiche reali di trading che utilizza questo indicatore è disponibile qui: https://www.mql5.com/ru/signals/2376159 L’indicatore Multi-Mode Gann Angles disegna un ventaglio di linee di tendenza dopo il clic su una candela selezionata nel grafico. La struttura visiva è simile agli angoli di Gann classici ed è destinata all’analisi manuale della struttura di mercato. La scala degli angoli può essere determinata in diversi modi. L’utente pu
PZ Penta O MT5
PZ TRADING SLU
3.8 (5)
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
Gli utenti di questo prodotto hanno anche acquistato
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
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
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
Divergence Bomber
Ihor Otkydach
4.9 (92)
Di tanto in tanto faccio trading con questo sistema personalmente. Dai un'occhiata al mio trading manuale con BOMBER su un conto reale - LIVE SIGNAL 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 configur
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
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
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
TrendMaestro5
Stefano Frisetti
Attenzione alle truffe, questo indicatore e' distribuito esclusivamente su MQL5.com nota: questo indicatore e' per METATRADER5, se vuoi la versione per  METATRADER4 questo e' il link:   https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.5 TRENDMAESTRO   riconosce un nuovo TREND sul nascere, non sbaglia mai. La sicurezza di identificare un nuovo TREND non ha prezzo. DESCRIZIONE TRENDMAESTRO identifica un nuovo TREND sul nascere, questo indicatore prende in esame la volatilita' i
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
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
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
Currency Strength Wizard   è un indicatore molto potente che ti fornisce una soluzione all-in-one per un trading di successo. L'indicatore calcola la potenza di questa o quella coppia forex utilizzando i dati di tutte le valute su più intervalli di tempo. Questi dati sono rappresentati in una forma di indice di valuta facile da usare e linee elettriche di valuta che puoi utilizzare per vedere il potere di questa o quella valuta. Tutto ciò di cui hai bisogno è collegare l'indicatore al grafico ch
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
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
Btmm state engine pro
Garry James Goodchild
5 (4)
BTMM State Engine Pro by G-Labs — Beat The Market Maker indicator for MetaTrader 5. Asian session range, London and New York kill zones, level progression (L1/L2/L3), peak formation detection (PFH/PFL), entry signals, and a multi-pair scanner from one chart. Stop scanning charts one pair at a time. The State Engine tracks the BTMM daily cycle automatically — Asian box, room boundaries, level blocks, peak formations, and filtered entries — while the scanner dashboard shows level, peak status, d
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
SkyHammer Signal Pro Indicatore professionale di segnali trend no-repaint con livelli Entry, SL e TP bloccati SkyHammer Signal Pro è un indicatore strutturato di trend e momentum, progettato per trader che desiderano segnali chiari, fissi e verificabili. Funziona al meglio su timeframe bassi, come M1 e M5 . L’indicatore non cerca di prevedere massimi o minimi del mercato. Attende invece una struttura di mercato confermata, una chiara direzione del trend, forza del momentum, volatilità sana e spa
PZ Trend Trading MT5
PZ TRADING SLU
3.8 (5)
Capture every opportunity: your go-to indicator for profitable trend trading Trend Trading is an indicator designed to profit as much as possible from trends taking place in the market, by timing pullbacks and breakouts. It finds trading opportunities by analyzing what the price is doing during established trends. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Trade financial markets with confidence and efficiency Profit from established trends without getting whips
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
SR Liquidity   è un indicatore di trading progettato per individuare le zone nascoste in cui si concentra la liquidità di mercato e dove il prezzo reagisce con maggiore intensità. Queste aree di liquidità agiscono come potenti livelli di supporto e resistenza, offrendo una mappa chiara dei punti in cui è più probabile che il mercato inverta la propria direzione. Invece di tracciare le classiche linee di supporto e resistenza, SR Liquidity analizza l'effettivo comportamento dei prezzi per individ
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
Gartley Hunter Multi
Siarhei Vashchylka
5 (12)
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all possible timeframes. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Patterns: Gartley, Butterfly, Shark, Crab. Bat, Alternate Bat, Deep Crab, Cypher 2. Simultaneous search for patterns on dozens of trading instruments and on all possible timeframes 3. Search for patterns of all possible sizes. From the smallest to the largest 4. All fou
Gold Scalper Pro PSAR ADX Dashboard MT5 Indicatore professionale multi–timeframe con rilevamento avanzato dei segnali di trading. Panoramica Il Parabolic SAR V3 + ADX è un indicatore di analisi tecnica sofisticato che combina le capacità di follow–trend del Parabolic SAR con la misurazione della forza del trend fornita dall’Average Directional Index (ADX). Questa versione migliorata include un’ottimizzazione specifica per coppie di valute, un sistema di avvisi multilingue e un dashboard multi–ti
Connix MT5
Garry James Goodchild
5 (1)
Connix SMC by G-Labs — Smart Money Concepts and ICT multi-pair scanner for MetaTrader 5. Order blocks, fair value gaps, break of structure, change of character, VWAP, premium and discount range, and multi-timeframe dashboard from one chart. Connix scans multiple symbols across configurable timeframes and shows market structure status in an interactive table while drawing the same structures on the active chart. It is an analytical toolkit — you control every setting; it does not place trades a
Vedi cosa sta davvero facendo il mercato.   Osserva le 3 fasi di mercato in diretta davanti a te (Contrazione, Espansione, Tendenza) e prendi entrate migliori nella fase   iniziale della Tendenza.      Smetti di indovinare. Inizia a leggere il mercato come fanno le istituzioni e lo smart money.   Apex Market Structure Pro per MT5 è uno strumento di analisi smart-money di precisione che elimina il rumore e ti mostra la vera   struttura sotto ogni candela: liquidità, cambi di struttura, zone di
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
Quantum Spike Indicator is an indicator for MetaTrader 5 that identifies market spikes, reversal zones, and momentum-based entry points, combined with a trend filter. It analyzes momentum, trend strength, volatility, and SuperTrend conditions together, and displays BUY and SELL signals directly on the chart. Symbols Weltrade: Pain and Gain Indices Deriv: Boom and Crash Indices Main Features Spike Detection Identifies market moves and potential reversal zones based on momentum and volatility
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
AriX
Temirlan Kdyrkhan
1 (4)
AriX Indicator for MT5 A powerful trend-following and signal-evaluation tool AriX is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking with real-time stat
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 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
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
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