• Übersicht
  • Bewertungen (3)
  • Diskussion
  • Neue Funktionen

Linear Regression Candle for MT4

5

To download MT5 version please click here.

- This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu".

- This is a non-repaint and light processing load indicator

- You can message in private chat for further changes you need.

This is a sample EA code that operates based on bullish and bearish linear regression candles.

#property strict

input string EA_Setting="";
input int magic_number=1234;

input string    Risk_Management="";
input double fixed_lot_size=0.01; // select fixed lot size

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

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

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


int BuyPositionCount()
{
   int counter=0;
   for(int i=0;i<OrdersTotal();i++)
   {
      if(OrderSelect(i, SELECT_BY_POS)==false) continue;
      if(OrderSymbol()!=_Symbol) continue;
      if(OrderMagicNumber()!=magic_number) continue;
      if(OrderType()==OP_BUY) counter++;
   }
   return counter;
}

int SellPositionCount()
{
   int counter=0;
   for(int i=0;i<OrdersTotal();i++)
   {
      if(OrderSelect(i, SELECT_BY_POS)==false) continue;
      if(OrderSymbol()!=_Symbol) continue;
      if(OrderMagicNumber()!=magic_number) continue;
      if(OrderType()==OP_SELL) counter++;
   }
   return counter;
}

void Buy()
{
   if(OrderSend(_Symbol, OP_BUY, fixed_lot_size, Ask, 3, 0, 0, NULL, magic_number, 0, clrNONE)==-1)
   {
      Print("Could not execute order: ", GetLastError());
   }
}

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

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

void CloseBuy()
{
   for(int i=OrdersTotal()-1;i>=0;i--)
   {
      if(OrderSelect(i, SELECT_BY_POS)==false) continue;
      if(OrderSymbol()!=_Symbol) continue;
      if(OrderMagicNumber()!=magic_number) continue;
      if(OrderType()==OP_BUY) 
      {
         if(OrderClose(OrderTicket(), OrderLots(), OrderClosePrice(), 3, clrNONE)==false)
         {
            Print("Error closing orde: ", GetLastError());
         }
      }
   }
}

void CloseSell()
{
   for(int i=OrdersTotal()-1;i>=0;i--)
   {
      if(OrderSelect(i, SELECT_BY_POS)==false) continue;
      if(OrderSymbol()!=_Symbol) continue;
      if(OrderMagicNumber()!=magic_number) continue;
      if(OrderType()==OP_SELL) 
      {
         if(OrderClose(OrderTicket(), OrderLots(), OrderClosePrice(), 3, clrNONE)==false)
         {
            Print("Error closing orde: ", GetLastError());
         }
      }
   }
}


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


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


Bewertungen 3
ACastilla
469
ACastilla 2023.09.01 19:51 
 

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

elite luis
3331
elite luis 2023.03.19 15:19 
 

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

Ganesh Patil
73
Ganesh Patil 2023.02.21 17:55 
 

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

