• Panoramica
  • Recensioni (3)
  • Commenti (2)

UT Bot Alerts by QuantNomad

4

To get access to MT4 version please click here.

  • This is the exact conversion from TradingView: "UT Bot Alerts" by "QuantNomad".
  • The screenshot shows 95% similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. It should be 100%. However I realized there are small difference between quotes even if brokers are the same. This is strange... I think the indicator logic is very data dependent. I have done quite a lot of conversions from tradingview and do not see anything wrong regarding this indicator... You can trust me. If I find out something I will update and let you know.
  • This is a light-load processing and non-repaint indicator.
  • Buffers are available for processing in EAs.
  • You can message in private chat for further changes you need.

Here is the source code of a simple Expert Advisor operating based on signals from UT Bot Alerts.

#include <Trade\Trade.mqh>
CTrade trade;
int handle_utbot=0;

input group "EA Setting"
input int magic_number=123456; //magic number
input double fixed_lot_size=0.01; // select fixed lot size

input group "UTBOT setting"
input double a = 1; //Key Vaule
input int c = 10; //ATR Period
input bool h = false; //Signals from Heikin Ashi Candles

int OnInit()
  {
   trade.SetExpertMagicNumber(magic_number);
   handle_utbot=iCustom(_Symbol, PERIOD_CURRENT, "Market/UT Bot Alerts by QuantNomad", a, c, h);
   if(handle_utbot==INVALID_HANDLE) 
   {
      Print("Indicator not found!");
      return INIT_FAILED;
   }
   return(INIT_SUCCEEDED);
  }

void OnDeinit(const int reason)
  {
   IndicatorRelease(handle_utbot);
  }

void OnTick()
  {
   if(!isNewBar()) return;
   ///////////////////////////////////////////////////////////////////
   bool buy_condition=true;
   buy_condition &= (BuyCount()==0);
   buy_condition &= (IsUTBOTBuy(1));
   if(buy_condition) 
   {
      CloseSell();
      Buy();
   }
      
   bool sell_condition=true;
   sell_condition &= (SellCount()==0);
   sell_condition &= (IsUTBOTSell(1));
   if(sell_condition) 
   {
      CloseBuy();
      Sell();
   }
  }

bool IsUTBOTBuy(int i)
{
   double array[];
   ArraySetAsSeries(array, true);
   CopyBuffer(handle_utbot, 6, i, 1, array);
   return array[0]!=EMPTY_VALUE;
}

bool IsUTBOTSell(int i)
{
   double array[];
   ArraySetAsSeries(array, true);
   CopyBuffer(handle_utbot, 7, i, 1, array);
   return array[0]!=EMPTY_VALUE;
}

int BuyCount()
{
   int buy=0;
   for(int i=0;i<PositionsTotal();i++)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_BUY) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      buy++;
   }  
   return buy;
}

int SellCount()
{
   int sell=0;
   for(int i=0;i<PositionsTotal();i++)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_SELL) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      sell++;
   }  
   return sell;
}


void Buy()
{
   double Ask=SymbolInfoDouble(_Symbol, SYMBOL_ASK);
   if(!trade.Buy(fixed_lot_size, _Symbol, Ask, 0, 0, ""))
   {
      Print("Error executing order: ", GetLastError());
      //ExpertRemove();
   }
}

void Sell()
{
   double Bid=SymbolInfoDouble(_Symbol, SYMBOL_BID);
   if(!trade.Sell(fixed_lot_size, _Symbol, Bid, 0, 0, ""))
   {
      Print("Error executing order: ", GetLastError());
      //ExpertRemove();
   }
}


void CloseBuy()
{
   for(int i=PositionsTotal()-1;i>=0;i--)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_BUY) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      if(trade.PositionClose(ticket)==false)
      {
         Print("Error closing position: ", GetLastError());
         //ExpertRemove();
      }
   }  
}

void CloseSell()
{
   for(int i=PositionsTotal()-1;i>=0;i--)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_SELL) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      if(trade.PositionClose(ticket)==false)
      {
         Print("Error closing position: ", GetLastError());
         //ExpertRemove();
      }
   }  
}

datetime timer=NULL;
bool isNewBar()
{
   datetime candle_start_time= (int)(TimeCurrent()/(PeriodSeconds()))*PeriodSeconds();
   if(timer==NULL) {}
   else if(timer==candle_start_time) return false;
   timer=candle_start_time;
   return true;
}





Recensioni 3
Anthony Arundell
98
Anthony Arundell 2024.02.25 12:30 
 

It is a very nice indicator Does exactly what I wanted and thought it would do

sigmasas
94
sigmasas 2023.09.08 14:46 
 

