MR Score

The MR-Score Probability Indicator is a powerful tool designed for traders seeking an edge in identifying overbought and oversold conditions. It calculates the statistical MR-Score of price movements, providing an intuitive measure of how far the current price deviates from its historical average. Additionally, it computes the probability of price movements using the cumulative normal distribution, helping traders assess market conditions with confidence.

Key Features

MR-Score Calculation:

  • Measures price deviations from the mean in standard deviations.
  • Helps identify statistically significant price levels.

Probability Estimation:

  • Computes the likelihood of current price movements using a cumulative normal distribution.
  • Outputs probabilities as a percentage for easier interpretation.

Customizable Period:

  • Adjust the calculation period to suit your trading style or market conditions.

User-Friendly Visualization:

  • Displays the MR-Score and probability as separate lines in a dedicated indicator window.
  • Uses distinct colors for better clarity (Blue for MR-Score, Orange for Probability).

Versatile Application:

  • Ideal for mean reversion strategies, volatility assessments, or identifying potential breakout conditions.

How It Works

The indicator calculates the mean and standard deviation of price movements over a user-defined period. The MR-Score is computed as:

Z = Price − Mean Standard Deviation Z = \frac{\text{Price} - \text{Mean}}{\text{Standard Deviation}}

The cumulative normal distribution (Erf function) is used to estimate the probability of price movements beyond the current level.

Benefits for Traders

  • Mean Reversion: Spot overbought and oversold levels with precision.
  • Breakout Detection: Identify areas where prices may break away from the mean.
  • Improved Risk Management: Assess probabilities to make data-driven trading decisions.

Inputs

  • Period: Define the number of bars used for the calculation.
  • Colors and Line Styles: Customize the appearance of MR-Score and probability lines.

Use Cases

Mean Reversion:

  • Use extreme MR-Score values (e.g., greater than +2 or less than -2) to anticipate price reversals.

Trend Continuation:

  • Utilize probabilities to confirm trends or identify low-risk entry points during retracements.

Volatility Analysis:

  • Detect periods of high or low volatility using fluctuations in the MR-Score.

Example Usage: EA Code for MR-Score Indicator

Here’s an example of how you can use the MR-Score Probability Indicator within an Expert Advisor (EA):

//+------------------------------------------------------------------+
//| Example EA using MR-Score Probability Indicator                 |
//+------------------------------------------------------------------+
#property strict

// Input parameters for the indicator
input int period = 14; // Period for the MR-Score calculation

// Indicator handles
int mrScoreHandle;
int probHandle;

// Variables to store indicator values
double mrScore[];
double prob[];

//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
{
   // Create the MR-Score indicator
   mrScoreHandle = iCustom(Symbol(), Period(), "MR-Score", period);
   if(mrScoreHandle == INVALID_HANDLE)
   {
      Print("Error creating MR-Score indicator: ", GetLastError());
      return INIT_FAILED;
   }

   // Create the Probability indicator
   probHandle = iCustom(Symbol(), Period(), "MR-Score", period);
   if(probHandle == INVALID_HANDLE)
   {
      Print("Error creating Probability indicator: ", GetLastError());
      return INIT_FAILED;
   }

   // Successful initialization
   Print("Indicators initialized successfully");
   return INIT_SUCCEEDED;
}

//+------------------------------------------------------------------+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
   // Release the indicator handles when the EA is removed
   if(mrScoreHandle != INVALID_HANDLE)
      IndicatorRelease(mrScoreHandle);

   if(probHandle != INVALID_HANDLE)
      IndicatorRelease(probHandle);
}

