• Panoramica
  • Recensioni
  • Commenti (4)
  • Novità

UT Bot Alerts by QuantNomad MT4

To get access to MT5 version please click here.

  • This is the exact conversion from TradingView: "UT Bot Alerts" by "QuantNomad".
  • This is a light-load processing and non-repaint indicator.
  • Buffers are available for processing in EAs.
  • Candle color option is not available.
  • 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.

#property strict

input string EA_Setting="";
input int magic_number=1234;
input double fixed_lot_size=0.01; // select fixed lot size

input string    UTBOT_Setting="";
input double a = 2; //Key Vaule
input int c = 11; //ATR Period
bool h = false; //Signals from Heikin Ashi Candles

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 index)
{
   double value_buy=iCustom(_Symbol, PERIOD_CURRENT,
    "Market\\UT Bot Alerts by QuantNomad MT4",
    a, c, h, 6, index);
   return value_buy!=EMPTY_VALUE;
}

bool IsUTBOTSell(int index)
{
   double value_sell=iCustom(_Symbol, PERIOD_CURRENT,
    "Market\\UT Bot Alerts by QuantNomad MT4",
    a, c, h, 7, index);
   return value_sell!=EMPTY_VALUE;
}

int BuyCount()
{
   int counter=0;
   for(int i=0;i<OrdersTotal();i++)
   {
      if(OrderSelect(i, SELECT_BY_POS)==false) continue;
      if(OrderSymbol()!=_Symbol) continue;
      if(OrderMagicNumber()!=magic_number) continue;
      if(OrderType()==OP_BUY) counter++;
   }
   return counter;
}

int SellCount()
{
   int counter=0;
   for(int i=0;i<OrdersTotal();i++)
   {
      if(OrderSelect(i, SELECT_BY_POS)==false) continue;
      if(OrderSymbol()!=_Symbol) continue;
      if(OrderMagicNumber()!=magic_number) continue;
      if(OrderType()==OP_SELL) counter++;
   }
   return counter;
}

void Buy()
{
   if(OrderSend(_Symbol, OP_BUY, fixed_lot_size, Ask, 3, 0, 0, NULL, magic_number, 0, clrNONE)==-1)
   {
      Print("Error Executing Order: ", GetLastError());
      //ExpertRemove();
   }
}

void Sell()
{
   if(OrderSend(_Symbol, OP_SELL, fixed_lot_size, Bid, 3, 0, 0, NULL, magic_number, 0, clrNONE)==-1)
   {
      Print("Error Executing Order: ", GetLastError());
      //ExpertRemove();
   }
}

void CloseBuy()
{
   for(int i=OrdersTotal()-1;i>=0;i--)
   {
      if(OrderSelect(i, SELECT_BY_POS)==false) continue;
      if(OrderSymbol()!=_Symbol) continue;
      if(OrderMagicNumber()!=magic_number) continue;
      if(OrderType()==OP_BUY) 
         if(OrderClose(OrderTicket(), OrderLots(), Bid, 3, clrNONE)==false)
         {
            Print("Error Closing Position: ", GetLastError());
         }
   }
}

void CloseSell()
{
   for(int i=OrdersTotal()-1;i>=0;i--)
   {
      if(OrderSelect(i, SELECT_BY_POS)==false) continue;
      if(OrderSymbol()!=_Symbol) continue;
      if(OrderMagicNumber()!=magic_number) continue;
      if(OrderType()==OP_SELL) 
         if(OrderClose(OrderTicket(), OrderLots(), Ask, 3, clrNONE)==false)
         {
            Print("Error Closing Position: ", GetLastError());
         }
   }
}

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;
}


