• Genel bakış
  • İncelemeler (2)
  • Yorumlar (12)
  • Yenilikler

Supertrend by KivancOzbilgic

5

To get access to MT4 version please click here.

  • This is the exact conversion from TradingView: "Supertrend" by "KivancOzbilgic".
  • 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 Supertrend.

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

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

enum ENUM_SOURCE{OPEN, CLOSE, HIGH, LOW, HL2, HLC3, OHLC4, HLCC4};
input group "SuperTrend setting"
input int Periods = 10; //ATR Period
input ENUM_SOURCE src = HL2; //Source
input double Multiplier = 3; //ATR Multiplier
input bool changeATR= true; //Change ATR Calculation Method ?
input bool showsignals = false; //Show Buy/Sell Signals ?
input bool highlight = false; //Highlighter On/Off?
input bool enable_alerts=false; //Enable Alerts


int OnInit()
  {
   trade.SetExpertMagicNumber(magic_number);
   handle_supertrend=iCustom(_Symbol, PERIOD_CURRENT, 
      "Market\\Supertrend by KivancOzbilgic",
      Periods, src, Multiplier, changeATR, showsignals, highlight, enable_alerts);
   if(handle_supertrend==INVALID_HANDLE) 
   {
      Print("Indicator not found!");
      return INIT_FAILED;
   }
   return(INIT_SUCCEEDED);
  }

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

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

bool IsSuperTrendBuy(int i)
{
   double array[];
   ArraySetAsSeries(array, true);
   CopyBuffer(handle_supertrend, 8, i, 1, array);
   return array[0]!=EMPTY_VALUE;
}

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


İncelemeler 2
Khulani
161
Khulani 2023.08.02 18:44 
 

Really great! Thanks.

Darz
2717
Darz 2023.07.17 04:56 
 

Excellent Indicator, exactly the same to what we have on TradingView

