• Aperçu
  • Avis (2)
  • Commentaires (2)
  • Nouveautés

Twin Range Filter by colinmck

5

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.

Here is the code a sample EA that operated based on signals coming from the indicator:

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

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

input group "TWR setting"
input ENUM_APPLIED_PRICE src = PRICE_CLOSE; //Source
input int per1 = 27; //Fast period
input double mult1 = 1.6; //Fast range
input int per2 = 55; //Slow period
input double mult2 = 2; //Slow range
input bool showAlerts=true; //use Alerts


int OnInit()
  {
   trade.SetExpertMagicNumber(magic_number);
   handle_twr=iCustom(_Symbol, PERIOD_CURRENT, "Market/Twin Range Filter by colinmck", src, per1, mult1, per2, mult2, showAlerts);
   if(handle_twr==INVALID_HANDLE) 
   {
      Print("Indicator not found!");
      return INIT_FAILED;
   }
   return(INIT_SUCCEEDED);
  }

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

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

bool IsTWRBuy(int i)
{
   double array[];
   ArraySetAsSeries(array, true);
   CopyBuffer(handle_twr, 12, i, 1, array);
   return array[0]!=EMPTY_VALUE;
}

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


Avis 2
SpaciousTrader
21
SpaciousTrader 2023.07.11 22:09 
 

Great indicator and awesome support by the author Yashar !!

