• Información general
  • Comentarios
  • Discusión
  • Novedades

Nadaraya Watson Envelope LuxAlgo MT4

To get access to MT5 version click here.

  • This is the exact conversion from "Nadaraya-Watson Envelope" by "LuxAlgo". (with non-repaint input option)
  • This is not a light-load processing indicator if repaint input is set to true.
  • All input options are available. 
  • Buffers are available for processing in EAs.
  • I changed default input setup to non-repaint mode for better performance required for mql market validation procedure.

Here is the source code of a simple Expert Advisor operating based on signals from this indicator.

#property strict

input string EA_Setting="";
input int magic_number=1234;
input double fixed_lot_size=0.01; // select fixed lot size
input bool multiplie_entry=false; //allow multiple entries in the same direction

input string    NW_Setting="";
input double h = 8.;//Bandwidth
input double mult = 3; //
input ENUM_APPLIED_PRICE src = PRICE_CLOSE; //Source
input bool repaint = false; //Repainting Smoothing

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

bool IsNWBuy(int index)
{
   double value_buy=iCustom(_Symbol, PERIOD_CURRENT,
    "Market/Nadaraya Watson Envelope LuxAlgo MT4",
    h, mult, src, repaint, 5, index);
   return value_buy!=EMPTY_VALUE;
}

