• Genel bakış
  • İncelemeler (1)
  • Yorumlar
  • Yenilikler

Hull Suite By Insilico for MT4

5

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;
input double fixed_lot_size=0.01; // select fixed lot size

enum MA_TYPE{HMA, THMA, EHMA};
input string    HULL_Setting="";
input MA_TYPE modeSwitch = HMA; //Hull Variation
input ENUM_APPLIED_PRICE src =PRICE_CLOSE; //Source
input int length = 55 ; //Length
input int lengthMult = 1; //Multiplier
input bool useAlert=false; //Enable Alerts
input bool usePushNotification=false; //Enable Mobile Notification

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

bool IsHULLBuy(int index)
{
   double val1=iCustom(_Symbol, PERIOD_CURRENT,
    "Market\\Hull Suite By Insilico for MT4",
    modeSwitch, src, length, lengthMult, useAlert, usePushNotification, 15, index);
   double val2=iCustom(_Symbol, PERIOD_CURRENT,
    "Market\\Hull Suite By Insilico for MT4",
    modeSwitch, src, length, lengthMult, useAlert, usePushNotification, 15, index+2);
   return val1>val2;
}

bool IsHULLSell(int index)
{
   double val1=iCustom(_Symbol, PERIOD_CURRENT,
    "Market\\Hull Suite By Insilico for MT4",
    modeSwitch, src, length, lengthMult, useAlert, usePushNotification, 15, index);
   double val2=iCustom(_Symbol, PERIOD_CURRENT,
    "Market\\Hull Suite By Insilico for MT4",
    modeSwitch, src, length, lengthMult, useAlert, usePushNotification, 15, index+2);
   return val1<val2;
}

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


İncelemeler 1
fwbr15
70
fwbr15 2023.10.26 16:28 
 

Hi. I purchased this indicator but everytime i try to insert it in the mt4 it´s removed automaticaly. MQL5 installed it to my demo account but i am trying to use it in my real acc and it´s not working. What should i do?

