RC Soldiers and Crows MT5

5

This indicator accurately identifies and informs market reversals and continuation patterns by analyzing and signaling the Three White Soldiers / Three Black Crows pattern. It also offers a "real-time backtesting" panel in the indicator itself in a way that every change made on the indicator parameters will immediately show the user how many signals are occurred, how many take profits and stop losses were hit and, by having these informations, the Win Rate and the Profit Factor of the setup based on the parameters defined by the user.

  • User-friendly interface and multi-asset compatibility
  • Fully customizable parameters and colors
  • Clean panel with real-time backtesting and statistics informations
  • Offers many different traditional indicators to filter the signals (Moving Average, Bollinger Bands, Parabolic Sars, ADX and RSI), allowing them to be used together within the indicator itself to optimize the best signals suitable for the user's strategy and knowledge
  • Time hours filter, so that the user can backtest and have signals only within the time range compatible to his trading routine
  • Displays Take Profit and Stop Loss levels defined by the user based on: a) Fixed points, b) Pivot levels or c) x candles before the signal
  • Switch on/off Alerts and App Notifications when new signals occur
  • Does not repaint
  • Can be easily convert its signals into an Expert Advisor. Full support granted.

FOR MT4 VERSION: CLICK HERE 

//+-------------------------------------------------------------------------+
//|                                  	     RC_Soldiers_Crows_EA_Sample.mq5|
//|                                          Copyright 2024, Francisco Rayol|
//|                                                https://www.rayolcode.com|
//+-------------------------------------------------------------------------+
#property description "RC_Soldiers_Crows_EA_Sample"
#property version   "1.00"
#property strict
#property script_show_inputs

#include <Trade\Trade.mqh>
#include <Trade\PositionInfo.mqh>

CTrade         Ctrade;
CPositionInfo  Cposition;

enum en_options
  {
   Yes = 0,             // Yes
   No = 1,              // No
  };

enum tp_type
  {
   Fixed_tp = 0,        // Fixed Take Profit
   Indicator_tp = 1,    // Take Profit from indicator
  };

enum sl_type
  {
   Fixed_sl = 0,        // Fixed Stop Loss
   Indicator_sl = 1,    // Stop Loss from indicator
  };

//--- input parameters
input int              inMagic_Number = 18272;          // Magic number
//----
input double           inLot_Size = 0.01;               // Initial lot size
//----
input tp_type          inTP_Type = 0;                   // Choose Take Profit method
input double           inTake_Profit = 150.0;           // Fixed Take Profit (in points)
input sl_type          inSL_Type = 0;                   // Choose Stop Loss method
input double           inStop_Loss = 100.0;             // Fixed Stop Loss (in points)
//----
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
//--- signal handles
int   handle_rc_soldiers_crows;
//--- signal arrays
double RC_Buy_Signal[], RC_Sell_Signal[], RC_Take_Profit[], RC_Stop_Loss[];
//--- global variables
int   initial_bar;