//+------------------------------------------------------------------+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick()
{
   // Copy the MR-Score and Probability values
   if(CopyBuffer(mrScoreHandle, 0, 0, 1, mrScore) < 0 || CopyBuffer(probHandle, 0, 0, 1, prob) < 0)
   {
      Print("Error copying indicator data: ", GetLastError());
      return;
   }

   // Get the most recent MR-Score and Probability values
   double currentMRScore = mrScore[0];
   double currentProbability = prob[0];

   // Example Use Case: Mean Reversion Strategy
   if(currentMRScore > 2)
   {
      // Condition for an overbought market (MR-Score above +2)
      // Place your sell order logic here
      Print("Overbought condition: MR-Score is ", currentMRScore);
   }
   else if(currentMRScore < -2)
   {
      // Condition for an oversold market (MR-Score below -2)
      // Place your buy order logic here
      Print("Oversold condition: MR-Score is ", currentMRScore);
   }

   // Example Use Case: Breakout Detection
   if(currentProbability > 70)
   {
      // High probability of continued price movement in the same direction
      // You can confirm trend continuation and place your order logic here
      Print("High probability: ", currentProbability, "% for price continuation.");
   }
}

Why Choose This Indicator?

The MR-Score Probability Indicator combines statistical rigor with trading practicality. It is perfect for traders looking for reliable, data-driven signals to enhance their strategies. Whether you're a scalper, swing trader, or long-term investor, this indicator adapts seamlessly to your trading needs.

Note: This indicator does not provide standalone buy or sell signals. It is a supplementary tool designed to enhance your trading strategy. Always use it in conjunction with your analysis and risk management practices.


