• 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
44
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
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
Blahtech Market Profile
Blahtech Limited
4.61 (18)
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. Blahtech Limited presents their Market Profile indicator for the MetaTrader community. Ins
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
To get access to MT5 version please click here . This is the exact conversion from TradingView: "[SHK] Schaff Trend Cycle (STC)" by "shayankm". 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
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
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
İş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ştir
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
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 ,
Forex Gump
Andrey Kozak
2.83 (6)
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
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.
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
To download MT5 version please click  here . This is the exact conversion from TradingView: "WaveTrend [LazyBear]" By "zeusuk3". One of the coolest indicators out there to detect overbought and oversold zones. It can be used as a part of more complicated strategy and for confirming a potential trade setup. There are buffers to use in EAs also. The indicator is loaded light and non-repaint. - You can message in private chat for further changes you need. Thanks for downloading 
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
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.63 (8)
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 analyz
Eurosmart Pro  is a smart indicator of detecting trends,  contains two intelligences. first is intelligence detects trends, and filter on the indicator can function to eliminate false signals. This indicator allows you to open trading easily and accurately. all indicator features are easy to use and easy to understand. Trading Rule: Pair   : EURUSD, EURJPY Trading Sesion : London and New York Sesion Time Frame : M30/H1 Stop Trading : Sideway Market  and High news impact (NFP, ECB) Open BUY : Ca
A tall upper shadow occurs when the price moves during the period, but goes back down, which is a bearish signal. A tall lower shadow forms when bears push the price down, but bulls pull it back up, which leaves a long line or shadow. This is considered a bullish signal. Some technical analysts believe a tall or long shadow means the stock will turn or reverse. Some believe a short or lower shadow means a price rise is coming. In other words, a tall upper shadow means a downturn is coming, whil
This is a new strategy for SUPPLY DEMAND areas It is based on a calculation using the tick volume to detect the big price action in market for both bear /bull actions this smart volume action candles are used to determine the supply and demand areas prices in between main supply and demand lines indicate sideway market  up arrows will be shown when prices moves above the main supply and the secondary supply lines Down arrows will be shown when prices moves below the main demand and the secondary
The Super Volume Trend indicator uses a set of algorithms and indicators. The purpose of this indicator is to find healthy trends with specific volume movements. It uses some filtering systems to find these trends. The indicator is easy to use, simple and understandable. This is a standalone trend indicator which does not need additional indicators. Users can apply it together with other indicators that are appropriate to their strategy. Suggestions and working style The period settings have b
Scalping Snake Pro is a unique scalping indicator that shows the trader the price reversal moments and does not redraw. This indicator, unlike many others on the Internet, does not redraw its values. It draws signals on the very first bar, which allows you not to be late with opening deals. This indicator sends notifications to the trader by phone and email when a signal appears. You get all this functionality for only $147. How to trade with this indicator? Open the H1 timeframe. Currency pa
First of all, it is worth highlighting here that this Trading Indicator is Non Repainting, Non Redrawing and Non Lagging, which makes it ideal for manual trading. Never repaint and recalculate Once an arrow appears it never disappears, the signal comes at the opening of the new candle You will now be more profitable with this indicator The indicator will alert you when an arrow appears You can do swing trading or scalping trading The indicator helps you identify the trend Can be optimized acros
Super Trend Trading View 4
Mohammad Taher Halimi Tabrizi
The SuperTrend indicator is a popular technical analysis tool used by traders and investors to identify trends in the price of a financial instrument, such as a stock, currency pair, or commodity. It is primarily used in chart analysis to help traders make decisions about entering or exiting positions in the market. this version of super trend indicator is exactly converted from trading view to be used in MT4
Bintang Binary R2
Anthonius Soruh
5 (2)
Bintang Binary Indicator work all pairs Time Frame : M5 Expaired : 1 Candle No Repaint, No Delay and Alerts Use manual and auto trading  Easy to use Trial Version, Rent Version and Full Version avaliable Trial Version >>> download here  https://www.mql5.com/en/market/product/54602 Trial Version not have Alerts Rent version 1 month, 3 month, 6 month, 9 month, and 1 years Auto trading is better use MT2 Trading Platform (Contact me for discount 10 % MT2 trading licence) Work good for forex trading
Delta Pairs
Anatolii Zainchkovskii
1 (1)
Delta Pairs is an indicator for pair trading, it displays the divergence of two currency pairs. Does not redraw. A useful tool for the analysis of the behavior of two currency pairs relative to each other. Purpose The Delta Pairs indicator is designed for determining the divergences in the movements of two currency pairs. This indicator is displayed as two line charts and the difference (delta) between these charts in the form of a histogram. The Delta Pairs indicator will be useful for those
Simply The Best Pro
Szymon Palczynski
5 (1)
This indicator displays the histogram and arrows on chart. When Simple The Best Pro are placed on a chart, they identify the trend.  The color of may be blue or red. The blue color stands for upside moves and the red color stands for downside trends. The indicator offers to set Stop Loss (SL) and  Take Profit (TP)  setting. The default value is ATR. Indicator has automatic optimization. The STB is a unique indicator that shows the tendency (button Bars) of a particular signals. The STB tells us
Bu ürünün alıcıları ayrıca şunları da satın alıyor
Gann Made Easy
Oleg Rodin
4.92 (60)
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
Özel MT4 göstergemizle başarılı forex ticaretinin sırrını keşfedin! Forex piyasasında nasıl başarıya ulaşacağınızı hiç merak ettiniz, riski en aza indirirken sürekli olarak kar kazandınız mı? İşte aradığınız cevap! Ticaret yaklaşımınızda devrim yaratacak tescilli MT4 göstergimizi tanıtmamıza izin verin. Benzersiz çok yönlülük Göstergemiz, Renko ve RangeBar Mum oluşumlarını tercih eden kullanıcılar için özel olarak tasarlanmıştır. Bu grafik türlerinin birçok deneyimli tüccar tarafından ter
Atomic Analyst
Issam Kassas
5 (3)
Öncelikle belirtmek gerekir ki bu Ticaret Göstergesi Yeniden Çizim Yapmaz, Gecikmez ve Gecikme Göstermez, bu da hem manuel hem de robot ticareti için ideal hale getirir. Kullanıcı kılavuzu: ayarlar, girişler ve strateji. Atom Analisti, Piyasada Daha İyi Bir Avantaj Bulmak İçin Fiyatın Gücünü ve Momentumunu Kullanan PA Fiyat Hareketi Göstergesidir. Gürültüleri ve Yanlış Sinyalleri Kaldırmaya ve Ticaret Potansiyelini Artırmaya Yardımcı Olan Gelişmiş Filtrelerle Donatılmıştır. Birden fazla katma
Ş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
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
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
TPSpro RFI Levels
Roman Podpora
5 (13)
A key element in trading is zones or levels from which decisions to buy or sell a trading instrument are made. Despite attempts by major players to conceal their presence in the market, they inevitably leave traces. Our task was to learn how to identify these traces and interpret them correctly. Reversal First Impulse levels (RFI)   -  Version MT5                INSTRUCTIONS                 RUS                 ENG                                       R ecommended to use with an indicator   -  
Break and Retest
Mohamed Hassan
4.56 (9)
‍You can visually backtest Break & Retest to see how it behaved in the past!     Manual guide:   Click here $65  for only 1  copy left! Next price is $120 .  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! Recommended timeframes: M1 for Scalpers.  M15 for Intraday traders. H1 & H4 for Day traders. Other timeframes are also excellent! After many months of hard w
MT4 için Astronomi Göstergesini Tanıtıyoruz: En İleri Göksel Ticaret Arkadaşınız Ticaret deneyiminizi göksel seviyelere yükseltmeye hazır mısınız? MT4 için devrim niteliğindeki Astronomi Göstergemizi arayın. Bu yenilikçi araç karmaşık algoritmaları kullanarak eşsiz astronomik içgörüler ve hassas hesaplamalar sunmak için geleneksel ticaret göstergelerini aşmaktadır. Bilgi Evreni Parmaklarınızın Ucunda: Göksel verilerin hazinelerini açığa çıkaran kapsamlı bir paneli gözlemleyin. Gezegenlerin geo/h
Tanıtım       Kuantum Trend Keskin Nişancı Göstergesi   , trend tersine dönmeleri belirleme ve ticaret yapma şeklinizi değiştiren çığır açan MQL5 Göstergesi! 13 yılı aşkın ticaret tecrübesine sahip deneyimli tüccarlardan oluşan bir ekip tarafından geliştirilmiştir.       Kuantum Trend Keskin Nişancı Göstergesi       trend dönüşlerini son derece yüksek doğrulukla belirlemenin yenilikçi yolu ile ticaret yolculuğunuzu yeni zirvelere taşımak için tasarlanmıştır. ***Kuantum Trend Keskin Nişancı Gö
Ö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
on free demo press zoom out button to see back.. cnt number is bar numbers.you can change up to 3000 related to chart bars numbers. minimum value is 500. there is g value set to 1.01. no need to change it. this indicator almost grail,no repaint and all pairs ,all timeframe indicator. there is red and blue histograms. if gold x sign comes on red histogram that is sell signal. if blue x sign comes on blue histogram that is buy signal. this indicator on thise version works all pairs.al timeframes
Sizlere ON Trade Waves Patterns Harmonic Elliot Wolfe'u tanıtmaktan mutluluk duyarız. Bu, manuel ve otomatik yöntemleri kullanarak piyasada çeşitli desenleri tespit etmek için tasarlanmış gelişmiş bir göstergedir. İşte nasıl çalıştığı: Harmonik Desenler: Bu gösterge, grafiğinizde görünen harmonik desenleri tanımlayabilir. Bu desenler, Scott Carney'in "Harmonic Trading vol 1 & 2" adlı kitabında açıklandığı gibi harmonik ticaret teorisini uygulayan tüccarlar için önemlidir. Onları manuel olarak ç
Trend Screener
STE S.S.COMPANY
4.83 (86)
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. Trend Screener, grafikte noktalarla ok trend sinyalleri sağlayan etkili bir trend trend göstergesidir. Trend analizörü göstergesinde bulunan özellikler: 1.
TPSproTREND PrO
Roman Podpora
5 (15)
TPSpro TRENDPRO  - 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 MT5               DETAILED DESCRIPTION        /       TRADING SETUPS           
Scalper Vault
Oleg Rodin
5 (28)
Scalper Vault , başarılı bir scalping için ihtiyacınız olan her şeyi size sağlayan profesyonel bir scalping sistemidir. Bu gösterge, forex ve ikili opsiyon tüccarları tarafından kullanılabilecek eksiksiz bir ticaret sistemidir. Önerilen zaman çerçevesi M5'tir. Sistem size trend yönünde doğru ok sinyalleri sağlar. Ayrıca size üst ve alt sinyaller ve Gann piyasa seviyeleri sağlar. Göstergeler, PUSH bildirimleri dahil her türlü uyarıyı sağlar. Göstergeyi satın aldıktan sonra lütfen benimle iletişim
ŞU ANDA %31 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 gizli bir formül ekledik. Yalnızca BİR grafikle 28 döviz çiftinin tümü için Uyarılar verir. 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! Yeni temel algoritmalar üzerine inşa edilen bu sistem, potansiyel işlemler
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
BB Reversal Arrows Teknik Ticaret Sistemi, perakende kararları almak için ters noktaları tahmin etmek için geliştirilmiştir. Mevcut pazar durumu gösterge ile analiz edilir ve çeşitli kriterler için yapılandırılır: ters anlar beklentisi, potansiyel dönüm noktaları, satın alma ve satış sinyalleri. Gösterge fazla bilgi içermez, tüccarların makul kararlar vermesine izin veren görsel anlaşılabilir bir arayüze sahiptir. Tüm oklar mumu kapatıyor gibi görünüyor, yeniden çizim yapmadan, birkaç uyarı
Fiyat tersine döndükçe ve geri çekildikçe piyasa yapısından elde edilen kâr değişir. Piyasa yapısını tersine çevirme uyarısı göstergesi, bir trendin veya fiyat hareketinin ne zaman tükenmeye yaklaştığını ve tersine dönmeye hazır olduğunu tanımlar. Genellikle bir geri dönüş veya büyük bir geri çekilme meydana gelmek üzereyken meydana gelen piyasa yapısındaki değişiklikler konusunda sizi uyarır. Gösterge, olası bir tükenme noktasının yakınında her yeni yüksek veya düşük oluştuğunda, başlangıçta
Up down v6T
Guner Koca
5 (1)
Thise indicator is up down v6  comes with tradingwiev pinescript. purchased people, after installed on terminal ,contact me on mql5  to get BONUS  TradingView pinescript. up-down indicator is no repaint and works all pairs and lower than weekly time frames charts. it is suitable also 1 m charts for all pairs. and hold long way to signal. dont gives too many signals. when red histogram cross trigger line that is up signal.and price probably will down when blue histogram cross trigger line that
Entry Points Pro
Yury Orlov
4.7 (225)
Yeniden boyamadan bir ticarete girmek için doğru sinyaller sağlayan MT5 için en iyi gösterge! Herhangi bir finansal varlığa uygulanabilir: forex, kripto para birimleri, metaller, hisse senetleri, endeksler. MT5 versiyonu burada Oldukça doğru alım satım sinyalleri sağlayacak ve bir alım satımı açıp kapatmanın en iyi zamanını size söyleyecektir. Göstergeyi ödeyen yalnızca bir sinyali işleme örneğiyle videoyu (6:22) izleyin! Çoğu tüccar, Giriş Noktaları Pro göstergesinin yardımıyla ilk işl
Şu anda %20 İNDİRİMLİ! Herhangi bir Acemi veya Uzman Tüccar için En İyi Çözüm! Bu gösterge paneli yazılımı 28 döviz çifti üzerinde çalışıyor. Ana göstergelerimizden 2'sine (Gelişmiş Para Birimi Gücü 28 ve Gelişmiş Para Birimi Dürtüsü) dayanmaktadır. Tüm Forex piyasasına harika bir genel bakış sağlar. Gelişmiş Para Birimi Gücü değerlerini, para birimi hareket hızını ve tüm (9) zaman dilimlerinde 28 Forex çifti için sinyalleri gösterir. Trendleri ve / veya scalping fırsatlarını belirlemek içi
Symbols must be separated by commas (,) and entered into the parameters exactly as displayed by your broker to ensure they are recognized in the dashboard. These symbols will be used for analysis by the indicator. With one click open any pair any timeframe directly from dashboard The MA Speedometer Dashboard is a highly functional MetaTrader 4 (MT4) indicator designed to enhance trading strategies through dynamic market analysis. It offers robust features for identifying market trends, trading
TrendMaestro
Stefano Frisetti
5 (2)
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
FX Power MT4 NG
Daniel Stein
5 (9)
Sabah Brifingimiz burada mql5 ve on Telegram! FX Power MT4 NG , uzun zamandır çok popüler olan döviz gücü ölçerimiz FX Power'ın yeni neslidir. Peki bu yeni nesil güç ölçer ne sunuyor? Orijinal FX Power hakkında sevdiğiniz her şey PLUS GOLD/XAU güç analizi Daha da hassas hesaplama sonuçları Ayrı ayrı yapılandırılabilir analiz dönemleri Daha da iyi performans için özelleştirilebilir hesaplama limiti Özel çokluDaha fazlasını görmek isteyenler için örnek ayarlar Her grafikte en sevdiğiniz renkler i
IX Power MT4
Daniel Stein
5 (5)
IX Power nihayet FX Power'ın rakipsiz hassasiyetini Forex dışı sembollere getiriyor. En sevdiğiniz endeksler, hisse senetleri, emtialar, ETF'ler ve hatta kripto para birimlerindeki kısa, orta ve uzun vadeli eğilimlerin yoğunluğunu doğru bir şekilde belirler. Terminalinizin sunduğu her şeyi analiz edebilirsiniz. Deneyin ve işlem yaparken zamanlamanızın nasıl önemli ölçüde iyileştiğini deneyimleyin. IX Power Temel Özellikler 100 hassas, yeniden boyanmayan hesaplama sonuçları - terminalini
77% discount for the next 10 buyers (original price $605): 1 left 3 Indicators in 1 indicator Strategy based on price action Made specifically for the best forex currency pairs Can be used in the best time frame of the market at a very reasonable price This indicator is basically 3 different indicatos . But we have combined these 3 indicators in 1 indicator so that you can use 3 indicators at the lowest price. All three strategies are based on price action. But based on different trends.
Trend Forecasting
Mohamed Hassan
5 (20)
This indicator is unstoppable when combined with our other indicator called Katana. After purchase, send us a message and you could get Katana for FREE as a BONUS After purchase, send us a private message for your instructions.  MT5 version: click here 3 copies left available at $45. Next price is $95. Don't miss this great deal!  The Trend Forecasting indicator is a very unique & easy tool that is able to make prediction about future price movement based on the signals generated
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
Tanıtım       Quantum Breakout PRO   , Breakout Bölgeleri ile ticaret yapma şeklinizi değiştiren çığır açan MQL5 Göstergesi! 13 yılı aşkın ticaret deneyimine sahip deneyimli tüccarlardan oluşan bir ekip tarafından geliştirilen   Quantum Breakout PRO   , yenilikçi ve dinamik koparma bölgesi stratejisiyle ticaret yolculuğunuzu yeni zirvelere taşımak için tasarlanmıştır. Kuantum Breakout Göstergesi, size 5 kar hedefi bölgesi ile kırılma bölgelerinde sinyal okları ve kırılma kutusuna dayalı ol
Scalper Inside PRO
Alexey Minkov
4.75 (57)
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
Yazarın diğer ürünleri
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
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 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.
For MT4 version please send private message. - This is the exact conversion from TradingView source: "Hurst Cycle Channel Clone Oscillator" By "LazyBear". - For bar color option please send private message. - This is a non-repaint and light processing load indicator. - Buffers and inputs are available for use in EAs and optimization purposes. - You can message in private chat for further changes you need.
B Xtrender
Yashar Seyyedin
5 (1)
To download MT4 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.
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 contact via private message. This is the exact conversion from TradingView:Nadaraya-Watson Envelope" by " LuxAlgo ". This is not a light-load processing indicator. It is a 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.
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. 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 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
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
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 . - 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 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 . - 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 . 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: "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
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 MT5 version please contact via private message. 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 contact via private message. This indicator is not a standard indicator and you may get into trouble installing it. Please contact via private chat if you face trouble. This is exact conversion from TradingView: "Consolidation Zones - Live" by "LonesomeTheBlue". This is a light-load processing indicator. Updates are available only upon candle closure. Buffers are available for processing in EAs. It is a repaint indicator. So previous buffer values do not repre
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.
To get access to MT5 version please click here . This is the exact conversion from TradingView: "SwingArm ATR Trend Indicator" by " vsnfnd ". Also known as : "Blackflag FTS" by "Jose Azcarate" This is a light-load processing and non-repaint indicator. All input options are available except multi time frame Buffers are available for processing in EAs. Extra option to show buy and sell signal alerts. You can message in private chat for further changes you need.
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 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 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
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
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 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
Filtrele:
fwbr15
44
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
32913
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.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.