//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
  {
//---
   initial_bar = iBars(_Symbol,_Period);
//---
//--- RC Soldiers and Crows indicator handle
   handle_rc_soldiers_crows = iCustom(_Symbol, PERIOD_CURRENT, "\\Indicators\\Market\\RC_Soldiers_Crows.ex5");
   if(handle_rc_soldiers_crows == INVALID_HANDLE)
     {
      Print("Error getting information from \"RC_Soldiers_Crows\" indicator, check input parameters and try again");
      Alert("Error getting information from \"RC_Soldiers_Crows\" indicator, check input parameters and try again");
      return(INIT_FAILED);
     }
//---
   ArraySetAsSeries(RC_Buy_Signal, true);
   ArraySetAsSeries(RC_Sell_Signal, true);
   ArraySetAsSeries(RC_Take_Profit, true);
   ArraySetAsSeries(RC_Stop_Loss, true);
//---
   Ctrade.SetExpertMagicNumber(inMagic_Number);
//---
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
  {
//---
   Comment("");
  }
//+------------------------------------------------------------------+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick()
  {

//--- Ask and Bid prices
   double Ask = SymbolInfoDouble(_Symbol,SYMBOL_ASK);
   double Bid = SymbolInfoDouble(_Symbol,SYMBOL_BID);
//+------------------------------------------------------------------+
//--- Indicator Signals
//--- RC_Soldiers_Crows signal: buy
   if(CopyBuffer(handle_rc_soldiers_crows,0,0,2,RC_Buy_Signal)<=0) // Buy signal
     {
      Print("Getting RC_Soldiers_Crows data is failed! Error ",GetLastError());
      return;
     }
//--- RC_Soldiers_Crows signal: sell
   if(CopyBuffer(handle_rc_soldiers_crows,1,0,2,RC_Sell_Signal)<=0) // Sell signal
     {
      Print("Getting RC_Soldiers_Crows data is failed! Error ",GetLastError());
      return;
     }
//--- RC_Soldiers_Crows signal: take profit
   if(CopyBuffer(handle_rc_soldiers_crows,10,0,2,RC_Take_Profit)<=0) // Take Profit price
     {
      Print("Getting RC_Soldiers_Crows data is failed! Error ",GetLastError());
      return;
     }
//--- RC_Soldiers_Crows signal: stop loss
   if(CopyBuffer(handle_rc_soldiers_crows,11,0,2,RC_Stop_Loss)<=0) // Stop Loss price
     {
      Print("Getting RC_Soldiers_Crows data is failed! Error ",GetLastError());
      return;
     }
//+------------------------------------------------------------------+
//---
   if(!F_CheckOpenOrders() && initial_bar!=iBars(_Symbol,_Period))
     {
      if(RC_Buy_Signal[1] != 0.0 && RC_Buy_Signal[1] != EMPTY_VALUE)
        {
         if(Ctrade.Buy(inLot_Size, _Symbol, Ask, inSL_Type == 0 ? Bid - inStop_Loss*_Point : RC_Stop_Loss[1],
                       inTP_Type == 0 ? Ask + inTake_Profit*_Point : RC_Take_Profit[1],"Buy open"))
           {
            initial_bar = iBars(_Symbol,_Period);
           }
         else
            Print("Error on opening buy position :"+IntegerToString(GetLastError()));
        }
      else
         if(RC_Sell_Signal[1] != 0.0 && RC_Sell_Signal[1] != EMPTY_VALUE)
           {
            if(Ctrade.Sell(inLot_Size, _Symbol, Bid, inSL_Type == 0 ? Ask + inStop_Loss*_Point : RC_Stop_Loss[1],
                           inTP_Type == 0 ? Bid - inTake_Profit*_Point : RC_Take_Profit[1],"Sell open"))
              {
               initial_bar = iBars(_Symbol,_Period);
              }
            else
               Print("Error on opening sell position :"+IntegerToString(GetLastError()));
           }
     }
//---
  }
//---
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
bool F_CheckOpenOrders()
  {
   for(int i = 0; i<PositionsTotal(); i++)
     {
      Cposition.SelectByIndex(i);
        {
         long ord_magic = PositionGetInteger(POSITION_MAGIC);
         string ord_symbol = PositionGetString(POSITION_SYMBOL);
         ENUM_POSITION_TYPE type = Cposition.PositionType();
         if(ord_magic==inMagic_Number && ord_symbol==_Symbol)
            return(true);
        }
     }
   return(false);
  }
//+------------------------------------------------------------------+

(For a more detailed and complete code of the Expert Advisor above. Link here)


How to trade using this indicator

Although the indicator can be used as a trading system in itself, as it offers information about the Win Rate and Profit Factor, it can also be used in conjunction with some trading systems shown below:


#1 As a confirmation trend in a Moving Average crossing setup

Setup: One fast exponential moving average with 50 periods, one slow exponential moving average with 200 periods, timeframe M5, any volatile asset like XAUUSD for example.

Wait for a crossover between the two averages above. After that, open a position only when the indicator gives a signal after this crossover and in the direction of the trend signaled by the crossing of the faster average in relation to the slower one. Set stop loss at Pivot points for a higher hit rate. (click here for more details)


#2 As a confirmation signal on a Breakout system

Setup: Find the current main trend, draw a consolidation channel and look for breakouts in the direction of it. When the indicator gives a signal outside the channel confirming the breakout open a correspondent position. (click here for more details)


#3 Swing trading on higher timeframes using the inner Moving Average filter

Setup: Add the indicator on a high timeframe like H4 or higher. Use the Moving Average filter, present in the indicator itself. After that, also activate the "One signal direction at a time" option.

Open a buy position when the indicator signals it and close it only when a new sell signal appears or vice versa.

//----

Best results are obtained if you use this setup in the direction of the larger trend and open orders only in its direction, especially in assets that have a clearly defined fundamental bias such as the SP500, Nasdaq index or even Gold.  (click here for more details)

I also strongly recommend reading the article "Trading with a Bias vs. Trading without a Bias: A Deep Dive on How to Boost your Performance in Automatic Trading" for a better understanding on how to achieve better results with algo trading. (click here)

Input parameters

  • Setup defintion: Set the sequence of candles to get the pattern verified; Set how many candles in the past to analyze; Choose which signals to be shown; Only when reversal signal is detected before the pattern; One signal at a time; Reverse the signal; Show statistic panel
  • Visual aspects: Up arrow color; Down arrow color; Take profit line color; Stop loss line color; Color for active current signal; Color for past signals
  • Trade regions definition: Show regions of stop loss; Set the stop loss model (1 - on pivot levels, 2 - fixed points, 3 - candle of sequence); Show regions of take profit, Set the take profit model (1 - fixed points, 2 - x times multiplied by the stop loss)
  • Maximum values definition: Set a maximum value for stop loss in points (true or false); Maximum stop loss points; Set a maximum value for take profit in points (true or false); Maximum take profit points
  • Indicator filter: Choose which indicator to use as a filter (1 - No indicator filter, 2 - Moving average filter, 3 - Bollinger bands filter, 4 - ADX filter, 5 - RSI filter)
  • Hour filter: Use hour filter (true or false); Show hour filter lines (true or false); Time to start hour filter (Format HH:MM); Time to finish hour filter (Format HH:MM)
  • Alert definition: Sound alert every new signal (true or false); Alert pop-up every new signal (true or false); Send notification every new signal (true or false)

Disclaimer

By purchasing and using this indicator, users agree to indemnify and hold harmless its author from any and all claims, damages, losses, or liabilities arising from the use of the indicator. Trading and investing carry inherent risks, and users should carefully consider their financial situation and risk tolerance before using this indicator.





































Recensioni 1
William J Pabon Caraballo
360
William J Pabon Caraballo 2024.08.02 20:20 
 

Awesome indicator, thanks for your quick response.

Prodotti consigliati
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
Overview Harmonic Patterns MT5 is a technical analysis indicator designed for the MetaTrader 5 platform. It identifies and displays harmonic price patterns, such as Butterfly, Cypher, Crab, Bat, Shark, and Gartley, in both bullish and bearish directions. The indicator calculates key price levels, including entry, stop loss, and three take-profit levels, to assist traders in analyzing market movements. Visual elements and customizable alerts enhance usability on the chart. Features Detects six ha
Harmonic Pattern Structure Harmonic Pattern Structure is a professional MetaTrader 5 indicator that automatically detects classic harmonic patterns using strict Fibonacci ratio validation and XABCD price structure. Designed for traders who value precision, clean visuals, and structured analysis, the indicator highlights potential reversal zones based on price geometry, supporting consistent and objective decision-making. SUPPORTED HARMONIC PATTERNS Gartley (222) Butterfly Bat Crab Shark Cy
Monster Harmonics Indicator is a harmonic pattern indicator. It recognizes Gartley, Bat, Crab, Butterfly, Cypher, White Swan, Black Swan, Shark and AB=CD patterns. Projected patterns that are not yet completed are recognized, too. Monster even shows the PRZ (Potential Reversal Zone). Users can add their own user defined patterns to Monster. Besides the current pattern, Monster also shows all patterns in the symbols history. Monster will provide alerts for developing patterns. Introduced by H.M.
Overview The Market Perspective Structure Indicator is a comprehensive MetaTrader indicator designed to provide traders with a detailed analysis of market structure across multiple timeframes. It identifies and visualizes key price action elements, including swing highs and lows, Break of Structure (BOS), Change of Character (CHOCH), internal structures, equal highs/lows, premium/discount levels, previous levels from higher timeframes, and trading session zones. With extensive customization opt
Description of the Harmonic Patterns + Fib Indicator The Harmonic Patterns + Fib indicator is a technical analysis tool designed for MetaTrader 5 (MT5). It automatically detects and visualizes harmonic price patterns on financial charts, leveraging Fibonacci ratios to identify potential reversal points in markets such as forex, stocks, cryptocurrencies, and commodities. The indicator scans for classic harmonic formations like Butterfly, Bat, Crab, Shark, Gartley, and ABCD, drawing them with lin
FREE
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
PREngulfing
Slobodan Manovski
PR EA - Engulfing Pattern Trading System Automated Engulfing Pattern Detection with MA Confirmation The PR EA is a Meta Trader 5 expert advisor that identifies and trades bullish/bearish engulfing candlestick patterns when confirmed by a moving average filter. Designed for swing trading on 30-minute charts with compatibility for M15 and H1 time frames. Key Features: Pattern Recognition - Detects valid bullish/bearish engulfing candle formations Trend Confirmation - 238-period SMA filter
Il Tenet Support & Resistance Pro è un indicatore avanzato per MetaTrader 5, progettato per aiutare i trader a identificare con precisione le principali aree di supporto e resistenza del mercato. Basandosi sulla cronologia dei prezzi, l'indicatore traccia automaticamente linee orizzontali che evidenziano zone strategiche. Inoltre, evidenzia in tempo reale l'area attuale in cui la candela viene negoziata , fornendo una visione chiara delle aree critiche di decisione. Una caratteristica esclusi
The   Fibonacci Confluence Toolkit   is a technical analysis tool designed to help traders identify potential price reversal zones by combining key market signals and patterns. It highlights areas of interest where significant price action or reactions are anticipated, automatically applies Fibonacci retracement levels to outline potential pullback zones, and detects engulfing candle patterns. Its unique strength lies in its reliance solely on price patterns, eliminating the need for user-define
Multi Timeframe Smc Bias Finder Trading in alignment with higher timeframe structure is one of the most consistently profitable habits a trader can build. The difficulty has always been execution: switching between timeframes, manually reading structure, and keeping track of whether the Daily, 4-Hour and 1-Hour are all pointing in the same direction before committing to a position. Multi Timeframe Smc Bias Finder resolves that entirely. Three tools in one indicator: A live multi-timeframe bias d
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
Fibaction
Abdelkhalek Orabi
Indicator Name: Fibaction – price action candle Detector Description: Fibo Signal Boxes is a powerful Smart Money Concept (SMC)-inspired indicator that auto-detects price action candles. bullish hammers and shooting stars, then draws precise Fibonacci entry zones and multiple take-profit levels directly on the chart. as for the SL personally i use 40 pips rules  Key Features: Detects bullish hammer and shooting star reversal candles. Automatically draws Fibonacci entry and TP boxes. as
VELOS Trading Indicator Precision. Speed. Confidence. The VELOS Trading Indicator is a professional, non-repainting MT5 trading system developed by DC Trading to help traders identify high-probability trading opportunities with confidence. Designed for both beginner and experienced traders, VELOS combines trend analysis, momentum confirmation, and volatility filtering into one intelligent indicator, delivering precise entry and exit signals while reducing false setups. Built for fast-moving m
Accesso Ufficiale all'Ecosistema BlueDigitsFx Ricevi aggiornamenti sull'infrastruttura, risorse operative, nuovi prodotti e accesso all'ecosistema ufficiale BlueDigitsFx. Ecosistema Telegram Sito Web Versione MT4 BlueDigitsFx Spike And Strike Reversal MT5 — Oscillatore Composito per l'Analisi delle Inversioni di Mercato e del Momentum BlueDigitsFx Spike And Strike Reversal è un oscillatore composito che combina molteplici segnali di indicatori per aiutare i trader a identificare potenziali i
This indicator is, without a doubt, the best variation of the Gann Angles among others. It allows traders using Gann methods to automatically calculate the Gann angles for the traded instrument. The scale is automatically calculated when the indicator is attached to the chart. When switching timeframes, the indicator recalculates the scale for the current timeframe. Additionally, you can enter your own scales for the Gann angles. You can enter your own scales either for both vectors or for each
Master Edition
Peter Ofunda Fischer
Harvester Pro Universal Master The Ultimate Volatility Breakout & Trend-Following Solution for XAUUSD and Major Pairs. Harvester Pro Universal Master is a professional-grade Expert Advisor (EA) engineered for high-performance trading on the MetaTrader 5 (MT5) platform. Optimized specifically for XAUUSD (Gold) and major currency pairs like EURUSD , this EA combines a sophisticated Volatility Breakout engine with a robust EMA/TEMA Trend-Following filter to capture explosive market moves with surg
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation.
Usdjpy Trend Follower
Marcos Ramon Aparicio Pelaez
Fai trading automatico su USDJPY con un robot MetaTrader 5 robusto e testato in background. Momentum Master H1 utilizza una strategia long-only ad alta probabilità basata su Bulls Power dinamici e voci basate su ATR. Le caratteristiche principali includono: Time-tested: backtested dal 2019–2025 sui grafici H1. Ingressi di precisione: operazioni lunghe innescate da pullback a breve termine e segnali di tendenza confermati. Gestione intelligente del rischio: obiettivi di stop loss e profitto bas
AutoTrend Pro
Aram Hussein Mohammed
TL Method — Automatic Trendline Detection & Strength Indicator Tired of drawing trendlines manually? TL Method does it for you — automatically detecting, drawing, and scoring trendlines in real time. What it does: Scans up to 1000 bars to find valid support and resistance trendlines Scores each trendline by counting confirmed anchor touches Generates buy/sell signal arrows when price approaches strong trendlines Alerts you via popup, push notification, or sound — with smart cooldown to avoid spa
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
KT Renko Patterns MT5
KEENBASE SOFTWARE SOLUTIONS
KT Renko Patterns analizza il grafico Renko mattone per mattone per individuare i pattern grafici più famosi, frequentemente utilizzati dai trader nei vari mercati finanziari. Rispetto ai grafici basati sul tempo, i grafici Renko rendono il trading basato sui pattern più semplice e visivamente chiaro grazie alla loro struttura pulita. KT Renko Patterns include diversi pattern Renko, molti dei quali sono ampiamente spiegati nel libro “Profitable Trading with Renko Charts” di Prashant Shah. Un E
Indicatore Balance of Power (BOP) con supporto multi-timeframe, segnali visivi personalizzabili e sistema di avvisi configurabile. I servizi di programmazione freelance, gli aggiornamenti e altri prodotti TrueTL sono disponibili nel mio profilo MQL5 . Feedback e recensioni sono molto apprezzati! Cos'è il BOP? Balance of Power (BOP) è un oscillatore che misura la forza degli acquirenti rispetto ai venditori confrontando la variazione del prezzo con il range della candela. L'indicatore viene ca
FREE
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
Quant Supply & Demand Pro: Institutional Structure Levels Quant Supply & Demand Pro is a high-performance MQL5 indicator designed for traders who prioritize Clean Charts and Institutional Logic. Instead of flooding your screen with noise, this algorithm scans market structure to identify high-probability "Smart Money" imbalances—Supply and Demand zones where price is highly likely to react. This tool is built for the trader who is tired of over-complicated "black box" indicators. This isn't an a
FREE
Awesome Oscillator by Bill Williams with the ability to fine-tune and replace the averaging algorithms of the indicator, which significantly expands the possibilities of using this oscillator in algorithmic trading and brings it closer in its properties to such an indicator as the MACD. To reduce price noise, the final indicator is processed with an additional Smooth averaging. The indicator has the ability to give alerts, send mail messages and push signals when the direction of movement of th
Unlock powerful breakout opportunities The 123 Pattern is one of the most popular, powerful and flexible chart patterns. The pattern is made up of three price points: a bottom, a peak or valley, and a Fibonacci retracement between 38.2% and 71.8%. A pattern is considered valid when the price breaks beyond the last peak or valley, moment at which the indicator plots an arrow, rises an alert, and the trade can be placed. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  ]
Advanced MT5 Indicator: Precision-Powered with Pivot Points, MAs & Multi-Timeframe Logic Unlock the full potential of your trading strategy with this precision-engineered MetaTrader 5 indicator —an advanced tool that intelligently blends Pivot Points , Adaptive Moving Averages , and Multi-Timeframe Analysis to generate real-time Buy and Sell signals with high accuracy.    If you want to test on Real Market, Let me know. I will give the Demo file to run on Real Account.    Whether you're a scal
Indicatore Crypto_Forex Pattern PINBAR per MT5, senza ridisegnare, senza ritardi. - L'indicatore "PINBAR Pattern" è un indicatore molto potente per il trading basato sull'azione dei prezzi. - L'indicatore rileva le PinBar sul grafico: - PinBar rialzista - Segnale a freccia blu sul grafico (vedi immagini). - PinBar ribassista - Segnale a freccia rossa sul grafico (vedi immagini). -   Con avvisi su PC e dispositivi mobili. - L'indicatore "PINBAR Pattern" è eccellente da combinare con i livelli d
Gli utenti di questo prodotto hanno anche acquistato
Questo prodotto è stato aggiornato per il mercato 2026 e ottimizzato per le ultime build di MT5. AVVISO DI AGGIORNAMENTO PREZZO: Smart Trend Trading System è attualmente disponibile a $99 . Il prezzo aumenterà a $199 dopo i prossimi 30 acquisti . OFFERTA SPECIALE: Dopo aver acquistato Smart Trend Trading System, inviami un messaggio privato per ricevere Smart Universal EA GRATIS e trasformare i tuoi segnali Smart Trend in operazioni automatiche. Smart Trend Trading System è un sistema di tradin
Trend Sniper X
Sarvarbek Abduvoxobov
5 (8)
Trend Sniper X è un indicatore di trend following multi-timeframe per MetaTrader 5 che aiuta i trader a identificare la direzione del trend e i potenziali punti di inversione con chiarezza e precisione. Informazioni sul prezzo: Il prezzo attuale è promozionale ed è soggetto a modifiche con il rilascio di futuri aggiornamenti e nuove funzionalità. Canale Code2Profit Padroneggia il mercato con l'analisi multi-timeframe! Specifiche tecniche Piattaforma MetaTrader 5 Tipo di indicatore Indicatore di
Cominciamo con la verità. Nessun indicatore da solo ti renderà profittevole. Se qualcuno ti dice il contrario, ti sta vendendo un sogno. Qualsiasi indicatore che mostra frecce perfette di acquisto/vendita può essere reso impeccabile — basta ingrandire la giusta sezione della storia e catturare solo i trade vincenti. Noi non lo facciamo.  SMC Intraday Formula è uno strumento. Legge la struttura del mercato per te, identifica le zone a più alta probabilità e ti mostra esattamente come appare la t
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
SuperScalp Pro
Van Minh Nguyen
4.6 (30)
SuperScalp Pro –  Sistema Professionale di Scalping con Confluenza Multilivello SuperScalp Pro è un sistema professionale di scalping con confluenza multilivello, progettato per aiutare i trader a individuare opportunità con una probabilità più elevata grazie a conferme di ingresso più chiare, livelli di Stop Loss e Take Profit basati sull'ATR e un filtro flessibile dei segnali per XAUUSD, BTCUSD e le principali coppie Forex. La documentazione completa è disponibile nel blog del prodotto:   [Use
Welcome to ENTRY IN THE ZONE AND SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a professional trading indicator built on Smart Money Concepts (SMC) , combining market structure analysis with a No Repaint BUY / SELL signal system in a single indicator. It helps traders understand market structure more clearly, identify key price zones, and focus on higher-quality trading opportunities. By combining Multi-Timeframe Analysis , Points of Interest (POIs) , and real-time signals, th
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
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
Gann Made Easy è un sistema di trading Forex professionale e facile da usare che si basa sui migliori principi del trading utilizzando la teoria di mr. WD Gann. L'indicatore fornisce segnali ACQUISTA e VENDI accurati, inclusi i livelli di Stop Loss e Take Profit. Puoi fare trading anche in movimento utilizzando le notifiche PUSH. CONTATTAMI DOPO L'ACQUISTO PER RICEVERE GRATUITAMENTE LE ISTRUZIONI DI TRADING E OTTIMI INDICATORI EXTRA! Probabilmente hai già sentito parlare molte volte dei metodi d
Divergence Bomber
Ihor Otkydach
4.9 (92)
Ogni acquirente dell’indicatore riceverà inoltre gratuitamente: L’utilità esclusiva “Bomber Utility”, che gestisce automaticamente ogni operazione, imposta i livelli di Stop Loss e Take Profit e chiude le posizioni secondo le regole della strategia I file di configurazione (set file) per adattare l’indicatore a diversi asset I set file per configurare il Bomber Utility in tre modalità: “Rischio Minimo”, “Rischio Bilanciato” e “Strategia di Attesa” Una guida video passo-passo per installare, conf
Atomic Analyst MT5
Issam Kassas
4.37 (46)
Questo prodotto è stato aggiornato per il mercato 2026 e ottimizzato per le ultime build di MT5. AVVISO DI AGGIORNAMENTO PREZZO: Atomic Analyst è attualmente disponibile a $99 . Il prezzo aumenterà a $199 dopo i prossimi 30 acquisti . OFFERTA SPECIALE: Dopo aver acquistato Atomic Analyst, inviami un messaggio privato per ricevere Smart Universal EA GRATIS e trasformare i tuoi segnali Atomic Analyst in operazioni automatiche. Atomic Analyst è un indicatore di trading Price Action non-repainting
Power Candles MT5
Daniel Stein
5 (9)
Power Candles V3 - Indicatore di forza ad ottimizzazione automatica Power Candles V3 trasforma la forza delle valute e degli strumenti in un piano di trading attuabile su ogni grafico a cui è collegato. Invece di limitarsi a colorare le candele, esegue un'auto-ottimizzazione in tempo reale in background e ti fornisce i migliori valori di Stop Loss, Take Profit e soglia di segnale per il simbolo che hai davanti. Basta un clic per adottarlo nel trading live: i raggi di ingresso, Stop Loss e Take P
Crystal Heikin Ashi Signals
Muhammad Jawad Shabir
5 (2)
Crystal Heikin Ashi Signals - Professional Trend & Signal Detection Indicator Advanced Heikin Ashi Visualization with Intelligent Signal System for Manual & Automated Trading Final Price: $149 ---------> Price goes up $10 after every 10 sales . Limited slots available — act fast . Overview Crystal Heikin Ashi Signals is a professional-grade MetaTrader 5 indicator that combines pure Heikin Ashi candle visualization with an advanced momentum-shift detection system. Designed for both manual traders
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
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
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
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
FX Power MT5 NG
Daniel Stein
5 (33)
FX Power: Analizza la Forza delle Valute per Decisioni di Trading Più Intelligenti Panoramica FX Power è lo strumento essenziale per comprendere la reale forza delle principali valute e dell'oro in qualsiasi condizione di mercato. Identificando le valute forti da comprare e quelle deboli da vendere, FX Power semplifica le decisioni di trading e rivela opportunità ad alta probabilità. Che tu segua le tendenze o anticipi inversioni utilizzando valori estremi di Delta, questo strumento si adatta
Presentazione       Quantum Breakout PRO   , l'innovativo indicatore MQL5 che sta trasformando il modo in cui scambi le zone di breakout! Sviluppato da un team di trader esperti con un'esperienza di trading di oltre 13 anni,       Quantum Breakout PRO       è progettato per spingere il tuo viaggio di trading a nuovi livelli con la sua strategia innovativa e dinamica della zona di breakout. Quantum Breakout Indicator ti fornirà frecce di segnalazione sulle zone di breakout con 5 zone target di
DayTrader PRO
Davit Beridze
5 (2)
DayTrader PRO DayTrader PRO è un indicatore di trading avanzato che combina il filtro Laguerre di John Ehlers con un potente motore di auto-ottimizzazione. Invece di utilizzare parametri fissi, l'indicatore ricerca automaticamente le migliori impostazioni in base alle condizioni recenti del mercato, aiutandoti ad adattarti alla volatilità variabile senza costanti aggiustamenti manuali. L'indicatore genera segnali chiari di ACQUISTO (BUY) e VENDITA (SELL), insieme a livelli adattivi di Stop Loss
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
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
Questo prodotto è stato aggiornato per il mercato 2026 e ottimizzato per le ultime build di MT5. AVVISO DI AGGIORNAMENTO PREZZO: Smart Price Action Concepts è attualmente disponibile a $200 . Il prezzo aumenterà a $299 dopo i prossimi 30 acquisti . OFFERTA SPECIALE: Dopo l’acquisto, inviami un messaggio privato per ricevere un bonus gratuito + regalo . Prima di tutto, vale la pena sottolineare che questo strumento di trading è un indicatore non-repainting, non-redrawing e non-lagging, il che lo
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
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
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
Berma Bands
Muhammad Elbermawi
5 (10)
L'indicatore Berma Bands (BBs) è uno strumento prezioso per i trader che cercano di identificare e capitalizzare i trend di mercato. Analizzando la relazione tra il prezzo e le BBs, i trader possono discernere se un mercato è in una fase di trend o di range. Visita il [ Berma Home Blog ] per saperne di più. Le Berma Bands sono composte da tre linee distinte: la Upper Berma Band, la Middle Berma Band e la Lower Berma Band. Queste linee sono tracciate attorno al prezzo, creando una rappresentazion
Atbot
Zaha Feiz
4.69 (55)
AtBot:  Come funziona e come usarlo ### Come funziona L'indicatore "AtBot" per la piattaforma MT5 genera segnali di acquisto e vendita utilizzando una combinazione di strumenti di analisi tecnica. Integra la Media Mobile Semplice (SMA), la Media Mobile Esponenziale (EMA) e l'indice di Gamma Vero Medio (ATR) per identificare opportunità di trading. Inoltre, può utilizzare le candele Heikin Ashi per migliorare la precisione dei segnali. Lascia una recensione dopo l'acquisto e ricevi un regalo bon
FX Trend MT5 NG
Daniel Stein
5 (6)
FX Trend NG: La Nuova Generazione di Intelligenza di Trend Multi-Mercato Panoramica FX Trend NG è uno strumento professionale di analisi del trend multi-timeframe e monitoraggio dei mercati. Ti consente di comprendere la struttura completa del mercato in pochi secondi. Invece di passare tra numerosi grafici, puoi identificare immediatamente quali strumenti sono in trend, dove il momentum sta diminuendo e dove esiste un forte allineamento tra i timeframe. Offerta di Lancio – Ottieni FX Trend NG
Axiom Matrix
Issam Kassas
5 (4)
AXIOM MATRIX MT5 PREZZO DI LANCIO: $99 Axiom Matrix è disponibile al prezzo di lancio di $99. Il prezzo aumenterà a $199 dopo i primi 30 acquisti. Dopo il tuo acquisto, inviami un messaggio diretto per ricevere le istruzioni e richiedere il tuo bonus regalo esclusivo. Axiom Matrix è uno scanner di mercato professionale multi-simbolo e multi-timeframe, oltre a un pannello decisionale per MetaTrader 5. Scansiona il tuo Market Watch, analizza più timeframe, legge più motori di evidenza, confronta l
Altri dall’autore
Questo indicatore è la versione convertita per MetaTrader 5 dell'indicatore "ATR Based Trendlines - JD" di TradingView creato da Duyck. Funzionamento: L'indicatore traccia automaticamente e continuamente linee di tendenza basate non solo sul prezzo, ma anche sulla volatilità percepita dall'ATR. L'angolo delle linee di tendenza è determinato da (una percentuale dell') ATR. L'angolazione segue le variazioni di prezzo, guidate dal valore ATR nel momento in cui viene rilevato il punto pivot. La perc
FREE
Questo indicatore è la versione convertita per MetaTrader 4 dell'indicatore "ATR Based Trendlines - JD" di TradingView creato da Duyck. Funzionamento: L'indicatore traccia automaticamente e continuamente linee di tendenza basate non solo sul prezzo, ma anche sulla volatilità percepita dall'ATR. L'angolo delle linee di tendenza è determinato da (una percentuale dell') ATR. L'angolazione segue le variazioni di prezzo, guidate dal valore ATR nel momento in cui viene rilevato il punto pivot. La perc
FREE
The Rayol Code Hour Interval Lines indicator was  designed to assist your trading experience.  It  draws the range of hours chosen by the user directly on the chart, so that it enables traders to visualize price movements during their preferred trading hours, providing  traders a more comprehensive view of price movements and market dynamics. This indicator allows the user to choose not only the Broker's time, but also the Local time. This way, the user no longer needs to calculate local time in
FREE
The Rayol Code Hour Interval Lines indicator was designed to assist your trading experience. It draws the range of hours chosen by the user directly on the chart, so that it enables traders to visualize price movements during their preferred trading hours, providing traders a more comprehensive view of price movements and market dynamics. This indicator allows the user to choose not only the Broker's time, but also the Local time. This way, the user no longer needs to calculate local time in re
FREE
This indicator accurately identifies and informs market reversals and continuation patterns by analyzing and signaling the Three White Soldiers / Three Black Crows pattern. It also offers a  "real-time backtesting"  panel in the indicator itself in a way that every change made on the indicator parameters will immediately show the user how many signals are occurred, how many take profits and stop losses were hit and, by having these informations, the Win Rate and the Profit Factor of the setup ba
Questo indicatore avvisa l'utente quando l'ATR supera un valore definito o mostra variazioni percentuali significative, rilevando picchi/cali di volatilità. Particolarmente utile per: Sistemi di trading basati sulla volatilità, Sistemi Recovery Zone o Grid Hedge. Essendo la volatilità cruciale per questi sistemi, l'indicatore traccia direttamente sul grafico: Zone di ingresso Punti di rientro Livelli di take profit Consentendo backtest e personalizzazione dei parametri. Vantaggi principali Param
Future Trend Channel è un indicatore dinamico e visivamente intuitivo progettato per identificare le direzioni di tendenza e prevedere potenziali movimenti dei prezzi. Originariamente sviluppato da ChartPrime per TradingView, questo strumento è stato adattato per MetaTrader 4, offrendo ai trader una funzionalità simile. Che tu sia uno swing trader, day trader o investitore a lungo termine, Future Trend Channel ti aiuta a visualizzare la forza del trend, anticipare inversioni e ottimizzare i punt
Range Filtered AlgoAlpha è uno strumento di analisi tecnica progettato per identificare potenziali opportunità di trading analizzando la volatilità del mercato. Questa versione MetaTrader dell'indicatore originale TradingView di AlgoAlpha combina diversi metodi analitici per fornire una valutazione visiva del mercato. Caratteristiche tecniche Utilizza il filtraggio di Kalman (Kalman Filtering) per livellare i prezzi Include bande basate sull'ATR (ATR-based Bands) per misurare la volatilità Integ
La Media Mobile Adattiva Zeiierman è uno strumento di analisi tecnica progettato per identificare opportunità di trading attraverso l’analisi adattiva delle tendenze. Questa versione per Metatrader è basata sull’indicatore originale di Zeiierman su TradingView, che combina diversi metodi analitici per fornire valutazioni visive del mercato. Caratteristiche tecniche Utilizza un algoritmo di smoothing adattivo basato sulla volatilità del mercato Calcola un Rapporto di Efficienza (ER) per regolare
Questo indicatore avvisa l'utente quando l'ATR supera un valore definito o mostra variazioni percentuali significative, rilevando picchi/cali di volatilità. Particolarmente utile per: Sistemi di trading basati sulla volatilità, Sistemi Recovery Zone o Grid Hedge. Essendo la volatilità cruciale per questi sistemi, l'indicatore traccia direttamente sul grafico: Zone di ingresso Punti di rientro Livelli di take profit Consentendo backtest e personalizzazione dei parametri. Vantaggi principali Param
Future Trend Channel è un indicatore dinamico e visivamente intuitivo progettato per identificare le direzioni di tendenza e prevedere potenziali movimenti dei prezzi. Originariamente sviluppato da ChartPrime per TradingView, questo strumento è stato adattato per MetaTrader 5, offrendo ai trader una funzionalità simile. Che tu sia uno swing trader, day trader o investitore a lungo termine, Future Trend Channel ti aiuta a visualizzare la forza del trend, anticipare inversioni e ottimizzare i punt
Range Filtered AlgoAlpha è uno strumento di analisi tecnica progettato per identificare potenziali opportunità di trading analizzando la volatilità del mercato. Questa versione MetaTrader dell'indicatore originale TradingView di AlgoAlpha combina diversi metodi analitici per fornire una valutazione visiva del mercato. Caratteristiche tecniche Utilizza il filtraggio di Kalman (Kalman Filtering) per livellare i prezzi Include bande basate sull'ATR (ATR-based Bands) per misurare la volatilità Inte
La Media Mobile Adattiva Zeiierman è uno strumento di analisi tecnica progettato per identificare opportunità di trading attraverso l’analisi adattiva delle tendenze. Questa versione per Metatrader è basata sull’indicatore originale di Zeiierman su TradingView, che combina diversi metodi analitici per fornire valutazioni visive del mercato. Caratteristiche tecniche Utilizza un algoritmo di smoothing adattivo basato sulla volatilità del mercato Calcola un Rapporto di Efficienza (ER) per regolare
RC Trade Helper
Francisco Rayol
RC Trade Helper è un assistente di trading completo progettato per i trader manuali. L'applicazione fornisce una suite di strumenti visivi per la rapida esecuzione degli ordini, la gestione avanzata del rischio e la gestione efficiente delle operazioni direttamente sul grafico. Attenzione: Prima dell'acquisto, è possibile testare l'applicazione su un conto demo. Il prodotto non funziona nel Tester di Strategia. Operazioni di Trading Permette di eseguire e gestire le operazioni con un solo clic:
Filtro:
William J Pabon Caraballo
360
William J Pabon Caraballo 2024.08.02 20:20 
 

Awesome indicator, thanks for your quick response.

Francisco Rayol
8274
Risposta dello sviluppatore Francisco Rayol 2024.08.02 20:21
You are always welcome. God bless you. And have good trades!
Rispondi alla recensione