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

Supertrend by KivancOzbilgic MT4

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

enum ENUM_SOURCE{OPEN, CLOSE, HIGH, LOW, HL2, HLC3, OHLC4, HLCC4};
input string    SuperTrend_Setting="";
input int Periods = 10; //ATR Period
input ENUM_SOURCE src = HL2; //Source
input double Multiplier = 3; //ATR Multiplier
input bool changeATR= true; //Change ATR Calculation Method ?
input bool showsignals = false; //Show Buy/Sell Signals ?

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

bool IsSuperTrendBuy(int index)
{
   double value_buy=iCustom(_Symbol, PERIOD_CURRENT,
    "Market\\Supertrend by KivancOzbilgic MT4",
    Periods, src, Multiplier, changeATR, showsignals, 8, index);
   return value_buy!=EMPTY_VALUE;
}

bool IsSuperTrendSell(int index)
{
   double value_sell=iCustom(_Symbol, PERIOD_CURRENT,
    "Market\\Supertrend by KivancOzbilgic MT4",
    Periods, src, Multiplier, changeATR, showsignals, 9, 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
Master Scalping M1 est un indicateur innovant qui utilise un algorithme pour déterminer rapidement et avec précision la tendance. L'indicateur calcule le temps d'ouverture et de fermeture des positions, les algorithmes de l'indicateur vous permettent de trouver les moments idéaux pour entrer dans une transaction (acheter ou vendre un actif), ce qui augmente le succès des transactions pour la plupart des commerçants. Avantages de l'indicateur : Facile à utiliser, ne surcharge pas le graphique ave
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 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
Title : Market Bias Indicator - Oscillator-Based Trading Tool Introduction : Discover the potential of the "Market Bias Indicator," a revolutionary oscillator-based trading tool designed for precise market analysis. If you're in search of a robust alternative to traditional bias indicators, your quest ends here. Market Bias Indicator offers unparalleled accuracy in identifying market sentiment and is your gateway to confident trading decisions. Recommended Trading Pairs : Market Bias Indicator i
Fibonacci retracement and extension line drawing tool Fibonacci retracement and extended line drawing tool for MT4 platform is suitable for traders who use  golden section trading Advantages: There is no extra line, no too long line, and it is easy to observe and find trading opportunities Trial version: https://www.mql5.com/zh/market/product/35884 Main functions: 1. Multiple groups of Fibonacci turns can be drawn directly, and the relationship between important turning points
Blahtech Market Profile
Blahtech Limited
4.61 (18)
Was: $249  Now: $99   Market Profile defines a number of day types that can help the trader to determine market behaviour. A key feature is the Value Area, representing the range of price action where 70% of trading took place. Understanding the Value Area can give traders valuable insight into market direction and establish the higher odds trade. It is an excellent addition to any system you may be using. Blahtech Limited presents their Market Profile indicator for the MetaTrader community. Ins
The   Strategy Tester   product is an indicator where you can both test and run strategies. There are 64 strategies in total in this indicator. It uses 3 indicators. You can test tens of thousands of strategies by changing the parameter settings of these indicators. You can run 6 strategies at the same time. With this product, you will now create your own signals. Recommendations and Features Used indicators:   Rsi, Bears power, Stochastic It works on all   time frame   Recommended time frame
Un indicateur technique qui calcule ses lectures sur les volumes de transactions. Sous forme d'histogramme, il montre l'accumulation de la force de mouvement de l'instrument de trading. Il dispose de systèmes de calcul indépendants pour les directions haussières et baissières. Fonctionne sur tous les instruments de trading et délais. Peut compléter n’importe quel système commercial. L'indicateur ne redessine pas ses valeurs, les signaux apparaissent sur la bougie actuelle. Il est facile à util
Daily Candle Predictor est un indicateur qui prédit le cours de clôture d'une bougie. L'indicateur est principalement destiné à être utilisé sur les graphiques D1. Cet indicateur convient à la fois au trading forex traditionnel et au trading d'options binaires. L'indicateur peut être utilisé comme un système de trading autonome, ou il peut servir de complément à votre système de trading existant. Cet indicateur analyse la bougie actuelle, calcule certains facteurs de force à l'intérieur du corps
Noize Absorption Index MT4
Ekaterina Saltykova
5 (1)
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation. S
HMA Trend Professional MT4
Pavel Zamoshnikov
4.63 (8)
Improved version of the free HMA Trend indicator (for MetaTrader 4) with statistical analysis. HMA Trend is a trend indicator based on the Hull Moving Average (HMA) with two periods. HMA with a slow period identifies the trend, while HMA with a fast period determines the short-term movements and signals in the trend direction. The main differences from the free version: Ability to predict the probability of a trend reversal using analysis of history data. Plotting statistical charts for analyz
Trend Bilio - an arrow indicator without redrawing shows potential market entry points in the form of arrows of the corresponding color: upward red arrows suggest opening a buy, green down arrows - selling. The entrance is supposed to be at the next bar after the pointer. The arrow indicator Trend Bilio visually "unloads" the price chart and saves time for analysis: no signal - no deal, if an opposite signal appears, then the current deal should be closed. It is Trend Bilio that is considered
To download MT5 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
To get access to MT5 version please click here . This is the exact conversion from TradingView: "[SHK] Schaff Trend Cycle (STC)" by "shayankm". This is a light-load processing indicator. This is a non-repaint indicator. Buffers are available for processing in EAs. All input fields are available. You can message in private chat for further changes you need. Thanks for downloading
VR Cub
Vladimir Pastushak
VR Cub est un indicateur permettant d'obtenir des points d'entrée de haute qualité. L'indicateur a été développé pour faciliter les calculs mathématiques et simplifier la recherche de points d'entrée dans un poste. La stratégie de trading pour laquelle l'indicateur a été rédigé prouve son efficacité depuis de nombreuses années. La simplicité de la stratégie de trading est son grand avantage, qui permet même aux traders débutants de négocier avec succès avec elle. VR Cub calcule les points d'ouve
Forex Gump
Andrey Kozak
2.83 (6)
Forex Gump is a fully finished semi-automatic trading system. In the form of arrows, signals are displayed on the screen for opening and closing deals. All you need is to follow the instructions of the indicator. When the indicator shows a blue arrow, you need to open a buy order. When the indicator shows a red arrow, you need to open a sell order. Close orders when the indicator draws a yellow cross. In order to get the most effective result, we recommend using the timeframes H1, H4, D1. There
The Th3Eng PipFinite indicator is based on a very excellent analysis of the right trend direction with perfect custom algorithms. It show the true direction and the best point to start trading. With StopLoss point and Three Take Profit points. Also it show the right pivot of the price and small points to order to replace the dynamic support and resistance channel, Which surrounds the price. And Finally it draws a very helpful Box on the left side on the chart includes (take profits and Stop loss
Pro Trend Tracking   indicator is designed for trend and signal trading. This indicator generates trend signals.  It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators.  You can only trade with this indicator. The generated signals are displayed on the graphical screen.  Thanks to the alert features you can
Heiken Ashi candle chart is an improved version of The Japanese candle chart, which can effectively filter the market "noise" of the Japanese candle chart. It is favored by many traders for its simplicity and intuition. For trend traders, the HA candle chart is a magic tool. Unlike the traditional Japanese candle chart, Heikenashi does not reflect the opening price, high price, low price and closing price of the market. Instead, Heikenashi calculates the value of a single K line in the dominant
Sto Signal AM
Andriy Matviyevs'kyy
This indicator displays Stochastic osc signals on the price chart and allows the user to receive notifications of such signals. The Stochastic indicator is a classic and proven indicator of the technical analysis of the markets. Despite its age, it is still relevant today. Depending on the settings, the indicator allows you to work effectively on various TFs and any markets. Signals are given on fully formed bars and are not redrawn. Custom Parameters: Stochastic_Price (0-1) - The applied pric
FREE
Cosmic Diviner X Planet
Olena Kondratenko
4 (2)
This unique multi-currency strategy simultaneously determines the strength of trends and market entry points, visualizing this using histograms on the chart. The indicator is optimally adapted for trading on the timeframes М5, М15, М30, Н1. For the convenience of users, the indicator renders the entry point (in the form of an arrow), recommended take profit levels (TP1, TP2 with text labels) and the recommended Stop Loss level. The take profit levels (TP1, TP2) are automatically calculated for
TWO PAIRS SQUARE HEDGE METER INDICATOR Try this brilliant 2 pairs square indicator It draws a square wave of the relation between your two inputs symbols when square wave indicates -1 then it is very great opportunity to SELL pair1 and BUY Pair2 when square wave indicates +1 then it is very great opportunity to BUY pair1 and SELL Pair2 the inputs are : 2 pairs of symbols         then index value : i use 20 for M30 charts ( you can try other values : 40/50 for M15 , : 30 for M30 , : 10 for H1 ,
Owl smart levels
Sergey Ermolov
4.63 (54)
Version MT5  |  FAQ L' indicateur Owl Smart Levels   est un système de trading complet au sein d'un seul indicateur qui comprend des outils d'analyse de marché populaires tels que   les fractales avancées de Bill Williams , Valable ZigZag qui construit   la structure d'onde correcte   du marché et   les niveaux de Fibonacci   qui marquent les niveaux exacts d'entrée. sur le marché et les endroits où prendre des bénéfices. Description détaillée de la stratégie Mode d'emploi de l'indicateur Conse
Bollinger Squeeze Trend Indicator is a technical analysis tool used in the investment and trading world. This indicator helps identify market trends by analyzing the price movements of assets. The Bollinger Squeeze Trend Indicator uses a variation of Bollinger Bands and focuses specifically on the relationships between volatility and price movements. Essentially, the Bollinger Squeeze Trend indicator is designed to recognize periods of narrowing and widening of bands. This can help identify p
To download MT5 version please click  here . This is the exact conversion from TradingView: "WaveTrend [LazyBear]" By "zeusuk3". One of the coolest indicators out there to detect overbought and oversold zones. It can be used as a part of more complicated strategy and for confirming a potential trade setup. There are buffers to use in EAs also. The indicator is loaded light and non-repaint. - You can message in private chat for further changes you need. Thanks for downloading 
The principle of this indicator is very simple: detecting the trend with Moving Average, then monitoring the return point of graph by using the crossing of Stochastic Oscillator and finally predicting BUY and SELL signal with arrows, alerts and notifications. The parameters are fixed and automatically calculated on each time frame. Example: If you install indicator on EURUSD, timeframe M5: the indicator will detect the main trend with the Moving Average on this timeframe (for example the Moving
This is a new strategy for SUPPLY DEMAND areas It is based on a calculation using the tick volume to detect the big price action in market for both bear /bull actions this smart volume action candles are used to determine the supply and demand areas prices in between main supply and demand lines indicate sideway market  up arrows will be shown when prices moves above the main supply and the secondary supply lines Down arrows will be shown when prices moves below the main demand and the secondary
Gvs Undefeated Trend   indicator is designed for trend and signal trading. This indicator generates trend signals.  It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators.  You can only trade with this indicator. The generated signals are displayed on the graphical screen.  Thanks to the alert features you ca
Night ghost
Dmitriy Kashevich
Night Ghost - Indicateur de flèche pour les options binaires. Ceci est un assistant fiable pour vous à l'avenir! - Pas de redessin sur le graphique -Fonctionne très bien sur toutes les paires de devises ! -Précision de l'indicateur jusqu'à 90% (surtout la nuit) -Pas besoin de configurer pendant une longue période (configurer parfaitement pour les options binaires) - Pas de signaux en retard - L'apparition d'un signal sur la bougie en cours -Parfait pour la période M1 (Pas Plus !
Strong Retracement Points Pro demo edition! SRP (Strong Retracement/Reversal Points) is a powerful and unique support and resistance indicator. It displays the closest important levels which we expect the price retracement/reversal! If all level are broken from one side, it recalculates and draws new support and resistance levels, so the levels might be valid for several days depending on the market! If you are still hesitating to start using this wonderful tool, you can check this link to see h
Les acheteurs de ce produit ont également acheté
Gann Made Easy
Oleg Rodin
4.96 (46)
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!
Atomic Analyst
Issam Kassas
5 (1)
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é. 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 à augmenter le potentiel de trading. En utilisant plusieur
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
Scalper Vault
Oleg Rodin
5 (27)
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
Trend Screener
STE S.S.COMPANY
4.83 (86)
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
TPSproTREND PrO
Roman Podpora
5 (15)
TPSpro TRENDPRO  - is a trend indicator that automatically analyzes the market and provides information about the trend and each of its changes, as well as giving signals for entering trades without redrawing! The indicator uses each candle, analyzing them separately. referring to different impulses - up or down impulse. Exact entry points into transactions for currencies, crypto, metals, stocks, indices!  -  Version MT5               DETAILED DESCRIPTION        /       TRADING SETUPS           
Présentation       Quantum Trend Sniper Indicator   , l'indicateur révolutionnaire MQL5 qui transforme la façon dont vous identifiez et négociez les inversions de tendance ! Développé par une équipe de traders expérimentés avec une expérience commerciale de plus de 13 ans,       Indicateur Quantum Trend Sniper       est conçu pour propulser votre parcours de trading vers de nouveaux sommets grâce à sa manière innovante d'identifier les inversions de tendance avec une précision extrêmement élevée
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. 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 stratégies de trading Smart Money Concepts. Cet in
Le profit de la structure du marché change à mesure que le prix s'inverse et recule. L'indicateur d'alerte d'inversion de la structure du marché identifie le moment où une tendance ou un mouvement de prix approche de l'épuisement et est prêt à s'inverser. Il vous avertit des changements dans la structure du marché qui se produisent généralement lorsqu'un renversement ou un recul majeur est sur le point de se produire. L'indicateur identifie initialement les cassures et la dynamique des prix,
Scalper Inside PRO
Alexey Minkov
4.75 (55)
SALE NOW! Limited Time Offer! An exclusive indicator that utilizes an innovative algorithm to swiftly and accurately determine the market trend. The indicator automatically calculates opening, closing, and profit levels, providing detailed trading statistics. With these features, you can choose the most appropriate trading instrument for the current market conditions. Additionally, you can easily integrate your own arrow indicators into Scalper Inside Pro to quickly evaluate their statistics and
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
CURRENTLY 26% OFF !! Best Solution for any Newbie or Expert Trader! This indicator is a unique, high quality and affordable trading tool because we have incorporated a number of proprietary features and a new formula. With this update, you will be able to show double timeframe zones. You will not only be able to show a higher TF but to show both, the chart TF, PLUS the higher TF: SHOWING NESTED ZONES. All Supply Demand traders will love it. :) Important Information Revealed Maximize the potenti
TPSpro RFI Levels
Roman Podpora
5 (13)
A key element in trading is zones or levels from which decisions to buy or sell a trading instrument are made. Despite attempts by major players to conceal their presence in the market, they inevitably leave traces. Our task was to learn how to identify these traces and interpret them correctly. Reversal First Impulse levels (RFI)   -  Version MT5                INSTRUCTIONS                 RUS                 ENG                                       R ecommended to use with an indicator   -  
Découvrez le secret pour réussir le trading Forex avec notre indicateur MT4 personnalisé! Vous êtes-vous déjà demandé comment réussir sur le marché du Forex, gagnant régulièrement des bénéfices tout en minimisant les risques? Voici la réponse que vous avez recherchée! Permettez-nous d'introduire notre indicateur MT4 propriétaire qui révolutionnera votre approche du trading. Polyvalence unique Notre indicateur est spécialement conçu pour les utilisateurs qui préfèrent les formations de bou
TrendMaestro
Stefano Frisetti
5 (2)
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link: TRENDMAESTRO recognizes a new TREND in the bud, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these data and therefore the moment in which prices have strong probability of f
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
Présentation de l'indicateur miraculeux Forex : Libérez la puissance du trading précis En avez-vous assez de chercher le meilleur indicateur Forex qui fournisse réellement des résultats exceptionnels sur tous les délais ? Ne cherchez plus ! L'indicateur miraculeux Forex est là pour révolutionner votre expérience de trading et propulser vos gains vers de nouveaux sommets. Basé sur une technologie de pointe et des années de développement minutieux, l'indicateur miraculeux Forex se positionne comme
ALERTE D'ACHAT ET DE VENTE MULTIDEVISES et MULTITIMEFRAME. AUTO TRAILING STOP ET RÉCOMPENSE DE RISQUE TAKEPROFIT ! L'INDICATEUR SCANNE ET ANALISE LE MARCHÉ POUR QUE VOUS N'AVEZ RIEN À FAIRE ! NÉGOCIEZ TOUTES VOS DEVISES SUR UN GRAPHIQUE !   Après l'achat veuillez laisser un commentaire, contactez-moi et je vous enverrai l'assistant commercial EA. L'indicateur utilise plusieurs oscillateurs et filtres associés pour trouver les meilleurs points d'entrée CONFIRMÉS afin que vous n'ayez pas à
Entry Points Pro
Yury Orlov
4.7 (224)
Indicateur supérieur pour MT4 fournissant des signaux précis pour entrer dans un trade sans repeindre ! Il peut être appliqué à tous les actifs financiers : forex, cryptocurrencies, métaux, actions, indices.  La version MT5 est ici Il fournira des signaux de trading assez précis et vous dira quand il est préférable d'ouvrir un trade et de le fermer. Regardez la vidéo (6:22) avec un exemple de traitement d'un seul signal qui a rapporté à l'indicateur ! La plupart des traders améliorent l
Trend Forecasting
Mohamed Hassan
5 (15)
Cet indicateur est très puissant lorsqu'il est combiné avec notre autre indicateur appelé Katana. Après l'achat, envoyez-nous un message et vous pourrez obtenir Katana GRATUITEMENT en BONUS  ! Le prix augmentera bientôt à 149$ ! Ne manquez pas le prix courant à 65$ ! L'indicateur de prévision de tendance est un outil très unique et simple qui est capable de prédire les mouvements futurs des prix en fonction des signaux générés par MACD. Cela vous aide à avoir une estimation des domaines dans
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
Présentation       Quantum Breakout PRO   , l'indicateur révolutionnaire MQL5 qui transforme la façon dont vous négociez les zones d'évasion ! Développé par une équipe de traders expérimentés avec une expérience de trading de plus de 13 ans,   Quantum Breakout PRO   est conçu pour propulser votre parcours de trading vers de nouveaux sommets grâce à sa stratégie de zone de discussion innovante et dynamique. Quantum Breakout Indicator vous donnera des flèches de signalisation sur les zones d
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
FX Power MT4 NG
Daniel Stein
5 (8)
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
Break and Retest
Mohamed Hassan
5 (2)
Break & Retest is unstoppable when combined with our other divergence indicator. After purchase, send us a message and you could get this  2nd indicator  for  FREE  as a  BONUS! ‍You can visually backtest Break & Retest to see how it behaved in the past!    Manual guide:   Click here $59  for the first 25 copies ( 7  left)! Next price is $120 .  After many months of hard work and dedication, we are extremely proud to present you our  Break and Retest price action indicator crea
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'
TrendDecoder Premium
Christophe, Pa Trouillas
5 (3)
Identifiez les ranges et les prochaines tendances fortes   |  Obtenez les premiers signaux et la force des tendances   |  Obtenez des TP clairs et RR favorable   |  Repérer les niveaux Fibo que le prix va tester Indicateur qui ne retrace pas, non retardé - idéal pour le trading manuel et automatisé - adapté à tous les actifs et à toutes les unités de temps Pour une durée limitée >>   -50% de réduction Après votre achat,   contactez-moi sur ce canal  pour obtenir les réglages recommandés. Version
L'indicateur d'inversion ADR vous montre en un coup d'œil où le prix se négocie actuellement par rapport à sa fourchette quotidienne moyenne normale. Vous recevrez des alertes instantanées par pop-up, e-mail ou push lorsque le prix dépasse sa fourchette moyenne et les niveaux supérieurs de votre choix afin que vous puissiez sauter rapidement dans les reculs et les inversions. L'indicateur trace des lignes horizontales sur le graphique aux extrêmes de la fourchette quotidienne moyenne ainsi que
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'
Shepherd Harmonic Pattern
Abdullah Alrai
4.68 (59)
Cet indicateur détectera des motifs harmoniques dessinés sur le graphique par des méthodes manuelles et automatiques. Vous pouvez consulter le manuel d'utilisateur à partir de ce lien: Ajoutez votre avis et contactez-nous pour l'obtenir. Il existe une version gratuite pour essayer ce produit sur MT4. Vous pouvez l'utiliser pour détecter les motifs Gartley et Nenstar: https://www.mql5.com/en/market/product/30181 Vous pouvez acheter la version complète de MT4 à partir de: https://www.mql5.com/en/m
FX Volume
Daniel Stein
4.6 (35)
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 Volume est le PREMIER et SEUL indicateur de volume qui fournit un VRAI aperçu du sentiment du marché du point de vue d'un courtier. Il fournit des informations impressionnantes sur la façon dont les acteurs institutionnels du marché, comme les courtiers, sont positionnés sur le marché des changes, bien plus rapidement que les rapports COT. Voir c
Tout d'abord, il convient de souligner que ce système de trading est un indicateur non repainting, non redrawing et non lagging, ce qui le rend idéal pour le trading professionnel. Le "Système de Trading de Support et Résistance Intelligent" est un indicateur avancé conçu pour les traders novices et expérimentés. Il permet aux traders de bénéficier de précision et de confiance sur le marché du forex. Ce système complet combine plus de 7 stratégies, 10 indicateurs et diverses approches de trad
Plus de l'auteur
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. Thanks
For MT4 version please send private message. - This is the exact conversion from TradingView source: "Hurst Cycle Channel Clone Oscillator" By "LazyBear". - For bar color option please send private message. - This is a non-repaint and light processing load indicator. - Buffers and inputs are available for use in EAs and optimization purposes. - You can message in private chat for further changes you need.
B Xtrender
Yashar Seyyedin
5 (1)
To download MT4 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
To get access to 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 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: "SwingArm ATR Trend Indicator" by " vsnfnd ". Also known as : "Blackflag FTS" by "Jose Azcarate" This is a light-load processing and non-repaint indicator. All input options are available except multi time frame Buffers are available for processing in EAs. Extra option to show buy and sell signal alerts. You can message in private chat for further changes you need.
To get access to 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 contact via private message. This is the exact conversion from TradingView:Nadaraya-Watson Envelope" by " LuxAlgo ". This is not a light-load processing indicator. It is a REPAINT indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
To get access to MT5 version please click here . This is the exact conversion from TradingView:"HIGH AND LOW Optimized Trend TrackerHL OTT" by "kivancozbilgic" This is a light-load processing indicator. It is a non-repaint indicator. Colored Candle and Highlighting options are not available. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
This is the Chandelier Exit trend indicator applied to heiken ashi candles based on "G TREND GUNBOT" by "LUIS_GANDATA_G_TREND" on tradingview. Heiken ashi candles filter out many of the chops and therefore as an input to Chandelier Exit you achieve well filtered Buy and Sell signals. Also you can choose to apply the trend indicator to normal candles via input tab. (two in one indicator) This is a non-repaint and light processing load indicator. You can message in private chat for further change
FREE
GoldTrader
Yashar Seyyedin
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. martingale version is available here . Strategy description - Detect trend based on EMA18-EMA50-SMA200 alignment in three time frames: M15, H1, H4 - Trade in trend direction and exit when above alignment is broken. - The bot is tuned to trade XAUUSD(Gold). - The bot output is break even in rangi
FREE
To download MT4 version please click here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. Strategy description - Detect trend based on GoldTrader rules. - Enter in both direction as much as needed to achieve acceptable amount of profit. - Although this is a martingale bot it is very unlikely to loose your money, because: ==> the money management rules are safe and low risk. ==> entries
FREE
To download MT5 version please click  here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
To download MT5 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
To get access to MT5 version please click here . - This is a conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. note: Color filled areas and colored candles are not supported in MT4 version. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; inp
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Twin Range Filter" by " colinmck ". - This is a light-load processing and non-repaint indicator. - All input options are available.  - Buffers are available for processing in EAs. - You can message in private chat for further changes you need. Thanks for downloading
IntradayTrader
Yashar Seyyedin
This Expert is developed to optimize parameters to trade intraday trending markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 12% profitability in EURUSD for a period of a year and 2% draw-down using optimization to find best inputs.
FREE
To download MT4 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
I do not have the exact indicator for MT4 but the nearest possible look alike can be downloaded from here . Also you may check this link . This is the exact conversion from TradingView: "Donchian Trend Ribbon" By "LonesomeTheBlue". One of the coolest indicators out there to detect trend direction and strength. As a trader you always need such indicator to avoid getting chopped in range markets. There are ten buffers as colors to use in EAs also. The indicator is loaded light and non-repaint. Not
To get access to MT5 version please contact via private message. This is the exact conversion from TradingView: " Better RSI with bullish / bearish market cycle indicator" by TradeCalmly. This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need.
To get access to MT5 version please contact via private message. This indicator is not a standard indicator and you may get into trouble installing it. Please contact via private chat if you face trouble. This is exact conversion from TradingView: "Consolidation Zones - Live" by "LonesomeTheBlue". This is a light-load processing indicator. Updates are available only upon candle closure. Buffers are available for processing in EAs. It is a repaint indicator. So previous buffer values do not repre
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Range Identifier" By "Mango2Juice". - All twelve averaging options are available:  EMA, DEMA, TEMA, WMA, VWMA, SMA, SMMA, RMA, HMA, LSMA, Kijun, McGinley - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart and not for thresholds.  - You can message in private chat for further changes you need.
To get access to MT5 version please click   here . This is the exact conversion from TradingView: "Hammer & ShootingStar Candle Detector" by "MoriFX". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
FREE
MacroTrendTrader
Yashar Seyyedin
This is MacroTrendTrader. It trades in DAILY time frame even if you run it on lower time frames. It opens/closes trades once per day at a specific time that you choose via input tab: - "param(1-5)" are optimization parameters. - "Open/Close Hour" is set via input tab. Make sure to choose this to be away from nightly server shutdown. - "high risk" mode if chosen, sets a closer stop loss level. Therefore higher lot sizes are taken.  This is a light load EA from processing point of view. Calculatio
FREE
To download 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
To download MT5 version please click here . Metatrader users are limited to few moving average types. Therefor I decided to create a package consisting of all MAs I knew. This package suggests 12 different types: { SMA, EMA, DEMA, TEMA, WMA, VWMA, SMMA(RMA), HullMA, LSMA, ALMA, SSMA, TMA } You can configure them via input tab. This is a non-repaint indicator with light load. To implement them I referred to   standard  libraries of pine script.
FREE
Choppy Trader
Yashar Seyyedin
This Expert is developed to optimize parameters to trade in choppy markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 20% profitability in USDCAD for a period of 4-months and 5% draw-down using optimization to find best inputs.
FREE
To download 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 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
Filtrer:
Aucun avis
Répondre à l'avis
Version 1.10 2023.06.01
Fixed memory leakage issue.