I have purchased 3 indicators from Yashar Seyyedin which I have thoroughly tested they work perfectly. He has his own indicators for sale in the market and also codes according to customer requirements. There are no words to describe his efficiency in the field, his punctuality, speed and communication. We are now working on a new EA the financial results of which are unbelievable. Highly recommended. Thank you Yashar

Prodotti consigliati
The Expert Advisor and the video are attached in the Discussion tab . The robot applies only one order and strictly follows the signals to evaluate the indicator efficiency. Pan PrizMA CD Phase is an option based on the Pan PrizMA indicator. Details (in Russian). Averaging by a quadric-quartic polynomial increases the smoothness of lines, adds momentum and rhythm. Extrapolation by the sinusoid function near a constant allows adjusting the delay or lead of signals. The value of the phase - wave s
Golden Spike Premium
Kwaku Bondzie Ghartey
Golden Spikes Detector Acknowledgement and Dedications:  The name of this indicator was Inspired by an Original; Mr Grant Koopman; a Knowledgeable and experienced Synthetics trader. I dedicate this indicator to Mr Grant.  Overview:   The Golden Spikes Premium is a groundbreaking trading indicator meticulously crafted for the Boom and Crash indices on the Deriv market. Tailored to meet the needs of discerning traders, this powerful tool operates exclusively on the one-minute timeframe, providing
Matreshka
Dimitr Trifonov
5 (2)
Matreshka self-testing and self-optimizing indicator: 1. Is an interpretation of the Elliott Wave Analysis Theory. 2. Based on the principle of the indicator type ZigZag, and the waves are based on the principle of interpretation of the theory of DeMark. 3. Filters waves in length and height. 4. Draws up to six levels of ZigZag at the same time, tracking waves of different orders. 5. Marks Pulsed and Recoil Waves. 6. Draws arrows to open positions 7. Draws three channels. 8. Notes support and re
Product overview  The HPL (High Probability Levels) indicator is a cutting-edge trading tool designed to identify high-probability levels in the market using imbalances. By leveraging the concept of imbalances, HPL provides traders with precise insights into potential market reversals and continuations, enhancing trading accuracy and decision-making. Key features  1. Imbalance detection : HPL automatically identifies and marks imbalances on the chart, highlighting areas where the market may seek
ATrend
Zaha Feiz
4.77 (13)
"ATREND: Come funziona e come utilizzarlo" ### Come funziona L'indicatore "ATREND" per la piattaforma MT5 è progettato per fornire ai trader robusti segnali di acquisto e vendita utilizzando una combinazione di metodologie di analisi tecnica. Questo indicatore sfrutta principalmente l'Average True Range (ATR) per la misurazione della volatilità, insieme ad algoritmi di individuazione dei trend per identificare potenziali movimenti di mercato. Lascia un messaggio dopo l'acquisto e ricevi un rega
Time And Sales Delta
Evgeny Shevtsov
5 (2)
The indicator displays the delta and the cumulative delta based on the "Time & Sales" deals list data. In addition to the standard timeframes, the indicator displays data regarding the seconds timeframes (S5, S10, S15, S20, S30) to choose from. Using the rectangle, user can select an arbitrary area in the indicator subwindow to view the ratio of the volumes of deals of buyers and sellers within this area. Indicator features: The indicator works correctly only on those trading symbols for which
Contact me for instruction, any questions! Introduction V Bottoms and Tops are popular   chart patterns   among traders due to their potential for identifying trend reversals. These patterns are characterized by sharp and sudden price movements, creating a V-shaped or inverted V-shaped formation on the   chart . By recognizing these patterns, traders can anticipate potential shifts in market direction and position themselves accordingly.  V pattern is a powerful bullish/bearish reversal pattern
Owl Smart Levels MT5
Sergey Ermolov
4.07 (28)
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
Smart Trend Cloud Indicator, Forex Trend Cloud, Trend Confirmation Tool, Cloud-based Trend Detection, Forex Cloud Pattern, Trend Analysis Cloud, Smart Cloud Trading, Cloud Trend Signals, Trend Identification Cloud, Dynamic Trend Cloud, Cloud-Based Price Trend, Smart Cloud Indicator, Trend Direction Cloud, Cloud Trend Confirmation, Trend-Following Cloud, Forex Cloud Strategy, Cloud Trend Analysis, Smart Trend Cloud Pattern, Cloud Trend Recognition, Forex Cloud Indicator, Trend Reversal Cloud, Cl
This is Gekko's Cutomized Relative Strength Index (RSI), a customized version of the famous RSI indicator. Use the regular RSI and take advantage two entry signals calculations and different ways of being alerted whenever there is potential entry or exit point. Inputs Period: Period for the RSI calculation; How will the indicator calculate entry (swing) signals: 1- Produces Exit Signals for Swings based on RSI entering and leaving Upper and Lower Levels Zones; 2- Produces Entry/Exit Signals for
Precision trading: leverage wolfe waves for accurate signals Special Offer: Purchase now to receive free bonuses worth $109! (Read more for details) Wolfe Waves are naturally occurring trading patterns present in all financial markets and represent a fight towards an equilibrium price. These patterns can develop over short and long-term time frames and are one of the most reliable predictive reversal patterns in existence, normally preceding strong and long price movements. [ Installation Guide
Over Trend MT5
Mansour Babasafary
Trend based indicator Identify trends with this indicator A simple-to-use trend indicator No complicated settings Attributes: Can be used in all symbols Can be used in all time frames Relatively high signals No complicated settings Specific to the trend Lifetime support Settings: Alarm Show Alert: By activating these settings, after receiving the signal, you will receive an alarm in Metatrader Alarm Show Notification: By activating these settings, after receiving the signal, you will receive a
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 ]
Trend and Signals MT5  indicator scans  30 trading Instruments (Forex, Metals and Indices).     It uses special algorithm on the  current market   based on   Pure Price Action   and display the overall trend and signal on the dashboard. When signals are produced the indicator sends alert and notification. Strategy for Signals This indicator uses the daily timeframe to determine the direction of the trend. The hourly timeframe is used to identify possible entries. Main trend and is determined by
Fit line supports to extrapolation next movement of market, support for buy/sell decision. Indicator using spline algorithm to extrapolation.  You can change number of spline with parameter "PointsNumber" and number of extrapolation point with "ExtrapolateBars". Eextrapolation points will be save into csv format, with prefix in parameter "PointsPrefix", and store in folder File of Data Folder.
SBAHiLo
Umri Azkia Zulkarnaen
this is an indicator to clarify seeing Low and High in the market and is very useful for facilitating those who are studying technical price action this is a type of indicator that gives color to the candlestick where the indicator is divided into 3 colors red = bearish green = Bullish Gray = base this indicator can be used on the forex market or the mt5 binary market. https://t.me/SBA_FOREX_SIGNAL
Enhance your price action strategy: inside bar breakouts at your fingertips This indicator detects inside bars of several ranges, making it very easy for price action traders to spot and act on inside bar breakouts. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Easy to use and understand Customizable color selections The indicator implements visual/mail/push/sound alerts The indicator does not repaint or backpaint An inside bar is a bar or series of bars which is/a
Optimized Trend Tracker OTT
Mohammad Taher Halimi Tabrizi
A brand new indicator from the developer of MOST (Moving Stop Loss) indicator Anıl Özekşi. Optimized Trend Tracker OTT is an indicator that provides traders to find an existing trend or in another words to see which side of the current trend we are on. We are under the effect of the uptrend in cases where the prices are above OTT , under the influence of a downward trend, when prices are below OTT it is possible to say that we are. The first parameter in the OTT indicator set by the two par
Special Channel channel indicator is a classic indicator of a family of channel indicators, the use of which allows the trader to respond in time to the price out of the channel set for it. This corridor is built on the basis of the analysis of several candles, starting from the last, as a result of which the extrema of the studied interval are determined. It is they who create the channel lines. Trading in the channel is one of the most popular Forex strategies; its simplicity allows even beg
Ichimoku Aiko MTF
Michael Jonah Randriamampionontsoa
Ichimoku Aiko MTF is a collection of technical indicators that show support and resistance levels, as well as momentum and trend direction. It is a multi-timeframe indicator so you don't need to change the chart timeframe when you want to see the ichimoku clouds on a higher timeframe.  eg. The chart timeframe is M15 and you want to see on the M15 timeframe chart the H1 ichimoku indicators (the ichimoku in Metatrader can't do that) that's why you need to use Ichimoku Aiko MTF.
This is a well-known ZigZag indicator. But it differs by the fact that its plot is based on values of the middle line which is set by a user. It can display Andrews’ Pitchfork and standard or Bobokus Fibo levels. NO REPAINTING. Parameters Period МА — middle line period. Default value is 34. Minimum value is 4. Maximum value is set at your discretion. Used to calculate price — type of price used for the midline calculations. The averaging method — type of smoothing for the middle line. Turning p
神奇九转, 顾名思义就是每当出现数字9时,行情就很大的几率会发生逆转,这时应该注意止盈。是一个很有效的指标。 在序列显示和形成过程中,一旦出现不符合触发条件的情况,则前面序列数字消失,本次九转序列结构不存在。如果连续九天都达到触发条件,九转序列结构形成,价格走势可能发生反转。 九转序列可分为上升九转结构和下降九转结构,也就是九转序列在买多和买空以及判断各种走势反转是都可以使用。 九转序列买入建仓,即下降九转序列结构形成时,价格走势将要发生转变,考虑建仓买入。 买入条件:连续出现九根K线,并且满足收盘价都低于前一根K线收盘价,当第8、9根K线满足上述条件时,九转序列形成,投资者准备买入建仓。 使用分时九转时需要注意两点: 1、极端行情时(连续上涨或下跌),九转序列失效; 2、当九转序列完全形成时,再进场操作(尤其不用刚出现数字8或9就入场,一定要完全形成之后才可以。)
Elliott Wave Trend was designed for the scientific wave counting. This tool focuses to get rid of the vagueness of the classic Elliott Wave Counting using the guideline from the template and pattern approach. In doing so, firstly Elliott Wave Trend offers the template for your wave counting. Secondly, it offers Wave Structural Score to assist to identify accurate wave formation. It offers both impulse wave Structural Score and corrective wave Structure Score. Structural Score is the rating to sh
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.
Point Black
Ignacio Agustin Mene Franco
Black Card Pack indicator 5/1 point black It has the strategy of professional bollingers where each arrow gives you a different entry signal. It is used to operate in m1 and in d1 It is used for scalping and intraday, modified for forex markets ! suitable for all pairs modified for synthetic index markets suitable for all pairs! Ideal for volatility and jumps!
Elevate Your Trading Experience with Wamek Trend Consult!   Unlock the power of precise market entry with our advanced trading tool designed to identify early and continuation trends. Wamek Trend Consult empowers traders to enter the market at the perfect moment, utilizing potent filters that reduce fake signals, enhancing trade accuracy, and ultimately increasing profitability.   Key Features: 1. Accurate Trend Identification: The Trend Consult indicator employs advanced algorithms and unparall
Dark Support Resistance  is an Indicator for intraday trading. This Indicator is programmed to identify  Support and Resistance Lines , providing a high level of accuracy and reliability. Key benefits Easily visible lines Only the most important levels will be displayed Automated adjustment for each timeframe and instrument Easy to use even for beginners Never repaints, never backpaints, Not Lag 100% compatible with Expert Advisor development All types of alerts available: Pop-up, Email, Push
PipFinite Breakout EDGE MT5
Karlo Wilson Vendiola
4.81 (93)
The Missing Edge You Need To Catch Breakouts Like A Pro. Follow a step-by-step system that detects the most powerful breakouts! Discover market patterns that generate massive rewards based on a proven and tested strategy. Unlock Your Serious Edge Important information here www.mql5.com/en/blogs/post/723208 The Reliable Expert Advisor Version Automate Breakout EDGE signals using "EA Breakout EDGE" Click Here Have access to the game changing strategy that will take your trading to the next l
Atomic Analyst MT5
Issam Kassas
4.32 (19)
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
The MACD Expert Advisor  uses the Moving Average  Convergence/Divergence indicator to determine the market trend. It uses the MACD signal to place its entries automatically. The EA also uses the moving average indicator for additional confirmation. Various settings enable the EA to be optimized for different market conditions and trend following strategies. This program can also trade on specific trading sessions to capitalize on the increase of trading volume on certain times of the day. It ca
Gli utenti di questo prodotto hanno anche acquistato
Trend Screener Pro MT5
STE S.S.COMPANY
4.89 (72)
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
Golden Trend Indicator MT5
Noha Mohamed Fathy Younes Badr
4.86 (14)
Golden Trend indicator  is The best indicator for predicting trend movement this indicator never lags and never repaints and never back paints    and give  arrow buy and sell    before the candle appear  and it will help you and  will make your trading decisions clearer its work on all currencies and  gold and crypto and all time frame This unique  indicator uses very secret algorithms to catch the  trends, so you can trade using this indicator and see the trend clear on charts  manual guide and
FX Volume MT5
Daniel Stein
4.82 (17)
FX Volume: Scopri il Vero Sentimento di Mercato dalla Prospettiva di un Broker Panoramica Rapida Vuoi portare la tua strategia di trading a un livello superiore? FX Volume ti offre informazioni in tempo reale su come i trader retail e i broker sono posizionati—molto prima che compaiano report in ritardo come il COT. Che tu miri a guadagni costanti o desideri semplicemente un vantaggio più solido sui mercati, FX Volume ti aiuta a individuare grandi squilibri, confermare i breakout e perfezionar
FX Power MT5 NG
Daniel Stein
5 (10)
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
Quantum TrendPulse
Bogdan Ion Puscasu
5 (13)
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
IX Power MT5
Daniel Stein
4.83 (6)
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
FX Levels MT5
Daniel Stein
5 (2)
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
TPSpro RFI Levels MT5
Roman Podpora
4.53 (19)
ISTRUZIONI       RUS   -   INGLESE       Si   consiglia di utilizzare con un indicatore       -       TPSpro   TENDENZA PRO -   Versione MT4         Un elemento chiave nel trading sono le zone o i livelli da cui vengono prese le decisioni di acquisto o vendita di uno strumento di trading. Nonostante i tentativi dei principali attori di nascondere la loro presenza sul mercato, lasciano inevitabilmente delle tracce. Il nostro compito era imparare a identificare queste tracce e interpretarle corre
TPSproTREND PrO MT5
Roman Podpora
4.47 (17)
TPSpro TREND PRO   è un indicatore di tendenza che analizza automaticamente il mercato, fornisce informazioni sulla tendenza e sui rispettivi cambiamenti e fornisce segnali per entrare nelle operazioni senza ridisegnare. L'indicatore utilizza ciascuna candela e la analizza separatamente. Si riferisce a vari shock al rialzo o al ribasso. Punto di ingresso preciso per il trading di valute, criptovalute, metalli, azioni e indici! Versione MT5                   Descrizione completa dell'indicatore  
RelicusRoad Pro MT5
Relicus LLC
4.78 (18)
Ora $ 147 (aumentando a $ 499 dopo alcuni aggiornamenti) - account illimitati (PC o MAC) Manuale utente di RelicusRoad + Video di formazione + Accesso al gruppo Discord privato + Stato VIP UN NUOVO MODO DI GUARDARE IL MERCATO RelicusRoad è l'indicatore di trading più potente al mondo per forex, futures, criptovalute, azioni e indici, fornendo ai trader tutte le informazioni e gli strumenti di cui hanno bisogno per rimanere redditizi. Forniamo analisi tecniche e piani di trading per aiutare og
Support And Resistance Screener è in un indicatore di livello per MetaTrader che fornisce più strumenti all'interno di un indicatore. Gli strumenti disponibili sono: 1. Screener della struttura del mercato. 2. Zona di ritiro rialzista. 3. Zona di ritiro ribassista. 4. Punti pivot giornalieri 5. Punti pivot settimanali 6. Punti pivot mensili 7. Forte supporto e resistenza basati sul modello e sul volume armonici. 8. Zone a livello di banca. OFFERTA A TEMPO LIMITATO: il supporto HV e l'indicatore
Bill Williams Advanced
Siarhei Vashchylka
5 (9)
Bill Williams Advanced is designed for automatic chart analysis using Bill Williams' "Profitunity" system. The indicator analyzes four timeframes at once. Manual (Be sure to read before purchasing) Advantages 1. Automatically analyzes the chart using the "Profitunity" system of Bill Williams. The found signals are placed in a table in the corner of the screen. 2. Equipped with a trend filter based on the Alligator indicator. Most of the system signals are recommended to be used only according t
Questo cruscotto mostra gli ultimi   pattern armonici   disponibili per i simboli selezionati, in modo da risparmiare tempo ed essere più efficienti /   versione MT4 . Indicatore gratuito:   Basic Harmonic Pattern Colonne dell'indicatore Symbol :   vengono visualizzati i simboli selezionati Trend:   rialzista o ribassista Pattern:   tipo di pattern (gartley, butterfly, bat, crab, shark, cypher o ABCD) Entry:   prezzo di ingresso SL:   prezzo di stop loss TP1:   1 prezzo di take profit TP2:
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
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
FX Dynamic: Monitora volatilità e trend con un’analisi ATR personalizzabile Panoramica FX Dynamic è uno strumento potente che sfrutta i calcoli di Average True Range (ATR) per fornire ai trader informazioni impareggiabili sulla volatilità, sia giornaliera che intraday. Impostando soglie di volatilità chiare—ad esempio 80%, 100%, 130%—puoi individuare rapidamente opportunità di profitto o ricevere avvisi quando il mercato supera i range abituali. FX Dynamic si adatta al fuso orario del tuo brok
Gold Stuff mt5
Vasiliy Strukov
4.92 (173)
Gold Stuff mt5 è un indicatore di tendenza progettato specificamente per l'oro e può essere utilizzato anche su qualsiasi strumento finanziario. L'indicatore non ridisegna e non è in ritardo. Periodo consigliato H1. Contattami subito dopo l'acquisto per avere le impostazioni e un bonus personale!   I risultati in tempo reale possono essere visualizzati qui.  Puoi ottenere una copia gratuita del nostro indicatore Strong Support e Trend Scanner, per favore scrivi in ​​privato. M   IMPOSTAZIONI
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
Matrix Arrow Indicator MT5
Juvenille Emperor Limited
5 (13)
Matrix Arrow Indicator MT5   è un trend unico 10 in 1 che segue un indicatore multi-timeframe al   100% non ridipinto   che può essere utilizzato su tutti i simboli/strumenti:   forex ,   materie prime ,   criptovalute ,   indici ,   azioni .  Matrix Arrow Indicator MT5  determinerà la tendenza attuale nelle sue fasi iniziali, raccogliendo informazioni e dati da un massimo di 10 indicatori standard, che sono: Indice di movimento direzionale medio (ADX) Indice del canale delle materie prime (CCI
Easy Breakout MT5
Mohamed Hassan
5 (3)
After your purchase, feel free to contact me for more details on how to receive a bonus indicator called VFI, which pairs perfectly with Easy Breakout for enhanced confluence!     Easy Breakout MT5   is a powerful price action trading system built on one of the most popular and widely trusted strategies among traders: the   Breakout strategy ! This indicator delivers crystal-clear Buy and Sell signals based on breakouts from key support and resistance zones. Unlike typical breakout indicators
Gartley Hunter Multi
Siarhei Vashchylka
5 (9)
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all possible timeframes. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Patterns: Gartley, Butterfly, Shark, Crab. Bat, Alternate Bat, Deep Crab, Cypher 2. Simultaneous search for patterns on dozens of trading instruments and on all possible timeframes 3. Search for patterns of all possible sizes. From the smallest to the largest 4. All fou
Royal Scalping Indicator M5
Vahidreza Heidar Gholami
5 (6)
Royal Scalping Indicator is an advanced price adaptive indicator designed to generate high-quality trading signals. Built-in multi-timeframe and multi-currency capabilities make it even more powerful to have configurations based on different symbols and timeframes. This indicator is perfect for scalp trades as well as swing trades. Royal Scalping is not just an indicator, but a trading strategy itself. Features Price Adaptive Trend Detector Algorithm Multi-Timeframe and Multi-Currency Trend Low
Trade smarter, not harder: Empower your trading with Harmonacci Patterns Special Offer: Purchase now to receive free bonuses worth $165! (Read more for details) 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 | Upd
Questo cruscotto scopre e visualizza le zone di   domanda   e   offerta   sul grafico, sia in modalità scalping che a lungo termine, a seconda della vostra strategia di trading per i simboli selezionati. Inoltre, la modalità scanner del cruscotto vi aiuta a controllare tutti i simboli desiderati in un colpo d'occhio e a non perdere nessuna posizione adatta /   versione MT4 Indicatore gratuito:   Basic Supply Demand Caratteristiche Consente di visualizzare le opportunità di trading su più  
QM Pattern Scanner MT5
Reza Aghajanpour
5 (4)
Contact me  to send you instruction and add you in group. QM (Quasimodo) Pattern is based on Read The Market(RTM) concepts. The purpose of this model is to face the big players of the market (financial institutions and banks), As you know in financial markets, big traders try to fool small traders, but RTM prevent traders from getting trapped. This style is formed in terms of price candles and presented according to market supply and demand areas and no price oscillator is used in it. RTM conc
Auto Order Block with break of structure based on ICT and Smart Money Concepts (SMC) Futures Break of Structure ( BoS )             Order block ( OB )            Higher time frame Order block / Point of Interest ( POI )    shown on current chart           Fair value Gap ( FVG ) / Imbalance   -  MTF      ( Multi Time Frame )    HH/LL/HL/LH  -  MTF      ( Multi Time Frame )  Choch  MTF      ( Multi Time Frame )  Volume Imbalance     ,  MTF          vIMB Gap’s Power of 3 Equal High / Low’s  
Dark Absolute Trend   is an Indicator for intraday trading. This Indicator is based on   Trend Following  strategy but use also candlestick patterns and Volatility. We can enter in good price with this Indicator, in order to follow the main trend on the current instrument. It is advised to use low spread ECN brokers. This Indicator does   Not repaint   and   N ot lag . Recommended timeframes are M5, M15 and H1. Recommended working pairs: All. I nstallation and  Update Guide   -  Troubleshooting
CONTACT US  after purchase to get the Indicator Manual. Try Now—Limited 50% Discount for First 10 Buyers! Download the  Metatrader 4 Version Due to regulatory restrictions, our service is unavailable in certain countries such as India, Pakistan, and Bangladesh. William Delbert Gann (W.D. Gann) was an exceptional market analyst, whose trading technique was based on a complex blend of mathematics, geometry, astrology, and ancient mathematics which proved to be extremely accurate. A Note from t
Suleiman Levels
Suleiman Alhawamdah
5 (2)
Nota importante: L'immagine mostrata negli screenshot è dei miei 2 indicatori, l'indicatore "Suleiman Levels" e l'indicatore "RSI Trend V". Ho raccomandato di usarlo insieme all'indicatore "RSI Trend V1", in particolare per confermare e far corrispondere la nuvola colorata e per i segnali a freccia, oltre all'importanza dell'indicatore Fibonacci e dei suoi livelli eccezionali allegati : https://www.mql5.com/en/market/product/132080 L'indicatore "Suleiman Levels" è uno strumento di analisi profe
Gold Trend 5
Sergei Linskii
5 (1)
Gold Trend - è un buon indicatore tecnico azionario. L'algoritmo dell'indicatore analizza il movimento del prezzo di un asset e riflette la volatilità e le potenziali zone di ingresso. I migliori segnali dell'indicatore: - Per VENDERE = istogramma rosso + puntatore SHORT rosso + freccia di segnale gialla nella stessa direzione. - Per l'ACQUISTO = istogramma blu + puntatore LONG blu + freccia di segnale acquatica nella stessa direzione. Vantaggi dell'indicatore: 1. L'indicatore produce seg
Altri dall’autore
Hull Suite By Insilico
Yashar Seyyedin
5 (1)
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Hull Suite" By "Insilico". - The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #include <Trade\Trade.mqh> CTrade tra
To get access to MT5 version please click here . - This is a conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. note: Color filled areas and colored candles are not supported in MT4 version. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; inp
To get access to MT4 version please click here . This is the exact conversion from TradingView: "Supertrend" by " KivancOzbilgic ". The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. This is a light-load processing and non-repaint indicator. You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Supertrend . #include <Trade\Trade.mqh> CTrade tra
To get access to MT5 version please click here . This is the exact conversion from TradingView: "SwingArm ATR Trend Indicator" by " vsnfnd ". The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. Also known as : "Blackflag FTS" by "Jose Azcarate" This is a light-load processing and non-repaint indicator. All input options are available except multi time frame Buffers are available for processing in EAs. Extra option to show buy and sell
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing
B Xtrender
Yashar Seyyedin
To download MT4 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
This is the Chandelier Exit trend indicator applied to heiken ashi candles based on "G TREND GUNBOT" by "LUIS_GANDATA_G_TREND" on tradingview. The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms.(make sure to disable heiken ashi mode to get the same results as the screenshot.) Heiken ashi candles filter out many of the chops and therefore as an input to Chandelier Exit you achieve well filtered Buy and Sell signals. Also you can choose
FREE
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. Strategy description - Detect trend based on GoldTrader rules. - Enter in both direction as much as needed to achieve acceptable amount of profit. - Although this is a martingale bot it is very unlikely to loose your money, because: ==> the money management rules are safe and low risk. ==> entries
FREE
To download MT5 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. This is a sample EA code that operates based on bullish and bearish linear regression candles . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input string     Risk_Management= "" ; input double fixed_lot_size=
To download MT4 version please click here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
GoldTrader
Yashar Seyyedin
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. martingale version is available here . Strategy description - Detect trend based on EMA18-EMA50-SMA200 alignment in three time frames: M15, H1, H4 - Trade in trend direction and exit when above alignment is broken. - The bot is tuned to trade XAUUSD(Gold). - The bot output is break even in rangin
FREE
Vortex Indicator
Yashar Seyyedin
5 (1)
To download MT4 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
To download MT5 version please click  here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
To download MT4 version please click here . Metatrader users are limited to few moving average types. Therefor I decided to create a package consisting of all MAs I knew. This package suggests 12 different types: { SMA, EMA, DEMA, TEMA, WMA, VWMA, SMMA(RMA), HullMA, LSMA, ALMA, SSMA, TMA } You can configure them via input tab. This is a non-repaint indicator with light load. To implement them I referred to standard  libraries of pine script.
FREE
MacroTrendTrader
Yashar Seyyedin
This is MacroTrendTrader. It trades in DAILY time frame even if you run it on lower time frames. It opens/closes trades once per day at a specific time that you choose via input tab: - "param(1-5)" are optimization parameters. - "Open/Close Hour" is set via input tab. Make sure to choose this to be away from nightly server shutdown. - "high risk" mode if chosen, sets a closer stop loss level. Therefore higher lot sizes are taken.  This is a light load EA from processing point of view. Calculatio
FREE
To download MT5 version please click  here . This is the exact conversion from TradingView: "WaveTrend [LazyBear]" By "zeusuk3". One of the coolest indicators out there to detect overbought and oversold zones. It can be used as a part of more complicated strategy and for confirming a potential trade setup. There are buffers to use in EAs also. The indicator is loaded light and non-repaint. - You can message in private chat for further changes you need. Thanks for downloading 
To download MT5 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
For MT5 version please click here . This is the exact conversion from TradingView: "Average True Range Stop Loss Finder" By "veryfid". - This indicator implements a deviation channel. - The channel determines trend direction as well as stop loss placement. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
For MT4 version please click here . This is the exact conversion from TradingView: "Range Filter 5min" By "guikroth". - This indicator implements Alerts as well as the visualizations. - Input tab allows to choose Heiken Ashi or Normal candles to apply the filter to. It means it is a (2 in 1) indicator. - This indicator lets you read the buffers for all data on the window. For details on buffers please message me. - This is a non-repaint and light processing load indicator. - You can message in p
To download MT4 version please click here . - This is the exact conversion from TradingView: "Trend Direction Force Index - TDFI [wm]" By "causecelebre". - The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. - This indicator uses multiple levels of averaging to detect trend strength. - You can optimize filter low and filter high levels to achieve best results. - You have access to buffers to use in EAs. - This is a light-load processin
TRAMA by LuxAlgo
Yashar Seyyedin
5 (1)
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Trend Regularity Adaptive Moving Average","TRAMA" By " LuxAlgo ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Stochastic Momentum Index" By "UCSgears". - This is a popular version of stochastic oscillator on tradingview. - This is a light-load processing and non-repaint indicator. - Buffers are available for the lines on chart. - You can message in private chat for further changes you need. Thanks for downloading
For MT4 version please click  here . - This is the exact conversion from TradingView source: "Squeeze Momentum Indicator" By "LazyBear". - This is a non-repaint and light processing load indicator. - Buffers and inputs are available for use in EAs and optimization purposes. - You can message in private chat for further changes you need. Thanks for downloading...
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Twin Range Filter" by "colinmck". - The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. - This is a light-load processing and non-repaint indicator. - All input options are available.  - Buffers are available for processing in EAs. - You can message in private chat for further changes you need. Here is the sample code of EA that operates
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Twin Range Filter" by "colinmck". - The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. - This is a light-load processing and non-repaint indicator. - All input options are available.  - Buffers are available for processing in EAs. - You can message in private chat for further changes you need. Here is the code a sample EA that operated b
To download the MT5 version of Donchian Trend Ribbon please click here . You may also check this link . This is a conversion from TradingView: "Donchian Trend Ribbon" By "LonesomeTheBlue". This is a light-load processing and non-repaint indicator. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks for downloading
To get access to MT5 version please click   here . This is the exact conversion from TradingView: "Hammer & ShootingStar Candle Detector" by "MoriFX". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
FREE
To download MT5 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
To download MT5 version please click here . Metatrader users are limited to few moving average types. Therefor I decided to create a package consisting of all MAs I knew. This package suggests 12 different types: { SMA, EMA, DEMA, TEMA, WMA, VWMA, SMMA(RMA), HullMA, LSMA, ALMA, SSMA, TMA } You can configure them via input tab. This is a non-repaint indicator with light load. To implement them I referred to   standard  libraries of pine script.
FREE
To download MT4 version please click here . This is the exact conversion from TradingView: "RSI versus SMA" By "JayRogers". This indicator lets you read the buffers for all Lines on chart.  Note: This is an indicator, Not an expert. Meaning It does not take trades. If you want the EA please contact via message. You can easily use the indicator to understand the logic behind trades that the TradingView strategy takes. The strategy is profitable if this indicator is applied to the right symbol at
FREE
Filtro:
Alex Petrovski
36
Alex Petrovski 2025.02.03 07:17 
 

.

Yashar Seyyedin
46919
Risposta dello sviluppatore Yashar Seyyedin 2025.02.03 08:05
Hello. Thanks for sharing your review. However best approach is sharing details of your experience with the product. This way you help other customers to decide based on concrete evidence while you will give the Seller an opportunity to put forth his/her comments also.
Anthony Arundell
98
Anthony Arundell 2024.02.25 12:30 
 

It is a very nice indicator Does exactly what I wanted and thought it would do

Yashar Seyyedin
46919
Risposta dello sviluppatore Yashar Seyyedin 2024.02.25 12:58
Thanks for the positive and kind review. Wish you safe trades.
sigmasas
94
sigmasas 2023.09.08 14:46 
 

I have purchased 3 indicators from Yashar Seyyedin which I have thoroughly tested they work perfectly. He has his own indicators for sale in the market and also codes according to customer requirements. There are no words to describe his efficiency in the field, his punctuality, speed and communication. We are now working on a new EA the financial results of which are unbelievable. Highly recommended. Thank you Yashar

Yashar Seyyedin
46919
Risposta dello sviluppatore Yashar Seyyedin 2023.09.08 15:42
Thanks for the positive review. I enjoy working with people with new ideas.
Rispondi alla recensione