• Información general
  • Comentarios (3)
  • Discusión
  • Novedades

Linear Regression Candle for MT4

5

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=0.01; // select fixed lot size

input string    LINREG_Setting="";
input int signal_length = 7; //signal SMoothing
input bool sma_signal_line = true; //Simple MA(Signal Line)
input bool linreg = true; //Lin Reg
input int linreg_length = 11; //Linear Regression Length

void OnTick()
  {
      if(!isNewBar()) return;
           
      bool buy_condition=true;
      buy_condition &= (BuyPositionCount()==0);
      buy_condition &= (CloseOfCandle(1)>OpenOfCandle(1));
      if(buy_condition)
      {
         CloseSell();      
         Buy();   
      }

      bool sell_condition=true;
      sell_condition &= (SellPositionCount()==0);
      sell_condition &= (CloseOfCandle(1)<OpenOfCandle(1));
      if(sell_condition)
      {
         CloseBuy();
         Sell();   
      }
  }


int BuyPositionCount()
{
   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 SellPositionCount()
{
   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("Could not execute order: ", GetLastError());
   }
}

void Sell()
{
   double sl = High[iHighest(_Symbol, PERIOD_CURRENT, MODE_HIGH, 15, 0)];
   double sl_points=MathAbs(Bid-sl)/_Point;
   double tp = 0;
   double lot=CalculateLots(sl_points);
   if(OrderSend(_Symbol, OP_SELL, fixed_lot_size, Bid, 3, 0, 0, NULL, magic_number, 0, clrNONE)==-1)
   {
      Print("Could not execute order: ", GetLastError());
   }
}

datetime timer=NULL;
bool isNewBar()
{
   if(timer==NULL){}
   else if(timer==Time[0]) return false;
   timer=Time[0];
   return true;
}

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(), OrderClosePrice(), 3, clrNONE)==false)
         {
            Print("Error closing orde: ", 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(), OrderClosePrice(), 3, clrNONE)==false)
         {
            Print("Error closing orde: ", GetLastError());
         }
      }
   }
}


double CloseOfCandle(int index)
{
   return iCustom(_Symbol, PERIOD_CURRENT, "Market/Linear Regression Candle for MT4", 
   signal_length,
   sma_signal_line,
   linreg,
   linreg_length, 3, index);
}


double OpenOfCandle(int index)
{
   return iCustom(_Symbol, PERIOD_CURRENT, "Market/Linear Regression Candle for MT4", 
   signal_length,
   sma_signal_line,
   linreg,
   linreg_length, 2, index);
}


Comentarios 3
ACastilla
469
ACastilla 2023.09.01 19:51 
 

High quality from a high quality programmer. Also, it is true that if you need something the programmer will help you. Thank you very much to him. You are in good hands with his indicators. He is the one if you look tradingview indicators for MT4.

elite luis
3331
elite luis 2023.03.19 15:19 
 

Thanks Author for the Amazing work to convert tradingview indicator to MT4, love it so much! and Am Getting MT5 also! Big Thank you to Author please continue converting the popular indicator from TV to MT4,MT5, Happy Coding!

Ganesh Patil
73
Ganesh Patil 2023.02.21 17:55 
 

Indicator is excellent and very helpful for accurate trend detection, i strongly recommend this indicator