Prodotti consigliati
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker, but in real time only, without access to its history. The indicator OrderBook Cumulative Indicator accumulates market book data online and visualizes them on the chart. In addition, the indicator can show the market
Indicator and Expert Adviser  EA Available in the comments section of this product. Download with Indicator must have indicator installed for EA to work. Mt5 indicator alerts for bollinger band and envelope extremes occurring at the same time. Buy signal alerts occur when A bullish candle has formed below both the lower bollinger band and the lower envelope  Bar must open and close below both these indicators. Sell signal occur when A bear bar is formed above the upper bollinger band and upper
FREE
L'indicatore costruisce le quotazioni attuali, che possono essere confrontate con quelle storiche e su questa base fanno una previsione del movimento dei prezzi. L'indicatore ha un campo di testo per una rapida navigazione fino alla data desiderata. Opzioni: Simbolo - selezione del simbolo che visualizzerà l'indicatore; SymbolPeriod - selezione del periodo da cui l'indicatore prenderà i dati; IndicatorColor - colore dell'indicatore; HorisontalShift - spostamento delle virgolette disegnate d
Follow The Line MT5
Oliver Gideon Amofa Appiah
4.6 (35)
This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL. (you can change the colors). It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more powerful and reliable signals. Get them here: https://www.m
FREE
Statistical Arbitrage Spread Generator for Cointegration [MT5] What is Pair Trading? Pair trading is a market-neutral strategy that looks to exploit the relative price movement between two correlated assets — instead of betting on the direction of the market. The idea? When two assets that usually move together diverge beyond a statistically significant threshold, one is likely mispriced. You sell the expensive one, buy the cheap one , and profit when they converge again. It’s a statistica
FREE
Donchian Channel DC is the indicator of Donchian Channels, that plots maximum and minimum values of a specific period, besides mean value line. It´s possible to configure simple period for analysis and the indicator will plot all three values. You can trade with this indicator as trend or reversal, according to each strategy. Do not let to test others indicators as soon as others expert advisors.
All-in-One Chart Patterns Professional Level: The Ultimate 36-Pattern Trading System All-in-One Chart Patterns Professional Level is a comprehensive 36-pattern indicator well known by retail traders, but significantly enhanced with superior accuracy through integrated news impact analysis and proper market profile positioning. This professional-grade trading tool transforms traditional pattern recognition by combining advanced algorithmic detection with real-time market intelligence.  CORE FEATU
FREE
Show Pips for MT5
Roman Podpora
4.52 (27)
Questo indicatore informativo sarà utile per coloro che vogliono essere sempre informati sulla situazione attuale del conto. VERSION MT 4 -   More useful indicators L'indicatore mostra dati come profitto in punti, percentuale e valuta, nonché lo spread per la coppia corrente e il tempo fino alla chiusura della barra nell'intervallo di tempo corrente. Esistono diverse opzioni per posizionare la linea delle informazioni sulla carta: A destra del prezzo (corre dietro al prezzo); Come commento (nell
FREE
Trade Sentiment or trade assistant is a MT5 Indicatior. That show buy or sell signal of different indicator to assist to take trades. That will help you to take right trades or to get confirmation for your trade. You don't need to have this indicators. Including indicators like  RSI , STOCH , CCI. And the signals are Based on different Timeframes like 5M , 15H , 1H and 4H.
FREE
Value Chart Candlesticks
Flavio Javier Jarabeck
4.69 (13)
The idea of a Value Chart indicator was presented in the very good book I read back in 2020 , " Dynamic Trading Indicators: Winning with Value Charts and Price Action Profile ", from the authors Mark Helweg and David Stendahl. The idea is simple and the result is pure genius: Present candlestick Price analysis in a detrended way! HOW TO READ THIS INDICATOR Look for Overbought and Oversold levels. Of course, you will need to test the settings a lot to find the "correct" one for your approach. It
FREE
Owl Smart Levels MT5
Sergey Ermolov
4.03 (32)
Versione MT4  |  FAQ L' indicatore Owl Smart Levels è un sistema di trading completo all'interno dell'unico indicatore che include strumenti di analisi di mercato popolari come i frattali avanzati di Bill Williams , Valable ZigZag che costruisce la corretta struttura a onde del mercato, e i livelli di Fibonacci che segnano i livelli esatti di entrata nel mercato e luoghi per prendere profitti. Descrizione dettagliata della strategia Istruzioni per lavorare con l'indicatore Consulente-assistente
Benvenuti a HiperCube Renko Candles Codice sconto del 25% su Darwinex Zero: DWZ2328770MGM Questo indicatore fornisce informazioni reali sul mercato trasformandolo in Renko Candle Style. Definizione I grafici Renko sono un tipo di grafico finanziario che misura e traccia le variazioni di prezzo, utilizzando mattoni (o barre) per rappresentare i movimenti di prezzo. A differenza dei tradizionali grafici a candela, i grafici Renko non visualizzano informazioni basate sul tempo, concentrandosi esc
FREE
English VWAP Daily (Clean) is a simple and lightweight indicator that plots the classic Daily VWAP (Volume Weighted Average Price) directly on your MT5 chart. Features: Classic Daily VWAP calculation Supports real volume (if available) or tick volume Timezone offset option to match your broker’s server time Weekend merge option (merge Saturday/Sunday data into Friday) Clean version → no arrows, no alerts, only VWAP line VWAP is widely used by institutional traders to identify fair value, su
FREE
Highly configurable MFI indicator. Features: Highly customizable alert functions (at levels, crosses, direction changes via email, push, sound, popup) Multi timeframe ability Color customization (at levels, crosses, direction changes) Linear interpolation and histogram mode options Works on strategy tester in multi timeframe mode (at weekend without ticks also) Adjustable Levels Parameters: MFI Timeframe:  You can set the current or a higher timeframes for MFI. MFI Bar Shift:   you can set the
FREE
Dual RSI
Paul Conrad Carlson
3.5 (2)
Indicator alerts for Dual Relative strength index rsi. Large rsi preset at 14 is below 30 small rsi preset at 4 is below 10 for buy bullish signals . Large rsi preset are 14 is above 70 small rsi preset at 4 is above 90 for sell bearish signals . Includes mobile and terminal alerts. draws lines when alerts. This indicator can help identify extremes and then the tops or bottoms of those extremes .
FREE
Indicatore Crypto_Forex "WPR con 2 Medie Mobili" per MT5, senza ridisegno. - WPR è uno dei migliori oscillatori per lo scalping. - L'indicatore "WPR e 2 Medie Mobili" consente di visualizzare le medie mobili veloci e lente dell'oscillatore WPR. - L'indicatore offre l'opportunità di visualizzare le correzioni di prezzo molto presto. - È molto facile impostare questo indicatore tramite parametri e può essere utilizzato su qualsiasi timeframe. - È possibile visualizzare le condizioni di ingresso
Friend of the Trend: Your Trend Tracker Master the market with Friend of the Trend , the indicator that simplifies trend analysis and helps you identify the best moments to buy, sell, or wait. With an intuitive and visually striking design, Friend of the Trend analyzes price movements and delivers signals through a colorful histogram: Green Bars : Signal an uptrend, indicating buying opportunities. Red Bars : Alert to a downtrend, suggesting potential selling points. Orange Bars : Represent cons
FREE
Easy Correlations Indicator The Easy Correlations Indicator is designed to help traders analyze the relationship between two correlated instruments. By monitoring the distance between their Relative Strength Index (RSI) values, the indicator highlights situations where one instrument has moved significantly further than the other. This creates potential trading opportunities: Sell the stronger instrument (overstretched RSI) Buy the weaker instrument (lagging RSI) Because the positions are opened
FREE
Stamina HUD
Michele Todesco
STAMINA HUD – Advanced Market & Trend Dashboard (MT5) STAMINA HUD   is a professional   market information panel   designed for traders who want   clarity, speed, and control   directly on the chart. It provides a   clean heads-up display (HUD)   with essential market data and   multi-timeframe trend direction , without cluttering the chart or generating trading signals. What STAMINA HUD Shows   Current Price   Spread (in real pips)   Today High–Low range (pips)   Average D
FREE
LT Donchian Channel
Thiago Duarte
4.83 (6)
Donchian Channel is an indicator created by Richard Donchian. It is formed by taking the highest high and the lowest low of the last specified period in candles. The area between high and low is the channel for the chosen period. Its configuration is simple. It is possible to have the average between the upper and lower lines, plus you have alerts when price hits one side. If you have any questions or find any bugs, please contact me. Enjoy!
FREE
Descrizione generale Questo indicatore è una versione avanzata del classico Donchian Channel , arricchita con funzioni operative per il trading reale. Oltre alle tre linee tipiche (massimo, minimo e linea centrale), il sistema rileva i breakout e li segnala graficamente con frecce sul grafico, mostrando solo la linea opposta alla direzione del trend per semplificare la lettura. L’indicatore include: Segnali visivi : frecce colorate al breakout Notifiche automatiche : popup, push e email Filtro R
FREE
https://www.mql5.com/en/users/gedeegi/seller    The GEN indicator is a multifunctional technical analysis tool for the MetaTrader 5 (MT5) platform. It is designed to automatically identify and display key Support and Resistance (S&R) levels and detect False Breakout signals, providing clear and visual trading cues directly on your chart. Its primary goal is to help traders identify potential price reversal points and avoid market traps when the price fails to decisively break through key levels
FREE
Strifor Lot Calculator — indicatore per MetaTrader 5 che aiuta i trader a calcolare la dimensione ottimale del lotto in base a rischio e stop-loss impostati. Permette un trading più consapevole, gestione del rischio e risparmio di tempo nei calcoli manuali. Vantaggi Controllo preciso del rischio — calcolo automatico del lotto in base alla percentuale di rischio scelta Due modalità — inserimento manuale o calcolo tramite linee sul grafico Supporta strumenti popolari — coppie di valute, oro (XAUUS
FREE
Important Lines
Terence Gronowski
4.87 (23)
This indicator displays Pivot-Lines, preday high and low, preday close and the minimum and maximum of the previous hour. You just have to put this single indicator to the chart to have all these important lines, no need to setup many single indicators. Why certain lines are important Preday high and low : These are watched by traders who trade in a daily chart. Very often, if price climbs over or falls under a preday low/high there is an acceleration in buying/selling. It is a breakout out of a
FREE
Quantum Flux Oscillator
AL MOOSAWI ABDULLAH JAFFER BAQER
Master Market Trends with the Quantum Flux Oscillator Unlock a new level of trading precision with the Quantum Flux Oscillator, a professional-grade indicator for MetaTrader 5 designed to identify and capitalize on market momentum. Stop guessing the direction of the trend and start making informed decisions based on a clear, powerful, and mathematically sound tool. For just $30, you can add this indispensable oscillator to your trading arsenal. The Logic Behind the Oscillator The Quantum Flux O
This indicator is especially for the binary trading. Time frame is 1 minutes and exp time 5 or 3 minutes only. You must be use martingale 3 step. So you must put lots size is 10 % at most. You should use Mt2 trading platform to connect with my indicator to get more signal without human working. This indicator wining rate is over 80% but you may get 100% of profit by using martingale 3 step. You should use MT2 Trading Platform to connect meta trader platform and binary platform . You can get mt2
FREE
Informazioni sull'indicatore Questo indicatore si basa sulle simulazioni Monte Carlo sui prezzi di chiusura di uno strumento finanziario. Per definizione, Monte Carlo è una tecnica statistica utilizzata per modellare la probabilità di diversi risultati in un processo che coinvolge numeri casuali basati su risultati osservati in precedenza. Come funziona? Questo indicatore genera diversi scenari di prezzo per un titolo modellando i cambiamenti di prezzo casuali nel tempo sulla base dei dati stor
Reversal Candles MT5
Nguyen Thanh Cong
4.86 (7)
Introduction Reversal Candles is a cutting-edge non-repainting   forex indicator designed to predict price reversals with remarkable accuracy through a sophisticated combination of signals. Signal Buy when the last closed candle has a darker color (customizable) and an up arrow is painted below it Sell when the last closed candle has a darker color (customizable) and a down arrow is painted above it
FREE
Mitimom
Danil Poletavkin
The indicator is based on Robert Miner's methodology described in his book "High probability trading strategies" and displays signals along with momentum of 2 timeframes. A Stochastic oscillator is used as a momentum indicator. The settings speak for themselves period_1 is the current timeframe, 'current' period_2 is indicated - the senior timeframe is 4 or 5 times larger than the current one. For example, if the current one is 5 minutes, then the older one will be 20 minutes The rest of the s
FREE
ZumikoFx Trading Stats
Michal Piotr Kochanski
ZumikoFX Trading Stats - Professional Account Dashboard Overview ZumikoFX Trading Stats is a comprehensive, real-time account monitoring dashboard designed for serious traders who need complete visibility of their trading performance. This indicator displays all crucial trading statistics in an elegant, easy-to-read panel positioned in the top-right corner of your chart. Key Features Complete Account Monitoring Balance & Equity - Real-time account status with current balance and equity includ
FREE
Gli utenti di questo prodotto hanno anche acquistato
Se acquisti questo indicatore, riceverai il mio Trade Manager Professionale + EA  GRATUITAMENTE. Innanzitutto è importante sottolineare che questo sistema di trading è un indicatore Non-Repainting, Non-Redrawing e Non-Lagging, il che lo rende ideale sia per il trading manuale che per quello automatico. Corso online, manuale e download di preset. Il "Sistema di Trading Smart Trend MT5" è una soluzione completa pensata sia per i trader principianti che per quelli esperti. Combina oltre 10 indicat
SuperScalp Pro
Van Minh Nguyen
5 (6)
SuperScalp Pro – Sistema avanzato di indicatore per scalping con filtri multipli SuperScalp Pro è un sistema avanzato di indicatore per scalping che combina il classico Supertrend con molteplici filtri di conferma intelligenti. L’indicatore funziona in modo efficiente su tutti i timeframe da M1 a H4 ed è particolarmente adatto per XAUUSD, BTCUSD e le principali coppie Forex. Può essere utilizzato come sistema stand-alone o integrato in modo flessibile nelle strategie di trading esistenti. L’indi
Divergence Bomber
Ihor Otkydach
4.89 (82)
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
FX Trend MT5 NG
Daniel Stein
5 (4)
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
Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool developed based on Smart Money Concepts (SMC). It is designed to analyze market structure, price direction, reversal points, and key zones across multiple timeframes in a systematic way. The system displays Points of Interest (POI) and real-time No Repaint signals, with instant alerts when price reaches key zones or when signals occur within those zones. It functions as both an Indicator and a Signal System (2-in-1), c
ARIPoint
Temirlan Kdyrkhan
ARIPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cu
Power Candles MT5
Daniel Stein
5 (6)
Power Candles – Segnali di ingresso basati sulla forza per tutti i mercati Power Candles porta l’analisi di forza collaudata di Stein Investments direttamente sul grafico dei prezzi. Invece di reagire solo al prezzo, ogni candela viene colorata in base alla reale forza di mercato, consentendo di identificare immediatamente accumuli di momentum, accelerazioni della forza e transizioni di trend pulite. Un’unica logica per tutti i mercati Power Candles funziona automaticamente su tutti i simboli di
Game Changer Indicator mt5
Vasiliy Strukov
4.79 (19)
Game Changer è un indicatore di tendenza rivoluzionario, progettato per essere utilizzato su qualsiasi strumento finanziario, per trasformare il tuo MetaTrader in un potente analizzatore di trend. Funziona su qualsiasi intervallo temporale e aiuta a identificare i trend, segnala potenziali inversioni, funge da meccanismo di trailing stop e fornisce avvisi in tempo reale per risposte tempestive del mercato. Che tu sia un professionista esperto o un principiante in cerca di un vantaggio, questo st
Azimuth Pro
Ottaviano De Cicco
5 (4)
LAUNCH PROMO Azimuth Pro price is initially set at 299$ for the first 100 buyers. Final price will be 499$ . THE DIFFERENCE BETWEEN RETAIL AND INSTITUTIONAL ENTRIES ISN'T THE INDICATOR — IT'S THE LOCATION. Most traders enter at arbitrary price levels, chasing momentum or reacting to lagging signals. Institutions wait for price to reach structured levels where supply and demand actually shift. Azimuth Pro maps these levels automatically: swing-anchored VWAP, multi-timeframe structure lines, an
FX Power MT5 NG
Daniel Stein
5 (31)
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
Trend Screener Pro MT5
STE S.S.COMPANY
4.84 (101)
Indicatore di tendenza, soluzione unica rivoluzionaria per il trading di tendenze e il filtraggio con tutte le importanti funzionalità di tendenza integrate in un unico strumento! È un indicatore multi-timeframe e multi-valuta al 100% non ridipingibile che può essere utilizzato su tutti i simboli/strumenti: forex, materie prime, criptovalute, indici e azioni. Trend Screener è un indicatore di tendenza che segue un indicatore efficiente che fornisce segnali di tendenza a freccia con punti nel gra
Atomic Analyst MT5
Issam Kassas
4.07 (28)
Innanzitutto, vale la pena sottolineare che questo indicatore di trading non è repaint, non è ridisegno e non presenta ritardi, il che lo rende ideale sia per il trading manuale che per quello automatico. Manuale utente: impostazioni, input e strategia. L'Analista Atomico è un indicatore di azione del prezzo PA che utilizza la forza e il momentum del prezzo per trovare un miglior vantaggio sul mercato. Dotato di filtri avanzati che aiutano a rimuovere rumori e segnali falsi, e aumentare il pote
Smart Stop Indicator – Precisione intelligente dello stop-loss direttamente sul grafico Panoramica Smart Stop Indicator è la soluzione ideale per i trader che desiderano posizionare il loro stop-loss in modo chiaro e metodico, senza dover indovinare o affidarsi all’intuizione. Questo strumento combina la logica classica del price action (massimi e minimi strutturali) con un moderno riconoscimento dei breakout per identificare il prossimo livello di stop realmente logico. In trend, in range o i
Gold Entry Sniper
Tahir Mehmood
5 (4)
Gold Entry Sniper – Dashboard ATR Multi-Timeframe per Scalping e Swing Trading sull’Oro Gold Entry Sniper è un indicatore avanzato per MetaTrader 5 che offre segnali di acquisto/vendita precisi per XAUUSD e altri strumenti, basato sulla logica ATR Trailing Stop e l' analisi multi-timeframe . Caratteristiche e Vantaggi Analisi Multi-Timeframe – Visualizza trend su M1, M5, M15 in un'unica dashboard. Trailing Stop Basato su ATR – Stop dinamici che si adattano alla volatilità. Dashboard Professional
Top indicator for MT5   providing accurate signals to enter a trade without repainting! It can be applied to any financial assets:   forex, cryptocurrencies, metals, stocks, indices .  Watch  the video  (6:22) with an example of processing only one signal that paid off the indicator! MT4 version is here It will provide pretty accurate trading signals and tell you when it's best to open a trade and close it. Most traders improve their trading results during the first trading week with the help of
Grabber System MT5
Ihor Otkydach
4.82 (22)
Ti presento un eccellente indicatore tecnico: Grabber, che funziona come una strategia di trading "tutto incluso", pronta all’uso. In un solo codice sono integrati strumenti potenti per l’analisi tecnica del mercato, segnali di trading (frecce), funzioni di allerta e notifiche push. Ogni acquirente di questo indicatore riceve anche gratuitamente: L’utility Grabber: per la gestione automatica degli ordini aperti Video tutorial passo dopo passo: per imparare a installare, configurare e utilizzare
Quantum TrendPulse
Bogdan Ion Puscasu
5 (20)
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
FX Levels MT5
Daniel Stein
5 (13)
FX Levels: Supporti e Resistenze di Precisione Eccezionale per Tutti i Mercati Panoramica Rapida Cercate un modo affidabile per individuare livelli di supporto e resistenza in ogni mercato—coppie di valute, indici, azioni o materie prime? FX Levels fonde il metodo tradizionale “Lighthouse” con un approccio dinamico all’avanguardia, offrendo una precisione quasi universale. Basato sulla nostra esperienza reale con i broker e su aggiornamenti automatici giornalieri più quelli in tempo reale, FX
Innanzitutto, vale la pena sottolineare che questo Strumento di Trading è un Indicatore Non-Ridipingente, Non-Ridisegnante e Non-Laggante, il che lo rende ideale per il trading professionale. Corso online, manuale utente e demo. L'Indicatore Smart Price Action Concepts è uno strumento molto potente sia per i nuovi che per i trader esperti. Racchiude più di 20 utili indicatori in uno solo, combinando idee di trading avanzate come l'Analisi del Trader del Circolo Interno e le Strategie di Tradin
RFI levels PRO MT5
Roman Podpora
5 (2)
L'indicatore mostra accuratamente i punti di inversione e le zone di ritorno dei prezzi in cui il       Principali attori   . Vedi dove si formano le nuove tendenze e prendi decisioni con la massima precisione, mantenendo il controllo su ogni operazione. VERSION MT4     -    Rivela il suo massimo potenziale se combinato con l'indicatore   TREND LINES PRO Cosa mostra l'indicatore: Strutture di inversione e livelli di inversione con attivazione all'inizio di un nuovo trend. Visualizzazione dei li
Berma Bands
Muhammad Elbermawi
5 (8)
L'indicatore Berma Bands (BBs) è uno strumento prezioso per i trader che cercano di identificare e capitalizzare i trend di mercato. Analizzando la relazione tra il prezzo e le BBs, i trader possono discernere se un mercato è in una fase di trend o di range. Visita il [ Berma Home Blog ] per saperne di più. Le Berma Bands sono composte da tre linee distinte: la Upper Berma Band, la Middle Berma Band e la Lower Berma Band. Queste linee sono tracciate attorno al prezzo, creando una rappresentazion
Ogni giorno, molti trader affrontano una sfida comune: il prezzo sembra rompere un livello chiave, entrano in un'operazione, e poi il mercato si inverte, attivando il loro stop loss. Questo è noto come falsa rottura (false breakout) — un movimento di prezzo che supera brevemente un livello di supporto o resistenza prima di invertire la direzione. Questi movimenti possono causare l'attivazione degli stop loss prima che la direzione effettiva del prezzo diventi chiara. Nell'analisi tecnica, questo
LINEE DI TENDENZA PRO  Aiuta a capire dove il mercato sta realmente cambiando direzione. L'indicatore mostra reali inversioni di tendenza e punti in cui i principali operatori rientrano. Vedi   Linee BOS   Cambiamenti di tendenza e livelli chiave su timeframe più ampi, senza impostazioni complesse o rumore inutile. I segnali non vengono ridisegnati e rimangono sul grafico dopo la chiusura della barra. VERSIONE MT4   -   Svela il suo massimo potenziale se abbinato all'indicatore   RFI LEVELS PRO
Pointer Trend Switch — precision trend reversal indicator Pointer Trend Switch is a high-precision arrow indicator designed to detect key moments of trend reversal based on asymmetric price behavior within a selected range of bars. It identifies localized price impulses by analyzing how far price deviates from the opening level, helping traders find accurate entry points before a trend visibly shifts. This indicator is ideal for scalping, intraday strategies, and swing trading, and performs equa
Trend indicator AI mt5
Ramil Minniakhmetov
5 (15)
Trend Ai indicator è un ottimo strumento che migliorerà l'analisi di mercato di un trader combinando l'identificazione della tendenza con punti di ingresso utilizzabili e avvisi di inversione. Questo indicatore consente agli utenti di navigare nelle complessità del mercato forex con fiducia e precisione Oltre ai segnali primari, l'indicatore Ai di tendenza identifica i punti di ingresso secondari che si presentano durante i pullback o i ritracciamenti, consentendo ai trader di capitalizzare le
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
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
IX Power MT5
Daniel Stein
4.92 (12)
IX Power: Scopri approfondimenti di mercato per indici, materie prime, criptovalute e forex Panoramica IX Power è uno strumento versatile progettato per analizzare la forza di indici, materie prime, criptovalute e simboli forex. Mentre FX Power offre la massima precisione per le coppie di valute utilizzando i dati di tutte le coppie disponibili, IX Power si concentra esclusivamente sui dati di mercato del simbolo sottostante. Questo rende IX Power una scelta eccellente per mercati non correlat
L’indicatore evidenzia le zone in cui viene dichiarato interesse sul mercato , per poi mostrare la zona di accumulo degli ordini . Funziona come un book degli ordini su larga scala . Questo è l’indicatore per i grandi capitali . Le sue prestazioni sono eccezionali. Qualsiasi interesse ci sia nel mercato, lo vedrai chiaramente . (Questa è una versione completamente riscritta e automatizzata – non è più necessaria un’analisi manuale.) La velocità di transazione è un indicatore concettualmente nuo
Market Structure Order Block Dashboard MT5 è un indicatore per MT5 focalizzato sulla struttura di mercato e sui concetti ICT / Smart Money: HH/HL/LH/LL , BOS , ChoCH , oltre a Order Blocks , Fair Value Gaps (FVG) , liquidità (EQH/EQL, sweeps), sessioni / Kill Zones e un Volume Profile integrato, con una dashboard compatta di confluence. Importante: è uno strumento di analisi . Non esegue operazioni (non è un EA). Bonus per gli acquirenti Dopo l’acquisto, puoi ricevere 2 indicatori bonus (a scel
Altri dall’autore
MrGoldTrend is a sophisticated trend-following indicator designed exclusively for XAUUSD (Gold) traders on the MQL5 platform. With clear, easy-to-interpret visual signals, this indicator helps you quickly identify the prevailing trend and make informed trading decisions on the H1 timeframe. MrGoldTrend’s gold lines indicate an uptrend, while blue lines signify a downtrend, providing immediate visual clarity for trend direction. Key Features: Clear Trend Visualization : Gold lines for uptrends, b
FREE
MR-GOLD TRADER  has achieved a remarkable 1503% profit compared to the initial deposit during backtesting, making it a highly profitable Expert Advisor (EA) for trading XAUUSD (Gold) on the H4 timeframe . Starting with an initial balance of $10,000 , the EA generated a net profit of $150,305.26 over the test period from April 8, 2019 , to October 25, 2024. This EA is designed for both novice and experienced traders, offering a balanced mix of profitability, risk management, and reliability. Key
Filtro:
Nessuna recensione
Rispondi alla recensione