• Übersicht
  • Bewertungen (2)
  • Diskussion (12)
  • Neue Funktionen

Supertrend by KivancOzbilgic

5

To get access to MT4 version please click here.

  • This is the exact conversion from TradingView: "Supertrend" by "KivancOzbilgic".
  • 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 Supertrend.

#include <Trade\Trade.mqh>
CTrade trade;
int handle_supertrend=0;

input group "EA Setting"
input int magic_number=123456; //magic number
input double fixed_lot_size=0.01; // select fixed lot size

enum ENUM_SOURCE{OPEN, CLOSE, HIGH, LOW, HL2, HLC3, OHLC4, HLCC4};
input group "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 ?
input bool highlight = false; //Highlighter On/Off?
input bool enable_alerts=false; //Enable Alerts


int OnInit()
  {
   trade.SetExpertMagicNumber(magic_number);
   handle_supertrend=iCustom(_Symbol, PERIOD_CURRENT, 
      "Market\\Supertrend by KivancOzbilgic",
      Periods, src, Multiplier, changeATR, showsignals, highlight, enable_alerts);
   if(handle_supertrend==INVALID_HANDLE) 
   {
      Print("Indicator not found!");
      return INIT_FAILED;
   }
   return(INIT_SUCCEEDED);
  }

void OnDeinit(const int reason)
  {
   IndicatorRelease(handle_supertrend);
  }

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 i)
{
   double array[];
   ArraySetAsSeries(array, true);
   CopyBuffer(handle_supertrend, 8, i, 1, array);
   return array[0]!=EMPTY_VALUE;
}

bool IsSuperTrendSell(int i)
{
   double array[];
   ArraySetAsSeries(array, true);
   CopyBuffer(handle_supertrend, 9, i, 1, array);
   return array[0]!=EMPTY_VALUE;
}

int BuyCount()
{
   int buy=0;
   for(int i=0;i<PositionsTotal();i++)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_BUY) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      buy++;
   }  
   return buy;
}

int SellCount()
{
   int sell=0;
   for(int i=0;i<PositionsTotal();i++)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_SELL) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      sell++;
   }  
   return sell;
}


void Buy()
{
   double Ask=SymbolInfoDouble(_Symbol, SYMBOL_ASK);
   if(!trade.Buy(fixed_lot_size, _Symbol, Ask, 0, 0, ""))
   {
      Print("Error executing order: ", GetLastError());
      //ExpertRemove();
   }
}

void Sell()
{
   double Bid=SymbolInfoDouble(_Symbol, SYMBOL_BID);
   if(!trade.Sell(fixed_lot_size, _Symbol, Bid, 0, 0, ""))
   {
      Print("Error executing order: ", GetLastError());
      //ExpertRemove();
   }
}


void CloseBuy()
{
   for(int i=PositionsTotal()-1;i>=0;i--)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_BUY) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      if(trade.PositionClose(ticket)==false)
      {
         Print("Error closing position: ", GetLastError());
         //ExpertRemove();
      }
   }  
}

void CloseSell()
{
   for(int i=PositionsTotal()-1;i>=0;i--)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_SELL) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      if(trade.PositionClose(ticket)==false)
      {
         Print("Error closing position: ", GetLastError());
         //ExpertRemove();
      }
   }  
}

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


Bewertungen 2
Khulani
156
Khulani 2023.08.02 18:44 
 

Really great! Thanks.

Darz
2635
Darz 2023.07.17 04:56 
 

Excellent Indicator, exactly the same to what we have on TradingView