bool IsNWSell(int index)
{
   double value_sell=iCustom(_Symbol, PERIOD_CURRENT,
    "Market/Nadaraya Watson Envelope LuxAlgo MT4",
    h, mult, src, repaint, 6, 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;
}


Productos recomendados
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.
DMI ADX Histogram Oscillator I present you one of the most precise and powerful indicator Its made of DMI Histogram together with ADX Oscillator. It has inside arrow to show a buy or sell setup. Features  The way it works its the next one : the histogram is a difference between DMI+ and DMI-.   At the same time together we have the oscillator ADX for Market to run It can be adapted to all type of trading styles such as scalping, day trading or swing. It doesn't matter if its forex, st
DsPMO
Ahmet Metin Yilmaz
Double Smoothed Price Momentum Oscillator The Momentum Oscillator measures the amount that a security’s price has changed over a given period of time. The Momentum Oscillator is the current price divided by the price of a previous period, and the quotient is multiplied by 100. The result is an indicator that oscillates around 100. Values less than 100 indicate negative momentum, or decreasing price, and vice versa. Double Smoothed Price Momentum Oscillator examines the price changes in the dete
XFlow4
Maxim Kuznetsov
XFlow muestra un canal de precios en expansión que ayuda a determinar la tendencia y los momentos de su reversión. También se utiliza en el acompañamiento de transacciones para la instalación de Take-Profit / Stop-loss y promedios. Prácticamente no tiene parámetros y es muy fácil de usar: simplemente especifique un momento importante para usted de la historia y el indicador calculará el canal de precios. LÍNEAS MOSTRADAS ROTATE es una línea sólida gruesa. Centro de rotación general del precio
HC candlestick pattern is a simple and convenient indicator able to define candle patterns.‌ Candlestick charts are a type of financial chart for tracking the movement of securities. They have their origins in the centuries-old Japanese rice trade and have made their way into modern day price charting. Some investors find them more visually appealing than the standard bar charts and the price action is easier to interpret. Hc candlestick pattern is a special indicator designed to find divergence
My indicator is 1000%, it never repaints, it works in every time period, there is only 1 variable, it sends notifications to your phone even if you are on vacation instead of at work, in a meeting, and there is also a robot version of this indicator With a single indicator you can get rid of indicator garbage It is especially suitable for scalping in the m1 and m5 time frames on the gold chart, and you can see long trends in the h1 time frame.
buy sell star indicator has a different algoritms then up down v6 and buy sell histogram indicators. so that i put this a another indicator on market. it is no repaint and all pairs and all time frame indicator. it need minimum 500 bars on charts. when  the white  x sign on the red histogram that is sell signals. when the white x sign on the blue  histogram that is sell signals. this indicator does not guarantie the win.price can make mowement on direction opposite the signals. this is multi tim
Signal Arrows is an indicator that generates trade arrows. It generates trade arrows with its own algorithm. These arrows give buying and selling signals.  Can be used in all pairs. Sends a signal to the user with the alert feature. The indicator certainly does not repaint. Trade rules Enter the signal when the buy signal arrives. In order to exit from the transaction, an opposite signal must be received. It is absolutely necessary to close the operation when an opposite signal is received. Th
This is a fully automatic Expert Advisor. It can trade any market, any timeframe and any currency pair. The EA uses simple indicators like SMA, RSI and CCI, and a smart martingale system, that does not open systematical new positions, but waits for a new signal for each new order, wich is limiting drawdown compared to other martingale systems. It uses a combination of seven strategies you can select in the parameters to fit your needs. The strategy tester in MetaTrader 4 can give you the setup y
[ MT5 Version ]  [ Kill Zones ]  [ SMT Divergences ] How to trade using Order Blocks:  Click here User Interface Performance:  During testing in the strategy tester, the UI may experience lag. Rest assured, this issue is specific to the testing environment and does not affect the indicator's performance in live trading. Elevate your trading strategy with the  Order Blocks ICT Multi TF  indicator, a cutting-edge tool designed to enhance your trading decisions through advanced order block anal
Big Player EA GBPUSD is an EA that generates trading signals with custom strategies. The EA scans 5 months of history and generates signals and buys or sells on these signals. At least 5 months of data should be behind when testing the EA. Also, cross Takeprofit strategies are implemented in the EA. Single, double, triple and quad TP strategies are applied. Thanks to the cross Takeprofit strategies, the EA works easily even during high activity times.  Big Player EA Family Single Symbols:   EU
Market Session Pro MT4
Kambiz Shahriarynasab
5 (1)
The  Market Sessions Indicator for MT5 helps you  predict market turnarounds  by detecting major supply and demand areas. These pivot points tend to occur after a new session has started and the previous one is still open. It is also used to gauge how many points or pips the market moves on average during a session. This helps us to place better our take profits and stop losses. The indicator works on all forex pairs, gold, silver, commodities, stocks, indices and any other instrument that your
Presentamos Market Structure Break Out para MT4: su indicador profesional MSB y de zonas no quebradas  Únete a  Koala Trading Solution Channel  en la comunidad mql5 para conocer las últimas noticias sobre todos los productos de Koala. El enlace de unión está debajo: https://www.mql5.com/en/channels/koalatradingsolution Market Structure Break Out: tu camino para tener un análisis puro de las ondas del mercado Este indicador está diseñado para dibujar la estructura del mercado y las ondas de m
To get access to MT5 version please click   here . This is the exact conversion from TradingView: QQE MT4 Glaz-modified by JustUncleL This is a light-load processing and non-repaint indicator. All input options are available. This is not a multi time frame indicator. Buffers are available for processing in EAs. You can message in private chat for further changes you need.
Limitless Lite follow trend. Color change trend changed. Works in EURUSD/GBPUSD/XAUUSD/US500/USDCAD/JP225/USDTRY/USDMXN and all pairs Best timeframes 1H/4H/DAILY Signal on close of a bar. DOES NOT repaint. DOES NOT repaint. DOES NOT repaint. DOES NOT repaint. DOES NOT recalculate. DOES NOT recalculate. DOES NOT recalculate. DOES NOT recalculate NOTE : TREND CHANGED FOLLOW ARROW Settings : No Settings, change color
Ultimate solution on price action trade system Built Inside One Tool! Our smart algorithm tool will detect the price action pattern and alert upon potential with entry signals and exit levels including stoploss and takeprofit levels based on the time setting on each market session. This tool will also filters out market currency strength to ensure our entry are in a good currency conditions based on it's trend. Benefit You Get Easy, visual and effective price action detection. Gives you th
Sven AI Trading BOT EA is operating Grid, Martingale, Arbitrage Strategies by new moderne Artificial Intelligence Technologies ! Sven AI Trading BOT EA is using new moderne Artificial Intelligence Grid Technologies for very fast automatical High-Frequency trading of CFDs, Currencies, Forex (FX), Indices, Indexes, Stocks, Shares, ETFs, Gold, Commodities, Metals, ETCs, Futures and Options into MetaTrader 4 Platform ! Sven AI Trading BOT EA is using new High Quantity and High Quality Artificial Int
Std Channels
Muhammed Emin Ugur
Std Channels The Std Channels Indicator is a technical indicator that uses standard deviation to create five channels around a price chart. The channels are used to identify support and resistance levels, as well as trends and reversals. The indicator is calculated by first calculating the standard deviation of the price data over a specified period of time. The channels are then created by adding and subtracting the standard deviation from the price data. The five channels are as follows: Upper
This indicator will allow you to evaluate single currency linear regression. WHAT IS LINEAR REGRESSION?(PIC.3) Linear regression is an attempt to model a straight-line equation between two variables considering a set of data values. The aim of the model is to find the best fit that can serve the two unknown values without putting the other at a disadvantage. In this case, the two variables are price and time, the two most basic factors in the Forex market. Linear regression works in such a wa
Big Player EA AUDUSD is an EA that generates trading signals with custom strategies. The EA scans 5 months of history and generates signals and buys or sells on these signals. At least 5 months of data should be behind when testing the EA. Also, cross Takeprofit strategies are implemented in the EA. Single, double, triple and quad TP strategies are applied. Thanks to the cross Takeprofit strategies, the EA works easily even during high activity times.  Big Player EA Family Single Symbols:   EU
Trend Tracking System is an indicator that generates trade arrows. It generates trade arrows with its own algorithm. These arrows give buying and selling signals. The indicator certainly does not repaint. The point at which the signal is given does not change. You can use it in all graphics. You can use it in all pairs. This indicator shows the input and output signals as arrows and alert. When sl_tp is set to true, the indicator will send you the close long and close short warnings. It tells yo
Trend New
Vitalii Zakharuk
Trend New Trend Indicator, shows the signals for entry. Displays both entry points and the trend itself. Shows statistically calculated moments for entering the market with arrows. When using the indicator, it is possible to optimally distribute the risk factor. Settings: Uses all one parameter for settings. Selecting a parameter, it is necessary to visually resemble it so that the appropriate graph has a projection of extremes. Options: Length - the number of bars for calculating the ind
Kill Zones MT4
Diego Arribas Lopez
MT5 Version Kill Zones Kill Zones allows you to insert up to 3 time zones in the chart. The visual representation of the Kill Zones in the chart together with an alert and notification system helps you to ignore fake trading setups occurring outside the Kill Zones or specific trading sessions. Using Kill Zones in your trading will help you filter higher probability trading setups. You should select time ranges where the market usually reacts with high volatility. Based on EST time zone, followi
Global Trend
Vitalii Zakharuk
Global Trend Indicator, shows the signals for entry. Displays both entry points and the trend itself. Shows statistically calculated moments for entering the market with arrows. When using the indicator, the risk factor can be optimally distributed. Settings: Uses all one parameter for settings. Choosing a parameter, it is necessary to visually resemble it so that the appropriate graph has a projection of extremes. Parameters: Length - the number of bars for calculating the indicator.
The indicator determines a special pattern of Joe Dinapoli. It gives very high probability buy and sell signals. Indicator does not repaint. Indicator Usage Buy Signal ''B'' Entry : Market buy order at signal bar close Stop : Low of signal bar Take Profit : First swing high Sell Signal ''S'' Entry : Market sell order at signal bar close Stop : High of signal bar Take Profit : First swing low Indicator Parameters Fast EMA : External Parameter (should be kept as default) Slow EMA: External Param
Risk Reward Tool , It is easy to use. With this tool you can see the rates of profit loss profit. You can see your strategy and earnings reward status of your goals.Double calculation can be done with single tool. Move with drag and drop.  You can adjust the lot amount for calculations. The calculation results are shown in the comment section. There may sometimes be graphical errors during movements. Calculations works at all currency. Calculations All CFD works. Updates and improvements will co
Warning: Our product works with 28 symbols. The average accuracy level of the signals is 99%. We see signals below 15 pips as unsuccessful. Technique 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
Market Noise El ruido del mercado es un indicador que determina las fases del mercado en un gráfico de precios y también distingue los movimientos de tendencia claros y suaves de los movimientos ruidosos y planos cuando ocurre una fase de acumulación o distribución. Cada fase es buena para su propio tipo de negociación: tendencia para los sistemas que siguen tendencias y plana para los agresivos. Cuando comienza el ruido del mercado, puede decidir salir de las operaciones. De la misma manera, y
The Trend Professor is a moving average based indicator designed for the purpose of helping the community of traders to analyse the price trend. The indicator will be displayed in the main chart as it is indicated on the screenshot section. How it works The indicator has lines of moving averages and colored histograms to depict the direction of the trend. There will be a fast signal line colored blue/yellow/red at some points. The red/yellow colored lines stands for bearish trend/signal while th
-   Real price is 70$   - 50% Discount ( It is 35$ now ) Contact me for instruction, any questions! Introduction A flag can be used as an entry pattern for the continuation of an established trend. The formation usually occurs after a strong trending move. The pattern usually forms at the midpoint of a full swing and shows the start of moving. Bullish flags can form after an uptrend, bearish flags can form after a downtrend. Flag Pattern Scanner Indicator It is usually difficult for a trade
Los compradores de este producto también adquieren
Gann Made Easy
Oleg Rodin
4.84 (57)
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ó
Trend Punch
Mohamed Hassan
5 (12)
This indicator is unstoppable when combined with our other indicator called  Support & Resistance . After purchase, send us a message and you will get it   for  FREE as a BONUS! Introducing Trend Punch , the revolutionary forex trend indicator that will transform the way you trade! Trend Punch is uniquely designed to provide precise buy and sell arrows during strong market trends, making your trading decisions clearer and more confident. Whether you're trading major currency pairs or exotic sym
Gold Stuff
Vasiliy Strukov
4.89 (201)
Gold Stuff: un indicador de tendencia diseñado específicamente para el oro, también se puede usar en cualquier instrumento financiero. El indicador no se vuelve a dibujar ni se retrasa. El marco de tiempo recomendado es H1. Este indicador está escrito por EA Gold Stuff Advisor, puede encontrarlo en mi perfil.  Puede obtener una copia gratuita de nuestro indicador Strong Support y Trend Scanner, por favor envíe un mensaje privado. ¡a mí! IMPORTANTE! Póngase en contacto conmigo inmediatamente d
Trend Pulse
Mohamed Hassan
5 (3)
Please contact me after purchase to immediately get your PDF strategy + documentation for Trend Pulse !  Official release price of $89  (1 /50 copies left). Next price is $199 . Introducing Trend Pulse , a unique and robust indicator capable of detecting bullish, bearish, and even ranging trends! Trend Pulse uses a special algorithm to filter out market noise with real precision. If the current symbol is moving sideways, Trend Pulse will send you a ranging signal, letting you know that it'
¡LEA LA INFORMACIÓN A CONTINUACIÓN ANTES DE COMPRAR EL PRODUCTO! ¡Apollo Pips PLUS SP es un producto único! ¡ES PARA AQUELLOS QUE QUIEREN OBTENER MI NUEVO INDICADOR "APOLLO PIPS" MÁS BONO "SUPER PACK" CON ACCESO A TODOS MIS INDICADORES COMERCIALES! Al comprar el producto Apollo Pips PLUS SP, en realidad está comprando una versión absolutamente nueva de mi indicador Apollo Pips. Esta versión del indicador tiene un algoritmo mejorado y un parámetro fácil de usar que le brinda la oportunidad de uti
FX Power MT4 NG
Daniel Stein
5 (12)
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
Scalper Inside PRO
Alexey Minkov
4.69 (49)
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 profitability. Scalper Inside
TPSproTREND PrO
Roman Podpora
4.78 (18)
TPSpro TREND PRO   es un indicador de tendencia que analiza automáticamente el mercado y proporciona información sobre la tendencia y cada uno de sus cambios, además de dar señales para ingresar operaciones sin volver a dibujar. El indicador utiliza cada vela, analizándolas por separado. refiriéndose a diferentes impulsos: impulso hacia arriba o hacia abajo. ¡Puntos de entrada exactos a transacciones de divisas, criptomonedas, metales, acciones e índices! Versión MT5                   DESCRIPCI
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
- Real price is 80$ - 40% Discount ( It is 49$ now ) Contact me for instruction, any questions! Introduction The breakout and retest strategy is traded support and resistance levels. it involves price breaking through a previous level.  The break and retest strategy is designed to help traders do two main things, the first is to avoid false breakouts. Many false breakouts start with a candlestick that breaks out of a level but ends with an immediate candlestick that brings the price back into t
RelicusRoad Pro
Relicus LLC
4.54 (80)
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
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. Curso en línea, manual del usuario y demostración. 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 Interio
Clear Breakout
Martin Alejandro Bamonte
El indicador "Breakout Buy-Sell" está diseñado para identificar y resaltar posibles oportunidades de compra y venta basadas en rupturas de precios durante diferentes sesiones del mercado (Tokio, Londres y Nueva York). Este indicador ayuda a los traders a visualizar claramente las zonas de compra y venta , así como los niveles de toma de ganancias (TP) y stop loss (SL). Estrategia de Uso El indicador se puede utilizar de la siguiente manera: Configuración Inicial : Selecciona la sesión del merc
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
Trend Screener
STE S.S.COMPANY
4.79 (81)
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
¡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
Atomic Analyst
Issam Kassas
5 (2)
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. Manual del usuario: configuraciones, entradas y estrategia. 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 poten
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
El sistema PRO Renko es un sistema de trading de alta precisión especialmente diseñado para operar gráficos RENKO. Se trata de un sistema universal que se puede aplicar a diversos instrumentos de negociación. El sistema neutraliza eficazmente el llamado ruido de mercado, lo que le brinda acceso a señales de reversión precisas. El indicador es muy fácil de usar y solo tiene un parámetro responsable de la generación de señales. Puede adaptar fácilmente la herramienta a cualquier instrumento com
Gold Channel is a volatility-based indicator, developed with a specific timing algorithm for the XAUUSD pair, which consists of finding possible corrections in the market. This indicator shows two outer lines, an inner line (retracement line) and an arrow sign, where the theory of the channel is to help identify overbought and oversold conditions in the market. The market price will generally fall between the boundaries of the channel. If prices touch or move outside the channel it is a tra
Backtest and Read Overview before purchase. Chart patterns have been a topic of debate among traders; some believe they are reliable signalers, while others do not. Our Chart Patterns All-in-One indicator displays various chart patterns to help you test these theories for yourself. The profitability of these patterns is not a reflection of the indicator's effectiveness but rather an evaluation of the patterns themselves. The Chart Patterns All-in-One indicator is an excellent tool for visualizin
PZ Trend Trading
PZ TRADING SLU
4.8 (5)
Trend Trading es un indicador diseñado para sacar el máximo provecho posible de las tendencias que tienen lugar en el mercado, mediante el cronometraje de retrocesos y rupturas. Encuentra oportunidades comerciales al analizar qué está haciendo el precio durante las tendencias establecidas. [ Guía de instalación | Guía de actualización | Solución de problemas | FAQ | Todos los productos ] Opere en los mercados financieros con confianza y eficiencia Aproveche las tendencias establecidas sin s
TPSpro RFI Levels
Roman Podpora
4.8 (20)
反转第一脉冲水平 (RFI)     指示     俄羅斯     -        ESP   Recomendamos utilizar con   el indicador -   TPSpro 趋势专业版 -   MT5版本 Un elemento clave importante en el comercio son las zonas o niveles a partir de los cuales se toman decisiones para comprar o vender un instrumento comercial. A pesar de los intentos de los grandes actores de ocultar su presencia en el mercado, inevitablemente dejan rastros. Nuestra tarea era aprender a encontrar estos rastros e interpretarlos correctamente. Funciones principales:
NAM Order Blocks
NAM TECH GROUP, CORP.
5 (1)
Indicador de detección de Order Blocks multitimeframe para MT4. Características - Panel de control totalmente personalizable, proporciona una interacción completa. - Oculta y muestra el panel de control donde quieras. - Detecta OB en múltiples marcos de tiempo. - Permite seleccionar la cantidad de OB para mostrar. - Interfaz de usuario de diferentes OBs. - Diferentes filtros de OBs (regulares, rejection y sin capitalizar). - Alerta de proximidad de OBs. - Líneas ADR High y Low. - Servicio de not
Order Block Hunter
Noha Mohamed Fathy Younes Badr
5 (1)
Order block hunter indicator is the best indicator for  hunt the order blocks that area where there has been a large concentration of limit orders waiting to be executed Order blocks are identified on a chart by observing previous price action and looking for areas where the price experienced significant movement or sudden changes in direction .This indicator does that for you by using very complicated codes and helps you to take the best areas To buy and sell because it make marks at the best a
Scalper Vault
Oleg Rodin
5 (22)
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
M1 Arrow
Oleg Rodin
4.67 (12)
Una estrategia intradía basada en dos principios fundamentales del mercado. El algoritmo se basa en el análisis de volúmenes y ondas de precios utilizando filtros adicionales. El algoritmo inteligente del indicador da una señal solo cuando dos factores de mercado se combinan en uno. El indicador calcula ondas de cierto rango en el gráfico M1 utilizando los datos del marco de tiempo más alto. Y para confirmar la onda, el indicador utiliza el análisis por volumen. Este indicador es un sistema come
Advanced Supply Demand
Bernhard Schweigert
4.9 (271)
¡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
IX Power MT4
Daniel Stein
5 (5)
IX Power lleva por fin la insuperable precisión de FX Power a los símbolos que no son de Forex. Determina con exactitud la intensidad de las tendencias a corto, medio y largo plazo de tus índices, acciones, materias primas, ETF e incluso criptodivisas favoritas. Puede analizar todo lo que su terminal le ofrece. Pruébalo y experimenta cómo tu timing mejora significativamente a la hora de operar. Características principales de IX Power Resultados de cálculo 100% precisos y sin repintado -
Break and Retest
Mohamed Hassan
3.83 (12)
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! If you want more alert signals per day, you increase the number next to the parameter called: Support & Resistance Sensitivity.  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 the most complex indicators that we made with ove
Otros productos de este autor
For MT4 version please click here . This is the exact conversion from TradingView: "Range Filter 5min" By "guikroth". - This indicator implements Alerts as well as the visualizations. - Input tab allows to choose Heiken Ashi or Normal candles to apply the filter to. It means it is a (2 in 1) indicator. - This indicator lets you read the buffers for all data on the window. For details on buffers please message me. - This is a non-repaint and light processing load indicator. - You can message in p
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 download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. Thanks
To 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
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: "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
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
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. 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 MT4 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
To download MT5 version please click here . - 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 the exact conversion from TradingView: " Better RSI with bullish / bearish market cycle indicator" by TradeCalmly. This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need.
To get access to MT5 version please click here . This is the exact conversion from TradingView:"HIGH AND LOW Optimized Trend TrackerHL OTT" by "kivancozbilgic" This is a light-load processing indicator. It is a non-repaint indicator. Colored Candle and Highlighting options are not available. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
This Expert is developed to optimize parameters to trade intraday trending markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 12% profitability in EURUSD for a period of a year and 2% draw-down using optimization to find best inputs.
FREE
To download MT5 version please click  here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
To download MT4 version please click here . Metatrader users are limited to few moving average types. Therefor I decided to create a package consisting of all MAs I knew. This package suggests 12 different types: { SMA, EMA, DEMA, TEMA, WMA, VWMA, SMMA(RMA), HullMA, LSMA, ALMA, SSMA, TMA } You can configure them via input tab. This is a non-repaint indicator with light load. To implement them I referred to standard  libraries of pine script.
FREE
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Trend Regularity Adaptive Moving Average","TRAMA" By "   LuxAlgo   ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
TRAMA by LuxAlgo
Yashar Seyyedin
5 (1)
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Trend Regularity Adaptive Moving Average","TRAMA" By " LuxAlgo ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Zero Lag MACD Enhanced - Version 1.2" by "   Albert.Callisto ". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Didi Index" by " everget ". - This is a popular version of DIDI index on tradingview. - This is a light-load processing and non-repaint indicator. - Buffer is available for the lines on chart and arrows on chart. - You can message in private chat for further changes you need. Thanks for downloading
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 get access to MT5 version please click   here . This is the exact conversion from TradingView: "Hammer & ShootingStar Candle Detector" by "MoriFX". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
FREE
To download MT5 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
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
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
RSI versus SMA
Yashar Seyyedin
4 (1)
To download MT5 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
- 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
Filtro:
No hay comentarios
Respuesta al comentario
Versión 1.10 2024.08.25
Fixed a bug!