Önerilen ürünler
To get access to MT4 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
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
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
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.
Ö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 aray
Wapv Price and volume
Eduardo Da Costa Custodio Santos
MT5 için WAPV Fiyat ve Hacim Göstergesi, (Wyckoff Academy Wave Market) ve (Wyckoff Academy Fiyat ve Hacim) araç setinin bir parçasıdır. MT5 için WAPV Fiyat ve Hacim Göstergesi, grafikteki hacim hareketini sezgisel bir şekilde görselleştirmeyi kolaylaştırmak için oluşturuldu. Bununla, piyasanın profesyonel bir ilgisinin olmadığı en yüksek hacim anlarını ve anları gözlemleyebilirsiniz. Piyasanın "akıllı para" hareketiyle değil, ataletle hareket ettiği anları belirleyin. Kullanıcı tarafından değişt
Bu indikatör, her sipariş için önceden belirlediğiniz TP ve SL Değerlerini (o para biriminde) grafiklerde (işlem/sipariş satırına kapalı) gösterecek ve her sipariş için kar ve zararınızı tahmin etmenize çok yardımcı olacaktır. Ayrıca size PIP değerlerini de gösterir. gösterilen format "Kâr veya Zararımızın Döviz Değerleri / PIP değerlerimiz" şeklindedir. TP Değeri Yeşil Renkte ve SL Değeri Kırmızı Renkte gösterilecektir. Herhangi bir sorunuz veya daha fazla bilgi için lütfen fxlife.asia@hotma
HMA Trend Professional MT5
Pavel Zamoshnikov
4.4 (5)
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
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 MT4 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
No Demand No Supply MT5
Trade The Volume Waves Single Member P.C.
No Demand No Supply   This indicator identifies   No Demand –No Supply candles to your chart and plots volume bars colored according to the signal. It can be applied to all timeframes or to a specific one only. It can also be used as regular volume indicator  with exceptional future of WEIGHTED VOLUME. Furthermore is has an alert notification, sound and email when a signals occurs. The indicator does not repaint but the alert will come on two candles back due to the definition of No Demand No Su
The Penta-O is a 6-point retracement harmonacci pattern which usually precedes big market movements. Penta-O patterns can expand and repaint quite a bit. To make things easier this indicator implements a twist: it waits for a donchian breakout in the right direction before signaling the trade. The end result is an otherwise repainting indicator with a very reliable trading signal. The donchian breakout period is entered as an input. [ Installation Guide | Update Guide | Troubleshooting | FAQ | A
Owl Smart Levels MT5
Sergey Ermolov
4.31 (39)
MT4 versiyonu  |  FAQ Owl Smart Levels Indicator , Bill Williams'ın gelişmiş fraktalları , piyasanın doğru dalga yapısını oluşturan Valable ZigZag ve kesin giriş seviyelerini gösteren Fibonacci seviyeleri gibi popüler piyasa analiz araçlarını içeren tek gösterge içinde eksiksiz bir ticaret sistemidir. pazara ve kar elde edilecek yerlere. Stratejinin ayrıntılı açıklaması Gösterge ile çalışma talimatı Baykuş Yardımcısı ticaretinde Danışman Yardımcısı Kullanıcıların özel sohbeti -> Satın aldıktan
To download MT4 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 
Elevate Your Trading Experience with Wamek Trend Consult!   Unlock the power of precise market entry with our advanced trading tool designed to identify early and continuation trends. Wamek Trend Consult empowers traders to enter the market at the perfect moment, utilizing potent filters that reduce fake signals, enhancing trade accuracy, and ultimately increasing profitability.   Key Features: 1. Accurate Trend Identification: The Trend Consult indicator employs advanced algorithms and unparall
Volality Index Scalper
Lesedi Oliver Seilane
5 (1)
Volality Index scalper indicator  Meant for Volality pairs such as Volality 10, 25, 50, 75 and 100 The indicator works on all timeframes from the 1 minute to the monthly timeframe the indicator is non repaint the indicator has 3 entry settings 1 color change on zero cross 2 color change on slope change 3 color change on signal line cross Orange line is your sell signal Blue line is your buy signal.
Cumulative delta indicator As most traders believe, the price moves under the pressure of market buying or selling. When someone redeems an offer standing in the cup, the deal is a "buy". If someone pours into the bid standing in the cup - the deal goes with the direction of "sale". The delta is the difference between purchases and sales. A cumulative delta - the difference between the cumulative sum of purchases and sales for a certain period of time. It allows you to see who is currently contr
PZ Trend Trading MT5
PZ TRADING SLU
3.67 (3)
Capture every opportunity: your go-to indicator for profitable trend trading Special Offer: Purchase now to receive free bonuses worth $159! (Read more for details) Trend Trading is an indicator designed to profit as much as possible from trends taking place in the market, by timing pullbacks and breakouts. It finds trading opportunities by analyzing what the price is doing during established trends. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] Trade financial
Gann Kutusu (veya Gann Meydanı), W.D. Gann'ın "Piyasa tahminleri için matematiksel formül" makalesine dayanan bir pazar analiz yöntemidir. Bu gösterge üç Kare modelini çizebilir: 90, 52(104), 144. Altı ızgara çeşidi ve iki yay çeşidi vardır. Bir grafik üzerinde aynı anda birden fazla kare çizebilirsiniz. Parametreler Square — kare modelin seçimi : 90 — 90'ın karesi (veya dokuzun karesi); 52 (104) — 52'nin karesi (veya 104); 144 — 144'ün evrensel karesi; 144 (full) — karenin "tam" versiyonu
The Accumulation / Distribution is an indicator which was essentially designed to measure underlying supply and demand. It accomplishes this by trying to determine whether traders are actually accumulating (buying) or distributing (selling). This indicator should be more accurate than other default MT5 AD indicator for measuring buy/sell pressure by volume, identifying trend change through divergence and calculating Accumulation/Distribution (A/D) level. Application: - Buy/sell pressure: above
This MT5 version indicator is a unique, high quality and affordable trading tool. The calculation is made according to the author's formula for the beginning of a possible trend. MT4 version is here  https://www.mql5.com/ru/market/product/98041 An accurate   MT5   indicator that gives signals to enter trades without redrawing! Ideal trade entry points for currencies, cryptocurrencies, metals, stocks, indices! The indicator builds   buy/sell   arrows and generates an alert. Use the standart  
Provided Trend is a complex signal formation indicator. As a result of the work of internal algorithms, you can see only three types of signals on your chart. The first is a buy signal, the second is a sell signal, and the third is a market exit signal. Options: CalcFlatSlow - The first parameter that controls the main function of splitting the price chart into waves. CalcFlatFast - The second parameter that controls the main function of splitting the price chart into waves. CalcFlatAvg - Par
Infinity'nin para birimlerinin gücünü ölçen bu yenilikçi gösterge, scalper'lar ve uzun vadeli ticaret yapan tüccarlar için vazgeçilmez bir yardımcıdır. Para birimlerinin Güç / zayıflık analiz sistemi uzun zamandır bilinmektedir ve dünyanın önde gelen tüccarları tarafından piyasada kullanılmaktadır. Herhangi bir arbitraj ticareti bu analiz olmadan tamamlanamaz. Göstergemiz, temel para birimlerinin birbirine göre gücünü kolayca belirler. Tüm para birimlerinde veya mevcut para birimlerinde çizgi g
VR Cub MT 5
Vladimir Pastushak
VR Cub , yüksek kaliteli giriş noktaları elde etmenin bir göstergesidir. Gösterge, matematiksel hesaplamaları kolaylaştırmak ve bir pozisyona giriş noktalarının aranmasını basitleştirmek için geliştirildi. Göstergenin yazıldığı ticaret stratejisi uzun yıllardan beri etkinliğini kanıtlamaktadır. Ticaret stratejisinin basitliği, acemi yatırımcıların bile başarılı bir şekilde ticaret yapmasına olanak tanıyan büyük avantajıdır. VR Cub, pozisyon açılış noktalarını ve Kâr Al ve Zararı Durdur hedef sev
An indicator of pattern #31 ("Long Island") from Encyclopedia of Chart Patterns by Thomas N. Bulkowski. The second gap is in the opposite direction. Parameters: Alerts - show alert when an arrow appears   Push - send a push notification when an arrow appears (requires configuration in the terminal) GapSize - minimum gap size in points ArrowType - a symbol from 1 to 17 ArrowVShift - vertical shift of arrows in points   ShowLevels - show levels ColUp - color of an upward line ColDn - color of a
Double HMA MTF for MT5
Pavel Zamoshnikov
3.67 (3)
This is an advanced multi-timeframe version of the popular Hull Moving Average (HMA) Features Two lines of the Hull indicator of different timeframes on the same chart. The HMA line of the higher timeframe defines the trend, and the HMA line of the current timeframe defines the short-term price movements. A graphical panel with HMA indicator data from all timeframes at the same time . If the HMA switched its direction on any timeframe, the panel displays a question or exclamation mark with a tex
Indicator and Expert Adviser  EA Available in the comments section of this product. Download with Indicator must have indicator installed for EA to work. Mt5 indicator alerts for bollinger band and envelope extremes occurring at the same time. Buy signal alerts occur when A bullish candle has formed below both the lower bollinger band and the lower envelope  Bar must open and close below both these indicators. Sell signal occur when A bear bar is formed above the upper bollinger band and upp
Thunder Scalper
Mr Fares Mohammad Alabdali
Alış ve Satış Hedefleri Göstergesi       Üç satırdan oluşur: ilk yeşil renk satın alma hedeflerini, ikinci kırmızı renk satış hedeflerini ve üçüncü mavi renk ortalama fiyatı belirtir.       Girmenin iki yolu vardır -       Yöntem 1: Ortalama fiyatın alttan uzun bir mumla kırıldığı ve yeşil bir mumla mavi çizginin üzerinde kaldığında giriş noktası satın alma olarak kabul edilir.       Ortalama fiyat kırmızı bir mumla tepeyi aştığında, satış olarak kabul edilir.       İkinci yöntem: Hedeflere ul
For a trader, trend is our friend. This is a trend indicator for MT5, can be used on any symbol. just load it to the terminal and you will see the current trend. green color means bullish trend and red means bearlish trend. you can also change the color by yourself when the indicator is loaded to the MT5 terminal the symbol and period is get from the terminal automaticly. How to use: I use this trend indicator on 2 terminals with different period  for the same symbol at same time. for example M5
Mini Chart Indicators
Flavio Javier Jarabeck
The Metatrader 5 has a hidden jewel called Chart Object, mostly unknown to the common users and hidden in a sub-menu within the platform. Called Mini Chart, this object is a miniature instance of a big/normal chart that could be added/attached to any normal chart, this way the Mini Chart will be bound to the main Chart in a very minimalist way saving a precious amount of real state on your screen. If you don't know the Mini Chart, give it a try - see the video and screenshots below. This is a gr
Bu ürünün alıcıları ayrıca şunları da satın alıyor
Atomic Analyst MT5
Issam Kassas
4.79 (19)
Ö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 katmanl
Öncelikle, bu Ticaret Sistemi'nin Non-Repainting, Non-Redrawing ve Non-Lagging Göstergesi olduğunu vurgulamak önemlidir, bu da hem manuel hem de robot ticareti için ideal hale getirir. Online kurs, kılavuz ve ön ayarları indir. "Smart Trend Trading System MT5", yeni ve deneyimli tüccarlar için özelleştirilmiş kapsamlı bir ticaret çözümüdür. 10'dan fazla premium göstergeyi birleştiriyor ve 7'den fazla sağlam ticaret stratejisi sunuyor, bu da çeşitli piyasa koşulları için esnek bir seçim yapar. Tr
Gold Stuff mt5
Vasiliy Strukov
4.9 (182)
Gold Stuff mt5, ö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. 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 - açık kapalı. grafik üzerinde oklar çizmek. Uyarılar - sesli uyarılar kapalı. E-post
Quantum Trend Sniper
Bogdan Ion Puscasu
4.92 (48)
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ö
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.67 (9)
Reversal First Impulse levels (RFI)      INSTRUCTIONS        RUS       -       ENG              R ecommended to use with an indicator   -   TPSpro  TREND PRO -  Version MT4                 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. Main functi
Trend Screener Pro MT5
STE S.S.COMPANY
4.88 (67)
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.
FX Power MT5 NG
Daniel Stein
5 (6)
Sabah Brifingimiz burada mql5 ve on Telegram! FX Power MT5 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 MT5
Daniel Stein
4.17 (6)
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ı -
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
Automated Trendlines MT5
Georgios Kalomoiropoulos
Trend çizgileri, forex ticaretinde en önemli teknik analiz aracıdır. Ne yazık ki, çoğu tüccar onları doğru şekilde çizmez. Otomatik Trend Çizgileri göstergesi, piyasaların trend hareketini görselleştirmenize yardımcı olan ciddi tüccarlar için profesyonel bir araçtır. İki tür Trend Çizgisi, Boğa Trend Çizgisi ve Ayı Trend Çizgisi vardır. Yükseliş trendinde, Forex trend çizgisi, fiyat hareketinin en düşük salınım noktalarından geçer. En az iki "en düşük düşük"ü birleştirmek, bir trend çiz
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
Şimdi 147 $ (birkaç güncellemeden sonra 499 $ 'a yükseliyor) - Sınırsız Hesaplar (PC'ler veya Mac'ler) RelicusRoad Kullanım Kılavuzu + Eğitim Videoları + Özel Discord Grubuna Erişim + VIP Durumu PİYASAYA BAKMAK İÇİN YENİ BİR YOL RelicusRoad, forex, vadeli işlemler, kripto para birimleri, hisse senetleri ve endeksler için dünyanın en güçlü ticaret göstergesidir ve yatırımcılara kârlı kalmaları için ihtiyaç duydukları tüm bilgileri ve araçları sağlar. Başlangıç ​​seviyesinden ileri seviyey
Advanced Supply Demand MT5
Bernhard Schweigert
4.53 (15)
Herhangi bir Acemi veya Uzman Tüccar 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 özelliği ve yeni bir formülü bir araya getirdik. Bu güncelleme ile çift zaman dilimi dilimlerini gösterebileceksiniz. Yalnızca daha yüksek bir TF gösteremeyeceksiniz, aynı zamanda TF grafiğini ve ARTIK daha yüksek TF'yi de gösterebileceksiniz: YUVARLAK BÖLGELERİ GÖSTERMEK. Tüm Arz Talebi tüccarları buna bayılacak. :) Önemli Bilgiler Açıkland
XQ Indicator MetaTrader 5
Marzena Maria Szmit
5 (1)
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
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
Introduction to X3 Chart Pattern Scanner X3 Cherart Pattern Scanner is the non-repainting and non-lagging indicator detecting X3 chart patterns including Harmonic pattern, Elliott Wave pattern, X3 patterns, and Japanese Candlestick patterns. Historical patterns match with signal patterns. Hence, you can readily develop the solid trading strategy in your chart. More importantly, this superb pattern scanner can detect the optimal pattern of its kind. In addition, you can switch on and off individu
Bu gösterge paneli, seçilen semboller için mevcut en son   harmonik kalıpları   gösterir, böylece zamandan tasarruf edersiniz ve daha verimli olursunuz /   MT4 sürümü . Ücretsiz Gösterge:   Basic Harmonic Pattern Gösterge sütunları Symbol :   seçilen semboller görünecektir Trend:   yükseliş veya düşüş Pattern :   desen türü (gartley, kelebek, yarasa, yengeç, köpekbalığı, cypher veya ABCD) Entry :   giriş fiyatı SL:   zararı durdur fiyatı TP1:   1. kar alma fiyatı TP2:   2. kar alma fiyatı
Order Block Hunter MT5
Noha Mohamed Fathy Younes Badr
5 (1)
Order block hunter indicator is the best indicator for  hunt the order blocks that area where there has been a large concentration of limit orders waiting to be executed Order blocks are identified on a chart by observing previous price action and looking for areas where the price experienced significant movement or sudden changes in direction .This indicator does that for you by using very complicated codes and helps you to take the best areas To buy and sell because it make marks at the best a
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
Easy By Sell is a market indicator for opening and closing positions. It becomes easy to track market entries with alerts. It indicates trend reversal points when a price reaches extreme values ​​and the most favorable time to enter the market. it is as effective as a Fibonacci to find a level but it uses different tools such as an algorithm based on ATR indicators and Stochastic Oscillator. You can modify these two parameters as you wish to adapt the settings to the desired period. My othe
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
AW Trend Predictor MT5
AW Trading Software Limited
4.78 (58)
Tek bir sistemde trend ve kırılma seviyelerinin kombinasyonu. Gelişmiş bir gösterge algoritması piyasa gürültüsünü filtreler, trendi, giriş noktalarını ve olası çıkış seviyelerini belirler. Gösterge sinyalleri, sinyal geçmişinin etkinliğini gösteren en uygun enstrümanların seçilmesine izin veren bir istatistiksel modüle kaydedilir. Gösterge Kâr Al ve Zararı Durdur işaretlerini hesaplar. Kılavuz ve talimatlar ->   BURAYA   / MT4 versiyonu ->   BURAYA Gösterge ile nasıl ticaret yapılır: Trend Pre
FX Volume MT5
Daniel Stein
4.94 (17)
Sabah Brifingimiz aracılığıyla ayrıntılar ve ekran görüntüleri ile günlük piyasa güncellemenizi alın burada mql5 ve on Telegram ! FX Volume, bir brokerin bakış açısından piyasa duyarlılığı hakkında GERÇEK bir fikir veren İLK ve TEK hacim göstergesidir. COT raporlarından çok daha hızlı bir şekilde, brokerlar gibi kurumsal piyasa katılımcılarının Forex piyasasında nasıl konumlandıklarına dair harika bilgiler sağlar. Bu bilgileri doğrudan grafiğinizde görmek, ticaretiniz için gerçek oyun değiştir
FX Trend MT5
Daniel Stein
4.68 (37)
Visit our all-new   Stein Investments Welcome Page   to get the latest information, updates and trading strategies. Do you want to become a constantly profitable 5-star forex trader? Then  get our Stein Investments trading tools  and send us a screenshot to get your personal invitation to our exclusive trading chat with 500+ members. FX Trend displays the trend direction, duration, intensity and the resulting trend rating for all time frames in real time. You'll see at a glance at which dire
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
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 tecrübesine sahip deneyimli tüccarlardan oluşan bir ekip tarafından geliştirilmiştir.       Kuantum 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
Trend Forecaster
Alexey Minkov
5 (6)
The Trend Forecaster indicator utilizes a unique proprietary algorithm to determine entry points for a breakout trading strategy. The indicator identifies price clusters, analyzes price movement near levels, and provides a signal when the price breaks through a level. The Trend Forecaster indicator is suitable for all financial assets, including currencies (Forex), metals, stocks, indices, and cryptocurrencies. You can also adjust the indicator to work on any time frames, although it is recommen
Elliott Wave Trend was designed for the scientific wave counting. This tool focuses to get rid of the vagueness of the classic Elliott Wave Counting using the guideline from the template and pattern approach. In doing so, firstly Elliott Wave Trend offers the template for your wave counting. Secondly, it offers Wave Structural Score to assist to identify accurate wave formation. It offers both impulse wave Structural Score and corrective wave Structure Score. Structural Score is the rating to sh
IVISTscalp5
Vadym Zhukovskyi
5 (5)
What's new about iVISTscalp5 forecast indicator (Version 10)? iVISTscalp5 is a unique nonlinear forecasting for a week ahead system for any financial instrument which executes fast scalping using time levels. iVISTscalp5 is a tool for easy study and understanding of financial market. 1) iVISTscalp5 forecast indicator has been completely rewritten into another programming language (C++), which has accelerated data loading and processing. As a result, a different graphical display of forecast
Yazarın diğer ürünleri
I do not have the exact indicator for MT4 but the nearest possible look alike can be downloaded from here . Also you may check this link . This is the exact conversion from TradingView: "Donchian Trend Ribbon" By "LonesomeTheBlue". One of the coolest indicators out there to detect trend direction and strength. As a trader you always need such indicator to avoid getting chopped in range markets. There are ten buffers as colors to use in EAs also. The indicator is loaded light and non-repaint. Not
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. Thanks
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
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: "Stochastic Momentum Index" By "UCSgears". - This is a popular version of stochastic oscillator on tradingview. - This is a light-load processing and non-repaint indicator. - Buffers are available for the lines on chart. - You can message in private chat for further changes you need. Thanks for downloading
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Supertrend" by " KivancOzbilgic ". This is a light-load processing and non-repaint indicator. Highlighter option isn't available in MT4 version. You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Supertrend . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input double fixed_lo
To get access to MT5 version please click here . - This is a conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. note: Color filled areas and colored candles are not supported in MT4 version. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; inp
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "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
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. Strategy description - Detect trend based on GoldTrader rules. - Enter in both direction as much as needed to achieve acceptable amount of profit. - Although this is a martingale bot it is very unlikely to loose your money, because: ==> the money management rules are safe and low risk. ==> entries
FREE
This is the Chandelier Exit trend indicator applied to heiken ashi candles based on "G TREND GUNBOT" by "LUIS_GANDATA_G_TREND" on tradingview. Heiken ashi candles filter out many of the chops and therefore as an input to Chandelier Exit you achieve well filtered Buy and Sell signals. Also you can choose to apply the trend indicator to normal candles via input tab. (two in one indicator) This is a non-repaint and light processing load indicator. You can message in private chat for further change
FREE
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. martingale version is available here . Strategy description - Detect trend based on EMA18-EMA50-SMA200 alignment in three time frames: M15, H1, H4 - Trade in trend direction and exit when above alignment is broken. - The bot is tuned to trade XAUUSD(Gold). - The bot output is break even in rangi
FREE
To download MT4 version please click here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
To download MT5 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. This is a sample EA code that operates based on bullish and bearish linear regression candles . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input string     Risk_Management= "" ; input double fixed_lot_size=
To get access to MT5 version please click here . This is the exact conversion from TradingView: " Better RSI with bullish / bearish market cycle indicator" by TradeCalmly. This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need.
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Zero Lag MACD Enhanced - Version 1.2" by "   Albert.Callisto ". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks
To get access to MT5 version please click here . This is the exact conversion from TradingView:"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 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
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: "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: "Trend Regularity Adaptive Moving Average","TRAMA" By "   LuxAlgo   ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
TRAMA by LuxAlgo
Yashar Seyyedin
5 (2)
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Trend Regularity Adaptive Moving Average","TRAMA" By " LuxAlgo ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
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
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 get access to MT5 version please click   here . This is the exact conversion from TradingView: "Hammer & ShootingStar Candle Detector" by "MoriFX". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
FREE
To download MT5 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
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
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
Filtrele:
Khulani
161
Khulani 2023.08.02 18:44 
 

Really great! Thanks.

Yashar Seyyedin
37927
Geliştiriciden yanıt Yashar Seyyedin 2023.08.02 22:30
Thanks. Wish you happy trading.
Darz
2717
Darz 2023.07.17 04:56 
 

Excellent Indicator, exactly the same to what we have on TradingView

Yashar Seyyedin
37927
Geliştiriciden yanıt Yashar Seyyedin 2023.07.17 08:00
Thanks for the positive review. Wish you happy trading.
İncelemeye yanıt
Sürüm 1.40 2024.02.02
Updated the default setting to avoid bad graphics of fillings in MT5.
Sürüm 1.30 2023.07.06
Added Alerts input option.
Sürüm 1.20 2023.06.01
Fixed memory leakage issue.
Sürüm 1.10 2023.05.26
Fixed issue related to removing text label object from chart.