Empfohlene Produkte
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 - Pfeilanzeige für binäre Optionen. Dies ist ein zuverlässiger Assistent für Sie in der Zukunft! - Kein Neuzeichnen auf dem Diagramm -Funktioniert hervorragend bei allen Währungspaaren! - Anzeigegenauigkeit bis zu 90 % (besonders nachts) -Keine lange Einrichtung erforderlich (perfekt für binäre Optionen eingerichtet) - Keine späten Signale - Das Erscheinen eines Signals auf der aktuellen Kerze -Perfekt für die M1-Periode (nicht mehr!) - Augenfreundliche Kerzenfar
Cosmic Diviner X Planet
Olena Kondratenko
4 (2)
This unique multi-currency strategy simultaneously determines the strength of trends and market entry points, visualizing this using histograms on the chart. The indicator is optimally adapted for trading on the timeframes М5, М15, М30, Н1. For the convenience of users, the indicator renders the entry point (in the form of an arrow), recommended take profit levels (TP1, TP2 with text labels) and the recommended Stop Loss level. The take profit levels (TP1, TP2) are automatically calculated for
Binary Options Support Resistance Indicator This indicator is designed for binary options trading and effectively shows retracements from support and resistance levels. Signals appear on the current candle. A red arrow pointing downwards indicates a potential selling opportunity, while a blue arrow pointing upwards suggests buying opportunities. All that needs adjustment is the color of the signal arrows. It is recommended to use it on the M1-M5 timeframes as signals are frequent on these timef
Skalping-Sofortanzeige. Ein Signal zum Kauf oder Verkauf zusammen mit dem Basiswert des Indikators wird durch den Pfeil gegeben. Als starkes Signal gilt, wenn der Pfeil und der Kellerindikator, der vier Zeitrahmen anzeigt, in der Vorhersage übereinstimmen. Dieser Indikator enthält viele Algorithmen und Aufgaben, die auf ein Ergebnis reduziert wurden, das der Skalping-Instant-Indikator liefert, nämlich den Händler über die Richtung des Marktes informiert. So gibt er 1. Scalping-Signal (A
Daily Candle Predictor ist ein Indikator, der den Schlusskurs einer Kerze vorhersagt. Der Indikator ist in erster Linie für die Verwendung in D1-Charts gedacht. Dieser Indikator eignet sich sowohl für den traditionellen Devisenhandel als auch für den Handel mit binären Optionen. Der Indikator kann als eigenständiges Handelssystem oder als Ergänzung zu Ihrem bestehenden Handelssystem verwendet werden. Dieser Indikator analysiert die aktuelle Kerze und berechnet bestimmte Stärkefaktoren innerhalb
Fibonacci-Erweiterung und Retracement-Analyse-Tool Fibonacci-Retracing- und Extended-Line-Tools für die MT4-Plattform, ideal für Trader, die die und den Golden Section-Handel nutzen Hauptmerkmale: 1. Sie können mehrere Sätze von Fibonacci-Retracements direkt zeichnen, und die Beziehung zwischen wichtigen Rückkehrpunkten ist auf einen Blick ersichtlich. 2. Kann Fibonacci-Erweiterungen zeichnen 3. Das Fibonacci-Foldback und die Verlängerung der Linie können nach links und nach rechts zu
Black series MT4
Dmitriy Kashevich
1 (1)
Black series MT4 - The indicator is designed for trading on binary options with Timeframe M1-M5-M15 Multicurrency (Works on cryptocurrency and currency pairs) The signal appears when the candle opens Up to 90% correct signals There is no signal redrawing at all Can be used with other indicators. Good for scalping! In Settings there is: -Indicator working methods -I Allert Arrow color Red signal down Blue signal up Also watch the video how the indicator works and signals
Indicator for binary options arrow is easy to use and does not require configuration works on all currency pairs, cryptocurrencies buy signal blue up arrow sell signal red down arrow tips do not trade during news and 15-30 minutes before their release, as the market is too volatile and there is a lot of noise it is worth entering trades one or two candles from the current period (recommended for 1 candle) timeframe up to m 15 recommended money management fixed lot or fixed percentage of the depo
SuperTrend Alerts
Libertas LLC
3 (4)
SuperTrend Alerts adds alerts to the widely popular SuperTrend indicator. As the name suggests, SuperTrend is a trending indicator which works best in trendy (not choppy) markets. SuperTrend is extremely popular for intraday and daily trading, and can be used on any timeframe. Place a call when the price closes above the SuperTrend line, and place a put when the price closes below the SuperTrend line. These crossovers are highlighted by non-repainting up/down arrows. Alerts Email, message and
Infinity Trend Pro
Yaroslav Varankin
1 (1)
This is a trend indicator without redrawing Developed instead of the binary options strategy (by the color of the Martingale candlestick) Also works well in forex trading When to open trades (binary options) A signal will appear in the place with a candle signaling the current candle It is recommended to open a deal for one candle of the current timeframe M1 and M5 When a blue dot appears, open a deal up When a red dot appears, open a trade down. How to open trades on Forex. When a signal is rec
Perfect Trade System   indicator is designed for trend and signal trading. This indicator generates trend signals.  It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators.  You can only trade with this indicator. The generated signals are displayed on the graphical screen.  Thanks to the alert features you ca
ZhiBiMACD MT4
Qiuyang Zheng
4.5 (2)
Dies ist eine einzigartige MACD-Anzeige, die genauer und einfacher zu bedienen ist als herkömmliche MACD. Es ist für jeden Chartzyklus geeignet und für jede Marktvielfalt geeignet. Die rote Spalte ist das (Buy) Bandsignal und die blaue Spalte das (Sell) Bandsignal. Die gelbe und grüne Linie sind Trendlinien und die beiden Linien kreuzen sich nie. Kaufen: In der blauen Spalte die grüne Linie durch die mittlere 0-Achse betrachten. Verkaufen: In der roten Spalte die gelbe Linie entlang der
Forex Gump
Andrey Kozak
2.83 (6)
Forex Gump is a fully finished semi-automatic trading system. In the form of arrows, signals are displayed on the screen for opening and closing deals. All you need is to follow the instructions of the indicator. When the indicator shows a blue arrow, you need to open a buy order. When the indicator shows a red arrow, you need to open a sell order. Close orders when the indicator draws a yellow cross. In order to get the most effective result, we recommend using the timeframes H1, H4, D1. There
MasterArrow
Pavel Krysanov
5 (1)
Correct market entries and exits are essential for any Forex trader. MasterArrow indicator addresses this issue. It has no redundant elements and draws only buy/sell arrows. The up arrow is a BUY signal, while the down arrow is a SELL one. The indicator is simple to configure. Change the Strength parameter to configure the signals frequency. The product is based on standard indicators (MA, RSI, ATR, etc.). But it also features the custom algorithm allowing to combine them into a single tool and
First of all, it is worth highlighting here that this Trading Indicator is Non Repainting, Non Redrawing and Non Lagging, which makes it ideal for manual trading. Never repaint and recalculate Once an arrow appears it never disappears, the signal comes at the opening of the new candle You will now be more profitable with this indicator The indicator will alert you when an arrow appears You can do swing trading or scalping trading The indicator helps you identify the trend Can be optimized acros
Dark Sniper
Dmitriy Kashevich
Dark Sniper arrow indicator. complete lack of redrawing percentage of correct indicator predictions from 80 85% The arrow indicates the direction of the next candle and the possible direction of the trend in the future.  suitable for small m1 timeframes. It is recommended to open deals from 1 to 2 candles. The signal appears on the last candle advantages of the indicator: 1. leading signals. 2.complete lack of redrawing 3. high signal accuracy.
The Th3Eng PipFinite indicator is based on a very excellent analysis of the right trend direction with perfect custom algorithms. It show the true direction and the best point to start trading. With StopLoss point and Three Take Profit points. Also it show the right pivot of the price and small points to order to replace the dynamic support and resistance channel, Which surrounds the price. And Finally it draws a very helpful Box on the left side on the chart includes (take profits and Stop loss
VR Cub
Vladimir Pastushak
VR Cub 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
The   True Magic Oscillator   indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate signals from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator is never repainted. The point at which the signal is given does not change.         Features and Recommendations Wor
Dr Trend
Vitalii Zakharuk
Dr Trend is a trend indicator for the MetaTrader 4 trading platform. This indicator allows you to find the most likely trend reversal points. You won’t find a proprietary indicator like this anywhere else. A simple but effective system for determining the Forex trend. From the screenshots you can see for yourself the accuracy of this tool. Works on all currency pairs, stocks, commodities, cryptocurrencies. Are you already tired of constant ups and downs? You shouldn’t fall victim to unstable
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
Real Magic Trend
Muhammed Emin Ugur
This   Real Magic Trend   indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate signals from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator is never repainted. The point at which the signal is given does not change.      Features and Recommendations Time Frame
Real Pro Signal
Muhammed Emin Ugur
Real Pro Signal   indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator certainly does not repaint. The point at which the signal is given does not change.     Features and Suggestions Time Frame: H1 W
This indicator is another variant of the famous powerful indicator Fibonacci-SS https://www.mql5.com/en/market/product/10136 but has different behaviour in placing Pending Order and TP Line. Automatically places Fibonacci retracement lines from the last highest and lowest visible bars on the chart with: An auto Pending Order (Buy/Sell). Taking Profit 1, Taking Profit 2 is pivot point and Taking Profit 3 for extended reward opportunity. The best risk and reward ratio. Simple and powerful indica
This is a new strategy for SUPPLY DEMAND areas It is based on a calculation using the tick volume to detect the big price action in market for both bear /bull actions this smart volume action candles are used to determine the supply and demand areas prices in between main supply and demand lines indicate sideway market  up arrows will be shown when prices moves above the main supply and the secondary supply lines Down arrows will be shown when prices moves below the main demand and the secondary
GeoWprPro
Georgij Komarov
WPR by Profile, or WPR for Professionals Geo_WprPro is one of the well-known currency profile indicators. It simultaneously displays two WPR indicators with different parameters in the matrix form on all timeframes of multiple currency pairs forming the currency profile . As follows from the description, " WPR is a leading indicator that often goes ahead of the price chart. The oscillator frequently reaches extreme values before the price reversal as if anticipating that event: it almost always
Buy and sell zones
Evgeniy Zhdan
5 (3)
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
MetaCOT 2 is a set of indicators and specialized utilities for the analysis of the U.S. Commodity Futures Trading Commission reports. Thanks to the reports issued by the Commission, it is possible to analyze the size and direction of the positions of the major market participants, which brings the long-term price prediction accuracy to a new higher-quality level, inaccessible to most traders. These indicators, related to the fundamental analysis, can also be used as an effective long-term filter
The principle of this indicator is very simple: detecting the trend with Moving Average, then monitoring the return point of graph by using the crossing of Stochastic Oscillator and finally predicting BUY and SELL signal with arrows, alerts and notifications. The parameters are fixed and automatically calculated on each time frame. Example: If you install indicator on EURUSD, timeframe M5: the indicator will detect the main trend with the Moving Average on this timeframe (for example the Moving
Käufer dieses Produkts erwarben auch
Gann Made Easy
Oleg Rodin
4.96 (46)
Gann Made Easy ist ein professionelles und einfach zu bedienendes Forex-Handelssystem, das auf den besten Handelsprinzipien unter Verwendung der Theorie von Mr. basiert. W.D. Gann. Der Indikator liefert genaue KAUF- und VERKAUFSsignale, einschließlich Stop-Loss- und Take-Profit-Levels. Mit PUSH-Benachrichtigungen können Sie auch unterwegs handeln. Bitte kontaktieren Sie mich nach dem Kauf! Ich werde meine Handelstipps und tolle Bonusindikatoren kostenlos mit Ihnen teilen! Wahrscheinlich haben Si
Atomic Analyst
Issam Kassas
5 (1)
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
DERZEIT 26% RABATT Die beste Lösung für jeden Newbie oder Expert Trader! 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 nur EINEM Chart können Sie die Währungsstärke für 28 Forex-Paare ablesen! Stellen Sie sich vor, wie sich Ihr Handel verbessern wird, weil Sie in der Lage sind, den genauen Auslösungspunkt eines neuen Trends oder einer Scalping-Gelegenh
Scalper Vault
Oleg Rodin
5 (27)
Scalper Vault ist ein professionelles Scalping-System, das Ihnen alles bietet, was Sie für erfolgreiches Scalping benötigen. Dieser Indikator ist ein komplettes Handelssystem, das von Forex- und Binäroptionshändlern verwendet werden kann. Der empfohlene Zeitrahmen ist M5. Das System liefert Ihnen genaue Pfeilsignale in Richtung des Trends. Es liefert Ihnen auch Top- und Bottom-Signale und Gann-Marktniveaus. Die Indikatoren bieten alle Arten von Warnungen, einschließlich PUSH-Benachrichtigungen.
Trend Screener
STE S.S.COMPANY
4.83 (86)
Trendindikator, bahnbrechende, einzigartige Lösung für Trendhandel und -filterung mit allen wichtigen Trendfunktionen in einem Tool! Es handelt sich um einen 100 % nicht neu zu malenden Multi-Timeframe- und Multi-Währungs-Indikator, der für alle Symbole/Instrumente verwendet werden kann: Forex, Rohstoffe, Kryptowährungen, Indizes und Aktien. Trend Screener ist ein effizienter Trendfolgeindikator, der Pfeiltrendsignale mit Punkten im Diagramm liefert. Die Funktionen, die im Trendanalysator-Indika
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           
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
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
Werden Sie Breaker Trader und profitieren Sie von Änderungen der Marktstruktur, wenn sich der Preis umkehrt. Der Order Block Breaker Indikator zeigt an, wann sich eine Trend- oder Preisbewegung der Erschöpfung nähert und bereit ist, sich umzukehren. Es weist Sie auf Änderungen in der Marktstruktur hin, die normalerweise auftreten, wenn eine Umkehrung oder ein größerer Rückzug bevorsteht. Der Indikator verwendet eine proprietäre Berechnung, die Ausbrüche und Preisdynamik identifiziert. Jedes
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)
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
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   -  
Entdecken Sie das Geheimnis des erfolgreichen Forex -Handels mit unserem benutzerdefinierten MT4 -Indikator! Haben Sie sich jemals gefragt, wie Sie Erfolg auf dem Forex -Markt erzielen können und gleichzeitig Gewinne erzielen und gleichzeitig das Risiko minimieren können? Hier ist die Antwort, nach der Sie gesucht haben! Erlauben Sie uns, unseren proprietären MT4 -Indikator vorzustellen, der Ihren Handelsansatz revolutionieren wird. Einzigartige Vielseitigkeit Unser Indikator ist speziell
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
Derzeit 20% Rabatt! Die beste Lösung für jeden Neueinsteiger oder Expert Händler! Dieses Dashboard arbeitet mit 28 Währungspaaren. Es basiert auf 2 unserer Hauptindikatoren (Advanced Currency Strength 28 und Advanced Currency Impulse). Es bietet einen hervorragenden Überblick über den gesamten Forex-Markt. Es zeigt die Werte der Advanced Currency Strength, die Veränderungsrate der Währungen und die Signale für 28 Devisenpaare in allen (9) Zeitrahmen. Stellen Sie sich vor, wie sich Ihr Hande
Präsentation des Miraculous Forex Indikators: Entfesseln Sie die Kraft präzisen Tradings Sind Sie es leid, nach dem besten Forex-Indikator zu suchen, der wirklich herausragende Ergebnisse in allen Zeitebenen liefert? Suchen Sie nicht weiter! Der Miraculous Forex Indikator ist da, um Ihre Trading-Erfahrung zu revolutionieren und Ihre Gewinne auf neue Höhen zu bringen. Basierend auf modernster Technologie und jahrelanger sorgfältiger Entwicklung steht der Miraculous Forex Indikator als Höhepunkt v
MEHRWÄHRUNGS- und MULTITIMEFRAME-KAUF- UND VERKAUFSALARM. AUTO TRAILING STOP UND RISIKO REWARD TAKEPROFIT! Der Indikator scannt und analysiert den Markt, sodass Sie nichts zu tun haben! HANDELN SIE ALLE IHRE WÄHRUNGEN AUF EINEM CHART!   Bitte hinterlassen Sie nach dem Kauf einen Kommentar, kontaktieren Sie mich und ich sende Ihnen den Handelsassistenten EA. Der Indikator verwendet mehrere Oszillatoren und angeschlossene Filter, um die besten BESTÄTIGTEN Einstiegspunkte zu finden, sodass S
Entry Points Pro
Yury Orlov
4.7 (224)
Dies ist ein Indikator für MT4, 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
Trend Forecasting
Mohamed Hassan
5 (14)
This indicator is unstoppable when combined with our other indicator called Katana. After purchase, send us a message and you could get Katana for FREE as a BONUS After purchase, send us a private message for your instructions.  MT5 version: click here 40 copies available at $55. There are 3 copies left before the next price of $105. Don't miss this great deal!  The Trend Forecasting indicator is a very unique & easy tool that is able to make prediction about future price movement
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
Wir stellen vor       Quantum Breakout PRO   , der bahnbrechende MQL5-Indikator, der die Art und Weise, wie Sie mit Breakout-Zonen handeln, verändert!   Quantum Breakout PRO   wurde von einem Team erfahrener Händler mit über 13 Jahren Handelserfahrung entwickelt und soll Ihre Handelsreise mit seiner innovativen und dynamischen Breakout-Zonen-Strategie auf ein neues Niveau bringen. Der Quantum Breakout Indicator zeigt Ihnen Signalpfeile auf Breakout-Zonen mit 5 Gewinnzielzonen und Stop-Loss
PRO Renko System ist ein hochpräzises Handelssystem, das speziell für den Handel mit RENKO-Charts entwickelt wurde. Dies ist ein universelles System, das auf verschiedene Handelsinstrumente angewendet werden kann. Das System neutralisiert effektiv so genannte Marktgeräusche, die Ihnen Zugang zu genauen Umkehrsignalen geben. Der Indikator ist sehr einfach zu bedienen und hat nur einen Parameter, der für die Signalerzeugung verantwortlich ist. Sie können das Tool einfach an jedes Handelsinstr
FX Power MT4 NG
Daniel Stein
5 (8)
Erhalten Sie Ihr tägliches Marktupdate mit Details und Screenshots über unser Morning Briefing hier auf mql5 und auf Telegram ! FX Power MT4 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
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
DERZEIT 31% RABATT! Die beste Lösung für jeden Newbie oder Expert Trader! Dieser Indikator ist ein einzigartiges, qualitativ hochwertiges und erschwingliches Handelsinstrument, da wir eine Reihe von proprietären Funktionen und eine geheime Formel eingebaut haben. Mit nur EINEM Chart liefert er Alerts für alle 28 Währungspaare. Stellen Sie sich vor, wie sich Ihr Handel verbessern wird, weil Sie in der Lage sind, den genauen Auslösepunkt eines neuen Trends oder einer Scalping-Gelegenheit zu e
TrendDecoder Premium
Christophe, Pa Trouillas
5 (3)
Identifizieren Sie Bereiche und die nächsten wahrscheinlichen Bewegungen   |  Erhalten Sie früheste Signale und die Stärke von Trends   |  Klare Ausstiegssignale vor Umkehrung   |  Erkennen Sie die Fibo-Levels, die der Kurs testen wird Indikator, der nicht zurückverfolgt, nicht verzögert - ideal für den manuellen und automatisierten Trading - geeignet für alle Vermögenswerte und Zeiteinheiten Zeitlich begrenztes Angebot   >> 50% OFF Nach dem Kauf,   bitte kontaktieren Sie mich auf diesem Kanal  
Der ADR-Umkehrindikator zeigt Ihnen auf einen Blick, wo der Preis derzeit im Verhältnis zu seiner normalen durchschnittlichen Tagesspanne gehandelt wird. Sie erhalten sofortige Benachrichtigungen per Pop-up, E-Mail oder Push, wenn der Preis seine durchschnittliche Spanne und darüber liegende Niveaus Ihrer Wahl überschreitet, sodass Sie schnell in Pullbacks und Umkehrungen einsteigen können. Der Indikator zeichnet horizontale Linien auf dem Chart an den durchschnittlichen täglichen Range-Extreme
Currency Strength Wizard ist ein sehr leistungsstarker Indikator, der Ihnen eine Komplettlösung für erfolgreichen Handel bietet. Der Indikator berechnet die Stärke dieses oder jenes Forex-Paares anhand der Daten aller Währungen in mehreren Zeitrahmen. Diese Daten werden in Form von benutzerfreundlichen Währungsindizes und Währungsstärkelinien dargestellt, anhand derer Sie die Stärke dieser oder jener Währung erkennen können. Sie müssen lediglich den Indikator an das Diagramm anhängen, mit dem Si
Shepherd Harmonic Pattern
Abdullah Alrai
4.68 (59)
Dieser Indikator erkennt harmonische Muster, die manuell oder automatisch auf dem Chart gezeichnet wurden. Sie können das Benutzerhandbuch unter diesem Link einsehen: Fügen Sie Ihre Bewertung hinzu und kontaktieren Sie uns, um es zu erhalten. Es gibt eine kostenlose Version, um dieses Produkt auf MT4 auszuprobieren. Sie können es verwenden, um Gartley- und Nenstar-Muster zu erkennen: https://www.mql5.com/en/market/product/30181 Sie können die vollständige MT4-Version von kaufen: https://www.mql5
FX Volume
Daniel Stein
4.6 (35)
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 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
Weitere Produkte dieses Autors
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 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
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
RSI versus SMA
Yashar Seyyedin
4 (1)
To download MT5 version please click  here . This is the exact conversion from TradingView: "RSI versus SMA" By "JayRogers". This indicator lets you read the buffers for all Lines on chart.  Note: This is an indicator, Not an expert. Meaning It does not take trades. If you want the EA please contact via message. You can easily use the indicator to understand the logic behind trades that the TradingView strategy takes. The strategy is profitable if this indicator is applied to the right symbol at
FREE
Auswahl:
ACastilla
469
ACastilla 2023.09.01 19:51 
 

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

Yashar Seyyedin
32017
Antwort vom Entwickler Yashar Seyyedin 2023.09.01 19:55
Thanks for the positive review. Wish you a successful trading career.
elite luis
3331
elite luis 2023.03.19 15:19 
 

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

Yashar Seyyedin
32017
Antwort vom Entwickler Yashar Seyyedin 2023.03.19 16:33
Thanks for your positive review. I am converting more indicators.
Ganesh Patil
73
Ganesh Patil 2023.02.21 17:55 
 

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

Yashar Seyyedin
32017
Antwort vom Entwickler Yashar Seyyedin 2023.03.19 16:40
Thanks.
Antwort auf eine Rezension
Version 1.30 2023.11.28
Updated buffers' names.
Version 1.20 2023.08.17
1. Added signal line option
2. Added linear regression option
Version 1.10 2023.01.10
A fix about shadows coloring.