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
Statistical Arbitrage Spread Generator for Cointegration [MT5] What is Pair Trading? Pair trading is a market-neutral strategy that looks to exploit the relative price movement between two correlated assets — instead of betting on the direction of the market. The idea? When two assets that usually move together diverge beyond a statistically significant threshold, one is likely mispriced. You sell the expensive one, buy the cheap one , and profit when they converge again. It’s a statistica
FREE
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
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). - Con avvisi su PC, dispositivi mobili
Universal Soul Reaper
Pieter Gerhardus Van Zyl
Universal Soul Reaper is an atmospheric market-flow oscillator designed to interpret price behavior as a cycle of spiritual energy. Instead of reacting to raw price alone, it visualizes the state of the market’s soul —revealing when momentum is awakening, stabilizing, or fading. The indicator operates in a separate window and presents three interwoven entities: the Ectoplasmic Veil , the Spirit Boundary , and the Soul Core . Together, they form a living framework that helps traders sense pressu
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
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   |  Get Help ] It detects 19 differen
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
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
Divergent Stochastic Filter II Catch Reversals Early, Filter Noise, Trade with Confidence The Edge: Why This Stochastic is Different  Every trader knows the Stochastic oscillator. But knowing when to trust its signals, that's the real challenge. The Divergent Stochastic Filter II transforms this classic indicator into a precision reversal detection system by adding critical elements: divergence intelligence, signal filtering and exhaustion detection.  While standard Stochastic oscillators fire s
MACD Enhanced
Nikita Berdnikov
5 (3)
Introducing the MACD  Enhanced – an advanced MACD (Moving Average Convergence Divergence) indicator that provides traders with extended capabilities for trend and momentum analysis in financial markets. The indicator uses the difference between the fast and slow exponential moving averages to determine momentum, direction, and strength of the trend, creating clear visual signals for potential entry and exit points. Attention! To achieve the best results, it is recommended to adapt the indicator
FREE
Gli utenti di questo prodotto hanno anche acquistato
ARIPoint
Temirlan Kdyrkhan
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
SignalTech MT5 is a trading system for EURUSD, USDCHF, USDJPY, AUDUSD, NZDUSD, EURJPY, AUDJPY, NZDJPY, CADJPY H2 and H3 Timeframe.  All the winning trades with chart setups are published on the comments page. 2025-12 1174 Pips 2026-01 2624 Pips 2026-02 2937 Pips 2026-03 2165 Pips 2026-04 2243 Pips It can generate signals with Buy/Sell Arrows and Pop-Up/Sound Alerts. Each signal has clear Entry and Stop Loss levels, which should be automatically flagged on the chart, as well as potential Targets
Divergence Bomber
Ihor Otkydach
4.9 (87)
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 (23)
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
Grabber System MT5
Ihor Otkydach
4.83 (23)
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
Btmm state engine pro
Garry James Goodchild
5 (4)
BTMM State Engine Pro is a MetaTrader 5 indicator for traders who use the Beat The Market Maker approach: Asian session context, kill zone timing, level progression, peak formation detection, and a multi-pair scanner from a single chart. It combines cycle state logic with a built-in scanner dashboard so you do not need the same tool on many charts at once. What it does Draws the Asian session range; session times can follow broker server offset or be set in inputs. Tracks level progression (L
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
Meridian Pro
Ottaviano De Cicco
5 (1)
Meridian Pro 2.00: Professional Multi-Timeframe Trend Matrix for MT5 Meridian Pro 2.00 is a professional adaptive trend matrix for MetaTrader 5. It combines the original Meridian trend engine, a clean chart ribbon, closed-bar signal arrows, an 8-timeframe dashboard, Fuel momentum, weighted consensus, synthetic HTF processing and chart-native higher-timeframe context lines. The goal is simple: read current trend, multi-timeframe structure, strength, momentum and EA-ready state from one discipline
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. V2 Launch Offe
Innanzitutto, vale la pena sottolineare che questo Strumento di Trading è un Indicatore Non-Ridipingente, Non-Ridisegnante e Non-Laggante, il che lo rende ideale per il trading professionale. Corso online, manuale utente e demo. L'Indicatore Smart Price Action Concepts è uno strumento molto potente sia per i nuovi che per i trader esperti. Racchiude più di 20 utili indicatori in uno solo, combinando idee di trading avanzate come l'Analisi del Trader del Circolo Interno e le Strategie di Tradin
OmniSync Projection
Antonio-alin Teculescu
5 (1)
Chronos Fractal Engine is an innovative price projection indicator for MetaTrader 5, designed to transform your technical analysis by intelligently identifying and projecting historical price patterns. Built upon an advanced correlation algorithm and the fractal principles of the market, this powerful tool visualizes potential future price movements, giving you a unique edge in your trading decisions. What is Chronos Fractal Engine? At its core, the Chronos Fractal Engine employs a sophisticat
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
KT Alpha Hunter Arrows MT5
KEENBASE SOFTWARE SOLUTIONS
La maggior parte degli indicatori a frecce ti dà un segnale e poi ti lascia capire da solo tutto il resto. KT Alpha Hunter Arrows ti offre un piano di trading completo. Ogni freccia di segnale appare con un piano completo già disegnato: linea di ingresso, stop loss, quattro livelli di take profit e un verdetto live sull’edge, che ti indica se quel simbolo e quel timeframe meritano davvero di essere tradati in quel momento. Il Trade Manager EA incluso gestisce l’esecuzione dopo il tuo ingresso, c
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
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
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
Top indicator for MT5   providing accurate signals to enter a trade without repainting! It can be applied to any financial assets:   forex, cryptocurrencies, metals, stocks, indices .  Watch  the video  (6:22) with an example of processing only one signal that paid off the indicator! MT4 version is here It will provide pretty accurate trading signals and tell you when it's best to open a trade and close it. Most traders improve their trading results during the first trading week with the help of
Trend Lines PRO MT5
Roman Podpora
5 (1)
LINEE DI TENDENZA PRO  Aiuta a capire dove il mercato sta realmente cambiando direzione. L'indicatore mostra reali inversioni di tendenza e punti in cui i principali operatori rientrano. Vedi   Linee BOS   Cambiamenti di tendenza e livelli chiave su timeframe più ampi, senza impostazioni complesse o rumore inutile. I segnali non vengono ridisegnati e rimangono sul grafico dopo la chiusura della barra. VERSIONE MT4   -   Svela il suo massimo potenziale se abbinato all'indicatore   RFI LEVELS PRO
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
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
Fusion Monthly Levels + PinBar + Marubozu Descrizione Questo indicatore unico combina tre potenti strumenti di analisi tecnica in uno solo: Livelli mensili (High, Low, Open, Close) – per identificare zone chiave di supporto e resistenza. Rilevamento PinBar – pattern di candela affidabile che segnala rifiuti di prezzo. Rilevamento Marubozu – candele di forte tendenza che indicano momentum direzionale. Grazie a questa fusione, ottieni uno strumento visivo, completo e reattivo per anticipare
Berma Bands
Muhammad Elbermawi
5 (8)
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
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
Weltrade Spike Sentinel
Batsirayi L Marango
5 (1)
Introducing Indicator for PainX and GainX Indices Traders on Weltrade Get ready to experience the power of trading with our indicator, specifically designed for Weltrade   broker's PainX and GainX Indices.  Advanced Strategies for Unbeatable Insights Our indicator employs sophisticated strategies to analyze market trends, pinpointing optimal entry and exit points.  Optimized for Maximum Performance To ensure optimal results, our indicator is carefully calibrated for 5-minute timeframe charts on
CRT Multi-Timeframe Market Structure & Liquidity Sweep Indicator Non-Repainting | Multi-Asset | MT4 Version Available MT4 Version: https://www.mql5.com/en/market/product/162556 Full Setup Guide: https://www.mql5.com/en/blogs/post/767525 Indicator Overview CRT Ghost Candle HTF Fractal is a complete institutional-grade market structure toolkit for MetaTrader 5. It projects higher-timeframe candle structure, CRT trap levels, session levels, previous period highs and lows, pivot points, and a real
CGE Trading Suite
Carl Gustav Johan Ekstrom
5 (2)
Institutional-Grade Analytics for MT5 C GE Trading Suite delivers the analytical edge typically reserved for professional trading desks. The platform integrates a full suite of analytical tools into one seamless workflow: dynamic grid mapping, liquidity behavior analysis, ECM, trend lines, MIDAS, trade cycles, and directional channel projections. Together, these provide a unified view of market structure and momentum. Directional clarity is further enhanced by the capital flow index, which meas
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
Gartley Hunter Multi
Siarhei Vashchylka
5 (11)
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
The Propfolio Master Suite is the ultimate all-in-one analytical workstation for professional traders. Combining the power of the Beat The Market Maker (BTMM) methodology, Smart Money Concepts (SND/Liquidity), and Advanced Volume Profile, this suite replaces a dozen different indicators with one heavily optimized, beautifully designed engine. Monitor up to 14 pairs simultaneously from a single chart, instantly identify market cycles, and seamlessly map institutional footprints with the click of
L'indicatore " Dynamic Scalper System MT5 " è progettato per il metodo di scalping, ovvero per il trading all'interno di onde di trend. Testato sulle principali coppie di valute e sull'oro, è compatibile con altri strumenti di trading. Fornisce segnali per l'apertura di posizioni a breve termine lungo il trend, con ulteriore supporto al movimento dei prezzi. Il principio dell'indicatore. Le frecce grandi determinano la direzione del trend. Un algoritmo per generare segnali per lo scalping sott
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
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
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
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