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.





































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

Awesome indicator, thanks for your quick response.

Produits recommandés
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 - Système de trading basé sur les motifs Engulfing Détection automatique des chandeliers Engulfing avec confirmation par moyenne mobile Le PR EA est un expert advisor pour MetaTrader 5 qui identifie et trade les motifs Engulfing haussiers/baissiers lorsqu'ils sont confirmés par un filtre de moyenne mobile. Optimisé pour le timeframe M30, compatible avec M15 et H1. Caractéristiques principales : Reconnaissance de motifs - Détecte les formations Engulfing valides Confirmation de tend
Le Tenet Support & Resistance Pro est un indicateur avancé pour MetaTrader 5, conçu pour aider les traders à identifier avec précision les principales zones de support et de résistance du marché. Basé sur l'historique des prix, l'indicateur trace automatiquement des lignes horizontales qui mettent en évidence des zones stratégiques. De plus, il met en évidence en temps réel la zone actuelle où la bougie est en cours de négociation , offrant une vue claire des zones critiques de décision. Une
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
Accès Officiel à l’Écosystème BlueDigitsFx Recevez les mises à jour de l’infrastructure, les ressources de workflow, les nouveaux produits et l’accès à l’écosystème officiel BlueDigitsFx. Écosystème Telegram Site Web Version MT4 BlueDigitsFx Spike And Strike Reversal MT5 — Oscillateur Composite pour l’Analyse des Retournements et du Momentum BlueDigitsFx Spike And Strike Reversal est un oscillateur composite qui combine plusieurs signaux d’indicateurs afin d’aider les traders à identifier le
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
Tradez USDJPY automatiquement avec un robot MetaTrader 5 robuste et testé. Momentum Master H1 utilise une stratégie longue uniquement à haute probabilité basée sur la puissance des bulls dynamique et les entrées basées sur l’ATR. Les caractéristiques clés incluent : Testé dans le temps : Backtested à partir de 2019–2025 sur les graphiques H1. Entrées de précision : Les transactions longues déclenchées sur des retraits à court terme et des signaux de tendance confirmés. Gestion intelligente des
Forex traders often observe increased market activity near Supply and Demand zones, which are levels formed based on zones where strong price movements have previously occurred. The Supply Demand Strong Weak Confirm Indicator utilizes fractals and the ATR indicator to identify and plot support and resistance zones on the price chart. These zones are categorized as follows: - Weak: significant high and low points in the trend. - Untested: crucial turning points in the price chart that the pric
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 analyse le graphique Renko brique par brique afin de détecter des figures techniques bien connues, fréquemment utilisées par les traders sur divers marchés financiers. Par rapport aux graphiques basés sur le temps, les Renko offrent une vue épurée, rendant les figures plus faciles à reconnaître et à exploiter. KT Renko Patterns comprend plusieurs figures Renko, dont la majorité sont expliquées en détail dans le livre “Profitable Trading with Renko Charts” de Prashant Shah. Un
Indicateur Balance of Power (BOP) avec support multi-timeframe, signaux visuels personnalisables et système d'alertes configurable. Les services de programmation freelance, les mises à jour et autres produits TrueTL sont disponibles sur mon profil MQL5 . Les retours et avis sont très appréciés ! Qu'est-ce que le BOP ? Balance of Power (BOP) est un oscillateur qui mesure la force des acheteurs par rapport aux vendeurs en comparant la variation du prix à la plage de la bougie. L'indicateur est
FREE
RBreaker
Zhong Long Wu
RBreaker Gold Indicators est une stratégie de trading intraday à court terme pour les contrats à terme sur l'or, qui combine deux approches : le suivi de tendance et le retournement intraday. Elle permet non seulement de capturer les profits dans les marchés en tendance, mais aussi de prendre des bénéfices en temps opportun lors des retournements de marché et d'ouvrir une position en sens inverse. Cette stratégie a été classée pendant 15 années consécutives parmi les dix stratégies de trading l
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
Indicateur Crypto_Forex Motif PINBAR pour MT5, sans refonte, sans délai. - L'indicateur « Motif PINBAR » est un indicateur très performant pour le trading Price Action. - L'indicateur détecte les PinBars sur le graphique : - PinBar haussière : signal de flèche bleue sur le graphique (voir images). - PinBar baissière : signal de flèche rouge sur le graphique (voir images). -   Avec alertes PC et mobile. - L'indicateur « Motif PINBAR » est idéal pour combiner les niveaux de support et de résista
"Hunttern harmonic pattern finder" base on the dynamic zigzag with the notification and prediction mode This version of the indicator identifies 11 harmonic patterns and predicts them in real-time before they are completely formed. It offers the ability to calculate the error rate of Zigzag patterns depending on a risk threshold. It moreover sends out a notification once the pattern is complete. The supported patterns: ABCD BAT ALT BAT BUTTERFLY GARTLEY CRAB DEEP CRAB CYPHER SHARK THREE DRIV
Les acheteurs de ce produit ont également acheté
Ce produit a été mis à jour pour le marché 2026 et optimisé pour les dernières versions de MT5. AVIS DE MISE À JOUR DU PRIX : Smart Trend Trading System est actuellement disponible à $99 . Le prix passera à $199 après les 30 prochains achats . OFFRE SPÉCIALE : Après avoir acheté Smart Trend Trading System, envoyez-moi un message privé pour recevoir Smart Universal EA GRATUITEMENT et transformer vos signaux Smart Trend en trades automatisés. Smart Trend Trading System est un système de trading c
Trend Sniper X
Sarvarbek Abduvoxobov
5 (8)
Trend Sniper X est un indicateur de suivi de tendance multi-période pour MetaTrader 5 qui aide les traders à identifier la direction de la tendance et les points de retournement potentiels avec clarté et précision. Informations sur le prix : Le prix actuel est un prix promotionnel et est sujet à changement à mesure que les futures mises à jour et nouvelles fonctionnalités seront publiées. Canal Code2Profit Maîtrisez le marché grâce à l'analyse multi-période ! Spécifications techniques Plateforme
Superhero
Ihor Otkydach
5 (2)
L'indicateur SUPERHERO est un système de trading multidevises conçu selon un principe « tout compris ». Cet indicateur analyse le marché de manière autonome et fournit des signaux indiquant quand ouvrir et clôturer des positions. Il utilise des ordres Stop Loss et Take Profit. Le rapport R:R est de 1:1. De temps en temps, je passe moi-même des ordres en me basant sur les signaux de ce système, et voici les résultats que j'obtiens — SIGNAL EN DIRECT Ce système peut envoyer des notifications push
Welcome to ENTRY IN THE ZONE AND SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool based on Smart Money Concepts (SMC), designed to analyze market structure, price direction, and key trading zones. It supports both Single-Timeframe Analysis and Multi-Timeframe Analysis, providing a clearer view of the overall market structure across multiple timeframes, with real-time BUY / SELL signals that do not repaint. It is designed to help filter trading opp
SuperScalp Pro
Van Minh Nguyen
4.6 (30)
SuperScalp Pro –  Système Professionnel de Scalping à Confluence Multicouche SuperScalp Pro est un système professionnel de scalping à confluence multicouche, conçu pour aider les traders à identifier des opportunités à plus forte probabilité grâce à des confirmations d'entrée plus claires, des niveaux de Stop Loss et de Take Profit basés sur l'ATR, ainsi qu'un filtrage flexible des signaux sur le XAUUSD, le BTCUSD et les principales paires de devises du Forex. La documentation complète est disp
Commençons par être honnêtes. Aucun indicateur ne vous rendra rentable à lui seul. Si quelqu’un vous dit le contraire, il vous vend un rêve. Tout indicateur qui affiche des flèches parfaites d’achat/vente peut être rendu impeccable — il suffit de zoomer sur la bonne partie de l’historique et de capturer uniquement les trades gagnants. Nous ne faisons pas cela.  SMC Intraday Formula est un outil. Il lit la structure du marché pour vous, identifie les zones de prix à la probabilité la plus élevée
La légende est de retour : Entry Points Pro 10. La relance de l'indicateur légendaire qui s'est maintenu 3 ans dans le Top-3 du MQL5 Market. Des centaines d'avis enthousiastes (589 sur les deux versions), des milliers de traders l'utilisent chaque jour, 31 000+ téléchargements de la démo   MT4+MT5 . J'ai lu chacun de vos avis publiés en cinq ans — et au lieu de promettre, j'ai intégré les réponses directement dans la version 10. Par un auteur présent sur les marchés depuis 1999, qui tient à l'ho
Neuro Poseidon MT5
Daria Rezueva
4.85 (54)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for al
M1 Sniper MT5
Oleg Rodin
5 (4)
M1 SNIPER   est un système d'indicateurs de trading facile à utiliser. Il s'agit d'un indicateur à flèche conçu pour l'unité de temps M1. Cet indicateur peut être utilisé seul pour le scalping sur l'unité de temps M1 ou intégré à votre système de trading existant. Bien que conçu spécifiquement pour le trading sur l'unité de temps M1, ce système peut également être utilisé avec d'autres unités de temps. Initialement, j'avais conçu cette méthode pour le trading du XAUUSD et du BTCUSD. Cependant, j
Divergence Bomber
Ihor Otkydach
4.89 (93)
De temps en temps, je trade moi-même selon ce système. Découvrez mon trading manuel « BOMBER » sur un compte réel : LIVE SIGNAL Chaque acheteur de cet indicateur reçoit également gratuitement : L’outil exclusif « Bomber Utility », qui accompagne automatiquement chaque opération de trading, fixe les niveaux de Stop Loss et de Take Profit, et clôture les positions selon les règles de la stratégie Des fichiers de configuration (set files) pour adapter l’indicateur à différents actifs Des set files
Atomic Analyst MT5
Issam Kassas
4.41 (49)
Ce produit a été mis à jour pour le marché 2026 et optimisé pour les dernières versions de MT5. AVIS DE MISE À JOUR DU PRIX : Atomic Analyst est actuellement disponible à $99 . Le prix passera à $199 après les 30 prochains achats . OFFRE SPÉCIALE : Après avoir acheté Atomic Analyst, envoyez-moi un message privé pour recevoir Smart Universal EA GRATUITEMENT et transformer vos signaux Atomic Analyst en trades automatisés. Atomic Analyst est un indicateur de trading Price Action sans repaint, san
Gann Made Easy   est un système de trading Forex professionnel et facile à utiliser qui est basé sur les meilleurs principes de trading en utilisant la théorie de mr. WD Gann. L'indicateur fournit des signaux d'ACHAT et de VENTE précis, y compris les niveaux Stop Loss et Take Profit. Vous pouvez échanger même en déplacement en utilisant les notifications PUSH. VEUILLEZ ME CONTACTER APRÈS L'ACHAT POUR RECEVOIR GRATUITEMENT DES INSTRUCTIONS DE TRADING ET D'EXCELLENTS INDICATEURS SUPPLÉMENTAIRES! V
Crystal Heikin Ashi Signals
Muhammad Jawad Shabir
5 (3)
Crystal Heikin Ashi Signals - Professional Trend & Signal Detection Indicator Advanced Heikin Ashi Visualization with Intelligent Signal System for Manual & Automated Trading Final Price: $149 ---------> Price goes up $10 after every 10 sales . Limited slots available — act fast . Overview Crystal Heikin Ashi Signals is a professional-grade MetaTrader 5 indicator that combines pure Heikin Ashi candle visualization with an advanced momentum-shift detection system. Designed for both manual traders
Power Candles MT5
Daniel Stein
5 (9)
Power Candles V3 - Indicateur de force à optimisation automatique Power Candles V3 transforme la force des devises et des instruments en un plan de trading exploitable sur chaque graphique auquel il est associé. Au lieu de se contenter de colorer les bougies, il effectue une optimisation automatique en temps réel en arrière-plan et vous fournit les meilleurs niveaux de Stop Loss, Take Profit et seuils de signal pour le symbole que vous avez sous les yeux. Un simple clic suffit pour l'adopter en
Trend Catcher ind mt5
Ramil Minniakhmetov
5 (18)
INDICATEUR DE DÉTECTEUR DE TENDANCE L'indicateur de détecteur de tendance analyse les mouvements de prix du marché grâce à une combinaison d'indicateurs d'analyse de tendance adaptatifs, propriétaires et personnalisés. Il identifie la véritable direction du marché en filtrant les fluctuations à court terme et en se concentrant sur la force de la dynamique sous-jacente, l'expansion de la volatilité et la structure des prix. Il utilise également une combinaison d'indicateurs personnalisés de lis
M1 Quantum MT5
Hamed Dehgani
4.27 (11)
Signaux de Trading en Direct avec M1 Quantum : Signal   (L’opération est exécutée automatiquement par le Quantum Trade Assistant , inclus gratuitement avec ce produit.) Dernières nouvelles : La version 1.64 a été publiée. Toutes les transactions disposent désormais d’un Stop Loss placé derrière les zones de support/résistance correspondantes. La fonction Smart Close a également été améliorée afin d’augmenter les performances de l’EA dans cette version. Depuis le 9 août, le signal en direct fonc
Atbot
Zaha Feiz
4.69 (55)
AtBot : Comment ça fonctionne et comment l'utiliser ### Comment ça fonctionne L'indicateur "AtBot" pour la plateforme MT5 génère des signaux d'achat et de vente en utilisant une combinaison d'outils d'analyse technique. Il intègre la Moyenne Mobile Simple (SMA), la Moyenne Mobile Exponentielle (EMA) et l'indice de la Plage Vraie Moyenne (ATR) pour identifier les opportunités de trading. De plus, il peut utiliser des bougies Heikin Ashi pour améliorer la précision des signaux. Laissez un avis ap
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
SkyHammer Signal Pro Indicateur professionnel de signaux de tendance sans repaint, avec niveaux Entry, SL et TP verrouillés SkyHammer Signal Pro est un indicateur de tendance et de momentum structuré, conçu pour les traders qui recherchent des signaux clairs, fixes et vérifiables. Il fonctionne le mieux sur les timeframes courts, comme M1 et M5 . L’indicateur ne cherche pas à prédire les sommets ou les creux du marché. Il attend plutôt une structure de marché confirmée, une direction de tendance
Ce produit a été mis à jour pour le marché 2026 et optimisé pour les dernières versions de MT5. AVIS DE MISE À JOUR DU PRIX : Smart Price Action Concepts est actuellement disponible à $200 . Le prix passera à $299 après les 30 prochains achats . OFFRE SPÉCIALE : Après l’achat, envoyez-moi un message privé pour recevoir un bonus gratuit + un cadeau . Tout d’abord, il est important de souligner que cet outil de trading est un indicateur sans repaint, sans redrawing et sans retard, ce qui le rend
Reversion King Indicator
Eugen-alexandru Zibileanu
5 (5)
Un nouveau Roi en ville - Indicateur + Gestion des ordres (TP1 + TP2 + TP3) + Envoi optionnel de signaux Telegram INCLUS (GRATUIT) (SYSTÈME COMPLET DE TRADING et DE SIGNAUX) Notre meilleur EA pour l’Or : Gold Slayer Cet indicateur inclut une stratégie avancée, un système de trading avec gestion des ordres personnalisable ainsi qu’un système de retour à la moyenne combinant des extensions d’enveloppes, soutenu par plusieurs filtres intelligents de confirmation comme le RSI afin de détecter des en
Btmm state engine pro
Garry James Goodchild
5 (4)
BTMM State Engine Pro by G-Labs — Beat The Market Maker indicator for MetaTrader 5. Asian session range, London and New York kill zones, level progression (L1/L2/L3), peak formation detection (PFH/PFL), entry signals, and a multi-pair scanner from one chart. Stop scanning charts one pair at a time. The State Engine tracks the BTMM daily cycle automatically — Asian box, room boundaries, level blocks, peak formations, and filtered entries — while the scanner dashboard shows level, peak status, d
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
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
Présentation de   Quantum TrendPulse   , l'outil de trading ultime qui combine la puissance de   SuperTrend   ,   RSI   et   Stochastic   dans un seul indicateur complet pour maximiser votre potentiel de trading. Conçu pour les traders qui recherchent précision et efficacité, cet indicateur vous aide à identifier les tendances du marché, les changements de dynamique et les points d'entrée et de sortie optimaux en toute confiance. Caractéristiques principales : Intégration SuperTrend :   suivez f
L'indicateur UZFX {SSS} Scalping Smart Signals v4.0 MT5 est un indicateur de trading haute performance sans « repaint », conçu pour les scalpers, les day traders et les swing traders qui recherchent des signaux précis et en temps réel sur des marchés très volatils. Développé par (UZFX-LABS), cet indicateur combine l'analyse de l'action des prix, la confirmation de tendance et un filtrage intelligent pour générer des signaux d'achat et de vente à forte probabilité, des signaux d'alerte et des opp
FX Power MT5 NG
Daniel Stein
5 (33)
FX Power : Analysez la force des devises pour des décisions de trading plus intelligentes Aperçu FX Power est l'outil essentiel pour comprendre la force réelle des principales devises et de l'or, quelles que soient les conditions du marché. En identifiant les devises fortes à acheter et les faibles à vendre, FX Power simplifie vos décisions de trading et révèle des opportunités à forte probabilité. Que vous suiviez les tendances ou anticipiez les retournements à l'aide de valeurs extrêmes de D
Axiom Matrix
Issam Kassas
5 (5)
AXIOM MATRIX MT5 PRIX DE LANCEMENT : $99 Axiom Matrix est disponible au prix de lancement de $99. Le prix passera à $199 après les 30 premiers achats. Après votre achat, envoyez-moi un message direct pour recevoir les instructions et réclamer votre bonus cadeau exclusif. Axiom Matrix est un scanner de marché professionnel multi-symboles et multi-timeframes, ainsi qu’un tableau de bord de décision pour MetaTrader 5. Il scanne votre Market Watch, analyse plusieurs timeframes, lit plusieurs moteurs
FX Trend MT5 NG
Daniel Stein
5 (6)
FX Trend NG : La Nouvelle Génération d’Intelligence de Tendance Multi-Marchés Vue d’ensemble FX Trend NG est un outil professionnel d’analyse de tendance multi-timeframe et de surveillance des marchés. Il vous permet de comprendre la structure complète du marché en quelques secondes. Au lieu de naviguer entre de nombreux graphiques, vous identifiez immédiatement quels instruments sont en tendance, où le momentum s’affaiblit et où plusieurs unités de temps sont alignées. Offre de Lancement – Ob
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
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
Plus de l'auteur
Cet indicateur est la version convertie pour MetaTrader 5 de l'indicateur TradingView "ATR Based Trendlines - JD" créé par Duyck. Fonctionnement : L'indicateur trace automatiquement et continuellement des lignes de tendance basées non seulement sur le prix, mais aussi sur la volatilité mesurée par l'ATR. Ainsi, l'angle des lignes de tendance est déterminé par (un pourcentage de) l'ATR. L'angle des lignes suit les variations de prix, dictées par la valeur ATR au moment où le point pivot est détec
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
Cet indicateur est la version convertie pour MetaTrader 4 de l'indicateur TradingView "ATR Based Trendlines - JD" créé par Duyck. Fonctionnement : L'indicateur trace automatiquement et continuellement des lignes de tendance basées non seulement sur le prix, mais aussi sur la volatilité mesurée par l'ATR. Ainsi, l'angle des lignes de tendance est déterminé par (un pourcentage de) l'ATR. L'angle des lignes suit les variations de prix, dictées par la valeur ATR au moment où le point pivot est détec
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
Cet indicateur alerte l'utilisateur lorsque l'ATR dépasse une valeur définie ou enregistre des variations significatives en pourcentage, détectant ainsi les pics/chutes de volatilité. Particulièrement utile pour: Les systèmes de trading basés sur la volatilité, Les systèmes Recovery Zone ou Grid Hedge. La volatilité étant cruciale pour ces systèmes, l'indicateur trace directement sur le graphique : Les zones d'entrée Les points de ré-entrée Les niveaux de take profit Permettant des backtests rap
Future Trend Channel est un indicateur dynamique et visuellement intuitif conçu pour identifier les directions de tendance et anticiper les mouvements de prix potentiels. Développé à l'origine par ChartPrime pour TradingView, cet outil a été adapté pour MetaTrader 4, offrant aux traders une fonctionnalité similaire. Que vous soyez trader swing, day trader ou investisseur à long terme, le Future Trend Channel vous aide à visualiser la force des tendances, anticiper les renversements et optimiser
Range Filtered AlgoAlpha est un outil d'analyse technique conçu pour identifier des opportunités de trading potentielles en analysant la volatilité des marchés. Cette adaptation MetaTrader de l'indicateur original TradingView d'AlgoAlpha combine plusieurs méthodes analytiques pour fournir une évaluation visuelle du marché. Caractéristiques techniques Utilisation du filtrage de Kalman (Kalman Filtering) pour lisser les prix Intègre des bandes basées sur ATR (ATR-based Bands) pour mesurer la volat
La Moyenne Mobile Adaptative Zeiierman est un outil d’analyse technique conçu pour identifier des opportunités de trading grâce à une analyse adaptative des tendances. Cette adaptation pour Metatrader est basée sur l’indicateur original de Zeiierman sur TradingView, qui combine plusieurs méthodes analytiques afin de fournir des évaluations visuelles du marché. Caractéristiques techniques Utilise un algorithme de lissage adaptatif basé sur la volatilité du marché Calcule un Ratio d’Efficacité (E
Cet indicateur alerte l'utilisateur lorsque l'ATR dépasse une valeur définie ou enregistre des variations significatives en pourcentage, détectant ainsi les pics/chutes de volatilité. Particulièrement utile pour: Les systèmes de trading basés sur la volatilité, Les systèmes Recovery Zone ou Grid Hedge. La volatilité étant cruciale pour ces systèmes, l'indicateur trace directement sur le graphique : Les zones d'entrée Les points de ré-entrée Les niveaux de take profit Permettant des backtests rap
Future Trend Channel est un indicateur dynamique et visuellement intuitif conçu pour identifier les directions de tendance et anticiper les mouvements de prix potentiels. Développé à l'origine par ChartPrime pour TradingView, cet outil a été adapté pour MetaTrader 5, offrant aux traders une fonctionnalité similaire. Que vous soyez trader swing, day trader ou investisseur à long terme, le Future Trend Channel vous aide à visualiser la force des tendances, anticiper les renversements et optimiser
Range Filtered AlgoAlpha est un outil d'analyse technique conçu pour identifier des opportunités de trading potentielles en analysant la volatilité des marchés. Cette adaptation MetaTrader de l'indicateur original TradingView d'AlgoAlpha combine plusieurs méthodes analytiques pour fournir une évaluation visuelle du marché. Caractéristiques techniques Utilisation du filtrage de Kalman (Kalman Filtering) pour lisser les prix Intègre des bandes basées sur ATR (ATR-based Bands) pour mesurer la volat
La Moyenne Mobile Adaptative Zeiierman est un outil d’analyse technique conçu pour identifier des opportunités de trading grâce à une analyse adaptative des tendances. Cette adaptation pour Metatrader est basée sur l’indicateur original de Zeiierman sur TradingView, qui combine plusieurs méthodes analytiques afin de fournir des évaluations visuelles du marché. Caractéristiques techniques Utilise un algorithme de lissage adaptatif basé sur la volatilité du marché Calcule un Ratio d’Efficacité (E
RC Trade Helper est un assistant de trading complet conçu pour les traders manuels. L'application fournit une suite d'outils visuels pour la passation rapide d'ordres, la gestion avancée des risques et la gestion efficace des trades directement sur le graphique. Attention : Avant l'achat, vous pouvez tester l'application sur un compte de démonstration. Le produit ne fonctionne pas dans le Testeur de Stratégies. Opérations de Trading Permet d'exécuter et de gérer les trades en un seul clic : Ouvr
Filtrer:
William J Pabon Caraballo
360
William J Pabon Caraballo 2024.08.02 20:20 
 

Awesome indicator, thanks for your quick response.

Francisco Rayol
8288
Réponse du développeur Francisco Rayol 2024.08.02 20:21
You are always welcome. God bless you. And have good trades!
Répondre à l'avis