• Übersicht
  • Bewertungen
  • Diskussion
  • Neue Funktionen

Nadaraya Watson Envelope LuxAlgo

To get access to MT4 version click here.

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

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

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

input group "EA Setting"
input int magic_number=123456; //magic number
input double fixed_lot_size=0.01; // select fixed lot size
input bool multiplie_entry=false; //allow multiple entries in the same direction

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


int OnInit()
  {
   trade.SetExpertMagicNumber(magic_number);
   handle_nw=iCustom(_Symbol, PERIOD_CURRENT, "Market/Nadaraya Watson Envelope LuxAlgo", h, mult, src, repaint);
   if(handle_nw==INVALID_HANDLE) 
   {
      Print("Indicator not found!");
      return INIT_FAILED;
   }
   return(INIT_SUCCEEDED);
  }

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

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

bool IsNWBuy(int i)
{
   double array[];
   ArraySetAsSeries(array, true);
   CopyBuffer(handle_nw, 5, i, 1, array);
   return array[0]!=EMPTY_VALUE;
}

bool IsNWSell(int i)
{
   double array[];
   ArraySetAsSeries(array, true);
   CopyBuffer(handle_nw, 6, 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;
}


Empfohlene Produkte
This indicator closes the positions when Profit. This way you can achieve a goal without determine Take Profit.  Parameters: Profit: the amount of Dolllars you want to close when profit.  Just determine Profit section and open new positions. If Any of your positions reaches above Profit , Indicator will close automatically and you will recieve your Profit. 
To get access to MT4 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. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
RoboTick Signal
Mahir Okan Ortakoy
Hello, In this indicator, I started with a simple moving average crossover algorithm. However, in order ot get more succesfull results, I created different scenarios by basin the intersections and aptimized values of the moving averages on opening, closing, high and low values. I am presenting you with the most stable version of the moving averages that you have probably seen in any environment. We added a bit of volume into it. In my opinion, adding the Bollinger Band indicator from the ready-
XFlow
Maxim Kuznetsov
XFlow zeigt einen expandierenden Preiskanal, der hilft, den Trend und die Momente seiner Umkehrung zu bestimmen. Wird auch bei der Begleitung von Trades verwendet, um Take-Profit/Stop-Loss und Mittelwerte festzulegen. Es hat praktisch keine Parameter und ist sehr einfach zu bedienen - geben Sie einfach den für Sie wichtigen Moment der Geschichte an und der Indikator berechnet den Preiskanal. ANGEZEIGTE LINIEN ROTATE ist eine dicke, durchgezogene Linie. Das Zentrum der allgemeinen Rotation des P
Contact me for instruction, any questions! Introduction The breakout and retest strategy is traded support and resistance levels. it involves price breaking through a previous level.  The break and retest strategy is designed to help traders do two main things, the first is to avoid false breakouts. Many false breakouts start with a candlestick that breaks out of a level but ends with an immediate candlestick that brings the price back into the level. The second thing that the breakout and re
[ MT4 Version ]  [ Kill Zones ]  [ SMT Divergences ] How to trade using Order Blocks:  Click here User Interface Performance:  During testing in the strategy tester, the UI may experience lag. Rest assured, this issue is specific to the testing environment and does not affect the indicator's performance in live trading. Elevate your trading strategy with the  Order Blocks ICT Multi TF  indicator, a cutting-edge tool designed to enhance your trading decisions through advanced order block analysis
Market Session Pro
Kambiz Shahriarynasab
The  Market Sessions Indicator for MT5 helps you  predict market turnarounds  by detecting major supply and demand areas. These pivot points tend to occur after a new session has started and the previous one is still open. It is also used to gauge how many points or pips the market moves on average during a session. This helps us to place better our take profits and stop losses. The indicator works on all forex pairs, gold, silver, commodities, stocks, indices and any other instrument that your
- This is an implementation of OCC ==> open close cross - This indicator applies twelve different averaging methods to open and close prices separately to signal the trend switching. - All MA methods are set as input as well as period and different offsets applied to linear regression and ALMA averaging. - Buffers 16 and 17 can be used in EAs to detect trend direction. - You can message in private chat for further changes you need.
Volume Trade Levels
Mahmoud Sabry Mohamed Youssef
The idea behind this indicator is very simple , First it contains 2 mechanisms to place your trades: 1- Enter the Pips you want to duplicate to price levels. 2- Automatically let the indicator specify the largest Buy / Sell Volume Candle and place duplicated levels based on the candle itself. How it works: 1- Enter the Pips you want to duplicate to price levels:    1- once the indicator is loaded you will need first to Specify the number of pips in the indicator Configuration window ,you can
ShortBS是一个很好的短线交易指示器,能很好与 BestPointOfInitiation ( https://www.mql5.com/zh/market/product/96671 )配合,能让你找到最合适的buy和sell位置,指标不含有未来函数,不会重新绘制。是一个针对(如果你感觉到这个指标能够帮助你进行更准确的交易,请帮忙给个好评,希望我的作品能够帮助更多有需要的人) ===================参数列表===================== maPeriod: 25 slowPeriod:20 fastPeriod:10 stepPeriod:5 =================参考使用方法=================== 此指标可以适用于任何交易品种,能够用在任何周期。
To get access to MT4 version please click   here . This is the exact conversion from TradingView: QQE MT4 Glaz-modified by JustUncleL This is a light-load processing and non-repaint indicator. All input options are available. This is not a multi time frame indicator. Buffers are available for processing in EAs. You can message in private chat for further changes you need.
Buy Sell Visual MTF
Naththapach Thanakulchayanan
This MT5 indicator, Bull Bear Visual MTF (21 Time Frames), summarize the strength color graphic and percentages of power for both  Bull and Bear in current market emotion stage which will show you in multi time frames and sum of the total Bull and Bear power strength which is an important information for traders especially you can see all Bull and Bear power in visualized graphic easily, Hope it will be helpful tool for you for making a good decision in trading.
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
The PriceActionOracle indicator greatly simplifies your trading decision-making process by providing accurate signals about market reversals. It is based on a built-in algorithm that not only recognizes possible reversals, but also confirms them at support and resistance levels. This indicator embodies the concept of market cyclicality in a form of technical analysis. PriceActionOracle tracks the market trend with a high degree of reliability, ignoring short-term fluctuations and noise around
Kill Zones MT5
Diego Arribas Lopez
MT4 Version Kill Zones Kill Zones allows you to insert up to 3 time zones in the chart. The visual representation of the Kill Zones in the chart together with an alert and notification system helps you to ignore fake trading setups occurring outside the Kill Zones or specific trading sessions. Using Kill Zones in your trading will help you filter higher probability trading setups. You should select time ranges where   the market   usually reacts with high volatility. Based on   EST time zone, f
The indicator determines a special pattern of Joe Dinapoli. It gives very high probability buy and sell signals. Indicator does not repaint. Indicator Usage Buy Signal ''B'' Entry : Market buy order at signal bar close Stop : Low of signal bar Take Profit : First swing high Sell Signal ''S'' Entry : Market sell order at signal bar close Stop : High of signal bar Take Profit : First swing low Indicator Parameters Fast EMA : External Parameter (should be kept as default) Slow EMA: External Param
This is a two in one indicator implementation of Average Directional Index based on heiken ashi and normal candles. Normal candles and Heiken Ashi is selectable via input tab. The other inputs are ADX smoothing and DI length. This indicator lets you read the buffers: +di: buffer 6 -di: buffer 7 -adx: buffer 10 Note: This is a non-repaint indicator with light load processing. - You can message in private chat for further changes you need.
Market Noise Market Noise ist ein Indikator, der Marktphasen auf einem Preisdiagramm bestimmt und außerdem klare, glatte Trendbewegungen von lauten, flachen Bewegungen unterscheidet, wenn eine Akkumulations- oder Verteilungsphase auftritt. Jede Phase ist für ihre eigene Art des Handels gut: Trend für trendfolgende Systeme und flach für aggressive Systeme. Wenn der Marktlärm beginnt, können Sie sich entscheiden, aus dem Handel auszusteigen. Auf die gleiche Weise und umgekehrt müssen Sie aggressi
CAD Sniper X MT5
Mr James Daniel Coe
4.86 (7)
BUILDING ON THE SUCCESS OF MY POPULAR FREE EA 'CAD SNIPER'... I PRESENT CAD SNIPER X! THOUSANDS MORE TRADES | NO BROKER LIMITATIONS | BETTER STATISTICS | MULTIPLE STRATEGIES Send me a PRIVATE MESSAGE after purchase for the manual and a free bonus TWO STRATEGIES IN ONE FOR AUDCAD, NZDCAD, GBPCAD and CADCHF Strategy 1 can be used with any broker, trades much more frequently and is the default strategy for CAD Sniper X. It's shown robust backtest success for many years and is adapted
I recommend you to read the   product's blog  (manual) from start to end so that it is clear from the beginning what the indicactor offers. This multi time frame and multi symbol trend indicator sends an alert when a strong trend or trend reversal has been identified. It can do so by selecting to build up the dashboard using Moving average (single or double (both MA:s aligned and price above/below both)), RSI, Bollinger bands, ADX, Composite index (Constance M. Brown), Awesome (Bill Williams), 
Seasonal Pattern Trader
Dominik Patrick Doser
Disclaimer:   Bedenken Sie, dass saisonale Muster nicht immer zuverlässig sind. Deshalb ist ein durchdachtes Risikomanagement entscheidend, um Verluste zu minimieren. Saisonale Muster in der Finanzwelt sind wie ein gut gehütetes Geheimnis, das erfolgreiche Investoren für ihren Vorteil nutzen.  Diese Muster sind wiederkehrende Preisbewegungen, die in bestimmten Zeiträumen oder um besondere Ereignisse auftreten. Hier sind einige Beispiele und Hinweise zur optimalen Nutzung dieser Muster: Beispie
In order for Trailing Money Python   to work more efficiently, it was designed to be quite simple and plain and optimized by adding the Trailing Stop.  The robot only trades in a 5 minute time frame. There is a saying that brokers often use: "Earnings are worthy of the wallet!" Here, we see this word as a philosophy of trade. Therefore, we developed this robot. ** Timeframe: 5 Minutes ** Supported: ***Especially Stocks at Futures ** The minimum amount depends on the margin requirement of t
Nasdaq 5 Gage MT5
Kambiz Shahriarynasab
For Nasdaq trading, the most important principle is to know the trend of the fund. This indicator with 6 green and red lights provides you with the daily path of this important indicator. This indicator has been tested for 6 months and has a win rate of over 85%. Be sure to contact me before purchasing to get the necessary instructions on how to use and set up this indicator. You should use a broker that has dollar index, vix, and commodities. MT4 Version You can contact us via Instagram,
Impulse fractals indicator - is counter-trend oriented complex market fractal pattern.  Market creates bull/bear impulse, trend starts, fractals on impulsed wave are an agressive pullback signals. Buy arrow is plotted when market is bearish and it's impulse showed up-side fractal, and sell arrow is plotted when market is bullish and it's impulse showed dn-side fractal. Main indicator's adjustable inputs : impulsePeriod - main period of impulse histogram  filterPeriod  - smoothes impulse accordi
Präsentiert wird der revolutionäre MT5-Indikator "Traffic Signal" - Ihr Tor zur Welt des erfolgreichen Tradings! Präzise entwickelt und erfahrungsgestützt, arbeitet Traffic Signal mit einer speziellen Strategie, die auf der Analyse von RSI, Stochastics, CCI und Trends in allen Zeitrahmen basiert, um die genauesten Eintrittssignale zu generieren. Bereiten Sie sich auf ein außergewöhnliches Trading-Erlebnis vor, denn dieser innovative Indikator bietet Ihnen unübertroffene Genauigkeit und ermöglich
Dieser Indikator ist ein perfekter automatischer Wellenanalyse-Indikator für den praktischen Handel! Die standardisierte Definition des Bandes ist nicht mehr eine Welle von verschiedenen Leuten, und das Ziehen von menschengemachten Interferenzen wird eliminiert, was eine Schlüsselrolle bei der gründlichen Analyse des Ansatzes spielt. =>Increase the choice of international style mode, (red fall green rise style)           Derzeit Kaufrabatt!   Inhalt des Index: 1.       Grundwelle:   Zue
To get access to MT4 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
Dragon Ultra
Dang Cong Duong
5 (1)
At first, I got my teeth into   Dragon Ultra   Expert Advisor. Build a smart grid both with the trend and against the trend. The powerful combination of locking and partial loss closure. The program is constantly being improved and upgraded. You should use the  Dragon Training proficiently before buying the product. You can run in real environment with the Dragon Lite , note that the input parameters are hidden. Advantages of the Dragon Ultra Smart recovery system with Fibonacci grid Good resist
Introduction This indicator detects volume spread patterns for buy and sell opportunity. The patterns include demand and supply patterns. You might use each pattern for trading. However, these patterns are best used to detect the demand zone (=accumulation area) and supply zone (=distribution area). Demand pattern indicates generally potential buying opportunity. Supply pattern indicates generally potential selling opportunity. These are the underlying patterns rather than direct price action. T
Market Session Visual
Kambiz Shahriarynasab
The  Market Sessions Indicator for MT5 helps you  predict market turnarounds  by detecting major supply and demand areas. These pivot points tend to occur after a new session has started and the previous one is still open. It is also used to gauge how many points or pips the market moves on average during a session. This helps us to place better our take profits and stop losses. The indicator works on all forex pairs, gold, silver, commodities, stocks, indices and any other instrument that yo
Käufer dieses Produkts erwarben auch
Atomic Analyst MT5
Issam Kassas
4.5 (16)
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. Benutzerhandbuch: Einstellungen, Eingaben und Strategie. 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 z
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. Online-Kurs, Handbuch und Vorlagen herunterladen. 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
TPSpro RFI Levels MT5
Roman Podpora
4.63 (8)
Umkehr der ersten Impulsniveaus (RFI)       ANWEISUNGEN       Russland       -        ENG    Die Empfehlung basiert auf dem Indikator -   TPSpro   TREND PRO -   Version MT5 Die wichtigsten Elemente in der Branche sind entweder in Zonen oder in der Fabrik enthalten, oder sie führen zu einer Lösung bei einem Kauf oder dem Verkauf eines anderen Instruments. Wenn viele Menschen ihre Rechte nicht auf dem Händlerkonto verschlüsseln, werden die Folgen nicht schnell genug sein. Ich habe es damit abgesch
TPSproTREND PrO MT5
Roman Podpora
4.89 (9)
TPSpro TREND PRO   ist ein Trendindikator, der den Markt automatisch analysiert und Informationen über den Trend und jede seiner Änderungen liefert sowie Signale für den Einstieg in Geschäfte ohne Neuzeichnung gibt! Der Indikator verwendet jede Kerze und analysiert sie separat. bezieht sich auf verschiedene Impulse – Aufwärts- oder Abwärtsimpuls. Exakte Einstiegspunkte in Transaktionen für Währungen, Krypto, Metalle, Aktien, Indizes! Version MT5                   VOLLSTÄNDIGE BESCHREIBUNG DES I
Quantum Trend Sniper
Bogdan Ion Puscasu
4.91 (44)
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
Gold Stuff mt5
Vasiliy Strukov
4.9 (125)
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!     Sie können eine kostenlose Kopie unseres Strong Support- und Trendscanner-Indikators erhalten, bitte senden Sie uns eine persönliche Nachricht. Mich! DATEN Draw Arrow - in
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
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
Trend Screener Pro MT5
STE S.S.COMPANY
4.86 (56)
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
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. Online-Kurs, Benutzerhandbuch und Demo. 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 S
Golden Spikes Premium
Kwaku Bondzie Ghartey
Golden Spikes Detector Acknowledgement and Dedications:  The name of this indicator was Inspired by an Original; Mr Grant Koopman; a Knowledgeable and experienced Synthetics trader. I dedicate this indicator to Mr Grant.  Overview: The Golden Spikes Premium is a groundbreaking trading indicator meticulously crafted for the Boom and Crash indices on the Deriv market. Tailored to meet the needs of discerning traders, this powerful tool operates exclusively on the one-minute timeframe, providin
FX Volume MT5
Daniel Stein
5 (12)
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
Easy By Sell is a market indicator for opening and closing positions. It becomes easy to track market entries with alerts. It indicates trend reversal points when a price reaches extreme values ​​and the most favorable time to enter the market. it is as effective as a Fibonacci to find a level but it uses different tools such as an algorithm based on ATR indicators and Stochastic Oscillator. You can modify these two parameters as you wish to adapt the settings to the desired period. My othe
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
Trend Hunter MT5
Andrey Tatarinov
5 (1)
Trend Hunter ist ein Trendindikator für die Arbeit auf den Forex-, Kryptowährungs- und CFD-Märkten. Eine Besonderheit des Indikators besteht darin, dass er dem Trend souverän folgt, ohne das Signal zu ändern, wenn der Preis die Trendlinie leicht durchbricht. Der Indikator wird nicht neu gezeichnet; nach dem Schließen des Balkens erscheint ein Signal zum Markteintritt. Bei der Bewegung entlang eines Trends zeigt der Indikator zusätzliche Einstiegspunkte in Richtung des Trends an. Basierend auf
IX Power MT5
Daniel Stein
4 (5)
IX Power   bringt die unschlagbare Präzision von FX Power endlich auch zu Nicht-Forex-Symbolen. Es bestimmt präzise die Intensität von kurz-, mittel- und langfristigen Trends in Ihren Lieblingsindizes, Aktien, Rohstoffen, ETFs und sogar Kryptowährungen. Sie können   alles analysieren, was   Ihr Terminal zu bieten hat. Probieren Sie es aus und erleben Sie, wie   sich Ihr Timing   beim Handel   deutlich verbessert . IX Power Hauptmerkmale 100% präzise, nicht nachpinselnde Berechnungsergebni
The Smart Liquidity Profile is color-coded based on the importance of the traded activity at specific price levels, allowing traders to identify significant price levels such as support and resistance levels, supply and demand zones, liquidity gaps, consolidation zones, Buy-Side/Sell-Side Liquidity and so on.  Smart Liquidity Profile allows users to choose from a number of different time periods including 'Auto,' 'Fixed Range,' 'Swing High,' 'Swing Low,' 'Session,' 'Day,' 'Week,' 'Month,' 'Quart
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
Suchen Sie nach einem leistungsstarken Indikator für den Devisenhandel, der Ihnen dabei helfen kann, profitable Handelsmöglichkeiten mit Leichtigkeit zu erkennen? Suchen Sie nicht weiter als das Beast Super Signal. Dieser benutzerfreundliche trendbasierte Indikator überwacht kontinuierlich die Marktbedingungen, sucht nach neuen sich entwickelnden Trends oder springt auf bestehende Trends ein. Das Beast Super Signal gibt ein Kauf- oder Verkaufssignal, wenn alle internen Strategien aufeinander abg
Advanced Supply Demand MT5
Bernhard Schweigert
4.46 (13)
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
Matrix Arrow Indicator MT5
Juvenille Emperor Limited
5 (10)
Matrix Arrow Indicator MT5   ist ein einzigartiger 10-in-1-Trend, der zu   100 % nicht neu gezeichnet   werden kann. Multi-Timeframe-Indikator, der für alle Symbole/Instrumente verwendet werden kann:   Forex ,   Rohstoffe ,   Kryptowährungen ,   Indizes ,   Aktien .  Der  Matrix Arrow Indicator MT5  wird den aktuellen Trend in seinen frühen Stadien bestimmen und Informationen und Daten von bis zu 10 Standardindikatoren sammeln, die sind: Durchschnittlicher Richtungsbewegungsindex (ADX) Rohstoff
Dieses Dashboard zeigt die   neuesten verfügbaren harmonischen   Muster für die ausgewählten Symbole, so dass Sie Zeit sparen und effizienter sein werden /   MT4-Version . Kostenloser Indikator:   Basic Harmonic Pattern Spalten des Indikators Symbol:   die ausgewählten Symbole werden angezeigt Trend:   bullish oder bearish Pattern :   Art des Musters (Gartley, Schmetterling, Fledermaus, Krabbe, Hai, Cypher oder ABCD) Entry :   Einstiegskurs SL:   Stop-Loss-Kurs TP1:   1. Take-Profit-Kurs
Gartley Hunter Multi
Siarhei Vashchylka
5 (8)
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all possible timeframes. 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 possible timeframes 3. Search for patterns of all possible sizes. From the smallest to the largest 4. A
XQ Indicator MetaTrader 5
Marzena Maria Szmit
2 (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
Native Channels
BeeXXI Corporation
5 (1)
This indicator recognizes all support and resistance levels. A number of unique high-performance techniques have been applied, which made the existence of this indicator possible. All formed channels are naturally visible: horizontal linear linear parabolic cubic (Polynomial 3 degrees - Wave) This is due to a bundle of approximating channels. The formed channels form "standing waves" in a hierarchical sequence. Thus, all support and resistance levels are visible. All parameter management is
Blahtech Supply Demand MT5
Blahtech Limited
4.54 (13)
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
AW Trend Predictor MT5
AW Trading Software Limited
4.71 (45)
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
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
Owl Smart Levels MT5
Sergey Ermolov
3.7 (20)
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
Gold Pointer ist der beste Trendindikator. Der einzigartige Algorithmus des Indikators analysiert die Bewegung des Vermögenspreises unter Berücksichtigung der Faktoren der technischen und mathematischen Analyse, bestimmt die profitabelsten Einstiegspunkte und gibt ein Signal zur Eröffnung eines KAUF- oder VERKAUFSauftrags. Die besten Indikatorsignale: - Für VERKAUFEN = rote Trendlinie + roter TF-Indikator + gelber Signalpfeil in dieselbe Richtung. - Für KAUFEN = blaue Trendlinie + blauer TF
Weitere Produkte dieses Autors
For MT4 version please click here . This is the exact conversion from TradingView: "Range Filter 5min" By "guikroth". - This indicator implements Alerts as well as the visualizations. - Input tab allows to choose Heiken Ashi or Normal candles to apply the filter to. It means it is a (2 in 1) indicator. - This indicator lets you read the buffers for all data on the window. For details on buffers please message me. - This is a non-repaint and light processing load indicator. - You can message in p
I do not have the exact indicator for MT4 but the nearest possible look alike can be downloaded from here . Also you may check this link . This is the exact conversion from TradingView: "Donchian Trend Ribbon" By "LonesomeTheBlue". One of the coolest indicators out there to detect trend direction and strength. As a trader you always need such indicator to avoid getting chopped in range markets. There are ten buffers as colors to use in EAs also. The indicator is loaded light and non-repaint. Not
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. Thanks
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #include <Trade\Trade.mqh> CTrade trade; int handle_hull= 0 ; input group "EA Setting" input int magic_number= 123456 ; //magic number input double fixe
To get access to MT5 version please click here . - This is a conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. note: Color filled areas and colored candles are not supported in MT4 version. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; inp
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Stochastic Momentum Index" By "UCSgears". - This is a popular version of stochastic oscillator on tradingview. - This is a light-load processing and non-repaint indicator. - Buffers are available for the lines on chart. - You can message in private chat for further changes you need. Thanks for downloading
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Supertrend" by " KivancOzbilgic ". This is a light-load processing and non-repaint indicator. Highlighter option isn't available in MT4 version. You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Supertrend . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input double fixed_lo
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. Strategy description - Detect trend based on GoldTrader rules. - Enter in both direction as much as needed to achieve acceptable amount of profit. - Although this is a martingale bot it is very unlikely to loose your money, because: ==> the money management rules are safe and low risk. ==> entries
FREE
This is the Chandelier Exit trend indicator applied to heiken ashi candles based on "G TREND GUNBOT" by "LUIS_GANDATA_G_TREND" on tradingview. Heiken ashi candles filter out many of the chops and therefore as an input to Chandelier Exit you achieve well filtered Buy and Sell signals. Also you can choose to apply the trend indicator to normal candles via input tab. (two in one indicator) This is a non-repaint and light processing load indicator. You can message in private chat for further change
FREE
GoldTrader
Yashar Seyyedin
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. martingale version is available here . Strategy description - Detect trend based on EMA18-EMA50-SMA200 alignment in three time frames: M15, H1, H4 - Trade in trend direction and exit when above alignment is broken. - The bot is tuned to trade XAUUSD(Gold). - The bot output is break even in rangi
FREE
To download MT4 version please click here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
To download MT4 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
To download MT5 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. This is a sample EA code that operates based on bullish and bearish linear regression candles . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input string     Risk_Management= "" ; input double fixed_lot_size=
To get access to MT5 version please click here . This is the exact conversion from TradingView: " Better RSI with bullish / bearish market cycle indicator" by TradeCalmly. This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need.
To get access to MT5 version please click here . This is the exact conversion from TradingView:"HIGH AND LOW Optimized Trend TrackerHL OTT" by "kivancozbilgic" This is a light-load processing indicator. It is a non-repaint indicator. Colored Candle and Highlighting options are not available. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
IntradayTrader
Yashar Seyyedin
This Expert is developed to optimize parameters to trade intraday trending markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 12% profitability in EURUSD for a period of a year and 2% draw-down using optimization to find best inputs.
FREE
To download MT5 version please click  here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
To download MT4 version please click here . Metatrader users are limited to few moving average types. Therefor I decided to create a package consisting of all MAs I knew. This package suggests 12 different types: { SMA, EMA, DEMA, TEMA, WMA, VWMA, SMMA(RMA), HullMA, LSMA, ALMA, SSMA, TMA } You can configure them via input tab. This is a non-repaint indicator with light load. To implement them I referred to standard  libraries of pine script.
FREE
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Trend Regularity Adaptive Moving Average","TRAMA" By "   LuxAlgo   ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
TRAMA by LuxAlgo
Yashar Seyyedin
5 (1)
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Trend Regularity Adaptive Moving Average","TRAMA" By " LuxAlgo ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Zero Lag MACD Enhanced - Version 1.2" by "   Albert.Callisto ". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Didi Index" by " everget ". - This is a popular version of DIDI index on tradingview. - This is a light-load processing and non-repaint indicator. - Buffer is available for the lines on chart and arrows on chart. - You can message in private chat for further changes you need. Thanks for downloading
This is MacroTrendTrader. It trades in DAILY time frame even if you run it on lower time frames. It opens/closes trades once per day at a specific time that you choose via input tab: - "param(1-5)" are optimization parameters. - "Open/Close Hour" is set via input tab. Make sure to choose this to be away from nightly server shutdown. - "high risk" mode if chosen, sets a closer stop loss level. Therefore higher lot sizes are taken.  This is a light load EA from processing point of view. Calculatio
FREE
To get access to MT5 version please click   here . This is the exact conversion from TradingView: "Hammer & ShootingStar Candle Detector" by "MoriFX". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
FREE
To download MT5 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
Choppy Trader
Yashar Seyyedin
This Expert is developed to optimize parameters to trade in choppy markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 20% profitability in USDCAD for a period of 4-months and 5% draw-down using optimization to find best inputs.
FREE
To download MT4 version please click here . This is the exact conversion from TradingView: "RSI versus SMA" By "JayRogers". This indicator lets you read the buffers for all Lines on chart.  Note: This is an indicator, Not an expert. Meaning It does not take trades. If you want the EA please contact via message. You can easily use the indicator to understand the logic behind trades that the TradingView strategy takes. The strategy is profitable if this indicator is applied to the right symbol at
FREE
To download MT5 version please click here . Metatrader users are limited to few moving average types. Therefor I decided to create a package consisting of all MAs I knew. This package suggests 12 different types: { SMA, EMA, DEMA, TEMA, WMA, VWMA, SMMA(RMA), HullMA, LSMA, ALMA, SSMA, TMA } You can configure them via input tab. This is a non-repaint indicator with light load. To implement them I referred to   standard  libraries of pine script.
FREE
RSI versus SMA
Yashar Seyyedin
4 (1)
To download MT5 version please click  here . This is the exact conversion from TradingView: "RSI versus SMA" By "JayRogers". This indicator lets you read the buffers for all Lines on chart.  Note: This is an indicator, Not an expert. Meaning It does not take trades. If you want the EA please contact via message. You can easily use the indicator to understand the logic behind trades that the TradingView strategy takes. The strategy is profitable if this indicator is applied to the right symbol at
FREE
- This is the exact conversion from TradingView: " 200-EMA Moving Average Ribbon" By "Dale_Ansel". - This indicator plots a series of moving averages to create a "ribbon" that offers a great visual structure to price action. - This indicator lets you read buffers. For information on buffers please contact via message. - This is a non-repaint and light processing load indicator
FREE
Auswahl:
Keine Bewertungen
Antwort auf eine Rezension
Version 1.10 2024.08.25
Fixed a bug!