• Panoramica
  • Recensioni
  • Commenti
  • Novità

Nadaraya Watson Envelope LuxAlgo MT4

To get access to MT5 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.

#property strict

input string EA_Setting="";
input int magic_number=1234;
input double fixed_lot_size=0.01; // select fixed lot size
input bool multiplie_entry=false; //allow multiple entries in the same direction

input string    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

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 index)
{
   double value_buy=iCustom(_Symbol, PERIOD_CURRENT,
    "Market/Nadaraya Watson Envelope LuxAlgo MT4",
    h, mult, src, repaint, 5, index);
   return value_buy!=EMPTY_VALUE;
}

bool IsNWSell(int index)
{
   double value_sell=iCustom(_Symbol, PERIOD_CURRENT,
    "Market/Nadaraya Watson Envelope LuxAlgo MT4",
    h, mult, src, repaint, 6, index);
   return value_sell!=EMPTY_VALUE;
}

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

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

void Buy()
{
   if(OrderSend(_Symbol, OP_BUY, fixed_lot_size, Ask, 3, 0, 0, NULL, magic_number, 0, clrNONE)==-1)
   {
      Print("Error Executing Order: ", GetLastError());
      //ExpertRemove();
   }
}

void Sell()
{
   if(OrderSend(_Symbol, OP_SELL, fixed_lot_size, Bid, 3, 0, 0, NULL, magic_number, 0, clrNONE)==-1)
   {
      Print("Error Executing Order: ", GetLastError());
      //ExpertRemove();
   }
}

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

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

datetime timer=NULL;
bool isNewBar()
{
   datetime candle_start_time= (int)(TimeCurrent()/(PeriodSeconds()))*PeriodSeconds();
   if(timer==NULL) {}
   else if(timer==candle_start_time) return false;
   timer=candle_start_time;
   return true;
}


