• 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
166
Khulani 2023.08.02 18:44 
 

Really great! Thanks.

Darz
2896
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
The one minute chart has a bug, but the one-day chart can still be used after deleting the bug and reloading the indicators, This indicator can be used to determine how far the indicator goes up to place an order to buy, how far it goes down to place an order to sell, and not placing an order until it reaches this distance, which is considered oscillation, open an account gift index
FREE
PivotWave
Jeffrey Quiatchon
Introducing PivotWave – your ultimate trading companion that redefines precision and market analysis. Designed with traders in mind, PivotWave is more than just an indicator; it’s a powerful tool that captures the pulse of the market, identifying key turning points and trends with pinpoint accuracy. PivotWave leverages advanced algorithms to provide clear visual signals for optimal entry and exit points, making it easier for traders to navigate volatile market conditions. Whether you are a begin
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
Was: $249  Now: $149   Market Profile defines a number of day types that can help the trader to determine market behaviour. A key feature is the Value Area, representing the range of price action where 70% of trading took place. Understanding the Value Area can give traders valuable insight into market direction and establish the higher odds trade. It is an excellent addition to any system you may be using. Inspired by Jim Dalton’s book “Mind Over Markets”, this indicator is designed to suit the
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
Crash 1000 Scalping Indicator for the Crash 1000 Deriv Synthetic Index. Introduction The Crash 1000 Scalping Indicator is a specialized tool designed for the Crash 1000 index on the Deriv Synthetic market. This indicator is particularly useful for scalping on the M1 timeframe, helping traders to identify precise entry and exit points for buy positions. It is designed to be non-repainting, providing clear signals with audible alerts and push notifications, and is compatible with mobile devices th
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.
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@hotmai
HMA Trend Professional MT5
Pavel Zamoshnikov
4.25 (4)
Improved version of the free HMA Trend indicator (for MetaTrader 4) with statistical analysis. HMA Trend is a trend indicator based on the Hull Moving Average (HMA) with two periods. HMA with a slow period identifies the trend, while HMA with a fast period determines the short-term movements and signals in the trend direction. The main differences from the free version: Ability to predict the probability of a trend reversal using analysis of history data. Plotting statistical charts for analyzi
B Xtrender
Yashar Seyyedin
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
VWAP Trend
Driller Capital Management UG
Sevgili Trader’lar, hoş geldiniz! Burada, Volume Weighted Average Price (VWAP) indikatörü satın almanız için sunulmaktadır. Bu indikatör, kullanım kolaylığı sağlayacak şekilde programlanmıştır. Sadece grafiğe sürükleyin, gerisini algoritma halleder. Seçilen zaman dilimine göre, hacim bazlı ağırlıklı ortalama fiyat çizgileri otomatik olarak hesaplanır. Diğer VWAP indikatörlerinin aksine, bizim indikatörümüz, D1, W1 veya MN1'den daha küçük zaman dilimlerinde hesaplama yapmanıza da olanak tanır. Bu
Visual Titan Force Indicator
AL MOOSAWI ABDULLAH JAFFER BAQER
Unleash Market Volatility with the Titan Force Indicator! Are you ready to dominate the market by capitalizing on volatility? The Titan Force Indicator is your ultimate trading tool, designed for traders who thrive during periods of heightened market activity. Not Optimized for You – Yet! This indicator is a canvas for your creativity. It's been crafted to let you optimize it according to your unique trading strategies and preferences. Your skills, your edge! How Does the Titan Force
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.07 (28)
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 
Premium seviye, %80'den fazla doğru tahmin doğruluğuna sahip benzersiz bir göstergedir! Bu gösterge en iyi Ticaret Uzmanları tarafından iki aydan uzun süredir test edilmiştir! Yazarın göstergesini başka hiçbir yerde bulamazsınız! Ekran görüntülerinden bu aracın doğruluğunu kendiniz görebilirsiniz! 1, sona erme süresi 1 mum olan ikili opsiyon ticareti için harikadır. 2 tüm döviz çiftleri, hisse senetleri, emtialar, kripto para birimleri üzerinde çalışır Talimatlar: Kırmızı ok göründüğü an
Ö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
The indicator automatically identifies and labels essential elements of market structure shift, including: Break of Structure (BoS): Detected when there is a significant price movement breaking previous structural points. It mark possible uptrend and downtrend lines(UP & DN, It means constantly update high and low ), and once the price breaks through these lines, mark the red (BEAR) and green (BULL) arrows. BoS typically occurs when the price decisively moves through swing lows or swing highs t
This indicator presents an alternative approach to identify Market Structure. The logic used is derived from learning material created by   DaveTeaches (on X) Upgrade v1.10: + add option to put protected high/low value to buffer (figure 11, 12) + add  Retracements  value to buffer when Show Retracements When quantifying Market Structure, it is common to use fractal highs and lows to identify "significant" swing pivots. When price closes through these pivots, we may identify a Market Structure S
Stratos Pali mt5
Michela Russo
5 (4)
Stratos Pali Indicator is a revolutionary tool designed to enhance your trading strategy by accurately identifying market trends. This sophisticated indicator uses a unique algorithm to generate a complete histogram, which records when the trend is Long or Short. When a trend reversal occurs, an arrow appears, indicating the new direction of the trend. Important Information Revealed Leave a review and contact me via mql5 message to receive My Top 5 set files for Stratos Pali at no cost ! Down
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.
Multi ZigZag
Jose Freitas Alves Neto
# Indicador MultiZigZag Pro para MetaTrader 5 O MultiZigZag Pro é um poderoso indicador técnico para a plataforma MetaTrader 5 que identifica, de forma inteligente e flexível, os principais pontos de inflexão e tendências nos gráficos de preços. ## Características principais: - Algoritmo avançado que filtra ruídos e movimentos irrelevantes do mercado  - Múltiplos timeframes para análise de tendências de curto a longo prazo - Parâmetros de profundidade e desvio personalizáveis para adaptação a
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
Volume Delta Candle
Muhammad Muzaffar Hussan
Volume Delta Candles: A Comprehensive Tool for In-Depth Trading Analysis Unlock a seamless way to interpret trading experience within each candle. With Volume Delta Candles, there's no need for additional volume indicators—everything you need is built in. This advanced tool utilizes lower timeframes or live market data to present the percentage of buying versus selling volume within each candle as an intuitive color-coded bar. Before diving in, ensure you’re familiar with Volume and Volume Delta
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, d
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
Bu ürünün alıcıları ayrıca şunları da satın alıyor
Trend Screener Pro MT5
STE S.S.COMPANY
4.88 (68)
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 MT5
Roman Podpora
4.54 (13)
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!  ИНСТРУКЦИЯ RUS         INSTRUCTIONS  ENG       R ecommended to use with an indicator   -
Quantum TrendPulse
Bogdan Ion Puscasu
5 (6)
SuperTrend   ,   RSI   ve   Stochastic'in   gücünü tek bir kapsamlı göstergede birleştirerek işlem potansiyelinizi en üst düzeye çıkaran nihai işlem aracı olan   Quantum TrendPulse'u   tanıtıyoruz. Hassasiyet ve verimlilik arayan yatırımcılar için tasarlanan bu gösterge, piyasa trendlerini, momentum değişimlerini ve en uygun giriş ve çıkış noktalarını güvenle belirlemenize yardımcı olur. Temel Özellikler: SuperTrend Entegrasyonu:   Güncel piyasa trendlerini kolayca takip edin ve karlılık dalgası
TPSpro RFI Levels MT5
Roman Podpora
4.67 (15)
TALİMATLAR         RUS   -        ENG       Bir gösterge ile kullanılması   önerilir       -       TPSpro   TREND PRO -   Sürüm MT4         Ticarette önemli bir unsur, bir ticaret aracını satın alma veya satma kararlarının alındığı bölgeler veya seviyelerdir. Büyük oyuncuların piyasadaki varlıklarını gizleme girişimlerine rağmen, kaçınılmaz olarak izler bırakırlar. Bizim görevimiz bu izleri nasıl tanımlayacağımızı ve doğru şekilde nasıl yorumlayacağımızı öğrenmekti. Ana işlevler:: Satıcılar ve
Ö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
Golden Trend Indicator MT5
Noha Mohamed Fathy Younes Badr
4.85 (13)
Golden Trend indicator  is The best indicator for predicting trend movement this indicator never lags and never repaints and never back paints    and give  arrow buy and sell    before the candle appear  and it will help you and  will make your trading decisions clearer its work on all currencies and  gold and crypto and all time frame This unique  indicator uses very secret algorithms to catch the  trends, so you can trade using this indicator and see the trend clear on charts  manual guide and
FX Volume MT5
Daniel Stein
4.93 (14)
FX Volume: Bir Brokerın Bakış Açısından Gerçek Piyasa Duyarlılığını Keşfedin 1. FX Volume, Traderlar İçin Neden Son Derece Faydalıdır? Eşsiz Doğrulukla Erken Uyarı Sinyalleri • COT gibi gecikmeli raporlar yayınlanmadan çok önce, belirli bir döviz çiftini kaç kişinin alıp sattığını neredeyse anlık olarak öğrenebilirsiniz. • FX Volume , birden fazla perakende brokerından (retail broker) gelen gerçek verileri özlü biçimde sunabilen tek araçtır. Net Risk Yönetimi • Long veya short pozisyonlarda
Support And Resistance Screener, MetaTrader için tek bir gösterge içinde birden fazla araç sağlayan tek bir Düzey göstergesindedir. Kullanılabilir araçlar şunlardır: 1. Piyasa Yapısı Eleme Aracı. 2. Geri Çekilme Bölgesi Boğa. 3. Geri Çekilme Bölgesi Ayı. 4. Günlük Pivot Noktaları 5. haftalık Pivot Noktaları 6. aylık Pivot Puanları 7. Harmonik Modele ve hacme dayalı Güçlü Destek ve Direnç. 8. Banka Seviyesi Bölgeleri. SINIRLI SÜRELİ TEKLİF : YG Destek ve Direnç Göstergesi sadece 50 $ ve ömür boyu
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
Gold Stuff mt5
Vasiliy Strukov
4.92 (173)
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-posta b
Gold Trend 5
Sergei Linskii
5 (1)
Altın Trend - bu iyi bir hisse senedi teknik göstergesidir. Gösterge algoritması, bir varlığın fiyat hareketini analiz eder ve oynaklığı ve potansiyel giriş bölgelerini yansıtır. En iyi gösterge sinyalleri: - SATIŞ için = kırmızı histogram + kırmızı KISA işaretçi + aynı yönde sarı sinyal oku. - AL için = mavi histogram + mavi UZUN işaretçi + aynı yönde aqua sinyal oku. Göstergenin faydaları: 1. Gösterge yüksek doğrulukta sinyaller üretir. 2. Onaylanmış bir ok sinyali yalnızca trend değişt
IX Power MT5
Daniel Stein
4.17 (6)
IX Power ile tanışın - ticaret hassasiyetinizi güçlendirmek için nihai araç! FX Power ile aynı rakipsiz doğrulukla tasarlanan IX Power, endeksler ve hisse senetlerinden emtialara, ETF'lere ve hatta kripto para birimlerine kadar her türlü işlem sembolünde uzmanlaşmanızı sağlar. Tüm favori varlıklarınızdaki kısa, orta ve uzun vadeli trendler hakkında kesin bilgilerle ticaretinizi yükseltmeye hazır olun. Neden IX Power'ı Seçmelisiniz? IX Power ile zamanlamanız keskinleşir ve daha akıllı, daha hız
Ş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 seviyeye ka
FX Seviyelerini Keşfedin: Ticarette Başarı için Nihai Destek ve Direnç Göstergeniz FX Levels bir destek ve direnç göstergesinden daha fazlasıdır; döviz çiftleri, endeksler, hisse senetleri veya emtialar olsun, tüm ticaret sembollerinde hassasiyet, güvenilirlik ve sorunsuz işlevsellik isteyen ciddi tüccarlar için oyunun kurallarını değiştirir. Kanıtlanmış Lighthouse yöntemi üzerine inşa edilen ve dinamik, gerçek zamanlı uyarlanabilirlik ile geliştirilen FX Levels, hassas kar hedefleri belirlemek
FX Power MT5 NG
Daniel Stein
5 (7)
FX Power NG'nin Tüm Gücünün Kilidini Açın: Nihai Para Birimi Güç Ölçer FX Power, sekiz yılı aşkın süredir dünya çapındaki yatırımcıları güvenilir ve hassas döviz gücü analizleriyle güçlendirmektedir. Şimdi, FX Power NG bu güvenilir aracı bir sonraki seviyeye taşıyarak, ticaretinize benzersiz doğruluk, özelleştirme ve içgörüler getiren gelişmiş özellikler sunuyor. FX Power NG'yi Ciddi Yatırımcılar İçin Olmazsa Olmaz Kılan Nedir? FX Power NG, orijinal FX Power'da sevdiğiniz her şeyi temel ekleme
Atomic Analyst MT5
Issam Kassas
4.32 (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
The latest version of Indicator is fully integrated into an all-in-one package, including: Fair Value Gaps (FVG). See more =>  How to trade with FVG Implied Fair Value Gap (IFVG). See more =>   How to trade with IFVG OrderBlock (OB). See more =>   How to trade with OrderBlock The options in the settings section are relatively easy to navigate, and you can even use them right away upon activation without encountering difficulties when using the default configuration. The indicator utilizes an alg
Trend Forecaster
Alexey Minkov
5 (6)
!SPECIAL SALE!  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, althoug
Atbot
Zaha Feiz
4.76 (45)
AtBot: Come funziona e come usarlo ### Come funziona L'indicatore "AtBot" per la piattaforma MT5 genera segnali di acquisto e vendita utilizzando una combinazione di strumenti di analisi tecnica. Integra la Media Mobile Semplice (SMA), la Media Mobile Esponenziale (EMA) e l'indice di Gamma Vero Medio (ATR) per identificare opportunità di trading. Inoltre, può utilizzare le candele Heikin Ashi per migliorare la precisione dei segnali. Lascia una recensione dopo l'acquisto e ricevi un regalo bonu
FX Dynamic - İhtiyacınız Olan Tek ATR Göstergesi Ticaret stratejilerinizi benzersiz bir hassasiyet ve içgörü ile güçlendirmeye hazır mısınız? Döviz bazlı analiz ve brokerların GMT değişimleri için otomatik ayarlama için tasarlanmış ilk ve tek ATR göstergesi olan FX Dynamic ile tanışın. Modası geçmiş araçlara veda edin ve piyasa oynaklığında ustalaşmak için nihai çözümü benimseyin. FX Dynamic Neden Oyunu Değiştiriyor? Para Birimi Tabanlı ATR Analizi - Geleneksel araçlardan kurtulun. FX Dynamic
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 / Low’s  
-   Real price is 80$   - 25% Discount ( It is 59$ now ) Contact me for instruction, any questions! Related Product:  Gold Trade Expert MT5 Non-repaint Introduction The breakout and retest strategy is traded support and resistance levels. it involves price breaking through a previous level.  The break and retest strategy is designed to help traders do two main things, the first is to avoid false breakouts. Many false breakouts start with a candlestick that breaks out of a level but ends with an
Seconds Charts
Aleksandr Goryachev
Micro  ******************* Секундные графики MT5 ********************** Более точного инструмента для входа в сделку вы не найдёте. Входные параметры: Timeframe, sek - период построения графика, секунды Displayed bars - отображаемые бары Step of price levels, pp, 0-off - шаг отрисовки ценовых уровней, пункты Scale points per bar, 0-off - масштаб в пунктах на бар Show lines - отображение текущих уровней Show comment - отображение комментария Standard color scheme - стандартная цветовая сх
FxaccurateLS
Shiv Raj Kumawat
WHY IS OUR FXACCCURATE LS MT5 THE PROFITABLE ? PROTECT YOUR CAPITAL WITH RISK MANAGEMENT Gives entry, stop and target levels from time to time. It finds Trading opportunities by analyzing what the price is doing during established trends. POWERFUL INDICATOR FOR A RELIABLE STRATEGIES We have made these indicators with a lot of years of hard work. It is made at a very advanced level. Established trends provide dozens of trading opportunities, but most trend indicators completely ignore them! The
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ı TP
Matrix Arrow Indicator MT5
Juvenille Emperor Limited
5 (13)
Matrix Arrow Indicator MT5 ,   forex ,   emtialar ,   kripto   para birimleri ,   endeksler ,   hisse senetleri   gibi tüm sembollerde/araçlarda kullanılabilen   %100 yeniden boyamayan   çoklu zaman çerçevesi göstergesini izleyen benzersiz bir 10'u 1 arada trenddir.  Matrix Arrow Indicator MT5 , mevcut eğilimi erken aşamalarında belirleyecek ve aşağıdakiler gibi 10'a kadar standart göstergeden bilgi ve veri toplayacaktır: Ortalama Yönlü Hareket Endeksi (ADX) Emtia Kanal Endeksi (CCI) Klasik Hei
Enjoy a   50% OFF   Christmas holiday sale!   After your purchase, feel free to contact me for more details on how to receive a bonus indicator called VFI, which pairs perfectly with Easy Breakout for enhanced confluence!     Easy Breakout MT5   is a powerful price action trading system built on one of the most popular and widely trusted strategies among traders: the   Breakout strategy ! This indicator delivers crystal-clear Buy and Sell signals based on breakouts from key support and resis
ATrend
Zaha Feiz
4.73 (11)
ATREND: Nasıl Çalışır ve Nasıl Kullanılır ### Nasıl Çalışır "**ATREND**" göstergesi, MT5 platformu için tasarlanmış olup, traderlara sağlam alım ve satım sinyalleri sağlamak amacıyla teknik analiz metodolojilerinin bir kombinasyonunu kullanır. Bu gösterge, öncelikle volatilite ölçümü için Ortalama Gerçek Aralık (ATR) kullanır ve potansiyel piyasa hareketlerini belirlemek için trend tespit algoritmalarıyla birleştirir. Satın aldıktan sonra bir mesaj bırakın ve özel bir bonus hediyesi kazanın. ##
MT4 / MT5 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. Gezegenl
Suleiman Levels
Suleiman Alhawamdah
5 (1)
Birçok talep üzerine, indikatörün fiyatını 10 gün boyunca %50 oranında indireceğim, 05/01/2025 ile 15/01/2025 tarihleri arasında. İndikatörün mevcut fiyatı 110 $ olup, indirimli fiyatı 55 $ olacaktır. Hepiniz hoş geldiniz! Lütfen açıklamayı dikkatlice okuduğunuzdan ve indikatörün grafik üzerinde analiz yapma, anlama ve inceleme amacıyla tasarlandığını anladığınızdan emin olun. Bir işlem açma kararı tamamen size aittir. Hepinize bol şans dilerim! Not: İndikatörün sınırlı sürümünü grafikte gerçe
Yazarın diğer ürünleri
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 a conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. note: Color filled areas and colored candles are not supported in MT4 version. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; inp
For MT4 version please click here . This is the exact conversion from TradingView: "Range Filter 5min" By "guikroth". - This indicator implements Alerts as well as the visualizations. - Input tab allows to choose Heiken Ashi or Normal candles to apply the filter to. It means it is a (2 in 1) indicator. - This indicator lets you read the buffers for all data on the window. For details on buffers please message me. - This is a non-repaint and light processing load indicator. - You can message in p
For MT5 version please click here . This is the exact conversion from TradingView: "Average True Range Stop Loss Finder" By "veryfid". - This indicator implements a deviation channel. - The channel determines trend direction as well as stop loss placement. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
To get access to 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
To download the MT5 version of Donchian Trend Ribbon please click here . You may also check this link . This is a conversion from TradingView: "Donchian Trend Ribbon" By "LonesomeTheBlue". This is a light-load processing and non-repaint indicator. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks for downloading
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. 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 rangin
FREE
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. Strategy description - Detect trend based on GoldTrader rules. - Enter in both direction as much as needed to achieve acceptable amount of profit. - Although this is a martingale bot it is very unlikely to loose your money, because: ==> the money management rules are safe and low risk. ==> entries
FREE
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Supertrend" by " KivancOzbilgic ". This is a light-load processing and non-repaint indicator. Highlighter option isn't available in MT4 version. You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Supertrend . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input double fixed_lo
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Twin Range Filter" by " colinmck ". - This is a light-load processing and non-repaint indicator. - All input options are available.  - Buffers are available for processing in EAs. - You can message in private chat for further changes you need. Here is the sample code of EA that operates based on signals coming from indicator: #property strict input string EA_Setting= "" ; input int magic_number= 12
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.
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
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
Vortex Indicator
Yashar Seyyedin
5 (1)
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 get access to MT5 version please click here . You can also check the other popular version of this indicator   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 . - 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 . 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 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
This Expert is developed to optimize parameters to trade intraday trending markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 12% profitability in EURUSD for a period of a year and 2% draw-down using optimization to find best inputs.
FREE
To download MT4 version please click here . 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 . 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 
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: "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
B Xtrender
Yashar Seyyedin
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 download MT4 version please click here . - This is the exact conversion from TradingView: "QQE mod" By "Mihkel00". - It can be used to detect trend direction and trend strength. - Gray bars represent weak trends. You can set thresholds to achieve better accuracy in detecting trend strength. - There is buffer index 15 to use in EA for optimization purposes. - The indicator is loaded light and non-repaint.  - You can message in private chat for further changes you need.  
To download MT4 version please click here . - This is the exact conversion from TradingView: "Trend Direction Force Index - TDFI [wm]" By "causecelebre". - This indicator uses multiple levels of averaging to detect trend strength. - You can optimize filter low and filter high levels to achieve best results. - You have access to buffers to use in EAs. - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need.
TRAMA by LuxAlgo
Yashar Seyyedin
5 (1)
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Trend Regularity Adaptive Moving Average","TRAMA" By " LuxAlgo ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
For MT4 version please click  here . - This is the exact conversion from TradingView source: "Squeeze Momentum Indicator" By "LazyBear". - 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. 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". This is a light-load processing and non-repaint indicator. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks for downloading 
Filtrele:
Khulani
166
Khulani 2023.08.02 18:44 
 

Really great! Thanks.

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

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

Yashar Seyyedin
45436
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.