Önerilen ürünler
Master Scalping M1 , trendi hızlı ve doğru bir şekilde belirlemek için bir algoritma kullanan yenilikçi bir göstergedir. Gösterge, pozisyonların açılış ve kapanış zamanını hesaplar, gösterge algoritmaları, bir ticarete girmek (bir varlık satın almak veya satmak) için ideal anları bulmanızı sağlar, bu da çoğu tüccar için işlemlerin başarısını artırır. Göstergenin faydaları: Kullanımı kolaydır, çizelgeyi gereksiz bilgilerle aşırı yüklemez. Herhangi bir strateji için bir filtre olarak kullanılabili
EZZ Elite Zig Zag is an indicator for the MetaTrader 4 terminal. This indicator traces the peak of the trend based on the market reversal, thus showing various opportunities in the financial market. EZZ Elite Zig Zag is a visual tool, intuitive, and easy to understand and use.  Test it Yourself by Downloading it for Free. Author Paulo Rocha all rights reserved
We present you the indicator "Candle closing counter", which will become your indispensable assistant in the world of trading. That’s why knowing when the candle will close can help: If you like to trade using candle patterns, you will know when the candle will be closed. This indicator will allow you to check if a known pattern has formed and if there is a possibility of trading. The indicator will help you to prepare for market opening and market closure. You can set a timer to create a pre
Title : Market Bias Indicator - Oscillator-Based Trading Tool Introduction : Discover the potential of the "Market Bias Indicator," a revolutionary oscillator-based trading tool designed for precise market analysis. If you're in search of a robust alternative to traditional bias indicators, your quest ends here. Market Bias Indicator offers unparalleled accuracy in identifying market sentiment and is your gateway to confident trading decisions. Recommended Trading Pairs : Market Bias Indicator i
The   Strategy Tester   product is an indicator where you can both test and run strategies. There are 64 strategies in total in this indicator. It uses 3 indicators. You can test tens of thousands of strategies by changing the parameter settings of these indicators. You can run 6 strategies at the same time. With this product, you will now create your own signals. Recommendations and Features Used indicators:   Rsi, Bears power, Stochastic It works on all   time frame   Recommended time frame
Blahtech Market Profile
Blahtech Limited
4.53 (15)
Was: $249  Now: $149   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. Blahtech Limited presents their Market Profile indicator for the MetaTrader community. In
Pro Trend Tracking   indicator is designed for trend and signal trading. This indicator generates trend signals.  It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators.  You can only trade with this indicator. The generated signals are displayed on the graphical screen.  Thanks to the alert features you can
SMC Venom Model BPR göstergesi, Akıllı Para (SMC) konseptinde çalışan yatırımcılar için profesyonel bir araçtır. Fiyat grafiğinde iki temel modeli otomatik olarak belirler: FVG   (Adil Değer Açığı), ilk ve üçüncü mum arasında boşluk bulunan üç mumun birleşimidir. Hacim desteğinin olmadığı seviyeler arasında bir bölge oluşturur ve bu da sıklıkla fiyat düzeltmesine yol açar. BPR   (Dengeli Fiyat Aralığı), bir "köprü" oluşturan iki FVG modelinin birleşimidir - bir kırılma bölgesi ve fiyatın düşük
Bu, bir mumun kapanış fiyatını tahmin eden bir göstergedir. Gösterge öncelikle D1 çizelgelerinde kullanılmak üzere tasarlanmıştır. Bu gösterge hem geleneksel forex ticareti hem de ikili opsiyon ticareti için uygundur. Gösterge, bağımsız bir ticaret sistemi olarak kullanılabilir veya mevcut ticaret sisteminize ek olarak hareket edebilir. Bu gösterge, mevcut mumu analiz ederek mumun gövdesi içindeki belirli güç faktörlerini ve önceki mumun parametrelerini hesaplar. Böylece gösterge, piyasa hareket
Fibonacci retracement and extension line drawing tool Fibonacci retracement and extended line drawing tool for MT4 platform is suitable for traders who use  golden section trading Advantages: There is no extra line, no too long line, and it is easy to observe and find trading opportunities Trial version: https://www.mql5.com/zh/market/product/35884 Main functions: 1. Multiple groups of Fibonacci turns can be drawn directly, and the relationship between important turning points can be seen
Trade Trends Confidently with the Non-Repainting Trend & Arrow Indicator for MT4! Stop missing profitable moves! This powerful indicator helps you: Clearly See the Trend: Easy-to-follow Green/Red lines instantly show you the current market direction (Uptrend/Downtrend). Get Reliable Entry Signals: Accurate Buy/Sell arrows appear precisely when the trend potentially changes. Crucially, these signals are NON-REPAINTING – they appear on bar close and never change afterwards, giving you dependable s
Trend Bilio - an arrow indicator without redrawing shows potential market entry points in the form of arrows of the corresponding color: upward red arrows suggest opening a buy, green down arrows - selling. The entrance is supposed to be at the next bar after the pointer. The arrow indicator Trend Bilio visually "unloads" the price chart and saves time for analysis: no signal - no deal, if an opposite signal appears, then the current deal should be closed. It is Trend Bilio that is considered
TWO PAIRS SQUARE HEDGE METER INDICATOR Try this brilliant 2 pairs square indicator It draws a square wave of the relation between your two inputs symbols when square wave indicates -1 then it is very great opportunity to SELL pair1 and BUY Pair2 when square wave indicates +1 then it is very great opportunity to BUY pair1 and SELL Pair2 the inputs are : 2 pairs of symbols         then index value : i use 20 for M30 charts ( you can try other values : 40/50 for M15 , : 30 for M30 , : 10 for H1 ,
Öncelikle, bu Ticaret Aracının Non-Repainting, Non-Redrawing ve Non-Lagging Gösterge olduğunu vurgulamakta fayda var, bu da onu profesyonel ticaret için ideal hale getiriyor. Çevrimiçi kurs, kullanıcı kılavuzu ve demo. Akıllı Fiyat Hareketi Kavramları Göstergesi, hem yeni hem de deneyimli tüccarlar için çok güçlü bir araçtır. İleri ticaret fikirlerini, Inner Circle Trader Analizi ve Smart Money Concepts Ticaret Stratejileri gibi 20'den fazla kullanışlı göstergeyi bir araya getirerek bir araya g
Forex Gump
Andrey Kozak
2.4 (5)
Forex Gump is a fully finished semi-automatic trading system. In the form of arrows, signals are displayed on the screen for opening and closing deals. All you need is to follow the instructions of the indicator. When the indicator shows a blue arrow, you need to open a buy order. When the indicator shows a red arrow, you need to open a sell order. Close orders when the indicator draws a yellow cross. In order to get the most effective result, we recommend using the timeframes H1, H4, D1. There
Noize Absorption Index MT4
Ekaterina Saltykova
5 (1)
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. S
Visual Titan Force Indicator MT4
AL MOOSAWI ABDULLAH JAFFER BAQER
Unleash Market Volatility with the Titan Force Indicator! Are you ready to dominate the market by capitalizing on volatility? The Titan Force Indicator is your ultimate trading tool, designed for traders who thrive during periods of heightened market activity. Not Optimized for You – Yet! This indicator is a canvas for your creativity. It's been crafted to let you optimize it according to your unique trading strategies and preferences. Your skills, your edge! How Does the Titan Force Indicator
SimSim Arrow Momentum standart bir "Momentum" indikatörüdür, ancak ok versiyonundadır. MetaTrader 5 için sürüm Gösterge parametreleri standart olanlara benzerdir, artı bir ek parametre Delta'dır. Delta = 0 - 100 100 değerinden itibaren sapmalar. 100 göstergesinin seviyesini değiştirmek, artı ve eksi yapmak mümkündür. Gösterge, fiyat seviye çizgisini = 100 +- Delta'yı geçtiğinde sinyal üretir. İşlem için "KONTROL İŞLEMİ" aktif edildiğinde, indikatör sinyaline dayalı işlemler otomatik olarak a
İşlem hacimlerine ilişkin okumaları hesaplayan teknik bir gösterge. Histogram biçiminde, ticaret enstrümanının hareket gücünün birikimini gösterir. Yükseliş ve düşüş yönleri için bağımsız hesaplama sistemlerine sahiptir. Herhangi bir ticaret enstrümanı ve zaman dilimi üzerinde çalışır. Herhangi bir ticaret sistemini tamamlayabilir. Gösterge değerlerini yeniden çizmez, sinyaller mevcut mum üzerinde görünür. Kullanımı kolaydır ve grafiği yüklemez, ek parametre hesaplamaları gerektirmez. Değiştiril
Cosmic Diviner X Planet
Olena Kondratenko
4 (2)
This unique multi-currency strategy simultaneously determines the strength of trends and market entry points, visualizing this using histograms on the chart. The indicator is optimally adapted for trading on the timeframes М5, М15, М30, Н1. For the convenience of users, the indicator renders the entry point (in the form of an arrow), recommended take profit levels (TP1, TP2 with text labels) and the recommended Stop Loss level. The take profit levels (TP1, TP2) are automatically calculated for
Basic Support and Resistance Göstergimiz, teknik analizinizi artırmak için ihtiyacınız olan çözümdür.Bu gösterge, destek ve direnç seviyelerini grafikte yansıtmanıza olanak tanır/ MT5 sürümü Özellikler Fibonacci seviyelerinin entegrasyonu: Fibonacci seviyelerini destek ve direnç seviyelerinin yanı sıra görüntüleme seçeneğiyle, göstergemiz size piyasa davranışı ve olası tersine dönme alanları hakkında daha derin bir fikir verir. Performans Optimizasyonu: Genişletilmiş satırları yalnızca her ç
"Dinamik Scalping Osilatörü" - gelişmiş bir özel Crypto_Forex göstergesidir - MT4 için etkili bir Ticaret aracıdır! - Yeni nesil Osilatörler - nasıl kullanılacağını kontrol etmek için resimlere bakın. - Dinamik Scalping Osilatörü uyarlanabilir Aşırı Satış/Aşırı Satın Alma bölgelerine sahiptir. - Osilatör, dinamik Aşırı Satış/Aşırı Satın Alma alanlarından tam giriş noktalarını bulmak için yardımcı bir araçtır. - Aşırı Satış değerleri: Yeşil çizginin altında, Aşırı Satın Alma değerleri: Turuncu
Volume Profile Indicator for MT4 Gain a trading edge with the "Volume Profile" indicator for MetaTrader 4 (MT4). This advanced technical analysis tool allows you to precisely identify key support and resistance levels based on transaction volume. Easily visualize market areas of high interest, where trading volumes are highest, and use this information to make more informed trading decisions. Key Features: Clear and detailed visualization : The indicator displays volume histograms directly on th
Heiken Ashi candle chart is an improved version of The Japanese candle chart, which can effectively filter the market "noise" of the Japanese candle chart. It is favored by many traders for its simplicity and intuition. For trend traders, the HA candle chart is a magic tool. Unlike the traditional Japanese candle chart, Heikenashi does not reflect the opening price, high price, low price and closing price of the market. Instead, Heikenashi calculates the value of a single K line in the dominant
Stratos Pali
Michela Russo
5 (3)
Stratos Pali Indicator   is a revolutionary tool designed to enhance your trading strategy by accurately identifying market trends. This sophisticated indicator uses a unique algorithm to generate a complete histogram, which records when the trend is Long or Short. When a trend reversal occurs, an arrow appears, indicating the new direction of the trend. Important Information Revealed Leave a review and contact me via mql5 message to receive My Top 5 set files for Stratos Pali at no cost! Dow
Infinity Trend Pro
Yaroslav Varankin
1 (1)
This is a trend indicator without redrawing Developed instead of the binary options strategy (by the color of the Martingale candlestick) Also works well in forex trading When to open trades (binary options) A signal will appear in the place with a candle signaling the current candle It is recommended to open a deal for one candle of the current timeframe M1 and M5 When a blue dot appears, open a deal up When a red dot appears, open a trade down. How to open trades on Forex. When a signal is rec
This indicator presents an alternative approach to identify Market Structure. The logic used is derived from learning material created by   DaveTeaches (on X) Upgrade v1.10: add option to put protected high/low value to buffer (figure 11, 12) When quantifying Market Structure, it is common to use fractal highs and lows to identify "significant" swing pivots. When price closes through these pivots, we may identify a Market Structure Shift (MSS) for reversals or a Break of Structure (BOS) for co
The Th3Eng PipFinite indicator is based on a very excellent analysis of the right trend direction with perfect custom algorithms. It show the true direction and the best point to start trading. With StopLoss point and Three Take Profit points. Also it show the right pivot of the price and small points to order to replace the dynamic support and resistance channel, Which surrounds the price. And Finally it draws a very helpful Box on the left side on the chart includes (take profits and Stop loss
HMA Trend Professional MT4
Pavel Zamoshnikov
4.57 (7)
Improved version of the free HMA Trend indicator (for MetaTrader 4) with statistical analysis. HMA Trend is a trend indicator based on the Hull Moving Average (HMA) with two periods. HMA with a slow period identifies the trend, while HMA with a fast period determines the short-term movements and signals in the trend direction. The main differences from the free version: Ability to predict the probability of a trend reversal using analysis of history data. Plotting statistical charts for analyzi
Bu ürünün alıcıları ayrıca şunları da satın alıyor
Gann Made Easy
Oleg Rodin
4.81 (133)
Gann Made Easy , bay teorisini kullanarak ticaretin en iyi ilkelerine dayanan, profesyonel ve kullanımı kolay bir Forex ticaret sistemidir. WD Gann. Gösterge, Zararı Durdur ve Kâr Al Seviyeleri dahil olmak üzere doğru SATIN AL ve SAT sinyalleri sağlar. PUSH bildirimlerini kullanarak hareket halindeyken bile işlem yapabilirsiniz. Lütfen satın aldıktan sonra benimle iletişime geçin! Alım satım ipuçlarımı ve harika bonus göstergelerini ücretsiz olarak sizinle paylaşacağım! Muhtemelen Gann ticaret y
M1 Sniper
Oleg Rodin
5 (7)
M1 SNIPER kullanımı kolay bir işlem göstergesi sistemidir. M1 zaman dilimi için tasarlanmış bir ok göstergesidir. Gösterge, M1 zaman diliminde scalping için bağımsız bir sistem olarak kullanılabilir ve mevcut işlem sisteminizin bir parçası olarak kullanılabilir. Bu işlem sistemi özellikle M1'de işlem yapmak için tasarlanmış olsa da, diğer zaman dilimleriyle de kullanılabilir. Başlangıçta bu yöntemi XAUUSD ve BTCUSD ticareti için tasarladım. Ancak bu yöntemi diğer piyasalarda işlem yaparken de ya
Algo Pumping MT4
Ihor Otkydach
4.92 (13)
PUMPING STATION – Kişisel “her şey dahil” stratejiniz Karşınızda PUMPING STATION — forex dünyasında işlem yapma şeklinizi heyecan verici ve etkili bir sürece dönüştürecek devrim niteliğinde bir gösterge. Bu sadece bir yardımcı değil, güçlü algoritmalarla donatılmış tam teşekküllü bir ticaret sistemidir ve daha istikrarlı işlem yapmanıza yardımcı olur. Bu ürünü satın aldığınızda ŞUNLARI ÜCRETSİZ olarak alırsınız: Özel ayar dosyaları: Otomatik kurulum ve maksimum performans için. Adım adım video e
"Binary Smart Eye" MT4 göstergesi, M1'den W1'e kadar geniş bir zaman diliminde çalışan, hem ikili opsiyon hem de forex piyasaları için ticaret sinyalleri sağlamak üzere tasarlanmıştır. Potansiyel giriş noktalarını belirlemek için trend seviyelerini, akıllı bir hareketli ortalamayı ve optimize edilmiş ticaret dönemlerini birleştiren özel bir strateji kullanır. İşte temel özelliklerinin bir dökümü: Çoklu Zaman Dilimi Analizi: Göstergenin çok yönlülüğü, yatırımcıların M1'de scalping'den W1'de uzun
Dynamic Forex28 Navigator
Bernhard Schweigert
5 (5)
Dynamic Forex28 Navigator - Yeni Nesil Forex Ticaret Aracı. ŞU ANDA %49 İNDİRİM. Dynamic Forex28 Navigator, uzun zamandır popüler olan göstergelerimizin evrimidir ve üçünün gücünü tek bir göstergede birleştirir: Gelişmiş Döviz Gücü28 Göstergesi (695 inceleme) + Gelişmiş Döviz İMPULS ve UYARI (520 inceleme) + CS28 Kombo Sinyalleri (Bonus). Gösterge hakkında ayrıntılar https://www.mql5.com/en/blogs/post/758844 Yeni Nesil Güç Göstergesi Ne Sunuyor?  Orijinallerde sevdiğiniz her şey, şimdi yeni
Cycle Maestro
Stefano Frisetti
1 (1)
CYCLEMAESTRO ile TİCARET Sinyal basit ve anında gerçekleşir: Bir alanın arka planı yeşil veya kırmızıya döndüğünde, bu bir TİCARET sinyalinin aktif olduğu anlamına gelir: YEŞİL = AL ve KIRMIZI = SAT. TRADER, İŞLEMİ açabilir ve sonraki talimatları takip edebilir.  NOT: CYCLEMAESTRO yalnızca bu web sitesinde dağıtılmaktadır, başka dağıtımcı bulunmamaktadır. DEMO sürümü yalnızca referans amaçlıdır ve desteklenmez. Son versiyon destekleniyor ve mükemmel çalışıyor. CYCLEMAESTRO, TİCARET, AL, SAT
Advanced Supply Demand
Bernhard Schweigert
4.91 (295)
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 potentia
ACB Breakout Arrows
KEENBASE SOFTWARE SOLUTIONS
4.15 (34)
ACB Breakout Arrows göstergesi, özel bir kırılma modelini tespit ederek piyasada kritik bir giriş sinyali sağlar. Gösterge, belirli bir yönde güçlenen momentumu sürekli tarar ve büyük bir hareket başlamadan hemen önce doğru giriş sinyalini verir.  Çoklu sembol ve çoklu zaman dilimi tarayıcıyı buradan edinin - ACB Breakout Arrows MT4 için Tarayıcı Temel Özellikler Gösterge, Stop Loss ve Take Profit seviyelerini otomatik olarak sağlar. Tüm zaman dilimlerinde kırılma sinyallerini takip eden MTF Ta
PZ Trend Trading
PZ TRADING SLU
4.8 (5)
Capture every opportunity: your go-to indicator for profitable trend trading Trend Trading is an indicator designed to profit as much as possible from trends taking place in the market, by timing pullbacks and breakouts. It finds trading opportunities by analyzing what the price is doing during established trends. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Trade financial markets with confidence and efficiency Profit from established trends without getting whip
Scalper Inside PRO
Alexey Minkov
4.74 (66)
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
M1 Golding
Aleksandr Makarov
5 (1)
Exclusive sale on the MQL5 website. M1 Golding  —  This is an easy to use trading system. It is an arrow indicator designed for the M1-M5 time frame. The indicator can be used as a standalone scalping system, as well as as part of your existing trading system. Bonus: When you buy the indicator, you get a gift - Trend Arrow Super I also provide an additional trend filter indicator absolutely free of charge - Filter The combination of these indicators can help you make your trading easier and more
FX Volume
Daniel Stein
4.6 (35)
FX Volume: Bir Broker’ın Perspektifinden Gerçek Piyasa Duyarlılığını Deneyimleyin Kısa Özet Trading yaklaşımınızı bir adım öteye taşımak ister misiniz? FX Volume , perakende traderlar ile brokerların nasıl konumlandığını gerçek zamanlı olarak sunar—COT gibi gecikmeli raporlardan çok daha önce. İster istikrarlı kazançları hedefliyor olun, ister piyasada daha güçlü bir avantaj arayın, FX Volume önemli dengesizlikleri belirlemenize, kırılmaları (breakout) doğrulamanıza ve risk yönetiminizi iyileş
Gold Stuff
Vasiliy Strukov
4.85 (262)
Gold Stuff, özellikle altın için tasarlanmış bir trend göstergesidir ve herhangi bir finansal enstrümanda da kullanılabilir. Gösterge yeniden çizilmez ve gecikmez. Önerilen zaman dilimi H1. Bu göstergede tam otomatik Uzman Danışman EA Gold Stuff çalışır. Profilimde bulabilirsiniz. Ayarları ve kişisel bir bonusu almak için satın alma işleminden hemen sonra benimle iletişime geçin!  Güçlü Destek ve Trend Tarayıcı göstergemizin ücretsiz bir kopyasını pm'den alabilirsiniz. Ben! AYARLAR Ok Çiz -
Trend Screener
STE S.S.COMPANY
4.79 (95)
Trend Göstergesi, Trend Alım Satım ve Filtreleme için Çığır Açan Benzersiz Çözüm, Tüm Önemli Trend Özellikleriyle Tek Bir Araç İçinde Yerleştirildi! Forex, emtialar, kripto para birimleri, endeksler ve hisse senetleri gibi tüm sembollerde/araçlarda kullanılabilen %100 yeniden boyamayan çoklu zaman çerçevesi ve Çoklu para birimi göstergesidir. SINIRLI SÜRELİ TEKLİF: Destek ve Direnç Tarama Göstergesi sadece 50$ ve ömür boyu mevcuttur. (Orijinal fiyat 250$) (teklif uzatıldı) Trend Screener, grafik
The AT Forex Indicator MT4 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 reliabl
Ortalama geri dönüş ticareti için profesyonel ve nicel bir yaklaşım uygulayan benzersiz gösterge. Fiyatın tahmin edilebilir ve ölçülebilir bir şekilde ortalamaya döndüğü ve yön değiştirdiği gerçeğinden yararlanır, bu da nicel olmayan ticaret stratejilerinden büyük ölçüde daha iyi performans gösteren net giriş ve çıkış kurallarına izin verir. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Ticaret sinyallerini temizle Ticaret yapmak inanılmaz derecede kolay Özelleşt
Beast Super Signal
Dustin Vlok
4.73 (89)
Kârlı ticaret fırsatlarını kolaylıkla belirlemenize yardımcı olabilecek güçlü bir forex ticaret göstergesi mi arıyorsunuz? Beast Super Signal'den başka bir yere bakmayın. Bu kullanımı kolay trend tabanlı gösterge, sürekli olarak piyasa koşullarını izleyerek yeni gelişen trendleri araştırır veya mevcut trendlere atlar. Canavar Süper Sinyali, tüm dahili stratejiler birbiriyle uyumlu ve %100 örtüştüğünde bir al ya da sat sinyali vererek ek onay ihtiyacını ortadan kaldırır. Sinyal oku uyarısını aldı
All in One Trade
Alexey Minkov
4.48 (27)
The All-in-One Trade Indicator (AOTI) determines daily targets for EURUSD, EURJPY, GBPUSD, USDCHF, EURGBP, EURCAD, EURAUD, AUDJPY, GBPAUD, GBPCAD, GBPCHF, GBPJPY, AUDUSD, and USDJPY. All other modules work with any trading instruments. The indicator includes various features, such as Double Channel trend direction, Price channel, MA Bands, Fibo levels, Climax Bar detection, and others. The AOTI indicator is based on several trading strategies, and created to simplify market analysis. All-in-One
MTF Supply Demand Zones
Georgios Kalomoiropoulos
4.82 (22)
Yeni Nesil Otomatik Arz ve Talep Bölgeleri. Her Grafikte Çalışan Yeni ve Yenilikçi Algoritma. Tüm Bölgeler Piyasanın Fiyat Hareketine Göre Dinamik Olarak Oluşturulmaktadır. İKİ TÜR UYARI --> 1) FİYAT BİR BÖLGEYE ÇIKTIĞINDA 2) YENİ BİR BÖLGE OLUŞTURDUĞUNDA Bir tane daha işe yaramaz gösterge almazsın. Kanıtlanmış Sonuçlarla eksiksiz bir Ticaret Stratejisi elde edersiniz.     Yeni özellikler:     Fiyat Arz/Talep Bölgesine ulaştığında uyarılar     Yeni bir Arz/Talep Bölgesi oluşturulduğunda
Currency Strength Wizard , başarılı ticaret için size hepsi bir arada çözüm sağlayan çok güçlü bir göstergedir. Gösterge, birden çok zaman dilimindeki tüm para birimlerinin verilerini kullanarak şu veya bu forex çiftinin gücünü hesaplar. Bu veriler, şu veya bu para biriminin gücünü görmek için kullanabileceğiniz, kullanımı kolay para birimi endeksi ve para birimi güç hatları biçiminde temsil edilir. İhtiyacınız olan tek şey, işlem yapmak istediğiniz tabloya göstergeyi eklemektir ve gösterge size
Reversal Master
Alexey Minkov
4.79 (14)
The Reversal Master is an indicator for determining the current direction of price movement and reversal points. The indicator will be useful for those who want to see the current market situation better. The indicator can be used as an add-on for ready-made trading systems, or as an independent tool, or to develop your own trading systems. The Reversal Master indicator, to determine the reversal points,  analyzes a lot of conditions since the combined analysis gives a more accurate picture of t
TPSproTREND PrO
Roman Podpora
4.68 (25)
VERSION MT5        —        ИНСТРУКЦИЯ RUS           —        INSTRUCTIONS  ENG Ana işlevler: VERME OLMADAN doğru giriş sinyalleri! Bir sinyal belirirse, alakalı kalır! Bu, bir sinyal sağlayıp daha sonra onu değiştirebilen ve mevduatta fon kaybına yol açabilen yeniden çekme göstergelerinden önemli bir farktır. Artık pazara daha büyük bir olasılık ve doğrulukla girebilirsiniz. Ayrıca, ok göründükten sonra hedefe ulaşılıncaya kadar (kar al) veya bir geri dönüş sinyali görünene kadar mumları renkl
ŞU ANDA %26 INDIRIMLI Yeni Başlayanlar veya Uzman Tüccarlar için En İyi Çözüm! Bu Gösterge benzersiz, yüksek kaliteli ve uygun fiyatlı bir ticaret aracıdır çünkü bir dizi tescilli özellik ve yeni bir formül ekledik. Sadece BİR grafik ile 28 Forex çifti için Döviz Gücünü okuyabilirsiniz! Yeni bir trendin veya scalping fırsatının tam tetik noktasını belirleyebildiğiniz için ticaretinizin nasıl gelişeceğini hayal edin? Kullanım kılavuzu: buraya tıklayın Bu ilk olan, orijinal! Değersiz bir özen
Easy Breakout
Mohamed Hassan
5 (12)
After your purchase, feel free to contact me for more details on how to receive a bonus indicator called VFI, which pairs perfectly with Easy Breakout for enhanced confluence!   Easy Breakout is a powerful price action trading system built on one of the most popular and widely trusted strategies among traders: the Breakout strategy ! This indicator delivers crystal-clear Buy and Sell signals based on breakouts from key support and resistance zones. Unlike typical breakout indicators, it levera
Hydra Trend Rider is a non-repainting, multi-timeframe trend indicator that delivers precise buy/sell signals and real-time alerts for high-probability trade setups. With its color-coded trend line, customizable dashboard, and mobile notifications, it's perfect for traders seeking clarity, confidence, and consistency in trend trading. Download the Metatrader 5 Version Read the User Manual here. HURRY!   FLASH SALE is  ON . Price  increasing soon! Read the product description carefully before pur
FX Levels MT4
Daniel Stein
5 (2)
FX Levels: Tüm Piyasalar İçin Son Derece Hassas Destek ve Direnç Hızlı Bakış Döviz kurları, endeksler, hisseler veya emtialar gibi herhangi bir piyasada güvenilir destek ve direnç seviyeleri belirlemek mi istiyorsunuz? FX Levels geleneksel “Lighthouse” yöntemini ileri düzey bir dinamik yaklaşımla birleştirerek neredeyse evrensel bir doğruluk sağlar. Gerçek broker deneyimimize ve otomatik günlük güncellemeler ile gerçek zamanlı güncellemelerin birleşimine dayalı olarak, FX Levels size dönüş nok
FX Power MT4 NG
Daniel Stein
4.94 (18)
FX Power: Daha Akıllı Ticaret Kararları için Para Birimlerinin Gücünü Analiz Edin Genel Bakış FX Power , her piyasa koşulunda başlıca para birimlerinin ve altının gerçek gücünü anlamak için vazgeçilmez bir araçtır. Güçlü para birimlerini alıp zayıf olanları satarak, FX Power ticaret kararlarınızı basitleştirir ve yüksek olasılıklı fırsatları ortaya çıkarır. İster trendlere sadık kalın ister Delta'nın aşırı değerlerini kullanarak tersine dönüşleri öngörün, bu araç ticaret tarzınıza mükemmel bir
RelicusRoad Pro
Relicus LLC
4.63 (105)
Ne kadar harika geriye dönük testler, canlı hesap performans kanıtları ve her yerde fantastik istatistikler sunan bir alım satım göstergesi aldınız, ancak onu kullandıktan sonra hesabınızı **patlatmakla mı sonuçlandınız?** Bir sinyale tek başına güvenmemelisiniz, öncelikle neden ortaya çıktığını bilmeniz gerekir ve RelicusRoad Pro bunu en iyi şekilde yapar! Kullanım Kılavuzu + Stratejiler + Eğitim Videoları + VIP Erişimli Özel Grup + Mobil Sürüm Mevcut Piyasaya Bakmanın Yeni Bir Yolu RelicusR
Apollo Secret Trend , herhangi bir çift ve zaman dilimindeki trendleri bulmak için kullanılabilecek profesyonel bir trend göstergesidir. Gösterge, işlem yapmayı tercih ettiğiniz çift veya zaman dilimi ne olursa olsun, piyasa trendlerini tespit etmek için kullanabileceğiniz birincil işlem göstergeniz olabilir. Göstergede özel bir parametre kullanarak sinyalleri kişisel ticaret tarzınıza uyarlayabilirsiniz. Gösterge, PUSH bildirimleri dahil her türlü uyarıyı sağlar. Göstergenin sinyalleri YENİDEN
Gold Buster M1 System , XAUUSD çifti üzerindeki M1 çizelgeleri için profesyonel bir ticaret sistemidir. Ancak, sistem başlangıçta yalnızca altın ticareti için geliştirilmiş olmasına rağmen, sistem diğer bazı döviz çiftleriyle de kullanılabilir. Satın alma işleminden sonra size XAUUSD'ye ek olarak sistemle kullanılabilecek işlem çiftlerinin bir listesini vereceğim, bu da bu sistemi kullanma olanaklarınızı genişletecektir. SİSTEMDEKİ TÜM GÖSTERGELER TEKRARLAMA YAPMAYIN! Bu sistem üç göstergeden ol
Filtrele:
fwbr15
70
fwbr15 2023.10.26 16:28 
 

Hi. I purchased this indicator but everytime i try to insert it in the mt4 it´s removed automaticaly. MQL5 installed it to my demo account but i am trying to use it in my real acc and it´s not working. What should i do?

Yashar Seyyedin
54116
Geliştiriciden yanıt Yashar Seyyedin 2023.10.26 16:34
Hello. I will send it via private message as soon as I get home.
İncelemeye yanıt
Sürüm 1.40 2025.03.20
Updated multiplier input option to include floating point numbers also.
Sürüm 1.30 2024.03.11
Update to include all sources (TYPICAL, MEDIAN, WEIGHTED) prices.
Sürüm 1.20 2023.09.12
Mobile push notifications option added.
Sürüm 1.10 2023.09.12
Added option to enable alerts.