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

Twin Range Filter by colinmck

5

To get access to MT4 version please click here.

  • - This is the exact conversion from TradingView: "Twin Range Filter" by "colinmck".
  • - This is a light-load processing and non-repaint indicator.
  • - All input options are available. 
  • - Buffers are available for processing in EAs.
  • - You can message in private chat for further changes you need.

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

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

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

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


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

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

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

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

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

int BuyCount()
{
   int buy=0;
   for(int i=0;i<PositionsTotal();i++)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_BUY) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      buy++;
   }  
   return buy;
}

int SellCount()
{
   int sell=0;
   for(int i=0;i<PositionsTotal();i++)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_SELL) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      sell++;
   }  
   return sell;
}


void Buy()
{
   double Ask=SymbolInfoDouble(_Symbol, SYMBOL_ASK);
   if(!trade.Buy(fixed_lot_size, _Symbol, Ask, 0, 0, ""))
   {
      Print("Error executing order: ", GetLastError());
      //ExpertRemove();
   }
}

void Sell()
{
   double Bid=SymbolInfoDouble(_Symbol, SYMBOL_BID);
   if(!trade.Sell(fixed_lot_size, _Symbol, Bid, 0, 0, ""))
   {
      Print("Error executing order: ", GetLastError());
      //ExpertRemove();
   }
}


void CloseBuy()
{
   for(int i=PositionsTotal()-1;i>=0;i--)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_BUY) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      if(trade.PositionClose(ticket)==false)
      {
         Print("Error closing position: ", GetLastError());
         //ExpertRemove();
      }
   }  
}

void CloseSell()
{
   for(int i=PositionsTotal()-1;i>=0;i--)
   {
      ulong ticket=PositionGetTicket(i);
      if(ticket==0) continue;
      if(PositionGetInteger(POSITION_TYPE) != POSITION_TYPE_SELL) continue;
      if(PositionGetInteger(POSITION_MAGIC) != magic_number) continue;
      if(trade.PositionClose(ticket)==false)
      {
         Print("Error closing position: ", GetLastError());
         //ExpertRemove();
      }
   }  
}

datetime timer=NULL;
bool isNewBar()
{
   datetime candle_start_time= (int)(TimeCurrent()/(PeriodSeconds()))*PeriodSeconds();
   if(timer==NULL) {}
   else if(timer==candle_start_time) return false;
   timer=candle_start_time;
   return true;
}


İncelemeler 2
SpaciousTrader
21
SpaciousTrader 2023.07.11 22:09 
 

Great indicator and awesome support by the author Yashar !!

