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


Recommended products
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. 
Unlock Market Insights: Dynamic Trend Analysis with Statistical Precision for MT5 Are you seeking a deeper understanding of market movements? Many traditional tools may not fully capture the complex, non-linear dynamics often seen in financial markets. This can sometimes lead to uncertainty in identifying subtle trend shifts. Introducing Adaptive PolyBands Optimizer – an advanced MQL5 indicator designed to enhance your market analysis. Unlike some conventional tools, Adaptive PolyBands Optimizer
About indicator > The indicator is a function based on one value (open/high prices up to now) and then it is a mathematical representation of the whole function that is totally independent from any else values. So, if you ask yourself will the future be as it is on the graph... I can tell you - as it was the same as the trading function up to the moment "now"... In conclusion, the point of the indicator is  to try to show the future of the trading function into eternity. The graphic is sometime
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-
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
XFlow
Maxim Kuznetsov
XFlow shows an expanding price channel that helps determine the trend and the moments of its reversal. It is also used when accompanying transactions to set take profit/stop loss and averages. It has practically no parameters and is very easy to use - just specify an important moment in the history for you and the indicator will calculate the price channel. DISPLAYED LINES ROTATE - a thick solid line. The center of the general price rotation. The price makes wide cyclical movements around the
Rubdfx Spike Indicator 1.5: Updated for Strategic Trading The Rubdfx Spike Indicator is developed to aid traders in identifying potential market reversals and trends. It highlights spikes that indicate possible upward or downward movements, helping you observe when a trend may continue. A trend is identified when a buy or sell spike persists until the next opposite spike appears. Key Features: Versatility: Any Timeframe Adaptability: Designed   to work on all Timeframes however Recommended for
EverGrowth Pro MT5
Canberk Dogan Denizli
The current price of   $619   is a testament to our commitment to providing you with an affordable entry point to experience the power and potential of EverGrowth!!! However, we must emphasize that the price of EverGrowth will increase significantly in the near future, reflecting its true value and results it delivers.   The next price for EverGrowth is set at $775, $970, $1200, $1500. As such, it is in your best interest to seize this limited introductory offer promptly and secure your copy at
Hydra Trend Rider is a non-repainting, multi-timeframe trend indicator that delivers precise buy/sell signals and real-time alerts for high-probability trade setups. With its color-coded trend line, customizable dashboard, and mobile notifications, it's perfect for traders seeking clarity, confidence, and consistency in trend trading. Download the Metatrader 4 Version Read the Indicator User Manual here. HURRY!   FLASH SALE is  ON . Price  increasing soon! Read the product description carefully
The Price Tracker Indicator is designed to outline a dynamic price channel, showcasing areas where price movement is typically contained. The indicator highlights potential areas of interest where price may react when approaching the channel limits. Versatile for Scalping and Swing Trading The indicator adapts to all timeframes and can complement various trading strategies. It integrates seamlessly with tools such as supply and demand levels, reversal patterns, and other confluences. Key Feat
[ 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
Volatility zone
Slobodan Manovski
ATR Volatility Zones Indicator Multi-Level Volatility Measurement Tool with Visual Alerts This advanced indicator analyzes market volatility using Average True Range (ATR) to identify five distinct volatility zones, helping traders adapt their strategies to current market conditions. Key Features: 5-Zone Volatility Classification - Precisely identifies: • LOW (Cyan) • MEDIUM-LOW (Lime Green) • MEDIUM (Yellow) • HIGH-MEDIUM (Orange) • HIGH (Red) Smart Dynamic Ranges - Automatically adjust
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
Unlock instant clarity in your charts! This indicator automatically draws the key levels where price has reacted or broken recently, giving you objective support and resistance zones without manual lines. Just attach it to your chart and watch the previous highs and lows appear for each timeframe. What does each line mean? Previous Month High ‣ Highest price recorded in the previous monthly period. Previous Month Low ‣ Lowest price recorded in the previous monthly period. Previous Week High ‣
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 g
ShortBS是一个很好的短线交易指示器,能很好与 BestPointOfInitiation ( https://www.mql5.com/zh/market/product/96671 )配合,能让你找到最合适的buy和sell位置,指标不含有未来函数,不会重新绘制。是一个针对(如果你感觉到这个指标能够帮助你进行更准确的交易,请帮忙给个好评,希望我的作品能够帮助更多有需要的人) ===================参数列表===================== maPeriod: 25 slowPeriod:20 fastPeriod:10 stepPeriod:5 =================参考使用方法=================== 此指标可以适用于任何交易品种,能够用在任何周期。
CChart
Rong Bin Su
Overview In the fast-paced world of forex and financial markets, quick reactions and precise decision-making are crucial. However, the standard MetaTrader 5 terminal only supports a minimum of 1-minute charts, limiting traders' sensitivity to market fluctuations. To address this issue, we introduce the Second-Level Chart Candlestick Indicator , allowing you to effortlessly view and analyze market dynamics from 1 second to 30 seconds on a sub-chart. Key Features Support for Multiple Second-Level
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.
Balanced Price Range BPR Indicator ICT MT5 The Balanced Price Range BPR Indicator ICT MT5 is a specialized tool within the ICT trading framework in MetaTrader 5. This indicator detects the overlap between two Fair Value Gaps (FVG), helping traders identify key price reaction areas. It visually differentiates market zones by marking bearish BPRs in brown and bullish BPRs in green, offering valuable insights into market movements. «Indicator Installation & User Guide» MT5 Indicator Installation  |
FREE
Zerolag MACD Indicator MT5 The Zerolag MACD indicator MT5 is a refined variant of the classic MACD tool tailored for MetaTrader 5. Designed to reduce latency and enhance responsiveness, this version empowers traders to react faster to rapid price fluctuations. While it preserves core MACD features such as convergence, divergence, and moving average calculations, it delivers signals with greater immediacy and precision. «Indicator Installation & User Guide» MT5 Indicator Installation  |  Buy Sell
FREE
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
RRR with lines Indicator Download MT5 Effective risk management is a fundamental aspect of sustainable trading in financial markets. The RRR Indicator in MetaTrader 5 provides traders with a structured approach to calculating the Risk-to-Reward Ratio (RRR) . By drawing three adjustable horizontal lines, it assists traders in setting Stop Loss and Take Profit levels with precision. «Indicator Installation & User Guide» MT5 Indicator Installation  |  RRR with lines Indicator MT5  | ALL Products By
FREE
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
Boom 600 Precision Spike Detector The Boom 600 Precision Spike Detector is your ultimate tool for trading the Boom 600 market with precision and confidence. Equipped with advanced features, this indicator helps you identify potential buy opportunities and reversals, making it an essential tool for traders aiming to capture spikes with minimal effort. Key Features: Non-Repainting Signals: Accurate, non-repainting signals that you can trust for reliable trading decisions. Audible Alerts: Stay on t
Movillator
Vitaly Dodonov
Every trader knows: the market moves in waves, and profit hides where the trend begins or ends. But how to catch these moments and make decisions with confidence? This is where Movillator comes to the scene. What is Movillator? Movillator combines the characteristics of trend indicators and oscillators, allowing you to not only determine the direction of the trend, but also find key entry and exit points. After being added to the chart, the indicator displays: Two moving averages to track the t
Revera
Anton Kondratev
4 (2)
REVERA EA  is a Multi-Currency, Flexible, Fully Automated and Multi-Faceted Open Tool for Identifying Vulnerabilities in the Market for EURUSD + AUDUSD + AUDCAD ! Not    Grid   , Not    Martingale   , Not     AI     , Not     Neural Network , Not Arbitrage . Default Settings for One Сhart   EURUSD M15 REVERA GUIDE Signals Commission Broker Refund Updates My Blog Only 7 Copy of 10 Left  for 390 $ Next Price 590 $  This is a Multi -Currency system that allows you to diversify your risk across  S
VWAP Machine Learning Bands: The Predictive Edge for Traders Unlock the next level of market analysis with VWAP Machine Learning Bands – an innovative MQL5 indicator engineered to provide unparalleled insights into market trends, dynamic support/resistance, and high-probability trade signals. Leveraging a proprietary adaptive machine learning algorithm integrated with the power of Volume Weighted Average Price (VWAP), this indicator transcends traditional analysis. It's designed to give you a ge
Explosive Breakout Hunter aims to maximize profits by capturing powerful breakouts. With a win rate of around 50% and only a few trades per month, it’s not about quantity but quality. Patiently lying in wait, it steadily builds up powerful victories, one breakout at a time. You can check the potential profits of this EA by reviewing the backtest results in the screenshots. Also, feel free to try the free demo! Installation is simple and requires no changes to the settings. The default setting
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), 
Uncover the true hidden patterns of the market with the PREDATOR AURORA Trading System—the final boss of hybrid trading Indicators. See what others don't! PREDATOR AURORA Trading System a powerhouse designed for those who refuse to cower in the shadows of mediocrity. This isn't just another indicator, it is the cheat code ; it is your unfair advantage , a sophisticated hybrid hunting system that tracks market movements with lethal precision in a jungle where only the strongest survive. Inspir
Buyers of this product also purchase
Divergence Bomber
Ihor Otkydach
4.98 (56)
Each buyer of this indicator also receives the following for free: The custom utility "Bomber Utility", which automatically manages every trade, sets Stop Loss and Take Profit levels, and closes trades according to the rules of this strategy Set files for configuring the indicator for various assets Set files for configuring Bomber Utility in the following modes: "Minimum Risk", "Balanced Risk", and "Wait-and-See Strategy" A step-by-step video manual to help you quickly install, configure, and s
Trend Screener Pro MT5
STE S.S.COMPANY
4.87 (90)
Unlock the Power of Trends Trading with the Trend Screener Indicator: Your Ultimate Trend Trading Solution powered by Fuzzy Logic and Multi-Currencies System! Elevate your trading game with the Trend Screener, the revolutionary trend indicator designed to transform your Metatrader into a powerful Trend Analyzer. This comprehensive tool leverages fuzzy logic and integrates over 13 premium features and three trading strategies, offering unmatched precision and versatility. LIMITED TIME OFFER : Tre
Gold Stuff mt5
Vasiliy Strukov
4.92 (189)
Gold Stuff mt5 is a trend indicator designed specifically for gold and can also be used on any financial instrument. The indicator does not redraw and does not lag. Recommended time frame H1. Contact me immediately after the purchase to get   personal bonus!  You can get a free copy of our Strong Support and Trend Scanner indicator, please pm. me! Settings  and manual   here  Please note that I do not sell my EA's or special sets on telegram, it is only available on Mql5 and my set files are on
Trend indicator AI mt5
Ramil Minniakhmetov
5 (7)
Trend Ai indicator  mt5 is great tool that will enhance a trader’s market analysis by combining trend identification with actionable entry points and reversal alerts.  This indicator empowers users to navigate the complexities of the forex market with confidence and precision Beyond the primary signals, Trend Ai indicator identifies secondary entry points that arise during pullbacks or retracements, enabling traders to capitalize on price corrections within the established trend. Important Advan
***  Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool developed based on the Smart Money Concepts (SMC) framework. It automatically analyzes reversal points and key zones across multiple timeframes, with a focus on providing no repaint signals and highlighting Points of Interest (POI). Additionally, it features an Auto Fibonacci Level system that automatically draws Fibonacci lines to help detect pullback and reversal points. This tool empowers traders to plan and m
FX Levels MT5
Daniel Stein
5 (7)
FX Levels: Exceptionally Accurate Support & Resistance for All Markets Quick Overview Looking for a reliable way to pinpoint support and resistance levels across any market—currencies, indices, stocks, or commodities? FX Levels merges our traditional “Lighthouse” method with a forward-thinking dynamic approach, offering near-universal accuracy. By drawing from real-world broker experience and automated daily plus real-time updates, FX Levels helps you identify reversal points, set profit targe
Grabber System MT5
Ihor Otkydach
5 (15)
Let me introduce you to an excellent technical indicator – Grabber, which works as a ready-to-use "All-Inclusive" trading strategy. Within a single code, it integrates powerful tools for technical market analysis, trading signals (arrows), alert functions, and push notifications. Every buyer of this indicator also receives the following for free: Grabber Utility for automatic management of open orders Step-by-step video guide: how to install, configure, and trade with the indicator Custom set fi
Support And Resistance Screener Breakthrough unique Solution With All Important levels analyzer and Markets Structures Feature Built Inside One Tool ! Our indicator has been developed by traders for traders and with one Indicator you will find all Imporant market levels with one click. LIMITED TIME OFFER : Support and Resistance Screener Indicator is available for only 50 $ and lifetime. ( Original price 125$ ) (offer extended) The available tools ( Features ) in our Indicator are :  1. HH-LL S
Introducing   Quantum Breakout PRO , the groundbreaking MQL5 Indicator that's transforming the way you trade Breakout Zones! Developed by a team of experienced traders with trading experience of over 13 years,   Quantum Breakout PRO   is designed to propel your trading journey to new heights with its innovative and dynamic breakout zone strategy. Quantum Breakout Indicator will give you signal arrows on breakout zones with 5 profit target zones and stop loss suggestion based on the breakout b
Matrix Arrow Indicator MT5
Juvenille Emperor Limited
5 (16)
Matrix Arrow Indicator MT5  is a unique 10 in 1 trend following   100% non-repainting  multi-timeframe indicator that can be used on all symbols/instruments:   forex,   commodities,   cryptocurrencies,   indices,   stocks .  Matrix Arrow Indicator MT5  will determine the current trend at its early stages, gathering information and data from up to 10 standard indicators, which are: Average Directional Movement Index (ADX) Commodity Channel Index (CCI) Classic Heiken Ashi candles Moving Average
FX Volume MT5
Daniel Stein
4.84 (19)
FX Volume: Experience Genuine Market Sentiment from a Broker’s Perspective Quick Overview Looking to elevate your trading approach? FX Volume provides real-time insights into how retail traders and brokers are positioned—long before delayed reports like the COT. Whether you’re aiming for consistent gains or simply want a deeper edge in the markets, FX Volume helps you spot major imbalances, confirm breakouts, and refine your risk management. Get started now and see how genuine volume data can
Algo Pumping
Ihor Otkydach
4.74 (19)
PUMPING STATION – Your Personal All-inclusive strategy Introducing PUMPING STATION — a revolutionary Forex indicator that will transform your trading into an exciting and effective activity! This indicator is not just an assistant but a full-fledged trading system with powerful algorithms that will help you start trading more stable! When you purchase this product, you also get FOR FREE: Exclusive Set Files: For automatic setup and maximum performance. Step-by-step video manual: Learn how to tr
Dark Absolute Trend MT5
Marco Solito
4.64 (11)
Dark Absolute Trend   is an Indicator for intraday trading. This Indicator is based on   Trend Following  strategy but use also candlestick patterns and Volatility. We can enter in good price with this Indicator, in order to follow the main trend on the current instrument. It is advised to use low spread ECN brokers. This Indicator does   Not repaint   and   N ot lag . Recommended timeframes are M5, M15 and H1. Recommended working pairs: All. I nstallation and  Update Guide   -  Troubleshooting
How many times have you bought a trading indicator with great back-tests, live account performance proof with fantastic numbers and stats all over the place but after using it, you end up blowing your account? You shouldn't trust a signal by itself, you need to know why it appeared in the first place, and that's what RelicusRoad Pro does best! User Manual + Strategies + Training Videos + Private Group with VIP Access + Mobile Version Available A New Way To Look At The Market RelicusRoad is the
Nirvana trend
Aiireza Arjmandi Nezhad
Do you dream of passing Prop Challenges? Your dream has come true! Participating in Prop Firms’ challenges like FTMO, MyForexFunds and... is a golden opportunity to access big funds. But these challenges have strict rules: Daily Drawdown and Max Drawdown. One small mistake, an emotional trade or a wrong analysis can ruin all your hard work in an instant. This is where the Nirvana Trend indicator comes to your side like a professional coach and a protective shield! How does Nirvana Trend make
Atbot
Zaha Feiz
4.65 (51)
ATbot : How It Works and How to Use It How It Works The "AtBot" indicator for the MT5 platform generates buy and sell signals using a combination of technical analysis tools. It integrates Simple Moving Average (SMA), Exponential Moving Average (EMA), and the Average True Range (ATR) index to identify trading opportunities. Additionally, it can utilize Heikin Ashi candles to enhance signal accuracy. MQL Channel    Leave a massage after purchase and receive a special bonus gift. Key Features: ⦁
Berma Bands
Muhammad Elbermawi
5 (6)
The Berma Bands (BBs) indicator is a valuable tool for traders seeking to identify and capitalize on market trends. By analyzing the relationship between the price and the BBs, traders can discern whether a market is in a trending or ranging phase. Visit the [ Berma Home Blog ] to know more. Berma Bands are composed of three distinct lines: the Upper Berma Band, the Middle Berma Band, and the Lower Berma Band. These lines are plotted around the price, creating a visual representation of the pric
Suleiman Levels
Suleiman Alhawamdah
5 (3)
A special offer for a cherished occasion… Special price for a limited number of days. Important Note: The image shown in the screenshots includes two indicators: the “Suleiman Levels” indicator and the “RSI Trend V” indicator. The Suleiman Levels indicator is a professional, advanced, and integrated analysis tool. With nearly 9,800 lines of code, it makes your analysis charts clearer than ever before. It is not just an indicator. Powerful features of Suleiman Levels: Yellow Boxes (Financial
FX Power MT5 NG
Daniel Stein
5 (17)
FX Power: Analyze Currency Strength for Smarter Trading Decisions Overview FX Power is your go-to tool for understanding the real strength of currencies and Gold in any market condition. By identifying strong currencies to buy and weak ones to sell, FX Power simplifies trading decisions and uncovers high-probability opportunities. Whether you’re looking to follow trends or anticipate reversals using extreme delta values, this tool adapts seamlessly to your trading style. Don’t just trade—trade
This indicator is an indicator for automatic wave analysis that is perfect for practical trading! Case... Note:   I am not used to the Western name for wave classification. Influenced by the naming habit of Chaos Theory (Chanzhongshuochan), I named the basic wave as   pen   , the secondary wave band as   segment   , and the segment with trend direction   as main trend segment   (this naming method will be used in future notes, let me tell you in advance), but the algorithm is not closely relat
Note from Developer: This is the Signal Edition V1 of the Double TMA with Bands Indicator . This is the promised paid version that comes with alerts, on screen signal arrows, and push notifications so you can catch the reversal. The trading system is designed so that you can clearly identify entry and exit opportunities  The basis of the trading system is to enter at a given signal, exit at the opposite signal, and then place a trade in the opposing direction after exiting from your previous p
Trend Forecaster
Alexey Minkov
5 (7)
The Trend Forecaster indicator utilizes a unique proprietary algorithm to determine entry points for a breakout trading strategy. The indicator identifies price clusters, analyzes price movement near levels, and provides a signal when the price breaks through a level. The Trend Forecaster indicator is suitable for all financial assets, including currencies (Forex), metals, stocks, indices, and cryptocurrencies. You can also adjust the indicator to work on any time frames, although it is recommen
Top indicator for MT5   providing accurate signals to enter a trade without repainting! It can be applied to any financial assets:   forex, cryptocurrencies, metals, stocks, indices .  Watch  the video  (6:22) with an example of processing only one signal that paid off the indicator! MT4 version is here It will provide pretty accurate trading signals and tell you when it's best to open a trade and close it. Most traders improve their trading results during the first trading week with the help of
ACB Breakout Arrows MT5
KEENBASE SOFTWARE SOLUTIONS
5 (1)
The ACB Breakout Arrows indicator provides a crucial entry signal in the market by detecting a special breakout pattern. The indicator constantly scans the chart for a settling momentum in one direction and provide the accurate entry signal right before the major move. Get multi-symbol and multi-timeframe scanner from here - Scanner for ACB Breakout Arrows MT 5 Key features Stoploss   and Take Profit levels are provided by the indicator. Comes with a MTF Scanner dashboard which tracks the brea
CRT Liquidity Pro
Juan Pablo Castro Forero
5 (1)
Worried about your next trade? Tired of not knowing if your strategy actually works? With CRT Liquidity Pro, you trade with real stats, not emotions. Know your probabilities, track your performance, and trade with confidence—based on the Power of 3, Smart liquidity detection and CRT confirmations. Did you like to see the reality of the CRT Liquidity strategy? After your purchase contact us and we will provide you one of our other products for free.  Check our other products for more real strate
PZ Day Trading MT5
PZ TRADING SLU
2.83 (6)
Effortless trading: non-repainting indicator for accurate price reversals This indicator detects price reversals in a zig-zag fashion, using only price action analysis and a donchian channel. It has been specifically designed for short-term trading, without repainting or backpainting at all. It is a fantastic tool for shrewd traders aiming to increase the timing of their operations. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Amazingly easy to trade It provides
Introducing the South African Sniper indicator created by a small group of traders with a few years trading trading the financial market profitably . This is a plug and play indicator that provides you with  BUY and SELL (SNIPER ENTRY) signals with TARGET and trail stops. The indicator Works with all MT5 trading instruments. The indicator uses previous  chart data as receipt to speculate on future market moves.  "The South African Sniper indicator community are very happy with the indicator and
PZ Swing Trading MT5
PZ TRADING SLU
5 (5)
Protect against whipsaws: revolutionize your swing trading approach Swing Trading is the first indicator designed to detect swings in the direction of the trend and possible reversal swings. It uses the baseline swing trading approach, widely described in trading literature. The indicator studies several price and time vectors to track the aggregate trend direction and detects situations in which the market is oversold or overbought and ready to correct. [ Installation Guide | Update Guide | Tro
PZ Trend Trading MT5
PZ TRADING SLU
3.8 (5)
Capture every opportunity: your go-to indicator for profitable trend trading Trend Trading is an indicator designed to profit as much as possible from trends taking place in the market, by timing pullbacks and breakouts. It finds trading opportunities by analyzing what the price is doing during established trends. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Trade financial markets with confidence and efficiency Profit from established trends without getting whip
IQ Gold Gann Levels a non-repainting, precision tool designed exclusively for XAUUSD/Gold intraday trading. It uses W.D. Gann’s square root method to plot real-time support and resistance levels, helping traders spot high-probability entries with confidence and clarity. William Delbert Gann (W.D. Gann) was an exceptional market analyst, whose trading technique was based on a complex blend of mathematics, geometry, astrology, and ancient mathematics which proved to be extremely accurate. Download
Filter:
No reviews
Reply to review