Prodotti consigliati
VR Cub
Vladimir Pastushak
VR Cub è un indicatore per ottenere punti di ingresso di alta qualità. L'indicatore è stato sviluppato per facilitare i calcoli matematici e semplificare la ricerca dei punti di ingresso in una posizione. La strategia di trading per la quale è stato scritto l'indicatore ha dimostrato la sua efficacia per molti anni. La semplicità della strategia di trading è il suo grande vantaggio, che consente anche ai trader alle prime armi di commerciare con successo con essa. VR Cub calcola i punti di apert
Master Scalping M1 è un indicatore innovativo che utilizza un algoritmo per determinare il trend in modo rapido e preciso. L'indicatore calcola il tempo di apertura e chiusura delle posizioni, gli algoritmi dell'indicatore consentono di trovare i momenti ideali per entrare in un trade (acquistare o vendere un asset), il che aumenta il successo delle transazioni per la maggior parte dei trader. Vantaggi dell'indicatore: Facile da usare, non sovraccarica il grafico con informazioni inutili. Può es
Noize Absorption Index MT4
Ekaterina Saltykova
5 (1)
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. S
Fibonacci retracement and extension line drawing tool Fibonacci retracement and extended line drawing tool for MT4 platform is suitable for traders who use  golden section trading Advantages: There is no extra line, no too long line, and it is easy to observe and find trading opportunities Trial version: https://www.mql5.com/zh/market/product/35884 Main functions: 1. Multiple groups of Fibonacci turns can be drawn directly, and the relationship between important turning points
The indicator displays the data of the Stochastic oscillator from a higher timeframe on the chart. The main and signal lines are displayed in a separate window. The stepped response is not smoothed. The indicator is useful for practicing "manual" forex trading strategies, which use the data from several screens with different timeframes of a single symbol. The indicator uses the settings that are identical to the standard ones, and a drop-down list for selecting the timeframe. Indicator Parame
Forex Gump
Andrey Kozak
2.83 (6)
Forex Gump is a fully finished semi-automatic trading system. In the form of arrows, signals are displayed on the screen for opening and closing deals. All you need is to follow the instructions of the indicator. When the indicator shows a blue arrow, you need to open a buy order. When the indicator shows a red arrow, you need to open a sell order. Close orders when the indicator draws a yellow cross. In order to get the most effective result, we recommend using the timeframes H1, H4, D1. There
Trendiness Index
Libertas LLC
5 (3)
"The trend is your friend" is one of the best known sayings in investing, because capturing large trendy price movements can be extremely profitable. However, trading with the trend is often easier said than done, because many indicators are based on price reversals not trends. These aren't very effective at identifying trendy periods, or predicting whether trends will continue. We developed the Trendiness Index to help address this problem by indicating the strength and direction of price trend
Gvs Undefeated Trend   indicator is designed for trend and signal trading. This indicator generates trend signals.  It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators.  You can only trade with this indicator. The generated signals are displayed on the graphical screen.  Thanks to the alert features you ca
Strong Retracement Points Pro demo edition! SRP (Strong Retracement/Reversal Points) is a powerful and unique support and resistance indicator. It displays the closest important levels which we expect the price retracement/reversal! If all level are broken from one side, it recalculates and draws new support and resistance levels, so the levels might be valid for several days depending on the market! If you are still hesitating to start using this wonderful tool, you can check this link to see h
To get access to MT5 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
MACDivergence MTF
Pavel Zamoshnikov
4.29 (7)
Advanced ideas of the popular MACD indicator: It detects and displays classic and reverse divergences (three methods of detecting divergences). It uses different color to highlight an uptrend and a downtrend. Two methods of determining a trend: а) MACD crosses the 0 level (classic signal); б) MACD crosses its own average (early signal). This is a multi-timeframe indicator: it can display MACD data from other timeframes. Two methods of drawing: classic histogram and line. It generates sound and v
Cosmic Diviner X Planet
Olena Kondratenko
4 (2)
This unique multi-currency strategy simultaneously determines the strength of trends and market entry points, visualizing this using histograms on the chart. The indicator is optimally adapted for trading on the timeframes М5, М15, М30, Н1. For the convenience of users, the indicator renders the entry point (in the form of an arrow), recommended take profit levels (TP1, TP2 with text labels) and the recommended Stop Loss level. The take profit levels (TP1, TP2) are automatically calculated for
PipFinite Exit EDGE
Karlo Wilson Vendiola
4.89 (160)
Did You Have A Profitable Trade But Suddenly Reversed? In a solid strategy, exiting a trade is equally important as entering. Exit EDGE helps maximize your current trade profit and avoid turning winning trades to losers. Never Miss An Exit Signal Again Monitor all pairs and timeframes in just 1 chart www.mql5.com/en/blogs/post/726558 How To Trade You can close your open trades as soon as you receive a signal Close your Buy orders if you receive an Exit Buy Signal. Close your Sell orde
ZhiBiCCI MT4
Qiuyang Zheng
5 (1)
[ZhiBiCCI] indicators are suitable for all cycle use, and are also suitable for all market varieties. [ZhiBiCCI] Green solid line is a reversal of bullish divergence. The green dotted line is a classic bullish divergence. [ZhiBiCCI] The solid line to the red is a reverse bearish divergence. The red dotted line is a classical bearish divergence. [ZhiBiCCI] can be set in the parameters (Alert, Send mail, Send notification), set to (true) to send instant signals to the alarm window, email, in
Quantum Heiken Ashi PRO MT4
Bogdan Ion Puscasu
4.43 (7)
Presentazione del       Grafici   Quantum Heiken Ashi PRO Progettate per fornire informazioni chiare sulle tendenze del mercato, le candele Heiken Ashi sono rinomate per la loro capacità di filtrare il rumore ed eliminare i falsi segnali. Dì addio alle confuse fluttuazioni dei prezzi e dai il benvenuto a una rappresentazione grafica più fluida e affidabile. Ciò che rende il Quantum Heiken Ashi PRO davvero unico è la sua formula innovativa, che trasforma i dati tradizionali delle candele in barre
This is a new strategy for SUPPLY DEMAND areas It is based on a calculation using the tick volume to detect the big price action in market for both bear /bull actions this smart volume action candles are used to determine the supply and demand areas prices in between main supply and demand lines indicate sideway market  up arrows will be shown when prices moves above the main supply and the secondary supply lines Down arrows will be shown when prices moves below the main demand and the secondary
The Th3Eng PipFinite indicator is based on a very excellent analysis of the right trend direction with perfect custom algorithms. It show the true direction and the best point to start trading. With StopLoss point and Three Take Profit points. Also it show the right pivot of the price and small points to order to replace the dynamic support and resistance channel, Which surrounds the price. And Finally it draws a very helpful Box on the left side on the chart includes (take profits and Stop loss
Owl smart levels
Sergey Ermolov
4.63 (54)
Versione MT5  |  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-
Daily Candle Predictor è un indicatore che prevede il prezzo di chiusura di una candela. L'indicatore è destinato principalmente all'uso sui grafici D1. Questo indicatore è adatto sia per il trading forex tradizionale che per il trading di opzioni binarie. L'indicatore può essere utilizzato come sistema di trading autonomo o può fungere da aggiunta al sistema di trading esistente. Questo indicatore analizza la candela corrente, calcolando alcuni fattori di forza all'interno del corpo della cande
Key level wedge
Presley Annais Tatenda Meck
4.86 (7)
The Key level wedge indicator automatically draws rising wedge pattern and falling wedge pattern for you on the chart. This pattern is really good when used as a confirmation entry at key support & resistance, supply & demand and reversal zones. Advantages  The Key level wedge block DOES NOT RE-PAINT, giving you confidence when a signal appears and also helps when looking back.  The Key level wedge includes an on/off button on the chart to easily keep the charts clean after analysis by jus
Alpha Trend
Evgeny Belyaev
3.33 (3)
Alpha Trend is a trend indicator for the MetaTrader 4 platform; it has been developed by a group of professional traders. The Alpha Trend indicator finds the most probable tendency reversal points, which allows making trades at the very beginning of a trend. This indicator features notifications, which are generated whenever a new signal appears (alert, email, push-notification). This allows you to open a position in a timely manner. Alpha Trend does not redraw, which makes it possible to evalua
Nuova versione più accurata dell'indicatore Xmaster. Più di 200 trader di tutto il mondo hanno condotto più di 15.000 test di diverse combinazioni di questo indicatore sui loro PC per ottenere la formula più efficace e precisa. E qui ti presentiamo l'indicatore "Xmaster formula indicator forex no repaint", che mostra segnali accurati e non ridipinge. Questo indicatore invia anche segnali al trader tramite e-mail e push. Con l'arrivo di ogni nuovo tick, analizza costantemente il mercato in base
Super Gator
Agustinus Biotamalo Lumbantoruan
This indi shows the following 1. Supertrend 2. Alligator (Not a regular alligator) 3. ZigZag 4. Moving Average 5. Trend Continuation/Mini correction Signal (plotted in X) (See screenshots in green background color 6. Early Signal Detection (See screenshots in green background color) You may treat Alligator as the lagging indicator The leading indicator is the supertrend. The zig zag is based on the leading indicator where it gets plotted when the leading indicator got broken to the opposite.
TWO PAIRS SQUARE HEDGE METER INDICATOR Try this brilliant 2 pairs square indicator It draws a square wave of the relation between your two inputs symbols when square wave indicates -1 then it is very great opportunity to SELL pair1 and BUY Pair2 when square wave indicates +1 then it is very great opportunity to BUY pair1 and SELL Pair2 the inputs are : 2 pairs of symbols         then index value : i use 20 for M30 charts ( you can try other values : 40/50 for M15 , : 30 for M30 , : 10 for H1 ,
Monster Harmonic Indicator
Paul Geirnaerdt
4.61 (31)
Monster Harmonics Indicator is a harmonic pattern indicator. It recognizes Gartley, Bat, Crab, Butterfly, Cypher, White Swan, Black Swan, Shark and several other 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
Laguerre SuperTrend Clouds adds an Adaptive Laguerre averaging algorithm and alerts to the widely popular SuperTrend indicator. As the name suggests, Laguerre SuperTrend Clouds (LSC) is a trending indicator which works best in trendy (not choppy) markets. The SuperTrend is an extremely popular indicator for intraday and daily trading, and can be used on any timeframe. Incorporating Laguerre's equation to this can facilitate more robust trend detection and smoother filters. The LSC uses the impro
Kangaroo Tailz
Brenden Caleb Luebeck
Looking for an indicator that identifies high-probability price action patterns? Love counter-trend trading? The Kangaroo Tailz indicator might be just for you. This indicator is meant to be used as a reversal detector. I personally would rather enter a position at the beginning of a trend rather than catch the last couple of moves. This indicator does a good job of alerting when price may reverse by identifying price action patterns that occur frequently in markets. Even though this indicator i
Introducing the "Magic Trades" for MetaTrader 4 – your ultimate tool for precision trading in dynamic markets. This innovative indicator revolutionizes the way you perceive market trends by harnessing the power of advanced analysis to detect subtle changes in character, paving the way for optimal trading opportunities. The Magic Trades Indicator is designed to empower traders with insightful entry points and well-defined risk management levels. Through its sophisticated algorithm, this indica
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
To get access to MT5 version please click here . This is the exact conversion from TradingView: "[SHK] Schaff Trend Cycle (STC)" by "shayankm". This is a light-load processing indicator. This is a non-repaint indicator. Buffers are available for processing in EAs. All input fields are available. You can message in private chat for further changes you need. Thanks for downloading
Gli utenti di questo prodotto hanno anche acquistato
Gann Made Easy
Oleg Rodin
4.93 (57)
Gann Made Easy è un sistema di trading Forex professionale e facile da usare che si basa sui migliori principi del trading utilizzando la teoria di mr. WD Gann. L'indicatore fornisce segnali ACQUISTA e VENDI accurati, inclusi i livelli di Stop Loss e Take Profit. Puoi fare trading anche in movimento utilizzando le notifiche PUSH. Vi prego di contattarmi dopo l'acquisto! Condividerò i miei consigli di trading con te e fantastici indicatori bonus gratuitamente! Probabilmente hai già sentito parlar
Scopri il segreto per il trading Forex di successo con il nostro indicatore MT4 personalizzato! Ti sei mai chiesto come raggiungere il successo nel mercato Forex, guadagnando costantemente profitti minimizzando il rischio? Ecco la risposta che hai cercato! Permettici di presentare il nostro indicatore MT4 proprietario che rivoluzionerà il tuo approccio al trading. Versatilità unica Il nostro indicatore è appositamente progettato per gli utenti che preferiscono le formazioni di candele Ren
Atomic Analyst
Issam Kassas
5 (3)
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
ATTUALMENTE SCONTATO DEL 26% La soluzione migliore per ogni principiante o trader esperto! Questo indicatore è uno strumento di trading unico, di alta qualità e conveniente perché abbiamo incorporato una serie di caratteristiche proprietarie e una nuova formula. Con un solo grafico è possibile leggere la forza delle valute per 28 coppie Forex! Immaginate come migliorerà il vostro trading perché sarete in grado di individuare l'esatto punto di innesco di una nuova tendenza o di un'opportunit
Gold Stuff
Vasiliy Strukov
4.89 (254)
Gold Stuff è 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. Su di esso l'indicatore funziona in modo completamente automatico Expert Advisor EA Gold Stuff. Lo trovi nel mio profilo. Contattami subito dopo l'acquisto per avere le impostazioni e un bonus personale!   IMPOSTAZIONI Disegna freccia - acceso spento. disegnando frecce sul grafi
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 Trading
TPSpro RFI Levels
Roman Podpora
5 (13)
A key element in trading is zones or levels from which decisions to buy or sell a trading instrument are made. Despite attempts by major players to conceal their presence in the market, they inevitably leave traces. Our task was to learn how to identify these traces and interpret them correctly. Reversal First Impulse levels (RFI)   -  Version MT5                INSTRUCTIONS                 RUS                 ENG                                       R ecommended to use with an indicator   -  
ON Trade Optuma Astro
Abdullah Alrai
5 (4)
Presentazione dell'Indicatore Astronomico per MT4: Il tuo compagno di trading celeste definitivo Sei pronto a elevare la tua esperienza di trading a livelli celesti? Non cercare oltre, il nostro rivoluzionario Indicatore Astronomico per MT4 è qui. Questo strumento innovativo va oltre gli indicatori di trading tradizionali, sfruttando algoritmi complessi per offrirti intuizioni astronomiche senza pari e calcoli di precisione. Un universo di informazioni a portata di mano: Ammira un pannello compl
Trend Screener
STE S.S.COMPANY
4.83 (86)
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
Presentazione       Quantum Trend Sniper Indicator   , l'innovativo indicatore MQL5 che sta trasformando il modo in cui identifichi e scambi le inversioni di tendenza! Sviluppato da un team di trader esperti con un'esperienza di trading di oltre 13 anni,       Indicatore Quantum Trend Sniper       è progettato per spingere il tuo viaggio di trading verso nuove vette con il suo modo innovativo di identificare le inversioni di tendenza con una precisione estremamente elevata. *** Acquista Quant
TPSproTREND PrO
Roman Podpora
5 (15)
TPSpro TRENDPRO  - is a trend indicator that automatically analyzes the market and provides information about the trend and each of its changes, as well as giving signals for entering trades without redrawing! The indicator uses each candle, analyzing them separately. referring to different impulses - up or down impulse. Exact entry points into transactions for currencies, crypto, metals, stocks, indices!  -  Version MT5               DETAILED DESCRIPTION        /       TRADING SETUPS           
Attualmente 20% di sconto! La soluzione migliore per ogni principiante o trader esperto! Questo software per cruscotti funziona su 28 coppie di valute. Si basa su 2 dei nostri indicatori principali (Advanced Currency Strength 28 e Advanced Currency Impulse). Offre un'ottima panoramica dell'intero mercato Forex. Mostra i valori di forza delle valute avanzate, la velocità di movimento delle valute e i segnali per 28 coppie Forex in tutti i (9) timeframe. Immaginate come migliorerà il vostro t
Break and Retest
Mohamed Hassan
4.56 (9)
‍You can visually backtest Break & Retest to see how it behaved in the past!     Manual guide:   Click here $65  for only 1  copy left! Next price is $120 .  This Indicator only places quality trades when the market is really in your favor with a clear break and retest. Patience is key with this price action strategy! Recommended timeframes: M1 for Scalpers.  M15 for Intraday traders. H1 & H4 for Day traders. Other timeframes are also excellent! After many months of hard w
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
CURRENTLY 26% OFF !! Best Solution for any Newbie or Expert Trader! This indicator is a unique, high quality and affordable trading tool because we have incorporated a number of proprietary features and a new formula. With this update, you will be able to show double timeframe zones. You will not only be able to show a higher TF but to show both, the chart TF, PLUS the higher TF: SHOWING NESTED ZONES. All Supply Demand traders will love it. :) Important Information Revealed Maximize the potenti
Scalper Vault
Oleg Rodin
5 (28)
Scalper Vault è un sistema di scalping professionale che ti fornisce tutto il necessario per scalping di successo. Questo indicatore è un sistema di trading completo che può essere utilizzato dai trader di forex e opzioni binarie. L'intervallo di tempo consigliato è M5. Il sistema fornisce segnali di freccia accurati nella direzione della tendenza. Ti fornisce anche i segnali più alti e più bassi e i livelli di mercato di Gann. Gli indicatori forniscono tutti i tipi di avvisi, comprese le notifi
on free demo press zoom out button to see back.. cnt number is bar numbers.you can change up to 3000 related to chart bars numbers. minimum value is 500. there is g value set to 10000. sometimes need to lower or increase. and if they need can make small change on it. this indicator almost grail,no repaint and all pairs ,all timeframe indicator. there is red and blue histograms. if gold x sign comes on red histogram that is sell signal. if blue x sign comes on blue histogram that is buy signal.
Presentazione dell'indicatore Miraculous Forex: Libera il potere del trading preciso Sei stanco di cercare il miglior indicatore Forex che fornisca risultati eccezionali su tutti i timeframe? Non cercare oltre! L'indicatore Miraculous Forex è qui per rivoluzionare la tua esperienza di trading e portare i tuoi profitti a nuove vette. Basato su tecnologia all'avanguardia e anni di sviluppo accurato, l'indicatore Miraculous Forex si distingue come l'apice di potenza e precisione nel mercato delle v
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
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 prof
Currency Strength Wizard è un indicatore molto potente che ti fornisce una soluzione all-in-one per un trading di successo. L'indicatore calcola la potenza di questa o quella coppia forex utilizzando i dati di tutte le valute su più intervalli di tempo. Questi dati sono rappresentati in una forma di indice di valuta facile da usare e linee elettriche di valuta che puoi utilizzare per vedere il potere di questa o quella valuta. Tutto ciò di cui hai bisogno è collegare l'indicatore al grafico che
Il sistema di trading tecnico delle frecce BB è stato sviluppato per prevedere punti inversi per prendere decisioni al dettaglio. L'attuale situazione di mercato è analizzata dall'indicatore e strutturata per diversi criteri: l'aspettativa di momenti di inversione, potenziali punti di svolta, segnali di acquisto e vendita. L'indicatore non contiene informazioni in eccesso, ha un'interfaccia comprensibile visiva, che consente ai trader di prendere decisioni ragionevoli. Tutte le frecce sembr
Vi presentiamo ON Trade Waves Patterns Harmonic Elliot Wolfe, un indicatore avanzato progettato per rilevare vari tipi di pattern sul mercato utilizzando metodi sia manuali che automatici. Ecco come funziona: Pattern Armonici: Questo indicatore è in grado di individuare pattern armonici che appaiono sul vostro grafico. Questi pattern sono fondamentali per i trader che praticano la teoria del trading armonico, come descritta nel libro di Scott Carney "Harmonic Trading vol 1 & 2". Che li disegniat
GOLD Impulse with Alert
Bernhard Schweigert
4.56 (9)
Questo indicatore è una super combinazione dei nostri 2 prodotti Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics . Funziona per tutti i time frame e mostra graficamente l'impulso di forza o debolezza per le 8 valute principali più un simbolo! Questo indicatore è specializzato nel mostrare l'accelerazione della forza delle valute per qualsiasi simbolo come oro, coppie esotiche, materie prime, indici o futures. Primo nel suo genere, qualsiasi simbolo può essere aggiunto
Market Reversal Alerts
LEE SAMSON
4.21 (121)
Il profitto dalla struttura del mercato cambia quando il prezzo si inverte e si ritira. L'indicatore di avviso di inversione della struttura del mercato identifica quando una tendenza o un movimento di prezzo si sta avvicinando all'esaurimento e pronto a invertire. Ti avvisa dei cambiamenti nella struttura del mercato che in genere si verificano quando stanno per verificarsi un'inversione o un forte pullback. L'indicatore identifica inizialmente i breakout e lo slancio del prezzo, ogni volta
RelicusRoad Pro
Relicus LLC
4.78 (139)
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 aiuta
Entry Points Pro
Yury Orlov
4.7 (225)
Indicatore top per MT5 che fornisce segnali accurati per entrare in un trade senza riverniciare! Può essere applicato a qualsiasi attività finanziaria: forex, criptovalute, metalli, azioni, indici.  La versione MT5 è qui Fornirà segnali di trading piuttosto precisi e ti dirà quando è meglio aprire un trade e chiuderlo. Guarda il video (6:22) con un esempio di elaborazione di un solo segnale che ha ripagato l'indicatore! La maggior parte dei trader migliora i propri risultati di trading
TrendMaestro
Stefano Frisetti
5 (2)
nota: questo indicatore e' per METATRADER4, se vuoi la versione per  METATRADER5 questo e' il link:  https://www.mql5.com/it/market/product/108123 TRENDMAESTRO ver 2.4 TRENDMAESTRO riconosce un nuovo TREND sul nascere, non sbaglia mai. La sicurezza di identificare un nuovo TREND non ha prezzo. DESCRIZIONE TRENDMAESTRO identifica un nuovo TREND sul nascere, questo indicatore prende in esame la volatilita' i volumi ed il momentum per identificare il momento in cui c'e' un'esplosione di uno 
Up down v6T
Guner Koca
5 (1)
Thise indicator is up down v6  comes with tradingwiev pinescript. purchased people, after installed on terminal ,contact me on mql5  to get BONUS  TradingView pinescript. up-down indicator is no repaint and works all pairs and lower than weekly time frames charts. it is suitable also 1 m charts for all pairs. and hold long way to signal. dont gives too many signals. when red histogram cross trigger line that is up signal.and price probably will down when blue histogram cross trigger line that
TrendDecoder Premium
Christophe, Pa Trouillas
5 (3)
Identificare i range e le prossime mosse probabili   |  Ottenere i primi segnali e la forza delle tendenze   |  Ottenere uscite chiare prima dell'inversione   |  Individuare i livelli di Fibo che il prezzo testerà Indicatore non tracciante e non ritardato - ideale per il trading manuale e automatizzato - adatto a tutti gli asset e a tutte le unità temporali Offerta limitata nel tempo >>   50% OFF Dopo l'acquisto, contattatemi su questo canale  per le impostazioni personalizzate. Versione   MT5 :
FX Power MT4 NG
Daniel Stein
5 (9)
Ricevi il tuo aggiornamento quotidiano sul mercato con dettagli e schermate tramite il nostro Morning Briefing qui su mql5 e su Telegram ! FX Power MT4 NG è la nuova generazione del nostro popolare misuratore di forza delle valute, FX Power. Cosa offre questo misuratore di forza di nuova generazione? Tutto ciò che avete amato dell'FX Power originale IN PIÙ Analisi della forza di ORO/XAU Risultati di calcolo ancora più precisi Periodi di analisi configurabili individualmente Limite di calcolo pe
Connect Indicator
Sukunthakan Ngernbamrung
Connect Indicator is a tool used for connecting indicators between the MQL market and MT4. The connected indicators are made by our group and can be used for other applications, such as sending messages to the Line application or Telegram application. If you have any questions, please don't hesitate to ask us to receive support. Function and indicator buffer Buffer one is the high price of the previous candle. Buffer two is the high price of the previous candle. Usage To connect indicators to fu
Altri dall’autore
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - 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 load indicator - You can message in private chat for further changes you need. Thanks
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 MT4 version please send private message. - This is the exact conversion from TradingView source: "Hurst Cycle Channel Clone Oscillator" By "LazyBear". - For bar color option please send private message. - 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.
B Xtrender
Yashar Seyyedin
5 (1)
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.
To get access to MT5 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
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Supertrend" by " KivancOzbilgic ". This is a light-load processing and non-repaint indicator. Highlighter option isn't available in MT4 version. 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 . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input double fixed_lo
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Zero Lag MACD Enhanced - Version 1.2" by "   Albert.Callisto ". 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
To get access to MT5 version please contact via private message. This is the exact conversion from TradingView:Nadaraya-Watson Envelope" by " LuxAlgo ". This is not a light-load processing indicator. It is a 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.
This is the Chandelier Exit trend indicator applied to heiken ashi candles based on "G TREND GUNBOT" by "LUIS_GANDATA_G_TREND" on tradingview. 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 to apply the trend indicator to normal candles via input tab. (two in one indicator) This is a non-repaint and light processing load indicator. You can message in private chat for further change
FREE
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". - 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 trade; int handle_hull= 0 ; input group "EA Setting" input int magic_number= 123456 ; //magic number input double fixe
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 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 rangi
FREE
IntradayTrader
Yashar Seyyedin
This Expert is developed to optimize parameters to trade intraday trending markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 12% profitability in EURUSD for a period of a year and 2% draw-down using optimization to find best inputs.
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 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 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 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 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 . 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
I do not have the exact indicator for MT4 but the nearest possible look alike can be downloaded from here . Also you may check this link . This is the exact conversion from TradingView: "Donchian Trend Ribbon" By "LonesomeTheBlue". One of the coolest indicators out there to detect trend direction and strength. As a trader you always need such indicator to avoid getting chopped in range markets. There are ten buffers as colors to use in EAs also. The indicator is loaded light and non-repaint. Not
To get access to MT5 version please contact via private message. This is the exact conversion from TradingView: " Better RSI with bullish / bearish market cycle indicator" by TradeCalmly. 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.
To get access to MT5 version please click here . This is the exact conversion from TradingView:"HIGH AND LOW Optimized Trend TrackerHL OTT" by "kivancozbilgic" This is a light-load processing indicator. It is a non-repaint indicator. Colored Candle and Highlighting options are not available. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
To get access to MT5 version please click here . This is the exact conversion from TradingView: "SwingArm ATR Trend Indicator" by " vsnfnd ". 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 signal alerts. You can message in private chat for further changes you need.
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
Choppy Trader
Yashar Seyyedin
This Expert is developed to optimize parameters to trade in choppy markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 20% profitability in USDCAD for a period of 4-months and 5% draw-down using optimization to find best inputs.
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 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
- This is the exact conversion from TradingView: " 200-EMA Moving Average Ribbon" By "Dale_Ansel". - This indicator plots a series of moving averages to create a "ribbon" that offers a great visual structure to price action. - This indicator lets you read buffers. For information on buffers please contact via message. - This is a non-repaint and light processing load indicator
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:
Nessuna recensione
Rispondi alla recensione
Versione 1.20 2024.01.25
Added input option to enable push notifications.
Versione 1.10 2023.10.26
Added input to enable/disable Alerts. You can use candle closure based or tick based Alerts using the input setting.