Produits recommandés
** All Symbols x All Time frames scan just by pressing scanner button ** *** Contact me  to send you instruction and add you in "Harmonic Scanner group" for sharing or seeing experiences with other users. Introduction Harmonic Patterns are best used to predict turning point. Harmonic Patterns give you high win rate and high opportunities for trade in during one day. This indicator detects the best and successful patterns based on Harmonic Trading concepts . The   Harmonic Patterns   Scanner   Sc
Découvrez RSIScalperPro - un indicateur innovant basé sur le RSI pour MetaTrader 5, optimisé pour le scalping sur des graphiques d'une minute ! Avec RSIScalperPro, vous aurez entre vos mains un puissant outil vous fournissant des signaux d'entrée et de sortie précis. RSIScalperPro utilise deux indicateurs RSI différents pour fournir des signaux clairs pour les niveaux de surachat et de survente. Vous pouvez ajuster les périodes et les valeurs limites des deux RSI selon votre stratégie de tradin
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.
The Rocket Trend indicator is trending. The indicator draws two-color points connected by lines along the chart. This is a trend indicator, it is an algorithmic indicator. It is easy to work and understand when a blue circle appears, you need to buy, when a red one appears, sell. The indicator is used for scalping and pipsing, and has proven itself well. Rocket Trend is available for analyzing the direction of the trend for a specific period of time. Ideal for novice traders learning the laws o
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
- 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.
L'indicateur aide à entrer dans un commerce en suivant la tendance, en même temps, après une certaine correction. Il trouve de forts mouvements de tendance d'une paire de devises sur un nombre donné de barres, et trouve également des niveaux de correction à cette tendance. Si la tendance est suffisamment forte et que la correction devient égale à celle spécifiée dans les paramètres, l'indicateur le signale. Vous pouvez définir différentes valeurs de correction, les valeurs de 38, 50 et 62 (nive
To get access to MT4 version please click here . Also you can check this link . This is the exact conversion from TradingView: "UT Bot" by "Yo_adriiiiaan". This is a light-load processing indicator. This is a non-repaint indicator. Buffers are available for processing in EAs. All input fields are available. You can message in private chat for further changes you need. Thanks for downloading
This Indicator adding power to traditional zigzag indicator. With High-Low numbers in vision it will be easier to estimate change of trend by knowing the depth of each wave. Information including points, pips, percentage%, and #bars can be displayed based on configuration. All information is real-time update. This indicator is especially useful in sideway market to buy low sell high.
Vwap Bands Auto
Ricardo Almeida Branco
The Vwap Bands Auto indicator seeks to automatically map the maximum market frequency ( automatic update of the outermost band ) and has two intermediate bands that also adjust to daily volatility. Another tool from White Trader that combines price and volume, in addition to mapping the daily amplitude. The external band is updated automatically when the daily maximum or minimum breaks the current frequency, and can be an input signal, seeking a return to the daily vwap. Thus, in ad
Xtrade Trend Detector
Dago Elkana Samuel Dadie
Xtrade Trend Detector est un indicateur capable de trouver les meilleures opportunités pour prendre position sur n'importe quel marché boursier. En effet, il est taillé pour les scalpers mais aussi pour les Daytraders. Vous pourriez donc vous en servir pour repérer les zones à trader, il s’intègre facilement sur graphique. Je l'utilise pour detecter les tendances sur les grandes unités de temps et prendre positions sur les petites unités de temps. N’hésitez pas à me contacter si vous avez des qu
Introduction to Fractal Pattern Scanner Fractal Indicator refers to the technical indicator that makes use of the fractal geometry found in the financial market. Fractal Pattern Scanner is the advanced Fractal Indicator that brings the latest trading technology after the extensive research and development work in the fractal geometry in the financial market. The most important feature in Fractal Pattern Scanner is the ability to measure the turning point probability as well as the trend probabil
Elevate Your Trading Experience with the famous UT Bot Alert Indicator! Summary: The UT Bot Alert Indicator by Quant Nomad has a proven track record and is your gateway to a more profitable trading journey. It's a meticulously crafted tool designed to provide precision, real-time insights, and a user-friendly experience.  Key Features: 1. Precision Analysis: Powered by advanced algorithms for accurate trend identification, pinpointing critical support and resistance levels. 2. Real-time Ale
Volume Candle MT5
Rafael Caetano Pinto
This indicator shows the candles with the highest volume in the market, based on a period and above-average growth percentage. It is also possible to activate the "Show in-depth analysis" functionality that uses algorithms to paint the candles with the probably market direction instead of painting based on the opening and closing positions. EA programmers: This indicator does not redraw.
CLIQUER ICI POUR UN TELECHARGEMENT GRATUIT Cet indicateur de trading Identifie et trace automatiquement les blocs de contrat, zones essentielles marquées par des niveaux significatifs de support et de résistance. Ce puissant outil offre aux traders une visualisation claire et intuitive des points critiques du marché où les prix montrent une forte probabilité de rebond ou d'inversion . Les blocs de contrat, représentés par des rectangles colorés distincts, mettent en évidence les zones de support
Mean Reversal Heikin Ashi Indicator calculates special trade reversal points based on Heikin Ashi candlesticks patterns. This indicator can be used on all symbols, even in Forex or B3 Brazillian Markets. You can configure just the position of each arrow. Then, after include the indicator on the graphic, pay attention on each arrow that indicates a long or short trade.
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
Drawing Pack MT5
John Louis Fernando Diamante
This indicator provides several drawing tools to assist in various methods of chart analysis. The drawings will keep their proportions (according to their handle trendline) across different chart scales, update in real time, and multiple drawings are supported. # Drawing Option Description  1 Grid box draggable boxed grid, user defines rows x colums, diagonal ray option  2 Grid partial or fullscreen grid, sized by handle line  3 Grid flex a diagonal grid, sized and sloped by handle line
VolumeSecret
Thalles Nascimento De Carvalho
VolumeSecret : Le Pouvoir du Volume entre Vos Mains Dans le monde complexe de la programmation, nous faisons constamment face à des obstacles qui nous poussent à grandir et à évoluer. Nous comprenons profondément les difficultés que le marché impose et comment les traders luttent pour atteindre une performance optimale. C’est pourquoi nous travaillons sans relâche sur des solutions innovantes pour rendre la prise de décision sur le marché plus fluide et précise. VolumeSecret est le fruit de cet
Harmonic Pro
Kambiz Shahriarynasab
Only 5 copies of the EA at $30! Next price --> $45 Find charts and signals based on harmonic patterns, which work great in 1-hour timeframes and up. Buy and sell signs based on different harmonic patterns as follows: 0: ABC_D 1: ABCD_E 2: 3Drive 3: 5_0 4: Gartley 5: Bat 6: Crab 7: Butterfly 8: Cypher 9: NenStar 10: Shark 11: AntiBat 12: AntiGartley 13: AntiCrab 14: AntiButterfly 15: AntiCypher 16: AntiNenStar 17: AntiShark How to use: When there is an opportunity to
AdvancedCandleWrapper
Douglas Mbogo Ntongai
Draw as many custom candles as possible on a single chart with this special indicator. Your analysis skill will never be the same again for those who know the power that having a hawkeye view of all price action at once provides. Optimized for performance and allows customization on the appearance of candle bodies and wicks. This is an integral part of analysis at our desks, we hope it will never leave your charts too once you can use it to its full potential.
INDICATEUR basé sur l'INTELLIGENCE ARTIFICIELLE qui génère d'éventuelles entrées d'achat et de vente pour les options binaires. l'indicateur fonctionne sur 3 stratégies différentes : 1) en lisant les volumes, il envoie un signal lorsque le prix doit s'inverser 2) à travers la divergence entre prix et volume, il envoie un signal lorsque la tendance doit se poursuivre ou s'inverser 3) grâce à la convergence entre le prix et le volume, il envoie un signal lorsque la tendance doit se poursu
Scissors Pattern
Kambiz Shahriarynasab
Configure scaffolding charts and signals based on the scissor pattern, which works great at low times. Buy and sell signs based on 2 previous candle patterns It works on the active time form, and when detecting the pattern in 4 time frames, 5 minutes, 15 minutes, 30 minutes and one hour, the alert can be set to notify us of the formation of this pattern. MetaTrader version 4 click here How to use: When there is an opportunity to buy or sell, the marker places a scissors mark on
Machine Learning Adaptive SuperTrend - Take Your Trading to the Next Level! Introducing the   Machine Learning Adaptive SuperTrend , an advanced trading indicator designed to adapt to market volatility dynamically using machine learning techniques. This indicator employs k-means clustering to categorize market volatility into high, medium, and low levels, enhancing the traditional SuperTrend strategy. Perfect for traders who want an edge in identifying trend shifts and market condit
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.
TilsonT3
Jonathan Pereira
Tillson's T3 moving average was introduced to the world of technical analysis in the article ''A Better Moving Average'', published in the American magazine Technical Analysis of Stock Commodities. Developed by Tim Tillson, analysts and traders of futures markets soon became fascinated with this technique that smoothes the price series while decreasing the lag (lag) typical of trend-following systems.
FREE
Koala Engulf Pattern
Ashkan Hazegh Nikrou
3 (1)
Koala Engulf Pattern Introduction Professional MT5 indicator to detect engulf price action pattern. Useful in forex , cryptocurrency , CFD, Oil market. Some adjustable methods to separate qualified engulf patterns. Nice drawing on chart by fill engulf candles and draw stop loss and 3 different take profits on chart. Alert system contain pop up, mobile notification, email alert. Koala Engulf Pattern Advantages Pure Price Action pattern, engulf is one of amazing price action patterns and very
The Beta index, also known as the Beta indicator, is one of the key reference indicators for hedging institutions. It allows you to measure the relative risk of individual assets, such as currencies and commodities, in comparison to market portfolios, cross-currency pairs, the U.S. dollar index, and stock indices. By understanding how your assets perform in relation to market benchmarks, you will have a clearer understanding of your investment risk. Key Features: Accurate Risk Assessment: The Be
Note: If you want to apply this indicators on indicators which are shown in a sub-window, then consider using this indicator instead:  https://www.mql5.com/en/market/product/109066.&nbsp ; AIntel Predict - Your Gateway to Future Trading Success! Unlock the power of predictive analytics with AIntel Predict. Say goodbye to the guesswork and hello to improved forecasting, as AIntel Predict leverages historical data to unveil the future of your trades like never before. Whether you're a seasoned tra
This indicator is a perfect wave automatic analysis indicator for practical trading! 黄金实战 案例... The standardized definition of the band is no longer a wave of different people, and the art of man-made interference is eliminated, which plays a key role in strict analysis of the approach.=》Increase the choice of international style mode, (red fall green rise style) The  purchase discount is currently in progress! Index content: 1.Basic wave: First, we found the inflection point of the ba
Les acheteurs de ce produit ont également acheté
TPSproTREND PrO MT5
Roman Podpora
4.89 (9)
TPSpro TREND PRO  - is a trend indicator that automatically analyzes the market and provides information about the trend and each of its changes, as well as giving signals for entering trades without redrawing! The indicator uses each candle, analyzing them separately. referring to different impulses - up or down impulse. Exact entry points into transactions for currencies, crypto, metals, stocks, indices!  Version MT4               DETAILED DESCRIPTION               R ecommended to use with an
TPSpro RFI Levels MT5
Roman Podpora
4.73 (11)
INSTRUCTIONS       RUS   -   ANGLAIS       Il   est recommandé de l'utiliser avec un indicateur       -       TPSpro   TENDANCE PRO -   Version MT4         Un élément clé du trading est constitué par les zones ou les niveaux à partir desquels les décisions d'achat ou de vente d'un instrument de trading sont prises. Malgré les tentatives des principaux acteurs de dissimuler leur présence sur le marché, ils laissent inévitablement des traces. Notre tâche était d'apprendre à identifier ces traces
Tout d'abord, il convient de souligner que ce système de trading est un indicateur non repeint, non redessiné et non retardé, ce qui le rend idéal pour le trading manuel et automatisé. Cours en ligne, manuel et téléchargement de préréglages. Le "Système de Trading Smart Trend MT5" est une solution de trading complète conçue pour les traders débutants et expérimentés. Il combine plus de 10 indicateurs premium et propose plus de 7 stratégies de trading robustes, ce qui en fait un choix polyvalent
Atomic Analyst MT5
Issam Kassas
4.42 (19)
Tout d'abord, il convient de souligner que cet indicateur de trading n'est ni repainting, ni redrawing et ne présente aucun délai, ce qui le rend idéal à la fois pour le trading manuel et automatisé. Manuel de l'utilisateur : réglages, entrées et stratégie. L'Analyste Atomique est un indicateur d'action sur les prix PA qui utilise la force et le momentum du prix pour trouver un meilleur avantage sur le marché. Équipé de filtres avancés qui aident à éliminer les bruits et les faux signaux, et à
Gold Stuff mt5
Vasiliy Strukov
4.92 (165)
Gold Stuff mt5 est un indicateur de tendance conçu spécifiquement pour l'or et peut également être utilisé sur n'importe quel instrument financier. L'indicateur ne se redessine pas et ne traîne pas. Délai recommandé H1. Contactez-moi immédiatement après l'achat pour obtenir les réglages et un bonus personnel !   Vous pouvez obtenir une copie gratuite de notre indicateur Strong Support et Trend Scanner, veuillez envoyer un message privé. moi!   RÉGLAGES Dessiner la flèche - on off. dessine
FX Power MT5 NG
Daniel Stein
5 (5)
Obtenez votre mise à jour quotidienne du marché avec des détails et des captures d'écran via notre Morning Briefing ici sur mql5 et sur Telegram ! FX Power MT5 NG est la nouvelle génération de notre très populaire indicateur de force des devises, FX Power. Et qu'est-ce que ce compteur de force de nouvelle génération offre ? Tout ce que vous avez aimé de l'original FX Power PLUS Analyse de la force de l'OR/XAU Des résultats de calcul encore plus précis Périodes d'analyse configurables individuel
Quantum Trend Sniper
Bogdan Ion Puscasu
4.8 (49)
Présentation       Quantum Trend Sniper Indicator   , l'indicateur révolutionnaire MQL5 qui transforme la façon dont vous identifiez et négociez les inversions de tendance ! Développé par une équipe de traders expérimentés avec une expérience commerciale de plus de 13 ans,       Indicateur Quantum Trend Sniper       est conçu pour propulser votre parcours de trading vers de nouveaux sommets grâce à sa manière innovante d'identifier les inversions de tendance avec une précision extrêmement élevée
Tout d'abord, il convient de souligner que cet outil de trading est un indicateur non repeint, non redessiné et non retardé, ce qui le rend idéal pour le trading professionnel. Cours en ligne, manuel utilisateur et démonstration. L'indicateur Smart Price Action Concepts est un outil très puissant à la fois pour les nouveaux et les traders expérimentés. Il regroupe plus de 20 indicateurs utiles en un seul, combinant des idées de trading avancées telles que l'analyse du trader Inner Circle et
Trend Screener Pro MT5
STE S.S.COMPANY
4.87 (63)
Indicateur de tendance, solution unique révolutionnaire pour le trading et le filtrage des tendances avec toutes les fonctionnalités de tendance importantes intégrées dans un seul outil ! Il s'agit d'un indicateur multi-période et multi-devises 100 % non repeint qui peut être utilisé sur tous les symboles/instruments : forex, matières premières, crypto-monnaies, indices et actions. Trend Screener est un indicateur de suivi de tendance efficace qui fournit des signaux de tendance fléchés avec des
Ce tableau de bord affiche les derniers   modèles harmoniques   disponibles pour les symboles sélectionnés, ce qui vous permettra de gagner du temps et d'être plus efficace /   version MT4 . Indicateur gratuit:   Basic Harmonic Pattern Colonnes de l'indicateur Symbol :   les symboles sélectionnés apparaissent Trend   :   haussière ou baissière Pattern :   type de motif (gartley, papillon, chauve-souris, crabe, requin, cypher ou ABCD) Entry:   prix d'entrée SL:   prix du stop loss TP1:   1
AT Forex Indicator MT5
Marzena Maria Szmit
5 (4)
The AT Forex Indicator MT5 is a sophisticated trading tool designed to provide traders with a comprehensive analysis of multiple currency pairs. This powerful indicator simplifies the complex nature of the forex market, making it accessible for both novice and experienced traders. AT Forex Indicator uses advanced algorithms to detect trends, patterns and is an essential tool for traders aiming to enhance their forex trading performance. With its robust features, ease of use, and reliable signal
TrendMaestro5
Stefano Frisetti
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.4 TRENDMAESTRO recognizes a new TREND in the bud, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these data a
Advanced Supply Demand MT5
Bernhard Schweigert
4.5 (14)
La meilleure solution pour tout commerçant débutant ou expert ! Cet indicateur est un outil de trading unique, de haute qualité et abordable car nous avons intégré un certain nombre de fonctionnalités propriétaires et une nouvelle formule. Avec cette mise à jour, vous pourrez afficher des zones à double horaire. Vous pourrez non seulement afficher un TF plus élevé, mais afficher les deux, le graphique TF, PLUS le TF supérieur : AFFICHAGE DES ZONES NICHÉES. Tous les traders Supply Demand vont ado
TPA True Price Action indicator reveals the true price action of the market makers through 100% non-repainting signals strictly at the close of a candle! TPA shows entries and re-entries, every time the bulls are definitely stronger than the bears and vice versa. Not to confuse with red/green candles. The shift of power gets confirmed at the earliest stage and is ONE exit strategy of several. There are available now two free parts of the TPA User Guide for our customers. The first "The Basics"
FxaccurateLS
Shiv Raj Kumawat
WHY IS OUR FXACCCURATE LS MT5 THE PROFITABLE ? PROTECT YOUR CAPITAL WITH RISK MANAGEMENT Gives entry, stop and target levels from time to time. It finds Trading opportunities by analyzing what the price is doing during established trends. POWERFUL INDICATOR FOR A RELIABLE STRATEGIES We have made these indicators with a lot of years of hard work. It is made at a very advanced level. Established trends provide dozens of trading opportunities, but most trend indicators completely ignore them!
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
Auto Order Block with break of structure based on ICT and Smart Money Concepts (SMC) Futures Break of Structure ( BoS )             Order block ( OB )            Higher time frame Order block / Point of Interest ( POI )    shown on current chart           Fair value Gap ( FVG ) / Imbalance   -  MTF      ( Multi Time Frame )    HH/LL/HL/LH  -  MTF      ( Multi Time Frame )  Choch  MTF      ( Multi Time Frame )  Volume Imbalance     ,  MTF          vIMB Gap’s Power of 3 Equal High
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
Black Dragon indicator mt5
Ramil Minniakhmetov
4.81 (54)
L'indicateur de détection de tendance complétera n'importe quelle stratégie et peut également être utilisé comme un outil indépendant. IMPORTANT! Contactez-moi immédiatement après l'achat pour obtenir des instructions et un bonus !   Avantages Facile à utiliser; ne surcharge pas le graphique avec des informations inutiles. La possibilité d'utiliser comme filtre pour n'importe quelle stratégie. Contient des niveaux dynamiques de cupport et de resistange, qui peuvent être utilisés à la fois
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
Matrix Arrow Indicator MT5
Juvenille Emperor Limited
5 (12)
Matrix Arrow Indicator MT5   est une tendance unique 10 en 1 suivant un indicateur multi-période   100% non repeint   qui peut être utilisé sur tous les symboles/instruments:   forex ,   matières premières ,   crypto-monnaies ,   indices ,  actions .  Matrix Arrow Indicator MT5  déterminera la tendance actuelle à ses débuts, en rassemblant des informations et des données à partir d'un maximum de 10 indicateurs standard, qui sont: Indice de mouvement directionnel moyen (ADX) Indice de canal de m
IX Power MT5
Daniel Stein
4.17 (6)
IX Power   apporte enfin la précision imbattable de FX Power aux symboles non-Forex. Il détermine avec précision l'intensité des tendances à court, moyen et long terme de vos indices, actions, matières premières, ETF et même crypto-monnaies préférés. Vous pouvez   analyser tout ce que   votre terminal a à offrir. Essayez-le et découvrez comment   votre timing s'améliore considérablement   lors de vos transactions. Caractéristiques principales d'IX Power Résultats de calcul précis à 100 %,
Trade smarter, not harder: Empower your trading with Harmonacci Patterns Special Offer: Purchase now to receive free bonuses worth $165! (Read more for details) This is arguably the most complete harmonic price formation auto-recognition indicator you can find for the MetaTrader Platform. It detects 19 different patterns, takes fibonacci projections as seriously as you do, displays the Potential Reversal Zone (PRZ) and finds suitable stop-loss and take-profit levels. [ Installation Guide | Up
XQ Indicator MetaTrader 5
Marzena Maria Szmit
3 (2)
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
FX Volume MT5
Daniel Stein
4.93 (14)
Obtenez votre mise à jour quotidienne du marché avec des détails et des captures d'écran via notre Morning Briefing ici sur mql5 et sur Telegram ! FX Volume est le PREMIER et SEUL indicateur de volume qui fournit un VRAI aperçu du sentiment du marché du point de vue d'un courtier. Il fournit des informations impressionnantes sur la façon dont les acteurs institutionnels du marché, comme les courtiers, sont positionnés sur le marché des changes, bien plus rapidement que les rapports COT. Voir c
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
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
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation.
Golden Spikes Premium
Kwaku Bondzie Ghartey
5 (1)
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
Ce tableau de bord découvre et affiche les zones   d'offre   et de   demande   sur le graphique, à la fois en mode scalping et à long terme, en fonction de votre stratégie de trading pour les symboles sélectionnés. En outre, le mode scanner du tableau de bord vous permet de vérifier tous les symboles souhaités en un coup d'œil et de ne manquer aucune position appropriée /   Version MT4 Indicateur gratuit:   Basic Supply Demand Caractéristiques Permet de visualiser les opportunités de tr
Plus de l'auteur
I do not have the exact indicator for MT4 but the nearest possible look alike can be downloaded from here . Also you may check this link . This is the exact conversion from TradingView: "Donchian Trend Ribbon" By "LonesomeTheBlue". One of the coolest indicators out there to detect trend direction and strength. As a trader you always need such indicator to avoid getting chopped in range markets. There are ten buffers as colors to use in EAs also. The indicator is loaded light and non-repaint. Not
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #include <Trade\Trade.mqh> CTrade trade; int handle_hull= 0 ; input group "EA Setting" input int magic_number= 123456 ; //magic number input double fixe
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Zero Lag MACD Enhanced - Version 1.2" by "   Albert.Callisto ". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. Thanks
To download MT5 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
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
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. Strategy description - Detect trend based on GoldTrader rules. - Enter in both direction as much as needed to achieve acceptable amount of profit. - Although this is a martingale bot it is very unlikely to loose your money, because: ==> the money management rules are safe and low risk. ==> entries
FREE
To download MT4 version please click here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
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 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
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
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.
IntradayTrader
Yashar Seyyedin
This Expert is developed to optimize parameters to trade intraday trending markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 12% profitability in EURUSD for a period of a year and 2% draw-down using optimization to find best inputs.
FREE
To download MT4 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
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
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 MT5 version please click  here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
To download MT5 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. This is a sample EA code that operates based on bullish and bearish linear regression candles . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input string     Risk_Management= "" ; input double fixed_lot_size=
To get access to MT5 version please click here . - This is 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: "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
For MT4 version please click here . This is the exact conversion from TradingView: "Average True Range Stop Loss Finder" By "veryfid". - This indicator implements a deviation channel. - The channel determines trend direction as well as stop loss placement. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Supertrend" by " KivancOzbilgic ". This is a light-load processing and non-repaint indicator. Highlighter option isn't available in MT4 version. You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Supertrend . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input double fixed_lo
To get access to MT5 version please 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
To download MT5 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
To download MT4 version please click here . This is the exact conversion from TradingView: "RSI versus SMA" By "JayRogers". This indicator lets you read the buffers for all Lines on chart.  Note: This is an indicator, Not an expert. Meaning It does not take trades. If you want the EA please contact via message. You can easily use the indicator to understand the logic behind trades that the TradingView strategy takes. The strategy is profitable if this indicator is applied to the right symbol at
FREE
To download MT4 version please click here . Metatrader users are limited to few moving average types. Therefor I decided to create a package consisting of all MAs I knew. This package suggests 12 different types: { SMA, EMA, DEMA, TEMA, WMA, VWMA, SMMA(RMA), HullMA, LSMA, ALMA, SSMA, TMA } You can configure them via input tab. This is a non-repaint indicator with light load. To implement them I referred to standard  libraries of pine script.
FREE
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
- This is the exact conversion from TradingView: " 200-EMA Moving Average Ribbon" By "Dale_Ansel". - This indicator plots a series of moving averages to create a "ribbon" that offers a great visual structure to price action. - This indicator lets you read buffers. For information on buffers please contact via message. - This is a non-repaint and light processing load indicator
FREE
To 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
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
Filtrer:
Muhammad Nasrullah
24
Muhammad Nasrullah 2023.11.26 12:34 
 

L'utilisateur n'a laissé aucun commentaire sur la note

Yashar Seyyedin
40336
Réponse du développeur Yashar Seyyedin 2023.11.26 12:35
Thanks for the positive review.
SpaciousTrader
21
SpaciousTrader 2023.07.11 22:09 
 

Great indicator and awesome support by the author Yashar !!

Yashar Seyyedin
40336
Réponse du développeur Yashar Seyyedin 2023.07.11 22:26
Thanks for the positive review.
Répondre à l'avis
Version 1.10 2023.02.14
Added Alert option.