Productos recomendados
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
Night ghost
Dmitriy Kashevich
Night Ghost - Indicador de flecha para opciones binarias. ¡Este es un asistente confiable para usted en el futuro! - Sin redibujar en el gráfico -¡Funciona muy bien en todos los pares de divisas! -Indicador de precisión de hasta el 90% (Especialmente de noche) -No es necesario configurar durante mucho tiempo (configurar perfectamente para opciones binarias) - Señales no tardías - La aparición de una señal en la vela actual. -Perfecto para el período M1 (¡No más!) - Color de ve
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
Binary Options Support Resistance Indicator This indicator is designed for binary options trading and effectively shows retracements from support and resistance levels. Signals appear on the current candle. A red arrow pointing downwards indicates a potential selling opportunity, while a blue arrow pointing upwards suggests buying opportunities. All that needs adjustment is the color of the signal arrows. It is recommended to use it on the M1-M5 timeframes as signals are frequent on these timef
Indicador instantáneo de skalping. La flecha da una señal para comprar o vender junto con el valor del sótano del indicador. Se considera una señal fuerte cuando la flecha y el indicador del sótano que muestra cuatro períodos de tiempo coinciden en el pronóstico. Este indicador contiene muchos algoritmos y tareas que se han reducido a un resultado, que proporciona el indicador instantáneo Skalping, es decir, informa al comerciante sobre la dirección del mercado. Por lo tanto, da 1. Seña
Daily Candle Predictor es un indicador que predice el precio de cierre de una vela. El indicador está destinado principalmente para su uso en gráficos D1. Este indicador es adecuado tanto para el comercio de divisas tradicional como para el comercio de opciones binarias. El indicador se puede utilizar como un sistema de negociación independiente o puede actuar como una adición a su sistema de negociación existente. Este indicador analiza la vela actual, calculando ciertos factores de fuerza dent
Retroceso de Fibonacci & Herramientas de Dibujo de Líneas Extendidas Retroceso de Fibonacci & Herramientas de Dibujo de Líneas Extendidas son aptos para la plataforma MT4 y para operadores que emplean el método de negociación de puntos y la negociación de sección áurea. Ventajas: Sin líneas excusadas ni las excesivamente largas, y es fácil de observar y descubrir oportunidades de negociación. Versión de prueba: https://www.mql5.com/zh/market/product/35884 Funciones principales: 1.
Black series MT4
Dmitriy Kashevich
1 (1)
Black series MT4 - The indicator is designed for trading on binary options with Timeframe M1-M5-M15 Multicurrency (Works on cryptocurrency and currency pairs) The signal appears when the candle opens Up to 90% correct signals There is no signal redrawing at all Can be used with other indicators. Good for scalping! In Settings there is: -Indicator working methods -I Allert Arrow color Red signal down Blue signal up Also watch the video how the indicator works and signals
Indicator for binary options arrow is easy to use and does not require configuration works on all currency pairs, cryptocurrencies buy signal blue up arrow sell signal red down arrow tips do not trade during news and 15-30 minutes before their release, as the market is too volatile and there is a lot of noise it is worth entering trades one or two candles from the current period (recommended for 1 candle) timeframe up to m 15 recommended money management fixed lot or fixed percentage of the depo
SuperTrend Alerts
Libertas LLC
3 (4)
SuperTrend Alerts adds alerts to the widely popular SuperTrend indicator. As the name suggests, SuperTrend is a trending indicator which works best in trendy (not choppy) markets. SuperTrend is extremely popular for intraday and daily trading, and can be used on any timeframe. Place a call when the price closes above the SuperTrend line, and place a put when the price closes below the SuperTrend line. These crossovers are highlighted by non-repainting up/down arrows. Alerts Email, message and
Infinity Trend Pro
Yaroslav Varankin
1 (1)
This is a trend indicator without redrawing Developed instead of the binary options strategy (by the color of the Martingale candlestick) Also works well in forex trading When to open trades (binary options) A signal will appear in the place with a candle signaling the current candle It is recommended to open a deal for one candle of the current timeframe M1 and M5 When a blue dot appears, open a deal up When a red dot appears, open a trade down. How to open trades on Forex. When a signal is rec
Perfect Trade System   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
ZhiBiMACD MT4
Qiuyang Zheng
4.5 (2)
Este es un indicador MACD único que es más preciso y fácil de usar que el MACD tradicional. Es adecuado para cualquier ciclo de gráfico y es adecuado para cualquier variedad de mercado. La columna roja es la señal de banda (Comprar) y la columna azul es la señal de banda (Vender). Las líneas amarillas y verdes son líneas de tendencia, y las dos líneas nunca se cruzan. Compre: en la columna azul, mire la línea verde hacia arriba a través del eje 0 central. Venta: en la columna roja, mire
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
MasterArrow
Pavel Krysanov
5 (1)
Correct market entries and exits are essential for any Forex trader. MasterArrow indicator addresses this issue. It has no redundant elements and draws only buy/sell arrows. The up arrow is a BUY signal, while the down arrow is a SELL one. The indicator is simple to configure. Change the Strength parameter to configure the signals frequency. The product is based on standard indicators (MA, RSI, ATR, etc.). But it also features the custom algorithm allowing to combine them into a single tool and
First of all, it is worth highlighting here that this Trading Indicator is Non Repainting, Non Redrawing and Non Lagging, which makes it ideal for manual trading. Never repaint and recalculate Once an arrow appears it never disappears, the signal comes at the opening of the new candle You will now be more profitable with this indicator The indicator will alert you when an arrow appears You can do swing trading or scalping trading The indicator helps you identify the trend Can be optimized acros
Dark Sniper
Dmitriy Kashevich
Dark Sniper arrow indicator. complete lack of redrawing percentage of correct indicator predictions from 80 85% The arrow indicates the direction of the next candle and the possible direction of the trend in the future.  suitable for small m1 timeframes. It is recommended to open deals from 1 to 2 candles. The signal appears on the last candle advantages of the indicator: 1. leading signals. 2.complete lack of redrawing 3. high signal accuracy.
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
VR Cub
Vladimir Pastushak
VR Cub es un indicador para obtener puntos de entrada de alta calidad. El indicador fue desarrollado para facilitar los cálculos matemáticos y simplificar la búsqueda de puntos de entrada a una posición. La estrategia comercial para la cual se diseñó el indicador ha demostrado su eficacia durante muchos años. La simplicidad de la estrategia comercial es su gran ventaja, que permite que incluso los operadores novatos negocien con éxito con ella. VR Cub calcula los puntos de apertura de posiciones
The   True Magic Oscillator   indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate signals from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator is never repainted. The point at which the signal is given does not change.         Features and Recommendations Wor
Dr Trend
Vitalii Zakharuk
Dr Trend is a trend indicator for the MetaTrader 4 trading platform. This indicator allows you to find the most likely trend reversal points. You won’t find a proprietary indicator like this anywhere else. A simple but effective system for determining the Forex trend. From the screenshots you can see for yourself the accuracy of this tool. Works on all currency pairs, stocks, commodities, cryptocurrencies. Are you already tired of constant ups and downs? You shouldn’t fall victim to unstable
Real Magic Trend
Muhammed Emin Ugur
This   Real Magic Trend   indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate signals from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator is never repainted. The point at which the signal is given does not change.      Features and Recommendations Time Frame
Real Pro Signal
Muhammed Emin Ugur
Real Pro Signal   indicator is designed for 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. The indicator certainly does not repaint. The point at which the signal is given does not change.     Features and Suggestions Time Frame: H1 W
This indicator is another variant of the famous powerful indicator Fibonacci-SS https://www.mql5.com/en/market/product/10136 but has different behaviour in placing Pending Order and TP Line. Automatically places Fibonacci retracement lines from the last highest and lowest visible bars on the chart with: An auto Pending Order (Buy/Sell). Taking Profit 1, Taking Profit 2 is pivot point and Taking Profit 3 for extended reward opportunity. The best risk and reward ratio. Simple and powerful indica
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
GeoWprPro
Georgij Komarov
WPR by Profile, or WPR for Professionals Geo_WprPro is one of the well-known currency profile indicators. It simultaneously displays two WPR indicators with different parameters in the matrix form on all timeframes of multiple currency pairs forming the currency profile . As follows from the description, " WPR is a leading indicator that often goes ahead of the price chart. The oscillator frequently reaches extreme values before the price reversal as if anticipating that event: it almost always
Buy and sell zones
Evgeniy Zhdan
5 (3)
Indicador para determinar plano y tendencia. Si el precio está por debajo de cualquiera de los dos histogramas y dos líneas (rojo y azul), esta es una zona de venta. Al comprar esta versión del indicador, la versión MT4 para una cuenta real y una demo, ¡como regalo (para recibir, escríbame un mensaje privado)! Si el precio está por encima de cualquiera de los dos histogramas y dos líneas (rojo y azul), esta es una zona de compra. Versión MT4:   https://www.mql5.com/en/market/product/3793
MetaCOT 2 is a set of indicators and specialized utilities for the analysis of the U.S. Commodity Futures Trading Commission reports. Thanks to the reports issued by the Commission, it is possible to analyze the size and direction of the positions of the major market participants, which brings the long-term price prediction accuracy to a new higher-quality level, inaccessible to most traders. These indicators, related to the fundamental analysis, can also be used as an effective long-term filter
The principle of this indicator is very simple: detecting the trend with Moving Average, then monitoring the return point of graph by using the crossing of Stochastic Oscillator and finally predicting BUY and SELL signal with arrows, alerts and notifications. The parameters are fixed and automatically calculated on each time frame. Example: If you install indicator on EURUSD, timeframe M5: the indicator will detect the main trend with the Moving Average on this timeframe (for example the Moving
Master Scalping M1 es un indicador innovador que utiliza un algoritmo para determinar la tendencia de forma rápida y precisa. El indicador calcula el tiempo de apertura y cierre de posiciones, los algoritmos del indicador le permiten encontrar los momentos ideales para ingresar a una operación (comprar o vender un activo), lo que aumenta el éxito de las transacciones para la mayoría de los comerciantes. Beneficios del indicador: Fácil de usar, no sobrecarga el gráfico con información innecesari
Los compradores de este producto también adquieren
Gann Made Easy
Oleg Rodin
4.92 (53)
Gann Made Easy es un sistema de comercio de Forex profesional y fácil de usar que se basa en los mejores principios de comercio utilizando la teoría del Sr. W. D. Gann. El indicador proporciona señales precisas de COMPRA y VENTA, incluidos los niveles de Stop Loss y Take Profit. Puede comerciar incluso sobre la marcha utilizando notificaciones PUSH. ¡Por favor, póngase en contacto conmigo después de la compra! ¡Compartiré mis consejos comerciales con usted y excelentes indicadores de bonificació
ACTUALMENTE 26% DE DESCUENTO ¡La mejor solución para cualquier operador novato o experto! Este indicador es una herramienta única, de alta calidad y asequible porque hemos incorporado una serie de características propias y una nueva fórmula. ¡Con sólo UN gráfico puede leer la Fuerza de la Divisa para 28 pares de Divisas! Imagínese cómo mejorará su operativa porque podrá señalar el punto exacto de activación de una nueva tendencia o de una oportunidad de scalping. Manual del usuario: haga
Introduciendo       Indicador Quantum Trend Sniper   , el innovador indicador MQL5 que está transformando la forma en que identificas y negocias los cambios de tendencia. Desarrollado por un equipo de comerciantes experimentados con experiencia comercial de más de 13 años,       Indicador de francotirador de tendencia cuántica       está diseñado para impulsar su viaje comercial a nuevas alturas con su forma innovadora de identificar cambios de tendencia con una precisión extremadamente alta.
Atomic Analyst
Issam Kassas
5 (3)
En primer lugar, vale la pena enfatizar que este Indicador de Trading no repinta, no redibuja y no se retrasa, lo que lo hace ideal tanto para el trading manual como para el automatizado. El Analista Atómico es un Indicador de Acción del Precio PA que utiliza la fuerza y el impulso del precio para encontrar una mejor ventaja en el mercado. Equipado con filtros avanzados que ayudan a eliminar ruidos y señales falsas, y aumentan el potencial de trading. Utilizando múltiples capas de indicadores
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           
¡Descubra el secreto para el comercio de Forex exitoso con nuestro indicador MT4 personalizado! ¿Alguna vez se ha preguntado cómo lograr el éxito en el mercado de Forex, obteniendo ganancias constantemente al tiempo que minimiza el riesgo? ¡Aquí está la respuesta que ha estado buscando! Permítanos presentar nuestro indicador MT4 patentado que revolucionará su enfoque para el comercio. Versatilidad única Nuestro indicador está especialmente diseñado para usuarios que prefieren las formacio
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   -  
Ante todo, vale la pena enfatizar que esta Herramienta de Trading es un Indicador No Repintado, No Redibujado y No Retrasado, lo que la hace ideal para el trading profesional. El Indicador de Conceptos de Acción del Precio Inteligente es una herramienta muy potente tanto para traders nuevos como experimentados. Combina más de 20 indicadores útiles en uno solo, combinando ideas avanzadas de trading como el Análisis del Trader del Círculo Interior y Estrategias de Trading de Conceptos de Dinero
Trend Screener
STE S.S.COMPANY
4.83 (86)
Indicador de tendencia, solución única e innovadora para el comercio y filtrado de tendencias con todas las funciones de tendencias importantes integradas en una sola herramienta. Es un indicador 100% sin repintar de marcos temporales y monedas múltiples que se puede usar en todos los símbolos/instrumentos: divisas, materias primas, criptomonedas, índices y acciones. Trend Screener es un indicador de seguimiento de tendencia eficiente que proporciona señales de tendencia de flecha con puntos en
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
¡Actualmente con 33% de descuento! ¡La mejor solución para cualquier tráder principiante o experto! Este indicador es una herramienta comercial única, de alta calidad y asequible, porque incorpora una serie de características patentadas y una nueva fórmula. Con esta actualización, podrá mostrar zonas de doble marco temporal. No solo podrá mostrar un marco temporal más alto, sino también mostrar ambos, el marco temporal del gráfico MÁS el marco temporal más alto: MOSTRANDO ZONAS ANIDADAS. A todos
¡Actualmente 20% OFF ! ¡La mejor solución para cualquier novato o trader experto! Este software funciona con 28 pares de divisas. Se basa en 2 de nuestros principales indicadores (Advanced Currency Strength 28 y Advanced Currency Impulse). Proporciona una gran visión general de todo el mercado de divisas. Muestra los valores de Advanced Currency Strength, la velocidad de movimiento de las divisas y las señales para 28 pares de divisas en todos los (9) marcos temporales. Imagine cómo mejorar
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
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 Vault
Oleg Rodin
5 (28)
Scalper Vault es un sistema profesional de reventa que le brinda todo lo que necesita para una reventa exitosa. Este indicador es un sistema comercial completo que puede ser utilizado por operadores de divisas y opciones binarias. El marco de tiempo recomendado es M5. El sistema le proporciona señales de flecha precisas en la dirección de la tendencia. También le proporciona señales superiores e inferiores y niveles de mercado de Gann. Los indicadores proporcionan todo tipo de alertas, incluidas
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
Introduciendo       Quantum Breakout PRO   , el innovador indicador MQL5 que está transformando la forma en que comercia con Breakout Zones. Desarrollado por un equipo de operadores experimentados con experiencia comercial de más de 13 años,   Quantum Breakout PRO   está diseñado para impulsar su viaje comercial a nuevas alturas con su innovadora y dinámica estrategia de zona de ruptura. El indicador de ruptura cuántica le dará flechas de señal en las zonas de ruptura con 5 zonas objetivo de
ACTUALMENTE 31% DE DESCUENTO Este indicador es una herramienta de transacción única, de alta calidad y asequible porque hemos incorporado una serie de características propias y una fórmula secreta. Con solo un gráfico, da Alertas para los 28 pares de divisas. ¡Imagina cómo mejorarás porque puedes identificar el punto de activación exacto de una nueva tendencia u oportunidad de crecimiento! Basado en nuevos algoritmos subyacentes , hace que sea aún más fácil identificar y confirmar operaciones po
FX Power MT4 NG
Daniel Stein
5 (9)
Obtenga su actualización diaria del mercado con detalles y capturas de pantalla a través de nuestro Morning Briefing aquí en mql5 y en Telegram ! FX Power MT4 NG es la nueva generación de nuestro popular medidor de fuerza de divisas, FX Power. ¿Y qué ofrece este medidor de fuerza de nueva generación? Todo lo que le encantaba del FX Power original PLUS Análisis de fuerza de ORO/XAU Resultados de cálculo aún más precisos Períodos de análisis configurables individualmente Límite de cálculo persona
GOLD Impulse with Alert
Bernhard Schweigert
4.56 (9)
Este indicador es una super combinación de nuestros 2 productos Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics . ¡Funciona para todos los marcos de tiempo y muestra gráficamente el impulso de fuerza o debilidad para las 8 divisas principales más un Símbolo! Este Indicador está especializado en mostrar la aceleración de la fuerza de la divisa para cualquier símbolo como Oro, Pares Exóticos, Materias Primas, Índices o Futuros. Es el primero de su clase, cualquier símbol
Presentamos el Indicador Milagroso de Forex: Desata el Poder del Trading Preciso ¿Estás cansado de buscar el mejor indicador de Forex que realmente ofrezca resultados excepcionales en todos los marcos temporales? ¡No busques más! Ha llegado el Indicador Milagroso de Forex para revolucionar tu experiencia de trading y llevar tus ganancias a nuevas alturas. Construido sobre una base de tecnología de vanguardia y años de desarrollo meticuloso, el Indicador Milagroso de Forex se erige como el pinácu
Currency Strength Wizard es un indicador muy poderoso que le proporciona una solución todo en uno para operar con éxito. El indicador calcula el poder de este o aquel par de divisas utilizando los datos de todas las monedas en múltiples marcos de tiempo. Estos datos se representan en forma de índice de moneda fácil de usar y líneas eléctricas de moneda que puede usar para ver el poder de esta o aquella moneda. Todo lo que necesita es adjuntar el indicador al gráfico que desea operar y el indicad
Conviértase en un Breaker Trader y obtenga beneficios de los cambios en la estructura del mercado a medida que se invierte el precio. El indicador de ruptura de bloque de órdenes identifica cuándo una tendencia o movimiento de precio se acerca al agotamiento y está listo para revertirse. Le alerta sobre cambios en la estructura del mercado que generalmente ocurren cuando una reversión o un retroceso importante están a punto de suceder. El indicador utiliza un cálculo patentado que identific
FX Volume
Daniel Stein
4.6 (35)
Obtenga su actualización diaria del mercado con detalles y capturas de pantalla a través de nuestro Morning Briefing aquí en mql5 y en Telegram ! FX Volume es el PRIMER y ÚNICO indicador de volumen que proporciona una visión REAL del sentimiento del mercado desde el punto de vista de un bróker. Proporciona una visión impresionante de cómo los participantes institucionales del mercado, como los brokers, están posicionados en el mercado Forex, mucho más rápido que los informes COT. Ver esta info
PZ Harmonacci Patterns
PZ TRADING SLU
3.43 (7)
Este es posiblemente el indicador de reconocimiento automático de formación de precios más completo que puede encontrar para la plataforma MetaTrader. Detecta 19 patrones diferentes, toma las proyecciones de Fibonacci tan en serio como usted, muestra la zona de reversión potencial (PRZ) y encuentra niveles adecuados de stop-loss y take-profit. [ Guía de instalación | Guía de actualización | Solución de problemas | FAQ | Todos los productos ] Detecta 19 formaciones de precios armónicos difer
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
AW Trend Predictor
AW Trading Software Limited
4.74 (39)
La combinación de niveles de tendencia y ruptura en un sistema. Un algoritmo de indicador avanzado filtra el ruido del mercado, determina la tendencia, los puntos de entrada y los posibles niveles de salida. Las señales indicadoras se registran en un módulo estadístico, que le permite seleccionar las herramientas más adecuadas, mostrando la efectividad del historial de señales. El indicador calcula las marcas Take Profit y Stop Loss. Manual e instrucciones ->   Aquí   / Versión MT5 ->   Aquí Cóm
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
Este tablero es una herramienta de alerta para usar con el indicador de reversión de la estructura del mercado. Su propósito principal es alertarlo sobre oportunidades de reversión en marcos de tiempo específicos y también para volver a probar las alertas (confirmación) como lo hace el indicador. El tablero está diseñado para ubicarse en un gráfico por sí solo y funcionar en segundo plano para enviarle alertas sobre los pares y marcos de tiempo elegidos. Fue desarrollado después de que muchas p
RelicusRoad Pro
Relicus LLC
4.78 (139)
Ahora $ 147 (aumentando a $ 499 después de algunas actualizaciones) - Cuentas ilimitadas (PC o Mac) Manual de usuario de RelicusRoad + Videos de capacitación + Acceso al grupo privado de Discord + Estado VIP UNA NUEVA MANERA DE VER EL MERCADO RelicusRoad es el indicador comercial más poderoso del mundo para divisas, futuros, criptomonedas, acciones e índices, y brinda a los comerciantes toda la información y las herramientas que necesitan para mantenerse rentables. Brindamos análisis téc
Black dragon indicator
Ramil Minniakhmetov
4.88 (130)
El indicador de detección de tendencias complementará cualquier estrategia y también se puede utilizar como una herramienta independiente. Recomendaciones para trabajar con el indicador, las puedes descargar en el comentario #8 Ventajas Fácil de usar, no sobrecarga el gráfico con información innecesaria; Puede usarse como filtro para cualquier estrategia; Tiene niveles integrados de soporte y resistencia dinámicos, que se pueden usar tanto para obtener ganancias como para establecer límit
Price Action Entry Alerts
Stephen Sanjeeve Sahayam
5 (3)
Este indicador analiza cada barra en busca de presión de compra o venta e identifica 4 tipos de patrones de velas con el volumen más alto. Estas velas luego se filtran utilizando varios filtros lineales para mostrar señales de compra o venta. Las señales funcionan mejor, junto con una dirección de marco de tiempo más alta y cuando se negocian durante horas de alto volumen. Todos los filtros son personalizables y funcionan de forma independiente. Puede ver señales de una sola dirección con el cli
Otros productos de este 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 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
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
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
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
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 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
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
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 contact via private message. This indicator is not a standard indicator and you may get into trouble installing it. Please contact via private chat if you face trouble. This is exact conversion from TradingView: "Consolidation Zones - Live" by "LonesomeTheBlue". This is a light-load processing indicator. Updates are available only upon candle closure. Buffers are available for processing in EAs. It is a repaint indicator. So previous buffer values do not repre
This is MacroTrendTrader. It trades in DAILY time frame even if you run it on lower time frames. It opens/closes trades once per day at a specific time that you choose via input tab: - "param(1-5)" are optimization parameters. - "Open/Close Hour" is set via input tab. Make sure to choose this to be away from nightly server shutdown. - "high risk" mode if chosen, sets a closer stop loss level. Therefore higher lot sizes are taken.  This is a light load EA from processing point of view. Calculatio
FREE
To download MT5 version please click here . - This is 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
- 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
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 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:
ACastilla
469
ACastilla 2023.09.01 19:51 
 

High quality from a high quality programmer. Also, it is true that if you need something the programmer will help you. Thank you very much to him. You are in good hands with his indicators. He is the one if you look tradingview indicators for MT4.

Yashar Seyyedin
32548
Respuesta del desarrollador Yashar Seyyedin 2023.09.01 19:55
Thanks for the positive review. Wish you a successful trading career.
elite luis
3331
elite luis 2023.03.19 15:19 
 

Thanks Author for the Amazing work to convert tradingview indicator to MT4, love it so much! and Am Getting MT5 also! Big Thank you to Author please continue converting the popular indicator from TV to MT4,MT5, Happy Coding!

Yashar Seyyedin
32548
Respuesta del desarrollador Yashar Seyyedin 2023.03.19 16:33
Thanks for your positive review. I am converting more indicators.
Ganesh Patil
73
Ganesh Patil 2023.02.21 17:55 
 

Indicator is excellent and very helpful for accurate trend detection, i strongly recommend this indicator

Yashar Seyyedin
32548
Respuesta del desarrollador Yashar Seyyedin 2023.03.19 16:40
Thanks.
Respuesta al comentario
Versión 1.30 2023.11.28
Updated buffers' names.
Versión 1.20 2023.08.17
1. Added signal line option
2. Added linear regression option
Versión 1.10 2023.01.10
A fix about shadows coloring.