Önerilen ürünler
** All Symbols x All Time frames scan just by pressing scanner button ** *** Contact me  to send you instruction and add you in "Harmonic Scanner group" for sharing or seeing experiences with other users. Introduction Harmonic Patterns are best used to predict turning point. Harmonic Patterns give you high win rate and high opportunities for trade in during one day. This indicator detects the best and successful patterns based on Harmonic Trading concepts . The   Harmonic Patterns   Scanner   Sc
Introducing RSIScalperPro - the revolutionary RSI-based indicator for Metatrader 5, specifically designed for scalping in the one-minute chart. With RSIScalperPro, you'll have a powerful toolkit for precise entry and exit signals to take your trading to the next level. RSIScalperPro utilizes two different RSI indicators that provide clear signals for overbought and oversold areas. You can customize the time periods and limit values of the two RSIs according to your preferences to achieve the be
To get access to MT4 version please click   here . This is the exact conversion from TradingView: QQE MT4 Glaz-modified by JustUncleL This is a light-load processing and non-repaint indicator. All input options are available. This is not a multi time frame indicator. Buffers are available for processing in EAs. You can message in private chat for further changes you need.
The Rocket Trend indicator is trending. The indicator draws two-color points connected by lines along the chart. This is a trend indicator, it is an algorithmic indicator. It is easy to work and understand when a blue circle appears, you need to buy, when a red one appears, sell. The indicator is used for scalping and pipsing, and has proven itself well. Rocket Trend is available for analyzing the direction of the trend for a specific period of time. Ideal for novice traders learning the laws o
I do not have the exact indicator for MT4 but the nearest possible look alike can be downloaded from here . Also you may check this link . This is the exact conversion from TradingView: "Donchian Trend Ribbon" By "LonesomeTheBlue". One of the coolest indicators out there to detect trend direction and strength. As a trader you always need such indicator to avoid getting chopped in range markets. There are ten buffers as colors to use in EAs also. The indicator is loaded light and non-repaint. Not
- This is an implementation of OCC ==> open close cross - This indicator applies twelve different averaging methods to open and close prices separately to signal the trend switching. - All MA methods are set as input as well as period and different offsets applied to linear regression and ALMA averaging. - Buffers 16 and 17 can be used in EAs to detect trend direction. - You can message in private chat for further changes you need.
Gösterge, bir miktar düzeltmeden sonra aynı anda trendi takip eden bir ticarete girmeye yardımcı olur. Belirli sayıda çubuk üzerinde bir döviz çiftinin güçlü trend hareketlerini bulur ve ayrıca bu trend için düzeltme seviyeleri bulur. Eğilim yeterince güçlüyse ve düzeltme parametrelerde belirtilene eşitse, gösterge bunu bildirir. Farklı düzeltme değerleri ayarlayabilirsiniz, 38, 50 ve 62 (Fibonacci seviyeleri) değerleri daha uygundur. Ayrıca minimum trend uzunluğunu, aranacak çubuk geçmişi sayı
To get access to MT4 version please click here . Also you can check this link . This is the exact conversion from TradingView: "UT Bot" by "Yo_adriiiiaan". This is a light-load processing indicator. This is a non-repaint indicator. Buffers are available for processing in EAs. All input fields are available. You can message in private chat for further changes you need. Thanks for downloading
This Indicator adding power to traditional zigzag indicator. With High-Low numbers in vision it will be easier to estimate change of trend by knowing the depth of each wave. Information including points, pips, percentage%, and #bars can be displayed based on configuration. All information is real-time update. This indicator is especially useful in sideway market to buy low sell high.
Vwap Bands Auto
Ricardo Almeida Branco
The Vwap Bands Auto indicator seeks to automatically map the maximum market frequency ( automatic update of the outermost band ) and has two intermediate bands that also adjust to daily volatility. Another tool from White Trader that combines price and volume, in addition to mapping the daily amplitude. The external band is updated automatically when the daily maximum or minimum breaks the current frequency, and can be an input signal, seeking a return to the daily vwap. Thus, in ad
Xtrade Trend Detector
Dago Elkana Samuel Dadie
Xtrade Trend Detector is an indicator capable of finding the best opportunities to take a position in any stock market. Indeed, it is a great tool for scalpers but also for Daytraders. You could therefore use it to identify areas to trade, it fits easily on a chart. I use it to detect trends on Big timeframes and take positions on Small timeframes. Don't hesitate to give me a feedback if you test it.
Introduction to Fractal Pattern Scanner Fractal Indicator refers to the technical indicator that makes use of the fractal geometry found in the financial market. Fractal Pattern Scanner is the advanced Fractal Indicator that brings the latest trading technology after the extensive research and development work in the fractal geometry in the financial market. The most important feature in Fractal Pattern Scanner is the ability to measure the turning point probability as well as the trend probabil
Elevate Your Trading Experience with the famous UT Bot Alert Indicator! Summary: The UT Bot Alert Indicator by Quant Nomad has a proven track record and is your gateway to a more profitable trading journey. It's a meticulously crafted tool designed to provide precision, real-time insights, and a user-friendly experience.  Key Features: 1. Precision Analysis: Powered by advanced algorithms for accurate trend identification, pinpointing critical support and resistance levels. 2. Real-time Ale
Volume Candle MT5
Rafael Caetano Pinto
This indicator shows the candles with the highest volume in the market, based on a period and above-average growth percentage. It is also possible to activate the "Show in-depth analysis" functionality that uses algorithms to paint the candles with the probably market direction instead of painting based on the opening and closing positions. EA programmers: This indicator does not redraw.
CLICK HERE FOR FREE DOWNLOAD This trading indicator Automatically identifies and plots contract blocks, which are essential zones marked by significant levels of support and resistance. This powerful tool provides traders with a clear and intuitive visualization of critical market points where prices are likely to bounce or reverse. The contract blocks, represented by distinct colored rectangles, highlight support zones (at the bottom) and resistance zones (at the top), enabling traders not onl
Mean Reversal Heikin Ashi Indicator calculates special trade reversal points based on Heikin Ashi candlesticks patterns. This indicator can be used on all symbols, even in Forex or B3 Brazillian Markets. You can configure just the position of each arrow. Then, after include the indicator on the graphic, pay attention on each arrow that indicates a long or short trade.
The indicator determines a special pattern of Joe Dinapoli. It gives very high probability buy and sell signals. Indicator does not repaint. Indicator Usage Buy Signal ''B'' Entry : Market buy order at signal bar close Stop : Low of signal bar Take Profit : First swing high Sell Signal ''S'' Entry : Market sell order at signal bar close Stop : High of signal bar Take Profit : First swing low Indicator Parameters Fast EMA : External Parameter (should be kept as default) Slow EMA: External Param
Drawing Pack MT5
John Louis Fernando Diamante
This indicator provides several drawing tools to assist in various methods of chart analysis. The drawings will keep their proportions (according to their handle trendline) across different chart scales, update in real time, and multiple drawings are supported. # Drawing Option Description  1 Grid box draggable boxed grid, user defines rows x colums, diagonal ray option  2 Grid partial or fullscreen grid, sized by handle line  3 Grid flex a diagonal grid, sized and sloped by handle line
VolumeSecret
Thalles Nascimento De Carvalho
VolumeSecret: Volume’un Gücü Elinizde Programlama dünyasında karşılaştığımız zorluklar, sürekli olarak büyümemize ve gelişmemize neden olur. Pazarın getirdiği zorlukları ve traderların en yüksek performansa ulaşma mücadelesini derinden anlıyoruz. Bu yüzden, pazar kararlarını daha akıcı ve hassas hale getirmek için yenilikçi çözümler üzerinde durmaksızın çalışıyoruz. VolumeSecret , bu bağlılığın bir sonucudur. Bu gelişmiş göstergeler, hacim analizi ile sofistike bir stratejiyi birleştirerek piyas
Harmonic Pro
Kambiz Shahriarynasab
Only 5 copies of the EA at $30! Next price --> $45 Find charts and signals based on harmonic patterns, which work great in 1-hour timeframes and up. Buy and sell signs based on different harmonic patterns as follows: 0: ABC_D 1: ABCD_E 2: 3Drive 3: 5_0 4: Gartley 5: Bat 6: Crab 7: Butterfly 8: Cypher 9: NenStar 10: Shark 11: AntiBat 12: AntiGartley 13: AntiCrab 14: AntiButterfly 15: AntiCypher 16: AntiNenStar 17: AntiShark How to use: When there is an opportunity to
Draw as many custom candles as possible on a single chart with this special indicator. Your analysis skill will never be the same again for those who know the power that having a hawkeye view of all price action at once provides. Optimized for performance and allows customization on the appearance of candle bodies and wicks. This is an integral part of analysis at our desks, we hope it will never leave your charts too once you can use it to its full potential.
Gösterge, İKİLİ SEÇENEKLER için giriş sinyalleri üretir, grafikte bir ok çizer ve sesli bir uyarı verir. ÇALIŞMA SAATLERİ: 6.OO GMT/ 17.00 GMT (17.00 GMT'den sonra ve gece çok düşük volatilite ve hacim eksikliği nedeniyle önerilmez) ÇİFTLER: EUR/USD (@EU6), GBP/USD (BP6). Zaman dilimleri: 1,2,3,5,10,15 dakika En iyi zaman aralığı: 3 dakika SON KULLANMA TARİHİ: 1 mum Göstergenin çalışması için gerçek hacimlere (onay hacmi yok) ihtiyacı vardır: EUR/USD, GBP/USD ECC spot çiftlerinde çalı
Scissors Pattern
Kambiz Shahriarynasab
Configure scaffolding charts and signals based on the scissor pattern, which works great at low times. Buy and sell signs based on 2 previous candle patterns It works on the active time form, and when detecting the pattern in 4 time frames, 5 minutes, 15 minutes, 30 minutes and one hour, the alert can be set to notify us of the formation of this pattern. MetaTrader version 4 click here How to use: When there is an opportunity to buy or sell, the marker places a scissors mark on
Machine Learning Adaptive SuperTrend - Take Your Trading to the Next Level! Introducing the   Machine Learning Adaptive SuperTrend , an advanced trading indicator designed to adapt to market volatility dynamically using machine learning techniques. This indicator employs k-means clustering to categorize market volatility into high, medium, and low levels, enhancing the traditional SuperTrend strategy. Perfect for traders who want an edge in identifying trend shifts and market condit
To get access to MT4 version please click here . This is the exact conversion from TradingView:"HIGH AND LOW Optimized Trend TrackerHL OTT" by "kivancozbilgic" This is a light-load processing indicator. It is a non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
TilsonT3
Jonathan Pereira
Tillson's T3 moving average was introduced to the world of technical analysis in the article ''A Better Moving Average'', published in the American magazine Technical Analysis of Stock Commodities. Developed by Tim Tillson, analysts and traders of futures markets soon became fascinated with this technique that smoothes the price series while decreasing the lag (lag) typical of trend-following systems.
FREE
Koala Engulf Pattern
Ashkan Hazegh Nikrou
3 (1)
Koala Engulf Pattern Introduction Professional MT5 indicator to detect engulf price action pattern. Useful in forex , cryptocurrency , CFD, Oil market. Some adjustable methods to separate qualified engulf patterns. Nice drawing on chart by fill engulf candles and draw stop loss and 3 different take profits on chart. Alert system contain pop up, mobile notification, email alert. Koala Engulf Pattern Advantages Pure Price Action pattern, engulf is one of amazing price action patterns and very
The Beta index, also known as the Beta indicator, is one of the key reference indicators for hedging institutions. It allows you to measure the relative risk of individual assets, such as currencies and commodities, in comparison to market portfolios, cross-currency pairs, the U.S. dollar index, and stock indices. By understanding how your assets perform in relation to market benchmarks, you will have a clearer understanding of your investment risk. Key Features: Accurate Risk Assessment: The Be
Note: If you want to apply this indicators on indicators which are shown in a sub-window, then consider using this indicator instead:  https://www.mql5.com/en/market/product/109066.&nbsp ; AIntel Predict - Your Gateway to Future Trading Success! Unlock the power of predictive analytics with AIntel Predict. Say goodbye to the guesswork and hello to improved forecasting, as AIntel Predict leverages historical data to unveil the future of your trades like never before. Whether you're a seasoned tra
This indicator is a perfect wave automatic analysis indicator for practical trading! 黄金实战 案例... The standardized definition of the band is no longer a wave of different people, and the art of man-made interference is eliminated, which plays a key role in strict analysis of the approach.=》Increase the choice of international style mode, (red fall green rise style) The  purchase discount is currently in progress! Index content: 1.Basic wave: First, we found the inflection point of the ba
Bu ürünün alıcıları ayrıca şunları da satın alıyor
TPSproTREND PrO MT5
Roman Podpora
4.89 (9)
TPSpro TREND PRO  - is a trend indicator that automatically analyzes the market and provides information about the trend and each of its changes, as well as giving signals for entering trades without redrawing! The indicator uses each candle, analyzing them separately. referring to different impulses - up or down impulse. Exact entry points into transactions for currencies, crypto, metals, stocks, indices!  Version MT4               DETAILED DESCRIPTION               R ecommended to use with an
TPSpro RFI Levels MT5
Roman Podpora
4.73 (11)
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
Atomic Analyst MT5
Issam Kassas
4.42 (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
Gold Stuff mt5
Vasiliy Strukov
4.92 (165)
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
FX Power MT5 NG
Daniel Stein
5 (5)
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
Quantum Trend Sniper
Bogdan Ion Puscasu
4.8 (49)
Tanıtım       Kuantum Trend Keskin Nişancı Göstergesi   , trend tersine dönmeleri belirleme ve ticaret yapma şeklinizi değiştiren çığır açan MQL5 Göstergesi! 13 yılı aşkın ticaret tecrübesine sahip deneyimli tüccarlardan oluşan bir ekip tarafından geliştirilmiştir.       Kuantum Trend Keskin Nişancı Göstergesi       trend dönüşlerini son derece yüksek doğrulukla belirlemenin yenilikçi yolu ile ticaret yolculuğunuzu yeni zirvelere taşımak için tasarlanmıştır. ***Kuantum Trend Keskin Nişancı Gö
Öncelikle, bu Ticaret Aracının Non-Repainting, Non-Redrawing ve Non-Lagging Gösterge olduğunu vurgulamakta fayda var, bu da onu profesyonel ticaret için ideal hale getiriyor. Çevrimiçi kurs, kullanıcı kılavuzu ve demo. Akıllı Fiyat Hareketi Kavramları Göstergesi, hem yeni hem de deneyimli tüccarlar için çok güçlü bir araçtır. İleri ticaret fikirlerini, Inner Circle Trader Analizi ve Smart Money Concepts Ticaret Stratejileri gibi 20'den fazla kullanışlı göstergeyi bir araya getirerek bir aray
Trend Screener Pro MT5
STE S.S.COMPANY
4.87 (63)
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.
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ı
AT Forex Indicator MT5
Marzena Maria Szmit
5 (4)
The AT Forex Indicator MT5 is a sophisticated trading tool designed to provide traders with a comprehensive analysis of multiple currency pairs. This powerful indicator simplifies the complex nature of the forex market, making it accessible for both novice and experienced traders. AT Forex Indicator uses advanced algorithms to detect trends, patterns and is an essential tool for traders aiming to enhance their forex trading performance. With its robust features, ease of use, and reliable signal
TrendMaestro5
Stefano Frisetti
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.4 TRENDMAESTRO recognizes a new TREND in the bud, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these data a
Advanced Supply Demand MT5
Bernhard Schweigert
4.5 (14)
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
TPA True Price Action indicator reveals the true price action of the market makers through 100% non-repainting signals strictly at the close of a candle! TPA shows entries and re-entries, every time the bulls are definitely stronger than the bears and vice versa. Not to confuse with red/green candles. The shift of power gets confirmed at the earliest stage and is ONE exit strategy of several. There are available now two free parts of the TPA User Guide for our customers. The first "The Basics"
FxaccurateLS
Shiv Raj Kumawat
WHY IS OUR FXACCCURATE LS MT5 THE PROFITABLE ? PROTECT YOUR CAPITAL WITH RISK MANAGEMENT Gives entry, stop and target levels from time to time. It finds Trading opportunities by analyzing what the price is doing during established trends. POWERFUL INDICATOR FOR A RELIABLE STRATEGIES We have made these indicators with a lot of years of hard work. It is made at a very advanced level. Established trends provide dozens of trading opportunities, but most trend indicators completely ignore them!
Blahtech Supply Demand MT5
Blahtech Limited
4.54 (13)
Was: $299  Now: $99   Supply Demand uses previous price action to identify potential imbalances between buyers and sellers. The key is to identify the better odds zones, not just the untouched ones. Blahtech Supply Demand indicator delivers functionality previously unavailable on any trading platform. This 4-in-1 indicator not only highlights the higher probability zones using a multi-criteria strength engine, but also combines it with multi-timeframe trend analysis, previously confirmed swings
Auto Order Block with break of structure based on ICT and Smart Money Concepts (SMC) Futures Break of Structure ( BoS )             Order block ( OB )            Higher time frame Order block / Point of Interest ( POI )    shown on current chart           Fair value Gap ( FVG ) / Imbalance   -  MTF      ( Multi Time Frame )    HH/LL/HL/LH  -  MTF      ( Multi Time Frame )  Choch  MTF      ( Multi Time Frame )  Volume Imbalance     ,  MTF          vIMB Gap’s Power of 3 Equal High
ICT, SMC, SMART MONEY CONCEPTS, SMART MONEY, Smart Money Concept, Support and Resistance, Trend Analysis, Price Action, Market Structure, Order Blocks, BOS/CHoCH,   Breaker Blocks ,  Momentum Shift,   Supply&Demand Zone/Order Blocks , Strong Imbalance,   HH/LL/HL/LH,    Fair Value Gap, FVG,  Premium  &   Discount   Zones, Fibonacci Retracement, OTE, Buy Side Liquidity, Sell Side Liquidity, BSL/SSL Taken, Equal Highs & Lows, MTF Dashboard, Multiple Time Frame, BigBar, HTF OB, HTF Market Structure
Black Dragon indicator mt5
Ramil Minniakhmetov
4.81 (54)
Trend algılama göstergesi, herhangi bir stratejiyi tamamlayacak ve bağımsız bir araç olarak da kullanılabilir. ÖNEMLİ! Talimatlar ve bonus almak için satın alma işleminden hemen sonra benimle iletişime geçin!   Faydalar Kullanımı kolay; grafiği gereksiz bilgilerle aşırı yüklemez. Herhangi bir strateji için filtre olarak kullanma yeteneği. Hem kar elde etmek hem de zararı durdurmayı ayarlamak için kullanılabilen, yerleşik dinamik cupport ve direnç seviyeleri içerir. Mum kapandıktan sonra g
Top indicator for MT5   providing accurate signals to enter a trade without repainting! It can be applied to any financial assets:   forex, cryptocurrencies, metals, stocks, indices .  Watch  the video  (6:22) with an example of processing only one signal that paid off the indicator! MT4 version is here It will provide pretty accurate trading signals and tell you when it's best to open a trade and close it. Most traders improve their trading results during the first trading week with the help of
Matrix Arrow Indicator MT5
Juvenille Emperor Limited
5 (12)
Matrix Arrow Indicator MT5 ,   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
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ı -
Trade smarter, not harder: Empower your trading with Harmonacci Patterns Special Offer: Purchase now to receive free bonuses worth $165! (Read more for details) This is arguably the most complete harmonic price formation auto-recognition indicator you can find for the MetaTrader Platform. It detects 19 different patterns, takes fibonacci projections as seriously as you do, displays the Potential Reversal Zone (PRZ) and finds suitable stop-loss and take-profit levels. [ Installation Guide | Up
XQ Indicator MetaTrader 5
Marzena Maria Szmit
3 (2)
Step into the realm of Forex trading with confidence and precision using XQ, a cutting-edge Forex indicator designed to elevate your trading game to unprecedented heights. Whether you're a seasoned trader or just stepping into the world of currency exchange, XQ Forex Indicator empowers you with the insights and signals needed to make informed trading decisions. The signal conditions are a combination of three indicators, and XQ Forex Indicator only display  medium and long-term trends . The ind
FX Volume MT5
Daniel Stein
4.93 (14)
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
Was: $249  Now: $99   Market Profile defines a number of day types that can help the trader to determine market behaviour. A key feature is the Value Area, representing the range of price action where 70% of trading took place. Understanding the Value Area can give traders valuable insight into market direction and establish the higher odds trade. It is an excellent addition to any system you may be using. Inspired by Jim Dalton’s book “Mind Over Markets”, this indicator is designed to suit the
Gartley Hunter Multi
Siarhei Vashchylka
5 (8)
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all possible timeframes. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Patterns: Gartley, Butterfly, Shark, Crab. Bat, Alternate Bat, Deep Crab, Cypher 2. Simultaneous search for patterns on dozens of trading instruments and on all possible timeframes 3. Search for patterns of all possible sizes. From the smallest to the largest 4. A
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation.
Golden Spikes Premium
Kwaku Bondzie Ghartey
5 (1)
Golden Spikes Detector Acknowledgement and Dedications:  The name of this indicator was Inspired by an Original; Mr Grant Koopman; a Knowledgeable and experienced Synthetics trader. I dedicate this indicator to Mr Grant.  Overview: The Golden Spikes Premium is a groundbreaking trading indicator meticulously crafted for the Boom and Crash indices on the Deriv market. Tailored to meet the needs of discerning traders, this powerful tool operates exclusively on the one-minute timeframe, providin
Bu gösterge paneli, seçilen semboller için ticaret stratejinize bağlı olarak hem ölçeklendirme hem de uzun vadeli modda grafikteki   Arz ve Talep   bölgelerini keşfeder ve görüntüler. Ek olarak, gösterge tablosunun tarayıcı modu, istediğiniz tüm sembolleri bir bakışta kontrol etmenize ve uygun pozisyonları kaçırmamanıza yardımcı olur /   MT4 sürümü Ücretsiz gösterge:   Basic Supply Demand Özellikler Birden fazla döviz çiftinde   alım satım fırsatlarını görüntülemenize olanak tanıyarak,
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 get access to MT4 version please click here . - This is the exact conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #include <Trade\Trade.mqh> CTrade trade; int handle_hull= 0 ; input group "EA Setting" input int magic_number= 123456 ; //magic number input double fixe
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Zero Lag MACD Enhanced - Version 1.2" by "   Albert.Callisto ". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. Thanks
To download MT5 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
This is the Chandelier Exit trend indicator applied to heiken ashi candles based on "G TREND GUNBOT" by "LUIS_GANDATA_G_TREND" on tradingview. Heiken ashi candles filter out many of the chops and therefore as an input to Chandelier Exit you achieve well filtered Buy and Sell signals. Also you can choose to apply the trend indicator to normal candles via input tab. (two in one indicator) This is a non-repaint and light processing load indicator. You can message in private chat for further change
FREE
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. Strategy description - Detect trend based on GoldTrader rules. - Enter in both direction as much as needed to achieve acceptable amount of profit. - Although this is a martingale bot it is very unlikely to loose your money, because: ==> the money management rules are safe and low risk. ==> entries
FREE
To download MT4 version please click here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. martingale version is available here . Strategy description - Detect trend based on EMA18-EMA50-SMA200 alignment in three time frames: M15, H1, H4 - Trade in trend direction and exit when above alignment is broken. - The bot is tuned to trade XAUUSD(Gold). - The bot output is break even in rangi
FREE
To get access to MT5 version please click here . - This is a conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. note: Color filled areas and colored candles are not supported in MT4 version. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; inp
For MT4 version please click here . This is the exact conversion from TradingView: "Range Filter 5min" By "guikroth". - This indicator implements Alerts as well as the visualizations. - Input tab allows to choose Heiken Ashi or Normal candles to apply the filter to. It means it is a (2 in 1) indicator. - This indicator lets you read the buffers for all data on the window. For details on buffers please message me. - This is a non-repaint and light processing load indicator. - You can message in p
To get access to MT5 version please click here . This is the exact conversion from TradingView: " Better RSI with bullish / bearish market cycle indicator" by TradeCalmly. This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need.
This Expert is developed to optimize parameters to trade intraday trending markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 12% profitability in EURUSD for a period of a year and 2% draw-down using optimization to find best inputs.
FREE
To download MT4 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
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 download MT5 version please click  here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
To download MT5 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. This is a sample EA code that operates based on bullish and bearish linear regression candles . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input string     Risk_Management= "" ; input double fixed_lot_size=
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Trend Regularity Adaptive Moving Average","TRAMA" By "   LuxAlgo   ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Stochastic Momentum Index" By "UCSgears". - This is a popular version of stochastic oscillator on tradingview. - This is a light-load processing and non-repaint indicator. - Buffers are available for the lines on chart. - You can message in private chat for further changes you need. Thanks for downloading
For MT4 version please click here . This is the exact conversion from TradingView: "Average True Range Stop Loss Finder" By "veryfid". - This indicator implements a deviation channel. - The channel determines trend direction as well as stop loss placement. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Supertrend" by " KivancOzbilgic ". This is a light-load processing and non-repaint indicator. Highlighter option isn't available in MT4 version. You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Supertrend . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input double fixed_lo
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Didi Index" by " everget ". - This is a popular version of DIDI index on tradingview. - This is a light-load processing and non-repaint indicator. - Buffer is available for the lines on chart and arrows on chart. - You can message in private chat for further changes you need. Thanks for downloading
To download MT5 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
To download MT4 version please click here . This is the exact conversion from TradingView: "RSI versus SMA" By "JayRogers". This indicator lets you read the buffers for all Lines on chart.  Note: This is an indicator, Not an expert. Meaning It does not take trades. If you want the EA please contact via message. You can easily use the indicator to understand the logic behind trades that the TradingView strategy takes. The strategy is profitable if this indicator is applied to the right symbol at
FREE
To download MT4 version please click here . Metatrader users are limited to few moving average types. Therefor I decided to create a package consisting of all MAs I knew. This package suggests 12 different types: { SMA, EMA, DEMA, TEMA, WMA, VWMA, SMMA(RMA), HullMA, LSMA, ALMA, SSMA, TMA } You can configure them via input tab. This is a non-repaint indicator with light load. To implement them I referred to standard  libraries of pine script.
FREE
To download MT5 version please click here . Metatrader users are limited to few moving average types. Therefor I decided to create a package consisting of all MAs I knew. This package suggests 12 different types: { SMA, EMA, DEMA, TEMA, WMA, VWMA, SMMA(RMA), HullMA, LSMA, ALMA, SSMA, TMA } You can configure them via input tab. This is a non-repaint indicator with light load. To implement them I referred to   standard  libraries of pine script.
FREE
- This is the exact conversion from TradingView: " 200-EMA Moving Average Ribbon" By "Dale_Ansel". - This indicator plots a series of moving averages to create a "ribbon" that offers a great visual structure to price action. - This indicator lets you read buffers. For information on buffers please contact via message. - This is a non-repaint and light processing load indicator
FREE
To get access to MT5 version please click   here . This is the exact conversion from TradingView: "Hammer & ShootingStar Candle Detector" by "MoriFX". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
FREE
RSI versus SMA
Yashar Seyyedin
4 (1)
To download MT5 version please click  here . This is the exact conversion from TradingView: "RSI versus SMA" By "JayRogers". This indicator lets you read the buffers for all Lines on chart.  Note: This is an indicator, Not an expert. Meaning It does not take trades. If you want the EA please contact via message. You can easily use the indicator to understand the logic behind trades that the TradingView strategy takes. The strategy is profitable if this indicator is applied to the right symbol at
FREE
Filtrele:
Muhammad Nasrullah
24
Muhammad Nasrullah 2023.11.26 12:34 
 

Kullanıcı incelemeye herhangi bir yorum bırakmadı

Yashar Seyyedin
40336
Geliştiriciden yanıt Yashar Seyyedin 2023.11.26 12:35
Thanks for the positive review.
SpaciousTrader
21
SpaciousTrader 2023.07.11 22:09 
 

Great indicator and awesome support by the author Yashar !!

Yashar Seyyedin
40336
Geliştiriciden yanıt Yashar Seyyedin 2023.07.11 22:26
Thanks for the positive review.
İncelemeye yanıt
Sürüm 1.10 2023.02.14
Added Alert option.