Prodotti consigliati
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.
DMI ADX Histogram Oscillator I present you one of the most precise and powerful indicator Its made of DMI Histogram together with ADX Oscillator. It has inside arrow to show a buy or sell setup. Features  The way it works its the next one : the histogram is a difference between DMI+ and DMI-.   At the same time together we have the oscillator ADX for Market to run It can be adapted to all type of trading styles such as scalping, day trading or swing. It doesn't matter if its forex, st
DsPMO
Ahmet Metin Yilmaz
Double Smoothed Price Momentum Oscillator The Momentum Oscillator measures the amount that a security’s price has changed over a given period of time. The Momentum Oscillator is the current price divided by the price of a previous period, and the quotient is multiplied by 100. The result is an indicator that oscillates around 100. Values less than 100 indicate negative momentum, or decreasing price, and vice versa. Double Smoothed Price Momentum Oscillator examines the price changes in the dete
XFlow4
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
HC candlestick pattern is a simple and convenient indicator able to define candle patterns.‌ Candlestick charts are a type of financial chart for tracking the movement of securities. They have their origins in the centuries-old Japanese rice trade and have made their way into modern day price charting. Some investors find them more visually appealing than the standard bar charts and the price action is easier to interpret. Hc candlestick pattern is a special indicator designed to find divergence
My indicator is 1000%, it never repaints, it works in every time period, there is only 1 variable, it sends notifications to your phone even if you are on vacation instead of at work, in a meeting, and there is also a robot version of this indicator With a single indicator you can get rid of indicator garbage It is especially suitable for scalping in the m1 and m5 time frames on the gold chart, and you can see long trends in the h1 time frame.
buy sell star indicator has a different algoritms then up down v6 and buy sell histogram indicators. so that i put this a another indicator on market. it is no repaint and all pairs and all time frame indicator. it need minimum 500 bars on charts. when  the white  x sign on the red histogram that is sell signals. when the white x sign on the blue  histogram that is sell signals. this indicator does not guarantie the win.price can make mowement on direction opposite the signals. this is multi tim
Signal Arrows is an indicator that generates trade arrows. It generates trade arrows with its own algorithm. These arrows give buying and selling signals.  Can be used in all pairs. Sends a signal to the user with the alert feature. The indicator certainly does not repaint. Trade rules Enter the signal when the buy signal arrives. In order to exit from the transaction, an opposite signal must be received. It is absolutely necessary to close the operation when an opposite signal is received. Th
This is a fully automatic Expert Advisor. It can trade any market, any timeframe and any currency pair. The EA uses simple indicators like SMA, RSI and CCI, and a smart martingale system, that does not open systematical new positions, but waits for a new signal for each new order, wich is limiting drawdown compared to other martingale systems. It uses a combination of seven strategies you can select in the parameters to fit your needs. The strategy tester in MetaTrader 4 can give you the setup y
[ MT5 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 anal
Big Player EA GBPUSD is an EA that generates trading signals with custom strategies. The EA scans 5 months of history and generates signals and buys or sells on these signals. At least 5 months of data should be behind when testing the EA. Also, cross Takeprofit strategies are implemented in the EA. Single, double, triple and quad TP strategies are applied. Thanks to the cross Takeprofit strategies, the EA works easily even during high activity times.  Big Player EA Family Single Symbols:   EU
Market Session Pro MT4
Kambiz Shahriarynasab
5 (1)
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
Presentazione di Market Structure Break Out per MT4 – Il tuo indicatore professionale MSB e di zone intatte  Unisciti al  Canale Koala Trading Solution  nella comunità di mql5 per scoprire le ultime notizie su tutti i prodotti Koala. Il link di adesione è qui sotto: https://www.mql5.com/en/channels/koalatradingsolution Market Structure Break Out: il tuo modo per avere un'analisi pura sulle onde di mercato Questo indicatore è progettato per disegnare la struttura di mercato e le onde di movim
To get access to MT5 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.
Limitless Lite follow trend. Color change trend changed. Works in EURUSD/GBPUSD/XAUUSD/US500/USDCAD/JP225/USDTRY/USDMXN and all pairs Best timeframes 1H/4H/DAILY Signal on close of a bar. DOES NOT repaint. DOES NOT repaint. DOES NOT repaint. DOES NOT repaint. DOES NOT recalculate. DOES NOT recalculate. DOES NOT recalculate. DOES NOT recalculate NOTE : TREND CHANGED FOLLOW ARROW Settings : No Settings, change color
Ultimate solution on price action trade system Built Inside One Tool! Our smart algorithm tool will detect the price action pattern and alert upon potential with entry signals and exit levels including stoploss and takeprofit levels based on the time setting on each market session. This tool will also filters out market currency strength to ensure our entry are in a good currency conditions based on it's trend. Benefit You Get Easy, visual and effective price action detection. Gives you th
Sven AI Trading BOT EA is operating Grid, Martingale, Arbitrage Strategies by new moderne Artificial Intelligence Technologies ! Sven AI Trading BOT EA is using new moderne Artificial Intelligence Grid Technologies for very fast automatical High-Frequency trading of CFDs, Currencies, Forex (FX), Indices, Indexes, Stocks, Shares, ETFs, Gold, Commodities, Metals, ETCs, Futures and Options into MetaTrader 4 Platform ! Sven AI Trading BOT EA is using new High Quantity and High Quality Artificial Int
Std Channels
Muhammed Emin Ugur
Std Channels The Std Channels Indicator is a technical indicator that uses standard deviation to create five channels around a price chart. The channels are used to identify support and resistance levels, as well as trends and reversals. The indicator is calculated by first calculating the standard deviation of the price data over a specified period of time. The channels are then created by adding and subtracting the standard deviation from the price data. The five channels are as follows: Upper
This indicator will allow you to evaluate single currency linear regression. WHAT IS LINEAR REGRESSION?(PIC.3) Linear regression is an attempt to model a straight-line equation between two variables considering a set of data values. The aim of the model is to find the best fit that can serve the two unknown values without putting the other at a disadvantage. In this case, the two variables are price and time, the two most basic factors in the Forex market. Linear regression works in such a wa
Big Player EA AUDUSD is an EA that generates trading signals with custom strategies. The EA scans 5 months of history and generates signals and buys or sells on these signals. At least 5 months of data should be behind when testing the EA. Also, cross Takeprofit strategies are implemented in the EA. Single, double, triple and quad TP strategies are applied. Thanks to the cross Takeprofit strategies, the EA works easily even during high activity times.  Big Player EA Family Single Symbols:   EU
Trend Tracking System is an indicator that generates trade arrows. It generates trade arrows with its own algorithm. These arrows give buying and selling signals. The indicator certainly does not repaint. The point at which the signal is given does not change. You can use it in all graphics. You can use it in all pairs. This indicator shows the input and output signals as arrows and alert. When sl_tp is set to true, the indicator will send you the close long and close short warnings. It tells yo
Trend New
Vitalii Zakharuk
Trend New Trend Indicator, shows the signals for entry. Displays both entry points and the trend itself. Shows statistically calculated moments for entering the market with arrows. When using the indicator, it is possible to optimally distribute the risk factor. Settings: Uses all one parameter for settings. Selecting a parameter, it is necessary to visually resemble it so that the appropriate graph has a projection of extremes. Options: Length - the number of bars for calculating the ind
Kill Zones MT4
Diego Arribas Lopez
MT5 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, followi
Global Trend
Vitalii Zakharuk
Global Trend Indicator, shows the signals for entry. Displays both entry points and the trend itself. Shows statistically calculated moments for entering the market with arrows. When using the indicator, the risk factor can be optimally distributed. Settings: Uses all one parameter for settings. Choosing a parameter, it is necessary to visually resemble it so that the appropriate graph has a projection of extremes. Parameters: Length - the number of bars for calculating the indicator.
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
Risk Reward Tool , It is easy to use. With this tool you can see the rates of profit loss profit. You can see your strategy and earnings reward status of your goals.Double calculation can be done with single tool. Move with drag and drop.  You can adjust the lot amount for calculations. The calculation results are shown in the comment section. There may sometimes be graphical errors during movements. Calculations works at all currency. Calculations All CFD works. Updates and improvements will co
Warning: Our product works with 28 symbols. The average accuracy level of the signals is 99%. We see signals below 15 pips as unsuccessful. Technique 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
Market Noise Il rumore del mercato è un indicatore che determina le fasi del mercato su un grafico dei prezzi e distingue anche i movimenti di tendenza chiari e fluidi dai movimenti piatti e rumorosi quando si verifica una fase di accumulazione o distribuzione. Ogni fase è adatta al proprio tipo di trading: trend per i sistemi trend-following e flat per quelli aggressivi. Quando inizia il rumore del mercato, puoi decidere di uscire dalle operazioni. Allo stesso modo, e viceversa, non appena il
The Trend Professor is a moving average based indicator designed for the purpose of helping the community of traders to analyse the price trend. The indicator will be displayed in the main chart as it is indicated on the screenshot section. How it works The indicator has lines of moving averages and colored histograms to depict the direction of the trend. There will be a fast signal line colored blue/yellow/red at some points. The red/yellow colored lines stands for bearish trend/signal while th
-   Real price is 70$   - 50% Discount ( It is 35$ now ) Contact me for instruction, any questions! Introduction A flag can be used as an entry pattern for the continuation of an established trend. The formation usually occurs after a strong trending move. The pattern usually forms at the midpoint of a full swing and shows the start of moving. Bullish flags can form after an uptrend, bearish flags can form after a downtrend. Flag Pattern Scanner Indicator It is usually difficult for a trade
Gli utenti di questo prodotto hanno anche acquistato
Gann Made Easy
Oleg Rodin
4.84 (57)
Gann Made Easy è un sistema di trading Forex professionale e facile da usare che si basa sui migliori principi del trading utilizzando la teoria di mr. WD Gann. L'indicatore fornisce segnali ACQUISTA e VENDI accurati, inclusi i livelli di Stop Loss e Take Profit. Puoi fare trading anche in movimento utilizzando le notifiche PUSH. Vi prego di contattarmi dopo l'acquisto! Condividerò i miei consigli di trading con te e fantastici indicatori bonus gratuitamente! Probabilmente hai già sentito parlar
Trend Punch
Mohamed Hassan
5 (12)
This indicator is unstoppable when combined with our other indicator called  Support & Resistance . After purchase, send us a message and you will get it   for  FREE as a BONUS! Introducing Trend Punch , the revolutionary forex trend indicator that will transform the way you trade! Trend Punch is uniquely designed to provide precise buy and sell arrows during strong market trends, making your trading decisions clearer and more confident. Whether you're trading major currency pairs or exotic sym
Gold Stuff
Vasiliy Strukov
4.89 (201)
Gold Stuff è un indicatore di tendenza progettato specificamente per l'oro e può essere utilizzato anche su qualsiasi strumento finanziario. L'indicatore non ridisegna e non è in ritardo. Periodo consigliato H1. Su di esso l'indicatore funziona in modo completamente automatico Expert Advisor EA Gold Stuff. Lo trovi nel mio profilo. I risultati in tempo reale possono essere visualizzati qui.  Puoi ottenere una copia gratuita del nostro indicatore Strong Support e Trend Scanner, per favore scri
Trend Pulse
Mohamed Hassan
5 (3)
Please contact me after purchase to immediately get your PDF strategy + documentation for Trend Pulse !  Official release price of $89  (1 /50 copies left). Next price is $199 . Introducing Trend Pulse , a unique and robust indicator capable of detecting bullish, bearish, and even ranging trends! Trend Pulse uses a special algorithm to filter out market noise with real precision. If the current symbol is moving sideways, Trend Pulse will send you a ranging signal, letting you know that it'
SI PREGA DI LEGGERE LE INFORMAZIONI QUI SOTTO PRIMA DI ACQUISTARE IL PRODOTTO! Apollo Pips PLUS SP è un prodotto unico! È PER CHI VUOLE OTTENERE IL MIO NUOVO INDICATORE "APOLLO PIPS" PIÙ IL BONUS "SUPER PACK" CON ACCESSO A TUTTI I MIEI INDICATORI DI TRADING! Acquistando il prodotto Apollo Pips PLUS SP stai effettivamente acquistando una versione assolutamente nuova del mio indicatore Apollo Pips. Questa versione dell'indicatore ha un algoritmo migliorato e un parametro facile da usare che ti dà
FX Power MT4 NG
Daniel Stein
5 (12)
Ricevi il tuo aggiornamento quotidiano sul mercato con dettagli e schermate tramite il nostro Morning Briefing qui su mql5 e su Telegram ! FX Power MT4 NG è la nuova generazione del nostro popolare misuratore di forza delle valute, FX Power. Cosa offre questo misuratore di forza di nuova generazione? Tutto ciò che avete amato dell'FX Power originale IN PIÙ Analisi della forza di ORO/XAU Risultati di calcolo ancora più precisi Periodi di analisi configurabili individualmente Limite di calcolo pe
Scalper Inside PRO
Alexey Minkov
4.69 (49)
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 profitability. Scalper Inside
TPSproTREND PrO
Roman Podpora
4.78 (18)
TPSpro TREND PRO   è un indicatore di tendenza che analizza automaticamente il mercato, fornisce informazioni sulla tendenza e sui rispettivi cambiamenti e fornisce segnali per entrare nelle operazioni senza ridisegnare. L'indicatore utilizza ciascuna candela e la analizza separatamente. Si riferisce a vari shock al rialzo o al ribasso. Punto di ingresso preciso per il trading di valute, criptovalute, metalli, azioni e indici! Versione MT5                   Descrizione completa dell'indicatore
Currency Strength Wizard è un indicatore molto potente che ti fornisce una soluzione all-in-one per un trading di successo. L'indicatore calcola la potenza di questa o quella coppia forex utilizzando i dati di tutte le valute su più intervalli di tempo. Questi dati sono rappresentati in una forma di indice di valuta facile da usare e linee elettriche di valuta che puoi utilizzare per vedere il potere di questa o quella valuta. Tutto ciò di cui hai bisogno è collegare l'indicatore al grafico che
- Real price is 80$ - 40% Discount ( It is 49$ now ) 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 t
RelicusRoad Pro
Relicus LLC
4.54 (80)
Ora $ 147 (aumentando a $ 499 dopo alcuni aggiornamenti) - account illimitati (PC o MAC) Manuale utente di RelicusRoad + Video di formazione + Accesso al gruppo Discord privato + Stato VIP UN NUOVO MODO DI GUARDARE IL MERCATO RelicusRoad è l'indicatore di trading più potente al mondo per forex, futures, criptovalute, azioni e indici, fornendo ai trader tutte le informazioni e gli strumenti di cui hanno bisogno per rimanere redditizi. Forniamo analisi tecniche e piani di trading per aiuta
Innanzitutto, vale la pena sottolineare che questo Strumento di Trading è un Indicatore Non-Ridipingente, Non-Ridisegnante e Non-Laggante, il che lo rende ideale per il trading professionale. Corso online, manuale utente e demo. L'Indicatore Smart Price Action Concepts è uno strumento molto potente sia per i nuovi che per i trader esperti. Racchiude più di 20 utili indicatori in uno solo, combinando idee di trading avanzate come l'Analisi del Trader del Circolo Interno e le Strategie di Trading
Clear Breakout
Martin Alejandro Bamonte
L'indicatore "Breakout Buy-Sell" è progettato per identificare e evidenziare potenziali opportunità di acquisto e vendita basate su breakout di prezzo durante diverse sessioni di mercato (Tokyo, Londra e New York). Questo indicatore aiuta i trader a visualizzare chiaramente le zone di acquisto e vendita, nonché i livelli di take-profit (TP) e stop-loss (SL). Strategia di utilizzo L'indicatore può essere utilizzato come segue: Impostazione iniziale : Seleziona la sessione di mercato e regola il G
ATTUALMENTE SCONTATO DEL 31%! La soluzione migliore per ogni principiante o trader esperto! Questo indicatore è uno strumento di trading unico, di alta qualità e conveniente perché abbiamo incorporato una serie di caratteristiche proprietarie e una formula segreta. Con un solo grafico fornisce avvisi per tutte le 28 coppie di valute. Immaginate come migliorerà il vostro trading perché sarete in grado di individuare l'esatto punto di innesco di una nuova tendenza o opportunità di scalping!
Trend Screener
STE S.S.COMPANY
4.79 (81)
Indicatore di tendenza, soluzione unica rivoluzionaria per il trading di tendenze e il filtraggio con tutte le importanti funzionalità di tendenza integrate in un unico strumento! È un indicatore multi-timeframe e multi-valuta al 100% non ridipingibile che può essere utilizzato su tutti i simboli/strumenti: forex, materie prime, criptovalute, indici e azioni. Trend Screener è un indicatore di tendenza che segue un indicatore efficiente che fornisce segnali di tendenza a freccia con punti nel gra
Attualmente 20% di sconto! La soluzione migliore per ogni principiante o trader esperto! Questo software per cruscotti funziona su 28 coppie di valute. Si basa su 2 dei nostri indicatori principali (Advanced Currency Strength 28 e Advanced Currency Impulse). Offre un'ottima panoramica dell'intero mercato Forex. Mostra i valori di forza delle valute avanzate, la velocità di movimento delle valute e i segnali per 28 coppie Forex in tutti i (9) timeframe. Immaginate come migliorerà il vostro t
Atomic Analyst
Issam Kassas
5 (2)
Innanzitutto, vale la pena sottolineare che questo indicatore di trading non è repaint, non è ridisegno e non presenta ritardi, il che lo rende ideale sia per il trading manuale che per quello automatico. Manuale utente: impostazioni, input e strategia. L'Analista Atomico è un indicatore di azione del prezzo PA che utilizza la forza e il momentum del prezzo per trovare un miglior vantaggio sul mercato. Dotato di filtri avanzati che aiutano a rimuovere rumori e segnali falsi, e aumentare il pote
ATTUALMENTE SCONTATO DEL 26% La soluzione migliore per ogni principiante o trader esperto! Questo indicatore è uno strumento di trading unico, di alta qualità e conveniente perché abbiamo incorporato una serie di caratteristiche proprietarie e una nuova formula. Con un solo grafico è possibile leggere la forza delle valute per 28 coppie Forex! Immaginate come migliorerà il vostro trading perché sarete in grado di individuare l'esatto punto di innesco di una nuova tendenza o di un'opportunit
PRO Renko System
Oleg Rodin
5 (23)
PRO Renko System è un sistema di trading altamente accurato appositamente progettato per il trading di grafici RENKO. Questo è un sistema universale che può essere applicato a vari strumenti di trading. Il sistema neutralizza efficacemente il cosiddetto rumore di mercato che consente di accedere a segnali di inversione accurati. L'indicatore è molto facile da usare e ha un solo parametro responsabile della generazione del segnale. Puoi facilmente adattare lo strumento a qualsiasi strumento
Gold Channel is a volatility-based indicator, developed with a specific timing algorithm for the XAUUSD pair, which consists of finding possible corrections in the market. This indicator shows two outer lines, an inner line (retracement line) and an arrow sign, where the theory of the channel is to help identify overbought and oversold conditions in the market. The market price will generally fall between the boundaries of the channel. If prices touch or move outside the channel it is a tra
Backtest and Read Overview before purchase. Chart patterns have been a topic of debate among traders; some believe they are reliable signalers, while others do not. Our Chart Patterns All-in-One indicator displays various chart patterns to help you test these theories for yourself. The profitability of these patterns is not a reflection of the indicator's effectiveness but rather an evaluation of the patterns themselves. The Chart Patterns All-in-One indicator is an excellent tool for visualizin
PZ Trend Trading
PZ TRADING SLU
4.8 (5)
Capture every opportunity: your go-to indicator for profitable trend trading Special Offer: Purchase now to receive free bonuses worth $159! (Read more for details) 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
TPSpro RFI Levels
Roman Podpora
4.8 (20)
Inverti il primo livello di impulso (RFI)       istruire       Russia       -        ESP   Raccomandazione di utilizzare   l'indicatore -   TPSpro   Trend Edizione Professional -Versione   MT5 La cosa più importante nel comercio son è la cosa più importante in futuro. La cosa più importante è la cosa più importante. Funzioni principali: La maggior parte delle zone sono attivate da venditori e compradores! Indicador mostra tutti i livelli/zone dei primi impulsi corretti per acquisti e vendite. LO
NAM Order Blocks
NAM TECH GROUP, CORP.
5 (1)
MT4 Multi-timeframe Order Blocks detection indicator. Features - Fully customizable on chart control panel, provides complete interaction. - Hide and show control panel wherever you want. - Detect OBs on multiple timeframes. - Select OBs quantity to display. - Different OBs user interface. - Different filters on OBs. - OB proximity alert. - ADR High and Low lines. - Notification service (Screen alerts | Push notifications). Summary Order block is a market behavior that indicates order collection
Order Block Hunter
Noha Mohamed Fathy Younes Badr
5 (1)
Order block hunter indicator is the best indicator for  hunt the order blocks that area where there has been a large concentration of limit orders waiting to be executed Order blocks are identified on a chart by observing previous price action and looking for areas where the price experienced significant movement or sudden changes in direction .This indicator does that for you by using very complicated codes and helps you to take the best areas To buy and sell because it make marks at the best a
Scalper Vault
Oleg Rodin
5 (22)
Scalper Vault è un sistema di scalping professionale che ti fornisce tutto il necessario per scalping di successo. Questo indicatore è un sistema di trading completo che può essere utilizzato dai trader di forex e opzioni binarie. L'intervallo di tempo consigliato è M5. Il sistema fornisce segnali di freccia accurati nella direzione della tendenza. Ti fornisce anche i segnali più alti e più bassi e i livelli di mercato di Gann. Gli indicatori forniscono tutti i tipi di avvisi, comprese le notifi
M1 Arrow
Oleg Rodin
4.67 (12)
Una strategia intraday basata su due principi fondamentali del mercato. L'algoritmo si basa sull'analisi dei volumi e delle onde di prezzo utilizzando filtri aggiuntivi. L'algoritmo intelligente dell'indicatore fornisce un segnale solo quando due fattori di mercato si combinano in uno solo. L'indicatore calcola le onde di un certo intervallo sul grafico M1 utilizzando i dati dell'intervallo di tempo più alto. E per confermare l'onda, l'indicatore utilizza l'analisi per volume. Questo indicatore
Advanced Supply Demand
Bernhard Schweigert
4.9 (271)
CURRENTLY 26% OFF !! Best Solution for any Newbie or Expert Trader! This indicator is a unique, high quality and affordable trading tool because we have incorporated a number of proprietary features and a new formula. With this update, you will be able to show double timeframe zones. You will not only be able to show a higher TF but to show both, the chart TF, PLUS the higher TF: SHOWING NESTED ZONES. All Supply Demand traders will love it. :) Important Information Revealed Maximize the potenti
IX Power MT4
Daniel Stein
5 (5)
IX Power porta finalmente l'imbattibile precisione di FX Power ai simboli non-Forex. Determina con precisione l'intensità delle tendenze a breve, medio e lungo termine dei vostri indici preferiti, azioni, materie prime, ETF e persino criptovalute. Potete analizzare tutto ciò che il vostro terminale ha da offrire. Provatelo e sperimentate come il vostro tempismo migliori significativamente durante il trading. Caratteristiche principali di IX Power Risultati di calcolo precisi al 100% e n
Break and Retest
Mohamed Hassan
3.83 (12)
This Indicator only places quality trades when the market is really in your favor with a clear break and retest. Patience is key with this price action strategy! If you want more alert signals per day, you increase the number next to the parameter called: Support & Resistance Sensitivity.  After many months of hard work and dedication, we are extremely proud to present you our  Break and Retest price action indicator created from scratch. One of the most complex indicators that we made with ove
Altri dall’autore
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
Hull Suite By Insilico
Yashar Seyyedin
5 (1)
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
MacroTrendTrader
Yashar Seyyedin
This is MacroTrendTrader. It trades in DAILY time frame even if you run it on lower time frames. It opens/closes trades once per day at a specific time that you choose via input tab: - "param(1-5)" are optimization parameters. - "Open/Close Hour" is set via input tab. Make sure to choose this to be away from nightly server shutdown. - "high risk" mode if chosen, sets a closer stop loss level. Therefore higher lot sizes are taken.  This is a light load EA from processing point of view. Calculatio
FREE
To 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
Filtro:
Nessuna recensione
Rispondi alla recensione
Versione 1.10 2024.08.25
Fixed a bug!