• Aperçu
  • Avis
  • Commentaires
  • Nouveautés

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


Produits recommandés
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 shows an expanding price channel that helps determine the trend and the moments of its reversal. It is also used when accompanying transactions to set take profit/stop loss and averages. It has practically no parameters and is very easy to use - just specify an important moment in the history for you and the indicator will calculate the price channel. DISPLAYED LINES ROTATE - a thick solid line. The center of the general price rotation. The price makes wide cyclical movements around the
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
Présentation de Market Structure Break Out pour MT4 – Votre indicateur professionnel MSB et de zones intactes  Rejoignez le  Canal Koala Trading Solution  dans la communauté mql5 pour connaître les dernières nouvelles sur tous les produits Koala. Le lien d'adhésion est ci-dessous : https://www.mql5.com/en/channels/koalatradingsolution Market Structure Break Out : votre moyen d'effectuer une analyse pure des vagues du marché Cet indicateur est conçu pour dessiner la structure du marché et les
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 Le bruit du marché est un indicateur qui détermine les phases du marché sur un graphique de prix et distingue également les mouvements de tendance clairs et fluides des mouvements plats et bruyants lorsqu'une phase d'accumulation ou de distribution se produit. Chaque phase est bonne pour son propre type de trading : tendance pour les systèmes qui suivent les tendances et plate pour les systèmes agressifs. Lorsque le bruit du marché commence, vous pouvez décider de quitter les trans
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
Les acheteurs de ce produit ont également acheté
Gann Made Easy
Oleg Rodin
4.84 (57)
Gann Made Easy est un système de trading Forex professionnel et facile à utiliser qui est basé sur les meilleurs principes de trading en utilisant la théorie de mr. WD Gann. L'indicateur fournit des signaux d'ACHAT et de VENTE précis, y compris les niveaux Stop Loss et Take Profit. Vous pouvez échanger même en déplacement en utilisant les notifications PUSH. S'il vous plaît contactez-moi après l'achat! Je partagerai avec vous mes astuces de trading et d'excellents indicateurs bonus gratuitement!
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 est un indicateur de tendance conçu spécifiquement pour l'or et peut également être utilisé sur n'importe quel instrument financier. L'indicateur ne se redessine pas et ne traîne pas. Délai recommandé H1. Au niveau de l'indicateur de travail, l'Expert Advisor EA Gold Stuff est entièrement automatique. Vous pouvez le trouver sur mon profil. Vous pouvez obtenir une copie gratuite de notre indicateur Strong Support et Trend Scanner, veuillez envoyer un message privé. moi! Contactez
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'
VEUILLEZ LIRE LES INFORMATIONS CI-DESSOUS AVANT D'ACHETER LE PRODUIT! Apollo Pips PLUS SP est un produit unique! C'EST POUR CEUX QUI VEULENT OBTENIR MON NOUVEL INDICATEUR "APOLLO PIPS" PLUS BONUS "SUPER PACK" AVEC ACCÈS À TOUS MES INDICATEURS DE TRADING! En achetant le produit Apollo Pips PLUS SP, vous achetez en fait une toute nouvelle version de mon indicateur Apollo Pips. Cette version de l'indicateur dispose d'un algorithme amélioré et d'un paramètre facile à utiliser qui vous donne la possi
FX Power MT4 NG
Daniel Stein
5 (12)
Obtenez votre mise à jour quotidienne du marché avec des détails et des captures d'écran via notre Morning Briefing ici sur mql5 et sur Telegram ! FX Power MT4 NG est la nouvelle génération de notre très populaire indicateur de force des devises, FX Power. Et qu'est-ce que ce compteur de force de nouvelle génération offre ? Tout ce que vous avez aimé de l'original FX Power PLUS Analyse de la force de l'OR/XAU Des résultats de calcul encore plus précis Périodes d'analyse configurables individuel
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   est un indicateur de tendance qui analyse automatiquement le marché et fournit des informations sur la tendance et chacun de ses changements, ainsi que des signaux pour entrer dans des transactions sans redessiner ! L'indicateur utilise chaque bougie et les analyse séparément. faisant référence à différentes impulsions - impulsion ascendante ou descendante. Points d'entrée précis dans les transactions sur les devises, les crypto-monnaies, les métaux, les actions, les indices 
Currency Strength Wizard est un indicateur très puissant qui vous offre une solution tout-en-un pour un trading réussi. L'indicateur calcule la puissance de telle ou telle paire de devises en utilisant les données de toutes les devises sur plusieurs périodes. Ces données sont représentées sous la forme d'un indice de devise facile à utiliser et de lignes électriques de devise que vous pouvez utiliser pour voir la puissance de telle ou telle devise. Tout ce dont vous avez besoin est d'attacher l'
- 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)
Maintenant 147 $ (augmentant à 499 $ après quelques mises à jour) - Comptes illimités (PCS ou Mac) Manuel d'utilisation RelicusRoad + Vidéos de formation + Accès au groupe Discord privé + Statut VIP UNE NOUVELLE FAÇON DE REGARDER LE MARCHÉ RelicusRoad est l'indicateur de trading le plus puissant au monde pour le forex, les contrats à terme, les crypto-monnaies, les actions et les indices, offrant aux traders toutes les informations et tous les outils dont ils ont besoin pour rester renta
Tout d'abord, il convient de souligner que cet outil de trading est un indicateur non repeint, non redessiné et non retardé, ce qui le rend idéal pour le trading professionnel. Cours en ligne, manuel utilisateur et démonstration. L'indicateur Smart Price Action Concepts est un outil très puissant à la fois pour les nouveaux et les traders expérimentés. Il regroupe plus de 20 indicateurs utiles en un seul, combinant des idées de trading avancées telles que l'analyse du trader Inner Circle et les
Clear Breakout
Martin Alejandro Bamonte
L'indicateur "Breakout Buy-Sell" est conçu pour identifier et mettre en évidence des opportunités d'achat et de vente potentielles basées sur les ruptures de prix pendant différentes sessions de marché (Tokyo, Londres et New York). Cet indicateur aide les traders à visualiser clairement les zones d'achat et de vente, ainsi que les niveaux de take-profit (TP) et de stop-loss (SL). Stratégie d'utilisation L'indicateur peut être utilisé comme suit : Configuration initiale : Sélectionnez la session
ACTUELLEMENT 31% DE RÉDUCTION ! ! La meilleure solution pour tout débutant ou Expert Trader ! Cet indicateur est un outil de trading unique, de haute qualité et abordable car nous avons incorporé un certain nombre de caractéristiques exclusives et une formule secrète. Avec seulement UN graphique, il donne des alertes pour les 28 paires de devises. Imaginez comment votre trading s'améliorera parce que vous serez capable de repérer le point de déclenchement exact d'une nouvelle tendance ou d'
Trend Screener
STE S.S.COMPANY
4.79 (81)
Indicateur de tendance, solution unique révolutionnaire pour le trading et le filtrage des tendances avec toutes les fonctionnalités de tendance importantes intégrées dans un seul outil ! Il s'agit d'un indicateur multi-période et multi-devises 100 % non repeint qui peut être utilisé sur tous les symboles/instruments : forex, matières premières, crypto-monnaies, indices et actions. Trend Screener est un indicateur de suivi de tendance efficace qui fournit des signaux de tendance fléchés avec des
Actuellement 20% de réduction ! La meilleure solution pour tout débutant ou trader expert ! Ce logiciel de tableau de bord fonctionne sur 28 paires de devises. Il est basé sur 2 de nos principaux indicateurs (Advanced Currency Strength 28 et Advanced Currency Impulse). Il donne un excellent aperçu de l'ensemble du marché Forex. Il montre les valeurs de l'Advanced Currency Strength, la vitesse de mouvement des devises et les signaux pour 28 paires de devises dans tous les (9) délais. Imagine
Atomic Analyst
Issam Kassas
5 (2)
Tout d'abord, il convient de souligner que cet indicateur de trading n'est ni repainting, ni redrawing et ne présente aucun délai, ce qui le rend idéal à la fois pour le trading manuel et automatisé. Manuel de l'utilisateur : réglages, entrées et stratégie. L'Analyste Atomique est un indicateur d'action sur les prix PA qui utilise la force et le momentum du prix pour trouver un meilleur avantage sur le marché. Équipé de filtres avancés qui aident à éliminer les bruits et les faux signaux, et à
ACTUELLEMENT 26% DE RÉDUCTION La meilleure solution pour tout débutant ou trader expert ! Cet indicateur est un outil de trading unique, de haute qualité et abordable car nous avons incorporé un certain nombre de caractéristiques exclusives et une nouvelle formule. Avec seulement UN graphique, vous pouvez lire la force de la devise pour 28 paires Forex ! Imaginez comment votre trading va s'améliorer parce que vous êtes capable de repérer le point de déclenchement exact d'une nouvelle tendan
Le système PRO Renko est un système de trading très précis spécialement conçu pour le trading de graphiques RENKO. Il s'agit d'un système universel qui peut être appliqué à divers instruments de négociation. Le système neutralise efficacement ce qu'on appelle le bruit du marché en vous donnant accès à des signaux d'inversion précis. L'indicateur est très facile à utiliser et n'a qu'un seul paramètre responsable de la génération du signal. Vous pouvez facilement adapter l'outil à n'importe q
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)
Capture every opportunity: your go-to indicator for profitable trend trading Special Offer: Purchase now to receive free bonuses worth $159! (Read more for details) Trend Trading is an indicator designed to profit as much as possible from trends taking place in the market, by timing pullbacks and breakouts. It finds trading opportunities by analyzing what the price is doing during established trends. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Trade financial
TPSpro RFI Levels
Roman Podpora
4.8 (20)
Reversal First Impulse levels (RFI)    INSTRUCTIONS        RUS       -       ENG              R ecommended to use with an indicator   -   TPSpro  TREND PRO -  Version MT5 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. Main functions: Displaying activ
NAM Order Blocks
NAM TECH GROUP, CORP.
5 (1)
MT4 Multi-timeframe Order Blocks detection indicator. Features - Fully customizable on chart control panel, provides complete interaction. - Hide and show control panel wherever you want. - Detect OBs on multiple timeframes. - Select OBs quantity to display. - Different OBs user interface. - Different filters on OBs. - OB proximity alert. - ADR High and Low lines. - Notification service (Screen alerts | Push notifications). Summary Order block is a market behavior that indicates order collection
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 est un système de scalpage professionnel qui vous fournit tout ce dont vous avez besoin pour un scalpage réussi. Cet indicateur est un système de trading complet qui peut être utilisé par les traders de forex et d'options binaires. Le délai recommandé est M5. Le système vous fournit des signaux fléchés précis dans le sens de la tendance. Il vous fournit également des signaux supérieurs et inférieurs et des niveaux de marché Gann. Les indicateurs fournissent tous les types d'alertes
M1 Arrow
Oleg Rodin
4.67 (12)
Une stratégie intraday basée sur deux principes fondamentaux du marché. L'algorithme est basé sur l'analyse des volumes et des vagues de prix à l'aide de filtres supplémentaires. L'algorithme intelligent de l'indicateur ne donne un signal que lorsque deux facteurs de marché se combinent en un seul. L'indicateur calcule les vagues d'une certaine plage sur le graphique M1 en utilisant les données de la période la plus élevée. Et pour confirmer la vague, l'indicateur utilise une analyse en volume.
Advanced Supply Demand
Bernhard Schweigert
4.9 (271)
CURRENTLY 26% OFF !! Best Solution for any Newbie or Expert Trader! This indicator is a unique, high quality and affordable trading tool because we have incorporated a number of proprietary features and a new formula. With this update, you will be able to show double timeframe zones. You will not only be able to show a higher TF but to show both, the chart TF, PLUS the higher TF: SHOWING NESTED ZONES. All Supply Demand traders will love it. :) Important Information Revealed Maximize the potenti
IX Power MT4
Daniel Stein
5 (5)
IX Power apporte enfin la précision imbattable de FX Power aux symboles non-Forex. Il détermine avec précision l'intensité des tendances à court, moyen et long terme de vos indices, actions, matières premières, ETF et même crypto-monnaies préférés. Vous pouvez analyser tout ce que votre terminal a à offrir. Essayez-le et découvrez comment votre timing s'améliore considérablement lors de vos transactions. Caractéristiques principales d'IX Power Résultats de calcul précis à 100 %, sans ré
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
Plus de l'auteur
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
GoldTrader
Yashar Seyyedin
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. martingale version is available here . Strategy description - Detect trend based on EMA18-EMA50-SMA200 alignment in three time frames: M15, H1, H4 - Trade in trend direction and exit when above alignment is broken. - The bot is tuned to trade XAUUSD(Gold). - The bot output is break even in rangi
FREE
To download MT4 version please click here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
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.
IntradayTrader
Yashar Seyyedin
This Expert is developed to optimize parameters to trade intraday trending markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 12% profitability in EURUSD for a period of a year and 2% draw-down using optimization to find best inputs.
FREE
To download MT5 version please click  here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
To download 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
MacroTrendTrader
Yashar Seyyedin
This is MacroTrendTrader. It trades in DAILY time frame even if you run it on lower time frames. It opens/closes trades once per day at a specific time that you choose via input tab: - "param(1-5)" are optimization parameters. - "Open/Close Hour" is set via input tab. Make sure to choose this to be away from nightly server shutdown. - "high risk" mode if chosen, sets a closer stop loss level. Therefore higher lot sizes are taken.  This is a light load EA from processing point of view. Calculatio
FREE
To 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
Choppy Trader
Yashar Seyyedin
This Expert is developed to optimize parameters to trade in choppy markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 20% profitability in USDCAD for a period of 4-months and 5% draw-down using optimization to find best inputs.
FREE
To download 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
Filtrer:
Aucun avis
Répondre à l'avis
Version 1.10 2024.08.25
Fixed a bug!