• Visão global
  • Comentários
  • Discussão (4)
  • O que há de novo

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


Produtos recomendados
VR Cub
Vladimir Pastushak
VR Cub é um indicador para obter pontos de entrada de alta qualidade. O indicador foi desenvolvido para facilitar cálculos matemáticos e simplificar a busca por pontos de entrada em uma posição. A estratégia de negociação para a qual o indicador foi escrito tem provado a sua eficácia há muitos anos. A simplicidade da estratégia de negociação é a sua grande vantagem, o que permite que até mesmo os comerciantes novatos negociem com sucesso com ela. VR Cub calcula os pontos de abertura de posição e
Master Scalping M1 é um indicador inovador que usa um algoritmo para determinar a tendência de forma rápida e precisa. O indicador calcula o tempo de abertura e fechamento de posições, os algoritmos do indicador permitem encontrar os momentos ideais para entrar em uma negociação (comprar ou vender um ativo), o que aumenta o sucesso das transações para a maioria dos traders. Benefícios do indicador: Fácil de usar, não sobrecarrega o gráfico com informações desnecessárias. Pode ser usado como filt
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 recontratar e extensão linha de desenho ferramenta Fibonacci recontratar e estender a ferramenta de desenho de linha para a plataforma MT4 é adequado para comerciantes que usam método de negociação de pontos e negociação de secções douradas Vantagens: Não há linha extra, não há linhagem muito longa, e é fácil observar e encontrar oportunidades de negociação Versão experimental: https://www.mql5.com/zh/market/product/35884 Principais funções: 1. Podem ser desenhados diretame
Market Breaker Updated version 3
Allistair Kabelo Mandow
1 (1)
Features for software Main functions: Accurate entry signals WITH NON REPAINTING! Once a signal appears, it remains valid! This is a significant distinction from other indicators that might provide a signal and then alter it, potentially leading to deposit losses. Now, you can enter the market with higher probability and precision. There's also a function to colour candles after an arrow appears until the target (take profit) is reached or a reversal signal appears . Display of STOP LOSS / TA
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)
Os indicadores [ZhiBiCCI] são adequados para todo o ciclo de uso e também são adequados para todas as variedades do mercado. [ZhiBiCCI] Linha sólida verde é uma inversão da divergência de alta. A linha pontilhada verde é uma divergência de alta clássica. [ZhiBiCCI] A linha sólida para o vermelho é uma divergência de baixa reversa. A linha pontilhada vermelha é uma divergência clássica de baixa. [ZhiBiCCI] pode ser definido nos parâmetros (Alerta, Enviar e-mail, Enviar notificação), definid
Quantum Heiken Ashi PRO MT4
Bogdan Ion Puscasu
4.43 (7)
Apresentando o       Gráficos   Quantum Heiken Ashi PRO Projetadas para fornecer informações claras sobre as tendências do mercado, as velas Heiken Ashi são conhecidas por sua capacidade de filtrar o ruído e eliminar sinais falsos. Diga adeus às confusas flutuações de preços e olá para uma representação gráfica mais suave e confiável. O que torna o Quantum Heiken Ashi PRO verdadeiramente único é sua fórmula inovadora, que transforma os dados tradicionais de velas em barras coloridas fáceis de le
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)
Versão MT5  |  FAQ O   Indicador Owl Smart Levels   é um sistema de negociação completo dentro de um indicador que inclui ferramentas populares de análise de mercado, como   fractais avançados de Bill Williams , Valable ZigZag que constrói a   estrutura de onda correta   do mercado e   níveis de Fibonacci que marcam os níveis exatos de entrada no mercado e lugares para obter lucros. Descrição detalhada da estratégia Instruções para trabalhar com o indicador Consultor de negociação Owl Helper Ch
Daily Candle Predictor é um indicador que prevê o preço de fechamento de uma vela. O indicador destina-se principalmente ao uso em gráficos D1. Este indicador é adequado tanto para negociação forex tradicional quanto para negociação de opções binárias. O indicador pode ser usado como um sistema de negociação autônomo ou pode atuar como um complemento ao seu sistema de negociação existente. Este indicador analisa a vela atual, calculando certos fatores de força dentro do próprio corpo da vela, be
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
New, more accurate version of the Xmaster indicator. More than 200 traders from around the world have conducted more than 15,000 tests of different combinations of this indicator on their PCs in order to get the most effective and accurate formula. And here we present to you the "Xmaster formula indicator forex no repaint" indicator, which shows accurate signals and does not repaint. This indicator also sends signals to the trader by email and push. With the arrival of each new tick, it constan
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
Os compradores deste produto também adquirem
Gann Made Easy
Oleg Rodin
4.92 (53)
Gann Made Easy é um sistema de negociação Forex profissional e fácil de usar, baseado nos melhores princípios de negociação usando a teoria do sr. W. D. Gann. O indicador fornece sinais precisos de COMPRA e VENDA, incluindo níveis de Stop Loss e Take Profit. Você pode negociar mesmo em movimento usando notificações PUSH. Entre em contato comigo após a compra! Vou compartilhar minhas dicas de negociação com você e ótimos indicadores de bônus de graça! Provavelmente você já ouviu muitas vezes sobr
Atomic Analyst
Issam Kassas
5 (3)
Primeiramente, vale ressaltar que este Indicador de Negociação não repinta, não redesenha e não apresenta atrasos, tornando-o ideal tanto para negociação manual quanto automatizada. O Analista Atômico é um Indicador de Ação de Preço PA que utiliza a força e o momentum do preço para encontrar uma vantagem melhor no mercado. Equipado com filtros avançados que ajudam a remover ruídos e sinais falsos, e aumentam o potencial de negociação. Utilizando múltiplas camadas de indicadores complexos, o A
ACTUALMENTE COM 26% DE DESCONTO A melhor solução para qualquer novato ou comerciante especializado! Este Indicador é uma ferramenta comercial única, de alta qualidade e acessível, porque incorporámos uma série de características proprietárias e uma nova fórmula. Com apenas UM gráfico, pode ler a força da moeda para 28 pares de Forex! Imagine como a sua negociação irá melhorar porque é capaz de apontar o ponto exacto do gatilho de uma nova tendência ou oportunidade de escalada? Manual do u
Apresentando       Quantum Trend Sniper Indicator   , o inovador Indicador MQL5 que está transformando a maneira como você identifica e negocia as reversões de tendência! Desenvolvido por uma equipe de traders experientes com experiência comercial de mais de 13 anos,       Indicador de Atirador de Tendência Quântica       foi projetado para impulsionar sua jornada de negociação a novos patamares com sua forma inovadora de identificar reversões de tendência com precisão extremamente alta. ***C
Descubra o segredo da negociação forex bem -sucedida com nosso indicador MT4 personalizado! Você já se perguntou como obter sucesso no mercado de Forex, obtendo lucros consistentemente e minimizando o risco? Aqui está a resposta que você está procurando! Permita -nos apresentar nosso indicador proprietário do MT4 que revolucionará sua abordagem à negociação. Versatilidade única Nosso indicador foi projetado especialmente para usuários que preferem as formações de vela Renko e Rangebar. En
Trend Screener
STE S.S.COMPANY
4.83 (86)
Indicador de tendência, solução única inovadora para negociação e filtragem de tendências com todos os recursos de tendências importantes construídos dentro de uma ferramenta! É um indicador multi-timeframe e multi-moedas 100% sem repintura que pode ser usado em todos os símbolos/instrumentos: forex, commodities, criptomoedas, índices e ações. O Trend Screener é um indicador eficiente que segue a tendência do indicador que fornece sinais de tendência de seta com pontos no gráfico. Os recursos qu
Antes de tudo, vale ressaltar que esta Ferramenta de Negociação é um Indicador Não Repintante, Não Redesenhante e Não Atrasado, o que a torna ideal para negociação profissional. O Indicador de Conceitos de Ação de Preço Inteligente é uma ferramenta muito poderosa tanto para traders novos quanto experientes. Ele combina mais de 20 indicadores úteis em um único, combinando ideias avançadas de negociação como Análise do Trader do Círculo Interno e Estratégias de Negociação de Conceitos de Dinhei
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   -  
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           
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
Atualmente com 33% de desconto! A melhor solução para qualquer Trader Novato ou especialista! Este indicador é uma ferramenta de negociação exclusiva, de alta qualidade e acessível porque incorporamos uma série de recursos proprietários e uma nova fórmula. Com esta atualização, você poderá mostrar fusos horários duplos. Você não só será capaz de mostrar um TF mais alto, mas também mostrar ambos, o TF do gráfico, MAIS o TF mais alto: MOSTRANDO ZONAS ANINHADAS. Todos os traders de Oferta e Demanda
Actualmente 20% OFF ! A melhor solução para qualquer novato ou comerciante especializado! Este software de painel de instrumentos está a funcionar em 28 pares de moedas. É baseado em 2 dos nossos principais indicadores (Advanced Currency Strength 28 e Advanced Currency Impulse). Dá uma grande visão geral de todo o mercado Forex. Mostra valores avançados de força da moeda, velocidade de movimento da moeda e sinais para 28 pares de divisas em todos os (9) períodos de tempo. Imagine como a sua
Break and Retest
Mohamed Hassan
5 (7)
‍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! After many months of hard work and dedication, we are extremely proud to present you our  Break and Retest price action indicator created from scratch. One of
Scalper Inside PRO
Alexey Minkov
4.75 (57)
SALE NOW! Limited Time Offer! An exclusive indicator that utilizes an innovative algorithm to swiftly and accurately determine the market trend. The indicator automatically calculates opening, closing, and profit levels, providing detailed trading statistics. With these features, you can choose the most appropriate trading instrument for the current market conditions. Additionally, you can easily integrate your own arrow indicators into Scalper Inside Pro to quickly evaluate their statistics and
GOLD Impulse with Alert
Bernhard Schweigert
4.56 (9)
Este indicador é uma super combinação dos nossos 2 produtos Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics . Funciona para todos os períodos de tempo e mostra graficamente impulso de força ou fraqueza para as 8 principais moedas mais um Símbolo! Este Indicador é especializado para mostrar a aceleração da força da moeda para quaisquer símbolos como Ouro, Pares Exóticos, Commodities, Índices ou Futuros. É o primeiro do seu género, qualquer símbolo pode ser adicionado à
RelicusRoad Pro
Relicus LLC
4.78 (139)
Agora US $ 147 (aumentando para US $ 499 após algumas atualizações) - Contas ilimitadas (PCs ou Macs) Manual do usuário do RelicusRoad + vídeos de treinamento + acesso ao grupo de discórdia privado + status VIP UMA NOVA FORMA DE OLHAR PARA O MERCADO O RelicusRoad é o indicador de negociação mais poderoso do mundo para forex, futuros, criptomoedas, ações e índices, oferecendo aos traders todas as informações e ferramentas necessárias para se manterem rentáveis. Fornecemos análises técnica
ACTUALMENTE 31% DE DESCONTO!! A melhor solução para qualquer novato ou comerciante especializado! Este indicador é uma ferramenta comercial única, de alta qualidade e acessível, porque incorporámos uma série de características proprietárias e uma fórmula secreta. Com apenas UM gráfico, dá alertas para todos os 28 pares de moedas. Imagine como a sua negociação irá melhorar porque é capaz de identificar o ponto exacto de desencadeamento de uma nova tendência ou oportunidade de escalada! Con
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
Apresentando       Quantum Breakout PRO   , o inovador Indicador MQL5 que está transformando a maneira como você negocia Breakout Zones! Desenvolvido por uma equipe de traders experientes com experiência em negociação de mais de 13 anos,   o Quantum Breakout PRO   foi projetado para impulsionar sua jornada comercial a novos patamares com sua estratégia inovadora e dinâmica de zona de rompimento. O Quantum Breakout Indicator lhe dará setas de sinal em zonas de breakout com 5 zonas-alvo de luc
Scalper Vault
Oleg Rodin
5 (28)
Scalper Vault é um sistema profissional de escalpelamento que fornece tudo o que você precisa para um escalpelamento bem-sucedido. Este indicador é um sistema de negociação completo que pode ser usado por comerciantes de forex e opções binárias. O período de tempo recomendado é M5. O sistema fornece sinais de seta precisos na direção da tendência. Ele também fornece sinais superiores e inferiores e níveis de mercado Gann. Os indicadores fornecem todos os tipos de alertas, incluindo notificações
Apresentamos o Indicador Milagroso de Forex: Desencadeie o Poder da Negociação Precisa Você está cansado de procurar o melhor indicador de Forex que realmente ofereça resultados excepcionais em todos os períodos de tempo? Não procure mais! O Indicador Milagroso de Forex chegou para revolucionar sua experiência de negociação e impulsionar seus lucros a novas alturas. Construído com base em tecnologia de ponta e anos de desenvolvimento meticuloso, o Indicador Milagroso de Forex se destaca como o á
Torne-se um Negociador Breaker e lucre com as mudanças na estrutura do mercado à medida que o preço reverte. O indicador de quebra de bloco de pedidos identifica quando uma tendência ou movimento de preço está chegando à exaustão e pronto para reverter. Ele o alerta sobre mudanças na estrutura do mercado, que normalmente ocorrem quando uma reversão ou uma grande retração está prestes a ocorrer. O indicador usa um cálculo proprietário que identifica rupturas e momento do preço. Toda vez que
How to use Pair Trading Station Pair Trading Station is recommended for H1 time frame and you can use it for any currency pairs. To generate buy and sell signal, follow few steps below to apply Pair Trading Station to your MetaTrader terminal. When you load Pair Trading Station on your chart, Pair Trading station will assess available historical data in your MetaTrader platforms for each currency pair. On your chart, the amount of historical data available will be displayed for each currency pai
PZ Harmonacci Patterns
PZ TRADING SLU
3.43 (7)
Este é sem dúvida o indicador de reconhecimento automático de formação de preço harmônico mais completo que você pode encontrar para a MetaTrader Platform. Ele detecta 19 padrões diferentes, leva as projeções de Fibonacci tão a sério quanto você, exibe a Zona de Reversão Potencial (PRZ) e encontra níveis adequados de stop loss e take-profit. [ Guia de instalação | Guia de atualização | Solução de problemas | FAQ | Todos os produtos ] Detecta 19 formações harmônicas de preços diferentes Tr
O sistema de comércio técnico de setas de reversão do BB foi desenvolvido para prever pontos reversos para tomar decisões de varejo. A situação atual do mercado é analisada pelo indicador e estruturada para vários critérios: a expectativa de momentos de reversão, possíveis pontos de virada, sinais de compra e venda. O indicador não contém informações em excesso, possui uma interface visual compreensível, permitindo que os comerciantes tomem decisões razoáveis. Todas as setas parecem fechar
FX Power MT4 NG
Daniel Stein
5 (9)
Receba a sua atualização diária do mercado com detalhes e screenshots através do nosso Morning Briefing aqui no mql5 e no Telegram ! O FX Power MT4 NG é a próxima geração do nosso medidor de força de moeda muito popular de longa data, o FX Power. E o que é que este medidor de força da próxima geração oferece? Tudo o que adorou no FX Power original MAIS Análise de força GOLD/XAU Resultados de cálculo ainda mais precisos Períodos de análise configuráveis individualmente Limite de cálculo personal
TrendDecoder Premium
Christophe, Pa Trouillas
5 (3)
Identifica os intervalos e os próximos movimentos prováveis   |  Obter os primeiros sinais e a força das tendências   |  Obter saídas claras antes da reversão   |  Detetar os níveis Fibo que o preço irá testar Indicador não repintável e não atrasado - ideal para trading manual e automatizado - adequado para todos os activos e todas as unidades de tempo Oferta por tiempo limitado >>   50% OFF Após a compra,   por favor contacte-me neste canal  para obter as definições recomendadas Versão   MT5 :
Currency Strength Wizard é um indicador muito poderoso que fornece uma solução completa para uma negociação bem-sucedida. O indicador calcula o poder deste ou daquele par forex usando os dados de todas as moedas em vários intervalos de tempo. Esses dados são representados em uma forma de índice de moeda fácil de usar e linhas de energia de moeda que você pode usar para ver o poder desta ou daquela moeda. Tudo o que você precisa é anexar o indicador ao gráfico que deseja negociar e o indicador mo
TrendMaestro
Stefano Frisetti
5 (2)
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.4 TRENDMAESTRO recognizes a new TREND in the bud, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these data a
Master Pullback
TDINVEST LLP
5 (3)
- 50% OFF - Telegram group : https://t.me/+5RIceImV_OJmNDA0 MT5 version : https://www.mql5.com/en/market/product/85917?source=Site+Market+Product+Page Master Pullback is a complete system that gives unique trading opportunities and a clear indication of the market: trend, signals as well as stop loss and take profit levels. This system has been designed to be as simple as possible and detects extreme overbought and oversold zones, support and resistance levels, as well as the major trend. You
AW Trend Predictor
AW Trading Software Limited
4.74 (39)
A combinação de níveis de tendência e quebra em um sistema. Um algoritmo de indicador avançado filtra o ruído do mercado, determina a tendência, os pontos de entrada e os possíveis níveis de saída. Os sinais indicadores são registrados em um módulo estatístico, que permite selecionar as ferramentas mais adequadas, mostrando a eficácia do histórico do sinal. O indicador calcula as marcas Take Profit e Stop Loss. Manual e instrução ->   Aqui   / versão MT5 ->   Aqui Como negociar com o indicador:
Este painel é uma ferramenta de alerta para uso com o indicador de reversão da estrutura de mercado. Seu objetivo principal é alertá-lo para oportunidades de reversão em prazos específicos e também para os novos testes dos alertas (confirmação) como o indicador faz. O painel foi projetado para ficar em um gráfico por conta própria e funcionar em segundo plano para enviar alertas sobre os pares e prazos escolhidos. Ele foi desenvolvido depois que muitas pessoas solicitaram um traço para monitora
Mais do autor
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.
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 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
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 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.
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 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
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
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
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
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 . 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 get access to MT5 version please click here . - This is the exact conversion from TradingView: "Twin Range Filter" by " colinmck ". - 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 for downloading
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 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
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: "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
- 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 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
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
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
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 . 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:
Sem comentários
Responder ao comentário
Versão 1.20 2024.01.25
Added input option to enable push notifications.
Versão 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.