Empfohlene Produkte
To get access to MT4 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
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. Inspired by Jim Dalton’s book “Mind Over Markets”, this indicator is designed to suit the
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #include CTrade trade; int handle_hull= 0 ; input group "EA Setting" input int magic_number= 123456 ; //magic number input double fixe
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.
Wapv Price and volume
Eduardo Da Costa Custodio Santos
Der WAPV Price and Volume Indicator for MT5 ist Teil des Toolsets (Wyckoff Academy Wave Market) und (Wyckoff Academy Price and Volume). Der WAPV-Preis- und Volumenindikator für MT5 wurde entwickelt, um die Volumenbewegung auf dem Chart auf intuitive Weise einfach zu visualisieren. Damit können Sie die Momente des Spitzenvolumens und Momente beobachten, in denen der Markt kein professionelles Interesse hat Identifizieren Sie Momente, in denen sich der Markt durch Trägheit bewegt und nicht durch d
Dieser Indikator zeigt Ihnen die TP- und SL-Werte (in dieser Währung), die Sie bereits für jede Order in den Charts (geschlossen zur Transaktions-/Orderzeile) festgelegt haben, was Ihnen sehr dabei helfen wird, Ihren Gewinn und Verlust für jede Order zu schätzen. Und es zeigt Ihnen auch die PIPs-Werte. das angezeigte Format ist „Währungswerte unserer Gewinn- oder Verlust-/PIPs-Werte“. Der TP-Wert wird in grüner Farbe und der SL-Wert in roter Farbe angezeigt. Bei Fragen oder weiteren Informati
HMA Trend Professional MT5
Pavel Zamoshnikov
4.4 (5)
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
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: "[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
No Demand No Supply MT5
Trade The Volume Waves Single Member P.C.
No Demand No Supply   This indicator identifies   No Demand –No Supply candles  to your chart and plots volume bars colored according to the signal. It can be applied to all timeframes or to a specific one only. It can also be used as regular volume indicator  with exceptional future of WEIGHTED VOLUME. Furthermore is has an alert notification, sound and email when a signals occurs. The indicator does not repaint but the alert will come on two candles back due to the definition of No Demand No S
Owl Smart Levels MT5
Sergey Ermolov
4.49 (37)
MT4-Version  |  FAQ Der Owl Smart Levels Indikator ist ein komplettes Handelssystem innerhalb eines Indikators, der so beliebte Marktanalysetools wie die fortschrittlichen Fraktale von Bill Williams , Valable ZigZag, das die richtige Wellenstruktur des Marktes aufbaut, und Fibonacci-Levels , die die genauen Einstiegslevels markieren, enthält in den Markt und Orte, um Gewinne mitzunehmen. Detaillierte Strategiebeschreibung Anleitung zur Verwendung des Indikators Berater-Assistent im Handel Owl H
To download MT4 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 best time to trade Using this Indicator is when the time reach exactly hour,half,45 minutes,15 minutes and sometimes 5 minutes.. This indicators is helpful to those who trade boom and crash indecies.How to read this indicator first you'll see Blue allow and Red allow all these allows used to indicate or to detect the spike which will happen so the allow happens soon before the spike happen.This indicator works properly only in boom and crash trading thing which you have to consider when
Elevate Your Trading Experience with Wamek Trend Consult!   Unlock the power of precise market entry with our advanced trading tool designed to identify early and continuation trends. Wamek Trend Consult empowers traders to enter the market at the perfect moment, utilizing potent filters that reduce fake signals, enhancing trade accuracy, and ultimately increasing profitability.   Key Features: 1. Accurate Trend Identification: The Trend Consult indicator employs advanced algorithms and unparall
Volality Index scalper indicator  Meant for Volality pairs such as Volality 10, 25, 50, 75 and 100 The indicator works on all timeframes from the 1 minute to the monthly timeframe the indicator is non repaint the indicator has 3 entry settings 1 color change on zero cross 2 color change on slope change 3 color change on signal line cross Orange line is your sell signal Blue line is your buy signal.
Cumulative delta indicator As most traders believe, the price moves under the pressure of market buying or selling. When someone redeems an offer standing in the cup, the deal is a "buy". If someone pours into the bid standing in the cup - the deal goes with the direction of "sale". The delta is the difference between purchases and sales. A cumulative delta - the difference between the cumulative sum of purchases and sales for a certain period of time. It allows you to see who is currently contr
The Gann Box (or Gann Square) is a market analysis method based on the "Mathematical formula for market predictions" article by W.D. Gann. This indicator can plot three models of Squares: 90, 52(104), 144. There are six variants of grids and two variants of arcs. You can plot multiple squares on one chart simultaneously. Parameters Square — selection of a square model: 90 — square of 90 (or square of nine); 52 (104) — square of 52 (or 104); 144 — universal square of 144; 144 (full) — "full"
The Accumulation / Distribution is an indicator which was essentially designed to measure underlying supply and demand. It accomplishes this by trying to determine whether traders are actually accumulating (buying) or distributing (selling). This indicator should be more accurate than other default MT5 AD indicator for measuring buy/sell pressure by volume, identifying trend change through divergence and calculating Accumulation/Distribution (A/D) level. Application: - Buy/sell pressure: above
This MT5 version indicator is a unique, high quality and affordable trading tool. The calculation is made according to the author's formula for the beginning of a possible trend. MT4 version is here  https://www.mql5.com/ru/market/product/98041 An accurate   MT5   indicator that gives signals to enter trades without redrawing! Ideal trade entry points for currencies, cryptocurrencies, metals, stocks, indices! The indicator builds   buy/sell   arrows and generates an alert. Use the standart  
Provided Trend is a complex signal formation indicator. As a result of the work of internal algorithms, you can see only three types of signals on your chart. The first is a buy signal, the second is a sell signal, and the third is a market exit signal. Options: CalcFlatSlow - The first parameter that controls the main function of splitting the price chart into waves. CalcFlatFast - The second parameter that controls the main function of splitting the price chart into waves. CalcFlatAvg - Par
VR Cub MT 5
Vladimir Pastushak
VR Cub ist ein Indikator für den Erhalt hochwertiger Einstiegspunkte. Der Indikator wurde entwickelt, um mathematische Berechnungen zu erleichtern und die Suche nach Einstiegspunkten in eine Position zu vereinfachen. Die Handelsstrategie, für die der Indikator geschrieben wurde, hat sich seit vielen Jahren bewährt. Ihr großer Vorteil liegt in der Einfachheit der Handelsstrategie, die es auch unerfahrenen Händlern ermöglicht, erfolgreich damit zu handeln. VR Cub berechnet Positionseröffnungspunkt
An indicator of pattern #31 ("Long Island") from Encyclopedia of Chart Patterns by Thomas N. Bulkowski. The second gap is in the opposite direction. Parameters: Alerts - show alert when an arrow appears   Push - send a push notification when an arrow appears (requires configuration in the terminal) GapSize - minimum gap size in points ArrowType - a symbol from 1 to 17 ArrowVShift - vertical shift of arrows in points   ShowLevels - show levels ColUp - color of an upward line ColDn - color of a
Double HMA MTF for MT5
Pavel Zamoshnikov
5 (2)
This is an advanced multi-timeframe version of the popular Hull Moving Average (HMA) Features Two lines of the Hull indicator of different timeframes on the same chart. The HMA line of the higher timeframe defines the trend, and the HMA line of the current timeframe defines the short-term price movements. A graphical panel with HMA indicator data from all timeframes at the same time . If the HMA switched its direction on any timeframe, the panel displays a question or exclamation mark with a tex
Indicator and Expert Adviser  EA Available in the comments section of this product. Download with Indicator must have indicator installed for EA to work. Mt5 indicator alerts for bollinger band and envelope extremes occurring at the same time. Buy signal alerts occur when A bullish candle has formed below both the lower bollinger band and the lower envelope  Bar must open and close below both these indicators. Sell signal occur when A bear bar is formed above the upper bollinger band and upp
Thunder Scalper
Mr Fares Mohammad Alabdali
Buy and Sell Targets Indicator You can see the buying and selling goals in the box and they are inevitably achieved. It consists of three lines: the first green color sets buying targets, the second red color sets selling targets, and the third blue color is the average price. Trading Method For Buy Trade: The entry point will be where the wavy blue line  (representing the average price) is 'broken' by the ascending 'Buy' candle from beneath Please wait until the next candle appears
For a trader, trend is our friend. This is a trend indicator for MT5, can be used on any symbol. just load it to the terminal and you will see the current trend. green color means bullish trend and red means bearlish trend. you can also change the color by yourself when the indicator is loaded to the MT5 terminal the symbol and period is get from the terminal automaticly. How to use: I use this trend indicator on 2 terminals with different period  for the same symbol at same time. for example M5
Mini Chart Indicators
Flavio Javier Jarabeck
The Metatrader 5 has a hidden jewel called Chart Object, mostly unknown to the common users and hidden in a sub-menu within the platform. Called Mini Chart, this object is a miniature instance of a big/normal chart that could be added/attached to any normal chart, this way the Mini Chart will be bound to the main Chart in a very minimalist way saving a precious amount of real state on your screen. If you don't know the Mini Chart, give it a try - see the video and screenshots below. This is a gr
Upgraded - Stars added to indentify Areas you can scale in to compound on your entry  when buying or selling version 2.4 Upgraded Notifications and alerts added version 2.3 *The indicator is suitable for all pairs fromm  Deriv pairs (Vix,jump,boom & crash indices) , Currencies, cryptos , stocks(USA100, USA30 ), and metals like gold etc. How does it work? Increasing the period make it more stable hence will only focus on important entry points However  lowering the period will mean the indica
Indikator zur Bestimmung von Flat und Trend. Wenn der Preis unter einem der beiden Histogramme und zwei Linien (rot und blau) liegt, ist dies eine Verkaufszone. Beim Kauf dieser Version des Indikators, MT4-Version für ein echtes und ein Demo-Konto - als Geschenk (zum Erhalten, schreiben Sie mir eine private Nachricht)! Wenn der Preis über einem der beiden Histogramme und zwei Linien (rot und blau) liegt, ist dies eine Kaufzone. MT4-Version: https://www.mql5.com/en/market/product/3793 Wenn der P
Alpha Trend Pro
Eslam Mohamed Abdelrady Shehata
Alpha Trend Pro: Your Ultimate Trading Companion Embark on a new era of trading with Alpha Trend Pro Indicator. Crafted with precision and innovation, Alpha Trend is designed to elevate your trading experience by seamlessly blending powerful elements to navigate various market conditions. **Key Features:** **1. Dynamic Adaptability:**    - In sideways market conditions, Alpha Trend acts as a dead indicator. Say goodbye to many false signals and welcome a tool that adapts seamlessly to mar
Käufer dieses Produkts erwarben auch
Zunächst einmal ist es wichtig zu betonen, dass dieses Handelssystem ein Nicht-Repainting-, Nicht-Redrawing- und Nicht-Verzögerungsindikator ist, was es sowohl für manuelles als auch für automatisches Trading ideal macht. Das "Smart Trend Trading System MT5" ist eine umfassende Handelslösung, die für neue und erfahrene Trader maßgeschneidert ist. Es kombiniert über 10 Premium-Indikatoren und bietet mehr als 7 robuste Handelsstrategien, was es zu einer vielseitigen Wahl für verschiedene Marktbe
Atomic Analyst MT5
Issam Kassas
5 (12)
Zunächst einmal ist es erwähnenswert, dass dieser Handelsindikator nicht neu malt, nicht neu zeichnet und keine Verzögerung aufweist, was ihn sowohl für manuellen als auch für Roboterhandel ideal macht. Der Atom-Analyst ist ein PA-Preisaktionsindikator, der die Stärke und das Momentum des Preises nutzt, um einen besseren Vorteil auf dem Markt zu finden. Ausgestattet mit fortschrittlichen Filtern, die helfen, Rauschen und falsche Signale zu entfernen, und das Handelspotenzial zu erhöhen. Durch
Quantum Trend Sniper
Bogdan Ion Puscasu
5 (37)
Wir stellen vor       Quantum Trend Sniper Indicator   , der bahnbrechende MQL5-Indikator, der die Art und Weise, wie Sie Trendumkehrungen erkennen und handeln, verändert! Entwickelt von einem Team erfahrener Händler mit über 13 Jahren Handelserfahrung,       Quantum Trend Sniper-Indikator       wurde entwickelt, um Ihre Trading-Reise mit seiner innovativen Methode zur Identifizierung von Trendumkehrungen mit extrem hoher Genauigkeit auf ein neues Niveau zu heben. ***Kaufe Quantum Trend Snipe
Trend Screener Pro MT5
STE S.S.COMPANY
4.87 (62)
Nutzen Sie die Macht des Trendhandels mit Trend Screener Indicator: Ihrer ultimativen Trendhandelslösung, die auf Fuzzy-Logik und einem System mit mehreren Währungen basiert! Steigern Sie Ihren Trendhandel mit Trend Screener, dem revolutionären Trendindikator mit Fuzzy-Logik. Es handelt sich um einen leistungsstarken Trendfolgeindikator, der über 13 Premium-Tools und -Funktionen sowie 3 Handelsstrategien kombiniert und ihn zu einer vielseitigen Wahl macht, um Ihren Metatrader in einen Trendanaly
Gold Stuff mt5
Vasiliy Strukov
4.89 (167)
Gold Stuff mt5-Ein Trendindikator, der speziell für Gold entwickelt wurde, kann auch auf allen Finanzinstrumenten verwendet werden. Der Indikator wird nicht neu gezeichnet und verzögert sich nicht. Empfohlener Zeitrahmen H1. WICHTIG! Kontaktieren Sie mich sofort nach dem Kauf, um Anweisungen und Bonus zu erhalten! DATEN Draw Arrow - inkl.aus. zeichnen von Pfeilen in einem Diagramm. Alerts-inkl.aus.akustische Warnungen. E - mail notification-inkl.aus. benachrichtigungen per E-Mail. Puch-
FX Volume MT5
Daniel Stein
4.94 (17)
Erhalten Sie Ihr tägliches Marktupdate mit Details und Screenshots über unser Morning Briefing hier auf mql5 und auf Telegram ! FX Volume ist der ERSTE und EINZIGE Volumenindikator, der einen ECHTEN Einblick in die Marktstimmung aus Sicht eines Brokers bietet. Es bietet fantastische Einblicke in die Positionierung von institutionellen Marktteilnehmern, wie z.B. Brokern, auf dem Forex-Markt, viel schneller als COT-Berichte. Diese Informationen direkt auf Ihrem Chart zu sehen, ist der wahre Game
Zunächst einmal ist es wichtig zu betonen, dass dieses Handelstool ein Nicht-Repaint-, Nicht-Redraw- und Nicht-Verzögerungsindikator ist, was es ideal für professionelles Trading macht. Der Smart Price Action Concepts Indikator ist ein sehr leistungsstarkes Werkzeug sowohl für neue als auch erfahrene Händler. Er vereint mehr als 20 nützliche Indikatoren in einem und kombiniert fortgeschrittene Handelsideen wie die Analyse des Inner Circle Traders und Strategien des Smart Money Concepts. Diese
Advanced Supply Demand MT5
Bernhard Schweigert
4.53 (15)
Derzeit 33% Rabatt! Die beste Lösung für jeden Anfänger oder erfahrenen Händler! Dieser Indikator ist ein einzigartiges, qualitativ hochwertiges und erschwingliches Trading-Tool, da wir eine Reihe von proprietären Funktionen und eine neue Formel integriert haben. Mit diesem Update werden Sie in der Lage sein, doppelte Zeitrahmenzonen anzuzeigen. Sie können nicht nur einen höheren TF (Zeitrahmen) anzeigen, sondern sowohl den Chart-TF als auch den höheren TF: SHOWING NESTED ZONES. Alle Supply Dema
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 MT4                  INSTRUCTIONS                 RUS                 ENG                         R ecommended to use with an indicator   -  TREND PRO  
AW Trend Predictor MT5
AW Trading Software Limited
4.76 (55)
Die Kombination von Trend- und Aufschlüsselungsebenen in einem System. Ein fortschrittlicher Indikatoralgorithmus filtert Marktrauschen, bestimmt den Trend, Einstiegspunkte sowie mögliche Ausstiegsniveaus. Indikatorsignale werden in einem Statistikmodul aufgezeichnet, das es Ihnen ermöglicht, die am besten geeigneten Tools auszuwählen, die die Wirksamkeit der Signalhistorie zeigen. Der Indikator berechnet Take-Profit- und Stop-Loss-Marken. Handbuch und Anleitung ->   HIER   / MT4-Version ->   H
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 MT4                  DETAILED DESCRIPTION        /       TRADING SETUPS       
FX Power MT5 NG
Daniel Stein
5 (4)
Erhalten Sie Ihr tägliches Marktupdate mit Details und Screenshots über unser Morning Briefing hier auf mql5 und auf Telegram ! FX Power MT5 NG ist die nächste Generation unseres langjährig sehr beliebten Währungsstärkemessers FX Power. Und was bietet dieser Stärkezähler der nächsten Generation? Alles, was Sie am ursprünglichen FX Power geliebt haben PLUS GOLD/XAU-Stärkeanalyse Noch präzisere Berechnungsergebnisse Individuell konfigurierbare Analysezeiträume Anpassbares Berechnungslimit für noc
Dies ist ein Indikator für MT5, der genaue Signale für den Einstieg in einen Handel ohne Repainting (Neuzeichnen) liefert. Er kann auf alle Finanzwerte angewendet werden: Forex, Kryptowährungen, Metalle, Aktien, Indizes. Er liefert ziemlich genaue Schätzungen und sagt Ihnen, wann es am besten ist, eine Position zu eröffnen und zu schließen. Sehen Sie sich das Video (6:22) mit einem Beispiel für die Verarbeitung nur eines Signals an, das sich für den Indikator gelohnt hat! Die meisten Händler ver
RelicusRoad Pro MT5
Relicus LLC
4.82 (22)
Jetzt 147 US -Dollar (nach ein paar Aktualisierungen auf 499 US -Dollar) - Unbegrenzte Konten (PCs oder MACs) RelicusRoad Benutzerhandbuch + Schulungsvideos + Zugang zur privaten Discord-Gruppe + VIP-Status EINE NEUE ART, DEN MARKT ZU BETRACHTEN RelicusRoad ist der weltweit leistungsstärkste Handelsindikator für Forex, Futures, Kryptowährungen, Aktien und Indizes und gibt Händlern alle Informationen und Tools, die sie benötigen, um profitabel zu bleiben. Wir bieten technische Analysen un
Gartley Hunter Multi
Siarhei Vashchylka
5 (5)
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all classic timeframes: (m1, m5, m15, m30, H1, H4, D1, Wk, Mn). Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Patterns: Gartley, Butterfly, Shark, Crab. Bat, Alternate Bat, Deep Crab, Cypher 2. Simultaneous search for patterns on dozens of trading instruments and on all classic timeframes 3. Search for patterns of all possible sizes. Fr
ICT, SMC, SMART MONEY CONCEPTS, SMART MONEY, Smart Money Concept, Support and Resistance, Trend Analysis, Price Action, Market Structure, Order Blocks, BOS/CHoCH,   Breaker Blocks ,  Momentum Shift,   Supply&Demand Zone/Order Blocks , Strong Imbalance,   HH/LL/HL/LH,    Fair Value Gap, FVG,  Premium  &   Discount   Zones, Fibonacci Retracement, OTE, Buy Side Liquidity, Sell Side Liquidity, BSL/SSL Taken, Equal Highs & Lows, MTF Dashboard, Multiple Time Frame, BigBar, HTF OB, HTF Market Structure
Professional Scalping Tool on Deriv Attention! The indicator will be sold in limited quantities!!! The previous 5 copies were sold for $250 The next 5 copies will be sold for $350 The next price is $500 Description: This trading indicator is designed for professional traders focused on scalping. Designed with the market in mind, it provides highly accurate spike trading signals. It works on the M1 timeframe and supports the following symbols: Boom 300 Index, Boom 500 Index, Boom 1000 Index,
Blahtech Supply Demand MT5
Blahtech Limited
4.57 (14)
Was: $299  Now: $99   Supply Demand uses previous price action to identify potential imbalances between buyers and sellers. The key is to identify the better odds zones, not just the untouched ones. Blahtech Supply Demand indicator delivers functionality previously unavailable on any trading platform. This 4-in-1 indicator not only highlights the higher probability zones using a multi-criteria strength engine, but also combines it with multi-timeframe trend analysis, previously confirmed swings
The Volume by Price Indicator for MetaTrader 5 features Volume Profile and Market Profile TPO (Time Price Opportunity). Get valuable insights out of currencies, equities and commodities data. Gain an edge trading financial markets. Volume and TPO histogram bar and line charts. Volume Footprint charts. TPO letter and block marker charts including split structures. Versatile segmentation and compositing methods. Static, dynamic and flexible ranges with relative and/or absolute visualizations. Lay
MetaForecast M5
Vahidreza Heidar Gholami
5 (2)
MetaForecast prognostiziert und visualisiert die Zukunft eines beliebigen Marktes basierend auf den Harmonien in den Preisdaten. Obwohl der Markt nicht immer vorhersehbar ist, kann MetaForecast, wenn es ein Muster im Preis gibt, die Zukunft so genau wie möglich voraussagen. Im Vergleich zu ähnlichen Produkten kann MetaForecast durch die Analyse von Markttrends genauere Ergebnisse erzeugen. Eingabeparameter Past size (Vergangene Größe) Gibt an, wie viele Balken MetaForecast verwendet, um ein Mo
Bill Williams Advanced
Siarhei Vashchylka
5 (4)
Bill Williams Advanced is designed for automatic chart analysis using Bill Williams' "Profitunity" system. The indicator analyzes four timeframes at once. Manual (Be sure to read before purchasing) Advantages 1. Automatically analyzes the chart using the "Profitunity" system of Bill Williams. The found signals are placed in a table in the corner of the screen. 2. Equipped with a trend filter based on the Alligator indicator. Most of the system signals are recommended to be used only accordi
Auto Order Block with break of structure based on ICT and Smart Money Concepts Futures Break of Structure ( BoS )             Order block ( OB )            Higher time frame Order block / Point of Interest ( POI )    shown on current chart           Fair value Gap ( FVG ) / Imbalance   ,  MTF      ( Multi Time Frame )    Volume Imbalance     ,  MTF          vIMB Gap’s Equal High / Low’s     ,  MTF             EQH / EQL Liquidity               Current Day High / Low           HOD /
Quantum Heiken Ashi PRO MT5
Bogdan Ion Puscasu
4.5 (8)
Wir stellen den   Quantum Heiken Ashi PRO   vor Die Heiken-Ashi-Kerzen wurden entwickelt, um klare Einblicke in Markttrends zu geben und sind bekannt für ihre Fähigkeit, Rauschen herauszufiltern und falsche Signale zu eliminieren. Verabschieden Sie sich von verwirrenden Preisschwankungen und begrüßen Sie eine glattere, zuverlässigere Diagrammdarstellung. Was den Quantum Heiken Ashi PRO wirklich einzigartig macht, ist seine innovative Formel, die traditionelle Candlestick-Daten in leicht lesbare
Wir stellen vor       Quantum Breakout PRO   , der bahnbrechende MQL5-Indikator, der die Art und Weise, wie Sie mit Breakout-Zonen handeln, verändert! Entwickelt von einem Team erfahrener Händler mit über 13 Jahren Handelserfahrung,       Quantum Breakout PRO       ist darauf ausgelegt, Ihre Handelsreise mit seiner innovativen und dynamischen Breakout-Zone-Strategie auf ein neues Niveau zu heben. Der Quantum Breakout Indicator zeigt Ihnen Signalpfeile auf Breakout-Zonen mit 5 Gewinnzielzone
XQ Indicator MetaTrader 5
Marzena Maria Szmit
5 (1)
Step into the realm of Forex trading with confidence and precision using XQ, a cutting-edge Forex indicator designed to elevate your trading game to unprecedented heights. Whether you're a seasoned trader or just stepping into the world of currency exchange, XQ Forex Indicator empowers you with the insights and signals needed to make informed trading decisions. The signal conditions are a combination of three indicators, and XQ Forex Indicator only display  medium and long-term trends . The ind
Eng Gold
Ely Alkrar Xshkaky
ENG-GOLD Scalper It is an auxiliary indicator that identifies potential targets and determines the place of entry with a stop loss that works on Heiken Ashi candles  The green lines are usually the targets, the red lines are the stop loss, and the yellow lines are the entry location.  This file is recognized on small and medium frames, usually less than the watch frame I highly recommend using XAUUSD US100 US30 USOIL 
Zunächst einmal ist es wichtig zu betonen, dass dieses Handelssystem ein Nicht-Repainting-, Nicht-Redrawing- und Nicht-Verzögerungsindikator ist, was es ideal für den professionellen Handel macht. Das "Smart Support and Resistance Trading System" ist ein fortschrittlicher Indikator, der für neue und erfahrene Trader entwickelt wurde. Es ermöglicht Tradern Präzision und Vertrauen auf dem Devisenmarkt. Dieses umfassende System kombiniert mehr als 7 Strategien, 10 Indikatoren und verschiedene Ha
Zeichnen Sie automatisch Unterstützungs- und Widerstandsniveaus PLUS Antriebskerzenlücken auf Ihrem Chart ein, so dass Sie sehen können, wohin sich der Preis wahrscheinlich als Nächstes bewegen und/oder möglicherweise umkehren wird. Dieser Indikator wurde entwickelt, um als Teil der Positionshandelsmethodik verwendet zu werden, die auf meiner Website (The Market Structure Trader) gelehrt wird, und zeigt Schlüsselinformationen für die Zielsetzung und potenzielle Einstiege an. MT4 Version:  htt
Malaysian SNR Levels
Matthias Horst Pieroth
This indicator can be used to display Support and Resistance levels according to  the  Malaysian SNR concept , in which Support and Resistance are exact levels of a line chart. Malaysian SNR There are 3 different horizontal levels in Malaysian SNR: A-Level : This level is located at the peak of this line chart. (shape looks like the letter A) V-Level : Level at the valley of a line chart, (shape looks like the letter V) Gap-Leve l: This level is located at the Close/Open gap between two cand
Gartley Hunter MT5
Siarhei Vashchylka
5 (13)
Gartley Hunter - An indicator for searching for harmonic patterns (Gartley patterns) and their projections. The indicator is equipped with a system of alerts and push notifications. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. 12 harmonic patterns: 7 classical and 5 exotic. New patterns will be added as the indicator develops. 2. Constant automatic search for harmonic patterns. The indicator is capable of finding from the smallest to the largest patterns. 3. Autom
Weitere Produkte dieses Autors
To download MT5 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Zero Lag MACD Enhanced - Version 1.2" by "   Albert.Callisto ". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. Thanks
For MT4 version please send private message. - This is the exact conversion from TradingView source: "Hurst Cycle Channel Clone Oscillator" By "LazyBear". - For bar color option please send private message. - This is a non-repaint and light processing load indicator. - Buffers and inputs are available for use in EAs and optimization purposes. - You can message in private chat for further changes you need.
B Xtrender
Yashar Seyyedin
5 (1)
To download MT4 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Stochastic Momentum Index" By "UCSgears". - This is a popular version of stochastic oscillator on tradingview. - This is a light-load processing and non-repaint indicator. - Buffers are available for the lines on chart. - You can message in private chat for further changes you need. Thanks for downloading
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Supertrend" by " KivancOzbilgic ". This is a light-load processing and non-repaint indicator. Highlighter option isn't available in MT4 version. You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Supertrend . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input double fixed_lo
To get access to MT5 version please contact via private message. This is the exact conversion from TradingView:Nadaraya-Watson Envelope" by " LuxAlgo ". This is not a light-load processing indicator. It is a REPAINT indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
To get access to MT5 version please click here . This is the exact conversion from TradingView:"HIGH AND LOW Optimized Trend TrackerHL OTT" by "kivancozbilgic" This is a light-load processing indicator. It is a non-repaint indicator. Colored Candle and Highlighting options are not available. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
To get access to MT5 version please click here . This is the exact conversion from TradingView: "SwingArm ATR Trend Indicator" by " vsnfnd ". Also known as : "Blackflag FTS" by "Jose Azcarate" This is a light-load processing and non-repaint indicator. All input options are available except multi time frame Buffers are available for processing in EAs. Extra option to show buy and sell signal alerts. You can message in private chat for further changes you need.
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #include CTrade trade; int handle_hull= 0 ; input group "EA Setting" input int magic_number= 123456 ; //magic number input double fixe
This is the Chandelier Exit trend indicator applied to heiken ashi candles based on "G TREND GUNBOT" by "LUIS_GANDATA_G_TREND" on tradingview. Heiken ashi candles filter out many of the chops and therefore as an input to Chandelier Exit you achieve well filtered Buy and Sell signals. Also you can choose to apply the trend indicator to normal candles via input tab. (two in one indicator) This is a non-repaint and light processing load indicator. You can message in private chat for further change
FREE
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
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 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
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 MT5 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. This is a sample EA code that operates based on bullish and bearish linear regression candles . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input string     Risk_Management= "" ; input double fixed_lot_size=
To get access to MT5 version please click here . - This is a conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. note: Color filled areas and colored candles are not supported in MT4 version. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; inp
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Twin Range Filter" by " colinmck ". - This is a light-load processing and non-repaint indicator. - All input options are available.  - Buffers are available for processing in EAs. - You can message in private chat for further changes you need. Thanks for downloading
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 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
- This is the exact conversion from TradingView: " 200-EMA Moving Average Ribbon" By "Dale_Ansel". - This indicator plots a series of moving averages to create a "ribbon" that offers a great visual structure to price action. - This indicator lets you read buffers. For information on buffers please contact via message. - This is a non-repaint and light processing load indicator
FREE
To download MT5 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
This is 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
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 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 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
Auswahl:
Khulani
156
Khulani 2023.08.02 18:44 
 

Really great! Thanks.

Yashar Seyyedin
32438
Antwort vom Entwickler Yashar Seyyedin 2023.08.02 22:30
Thanks. Wish you happy trading.
Darz
2635
Darz 2023.07.17 04:56 
 

Excellent Indicator, exactly the same to what we have on TradingView

Yashar Seyyedin
32438
Antwort vom Entwickler Yashar Seyyedin 2023.07.17 08:00
Thanks for the positive review. Wish you happy trading.
Antwort auf eine Rezension
Version 1.40 2024.02.02
Updated the default setting to avoid bad graphics of fillings in MT5.
Version 1.30 2023.07.06
Added Alerts input option.
Version 1.20 2023.06.01
Fixed memory leakage issue.
Version 1.10 2023.05.26
Fixed issue related to removing text label object from chart.