• Übersicht
  • Bewertungen (1)
  • Diskussion (3)
  • Neue Funktionen

Twin Range Filter by colinmck MT4

5

To get access to MT5 version please click here.

- This is the exact conversion from TradingView: "Twin Range Filter" by "colinmck".
- The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms.
- 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=1234;
    input double fixed_lot_size=0.01; // select fixed lot size
    
    input string    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
    
    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 index)
    {
       double value_buy=iCustom(_Symbol, PERIOD_CURRENT,
        "Market\\Twin Range Filter by colinmck MT4",
        src, per1, mult1, per2, mult2, showAlerts, 12, index);
       return value_buy!=EMPTY_VALUE;
    }
    
    bool IsTWRSell(int index)
    {
       double value_sell=iCustom(_Symbol, PERIOD_CURRENT,
        "Market\\Twin Range Filter by colinmck MT4",
        src, per1, mult1, per2, mult2, showAlerts, 13, index);
       return value_sell!=EMPTY_VALUE;
    }
    
    int BuyCount()
    {
       int counter=0;
       for(int i=0;i<OrdersTotal();i++)
       {
          if(OrderSelect(i, SELECT_BY_POS)==false) continue;
          if(OrderSymbol()!=_Symbol) continue;
          if(OrderMagicNumber()!=magic_number) continue;
          if(OrderType()==OP_BUY) counter++;
       }
       return counter;
    }
    
    int SellCount()
    {
       int counter=0;
       for(int i=0;i<OrdersTotal();i++)
       {
          if(OrderSelect(i, SELECT_BY_POS)==false) continue;
          if(OrderSymbol()!=_Symbol) continue;
          if(OrderMagicNumber()!=magic_number) continue;
          if(OrderType()==OP_SELL) counter++;
       }
       return counter;
    }
    
    void Buy()
    {
       if(OrderSend(_Symbol, OP_BUY, fixed_lot_size, Ask, 3, 0, 0, NULL, magic_number, 0, clrNONE)==-1)
       {
          Print("Error Executing Order: ", GetLastError());
          //ExpertRemove();
       }
    }
    
    void Sell()
    {
       if(OrderSend(_Symbol, OP_SELL, fixed_lot_size, Bid, 3, 0, 0, NULL, magic_number, 0, clrNONE)==-1)
       {
          Print("Error Executing Order: ", GetLastError());
          //ExpertRemove();
       }
    }
    
    void CloseBuy()
    {
       for(int i=OrdersTotal()-1;i>=0;i--)
       {
          if(OrderSelect(i, SELECT_BY_POS)==false) continue;
          if(OrderSymbol()!=_Symbol) continue;
          if(OrderMagicNumber()!=magic_number) continue;
          if(OrderType()==OP_BUY) 
             if(OrderClose(OrderTicket(), OrderLots(), Bid, 3, clrNONE)==false)
             {
                Print("Error Closing Position: ", GetLastError());
             }
       }
    }
    
    void CloseSell()
    {
       for(int i=OrdersTotal()-1;i>=0;i--)
       {
          if(OrderSelect(i, SELECT_BY_POS)==false) continue;
          if(OrderSymbol()!=_Symbol) continue;
          if(OrderMagicNumber()!=magic_number) continue;
          if(OrderType()==OP_SELL) 
             if(OrderClose(OrderTicket(), OrderLots(), Ask, 3, clrNONE)==false)
             {
                Print("Error Closing Position: ", GetLastError());
             }
       }
    }
    
    datetime timer=NULL;
    bool isNewBar()
    {
       datetime candle_start_time= (int)(TimeCurrent()/(PeriodSeconds()))*PeriodSeconds();
       if(timer==NULL) {}
       else if(timer==candle_start_time) return false;
       timer=candle_start_time;
       return true;
    }
    



    Bewertungen 1
    Golden Joy
    139
    Golden Joy 2023.07.16 18:31 
     

    waiting for you to export it as EA, I am used to trading with this indicator, and I love it

    Empfohlene Produkte
    NO REPAINT ADVANCED CHART PATTERN INDICATOR By definition, a price ( chart)  pattern is a recognizable configuration of price movement that is identified using a series of  trendlines  and/or curves. When a price pattern signals a change in trend direction, it is known as a reversal pattern; a continuation pattern occurs when the trend continues in its existing direction following a brief pause. Advanced Chart Pattern Tracker is designed to find the MOST ACCURATE patterns. A special script is a
    ABCD Harmonic Patterns
    Mehmet Ozhan Hastaoglu
    Thanks to this indicator, you can easily see the new ABCD harmonic patterns in the chart. If the two price action lengths are equal, the system will give you a signal when it reaches the specified level. You can set the limits as you wish. For example, You can get the signal of the price, which occurs in the Fibonaci 38.2 and 88.6 retracements, and then moves for the same length, at the level you specify. For example, it will alarm you when the price reaches 80% as a percentage. In vertical
    The indicator is the advanced form of the MetaTrader 4 standard Fibonacci tool. It is unique and very reasonable for serious Fibonacci traders. Key Features Drawing of Fibonacci retracement and expansion levels in a few seconds by using hotkeys. Auto adjusting of retracement levels once the market makes new highs/lows. Ability to edit/remove any retracement & expansion levels on chart. Auto snap to exact high and low of bars while plotting on chart. Getting very clear charts even though many ret
    I just sell my products in Elif Kaya Profile , any other websites are stolen old versions, So no any new updates or support. - Lifetime update free -   Real price is 80$   - 40% Discount ( It is 49$ now ) Contact me for instruction, any questions! Related Product:  Gold Expert  ,  Professor EA - Non-repaint Introduction Flag patterns are an important tool for technical traders in the stock market. When interpreting a flag pattern, it is important to wait for the pattern to pick a direction b
    This indicator Super Channel Pro indicator.Indicator displays trend movement. Indicator calculates automatically line. Features FiltPer - displays indicator channel period. deviation - displays indicator channel deviation. deviation2 - displays indicator channel deviation. How to understand the status: If the arrow is green, trend is up. If the arrow is red, trend is down. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    Pattern Trader No Repaint Indicator MT5 Version of the indicator:  https://www.mql5.com/en/market/product/57462 Advanced Chart Patterns Tracker MT4:  https://www.mql5.com/en/market/product/68550 I ndicator searches for 123 Pattern, 1234 Pattern, Double Top, Double Bottom Patterns , Head and Shoulders, Inverse Head and Shoulders and ZigZag 1.618 Pattern. Pattern Trader indicator uses Zig Zag Indicator and Improved Fractals to determine the patterns. Targets and Stop Loss Levels are defined by
    Elliott Wave Trend was designed for the scientific wave counting. This tool focuses to get rid of the vagueness of the classic Elliott Wave Counting using the guideline from the template and pattern approach. In doing so, firstly Elliott Wave Trend offers the template for your wave counting. Secondly, it offers Wave Structural Score to assist to identify accurate wave formation. It offers both impulse wave Structural Score and corrective wave Structure Score. Structural Score is the rating to sh
    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
    A top-quality implementation of the famous  Zig Zag  indicator, which needs no introduction. It is completely coming from original algorithm.  After you have this indicator, you will no need any more indicator for opposite direction of trend. Trading direction of TREND Very easy to understand and set  It implements a multi-timeframe dashboard Buy and Sell signals on same chart  Working M5-M15-M30-H1-H4 and D1  After the purchase, please contact me for to learn how to use it. 
    Dieser Indikator wurde entwickelt, um mit der Elliott-Wellen-Theorie auf zwei Arten zu arbeiten: Automatische Arbeitsweise: In diesem Modus erkennt der Indikator automatisch alle fünf Motivwellen im Chart gemäß der Elliott-Wellen-Theorie. Er liefert Prognosen und identifiziert potenzielle Umkehrzonen. Darüber hinaus verfügt er über die Fähigkeit, Warnungen und Push-Nachrichten zu generieren, um Trader über bedeutende Entwicklungen zu informieren. Diese automatisierte Funktionalität vereinfacht d
    Der SMC Venom Model BPR Indikator ist ein professionelles Tool für Trader, die mit dem Smart Money (SMC)-Konzept arbeiten. Er identifiziert automatisch zwei wichtige Muster im Kurschart: FVG   (Fair Value Gap) ist eine Kombination aus drei Kerzen, wobei zwischen der ersten und dritten Kerze eine Lücke besteht. Diese bildet eine Zone zwischen den Niveaus, in der es keine Volumenunterstützung gibt, was häufig zu einer Kurskorrektur führt. BPR   (Balanced Price Range) ist eine Kombination aus zwe
    Weis Wave Indicator
    Dhabaleswar Prasad Jena
    This indicator is based on the Weis wave principle of wave volume. Below are few features of the indicator It draws the wave on the chart while the accumulated volume per wave in a different window at the bottom of the chart You can configure the turning point move It displays the accumulated volume (in thousands, eg for 15000 volume it will show 15) at the end of each wave You can also configure to show number of candles in the wave along with the wave volume The indicator calculates the distin
    If you are using volume spread analysis, whether your are a beginner or an expert, this system will give you a lot of features and help in your analysis. Please watch the video to see all the features. Features With one click you will find all the VSA patterns on your chart . Bars without opening price. Easy to read volume indicator. Bar reader (Bar type - Close type - Volume type - Spread type). Daily and weekly levels (Pivot - Camarilla - Fibo). Very light on the trading platform and moving b
    Die Scalper-Terminal-Schnittstellensoftware ist ein Indikator und führt keine automatischen Kauf- und Verkaufstransaktionen durch. Dieser Indikator zeigt die aktuelle Handelszone an, in der Transaktionen eingegeben werden können, wenn sich eine Scalping-Handelsmöglichkeit ergibt. Wenn es ein Scalping-Signal gibt, leuchtet auf der rechten Seite des entsprechenden Handelspaares das türkisfarbene Licht auf und die genaue Handelsrichtung wird darüber geschrieben. Klicken Sie anschließend auf die Sc
    The indicator displays Renko bars on the chart, uses them to plot the ZigZag - trend lines connecting the local Lows and Highs of the price movement, and highlights them based on the Gartley patterns, showing the potential price reversal points. Renko - specialized display of the price action, in which the graph is displayed not every bar of the time frame, but only under the condition that the price had passed more than the specified number of points. Renko bars are not bound to a time frame, s
    PZ Harmonacci Patterns
    PZ TRADING SLU
    3.17 (6)
    Dies ist wahrscheinlich der vollständigste Indikator für die automatische Erkennung der harmonischen Preisbildung, den Sie für die MetaTrader-Plattform finden können. Es erkennt 19 verschiedene Muster, nimmt Fibonacci-Projektionen genauso ernst wie Sie, zeigt die potenzielle Umkehrzone (PRZ) an und findet geeignete Stop-Loss- und Take-Profit-Werte. [ Installationsanleitung | Update-Anleitung | Fehlerbehebung | FAQ | Alle Produkte ] Es erkennt 19 verschiedene harmonische Preisbildungen Darges
    This is a new strategy for SUPPLY DEMAND areas It is based on a calculation using the tick volume to detect the big price action in market for both bear /bull actions this smart volume action candles are used to determine the supply and demand areas prices in between main supply and demand lines indicate sideway market  up arrows will be shown when prices moves above the main supply and the secondary supply lines Down arrows will be shown when prices moves below the main demand and the secondary
    Swing High Low Fibonacci
    Frank Wesley Iii Mccallister
    This indicator identifies the major and minor swing high and low points on a chart. It then takes the most recent swing and draws a fibonacci pattern of retracement and extension levels to give you an idea of where price may move next. It allow allows you to set a pair of moving averages to help identify the direction of the overall trend. There are configuration parameters for the major and minor swing and the moving averages.
    Introduction to X3 Chart Pattern Scanner X3 Cherart Pattern Scanner is the non-repainting and non-lagging indicator detecting X3 chart patterns including Harmonic pattern, Elliott Wave pattern, X3 patterns, and Japanese Candlestick patterns. Historical patterns match with signal patterns. Hence, you can readily develop the solid trading strategy in your chart. More importantly, this superb pattern scanner can detect the optimal pattern of its kind. In addition, you can switch on and off individu
    Scanner and Dashboard for Cycle Sniper ATR Fibo Channels Indicator As users know indicator draws Fibonacci Channels and arrows according to the user's settings. With CS ATR Fibo Channels Scanner, you will have the ability to watch the market. - Multi Timeframe - Multi Instrument Enter your parameters to watch (as explained in Cycle Sniper ATR Fibo Channels Indicator )  - If you cho0se "Arrows by ATR Levels" , you will receive the potential reversal arrrows. - If you choose "Arrows by Median
    Std Channels
    Muhammed Emin Ugur
    Std Channels The Std Channels Indicator is a technical indicator that uses standard deviation to create five channels around a price chart. The channels are used to identify support and resistance levels, as well as trends and reversals. The indicator is calculated by first calculating the standard deviation of the price data over a specified period of time. The channels are then created by adding and subtracting the standard deviation from the price data. The five channels are as follows: Upper
    PZ 123 Pattern
    PZ TRADING SLU
    1 (1)
    Das 123-Muster ist eines der beliebtesten, leistungsstärksten und flexibelsten Diagrammmuster. Das Muster besteht aus drei Preispunkten: einem Boden, einem Gipfel oder Tal und einem Fibonacci-Retracement zwischen 38,2% und 71,8%. Ein Muster gilt als gültig, wenn der Preis jenseits des letzten Gipfels oder Tals abbricht, in dem der Indikator einen Pfeil zeichnet, einen Alarm auslöst und der Handel platziert werden kann. [ Installationsanleitung | Update-Anleitung | Fehlerbehebung | FAQ | Alle Pr
    Warning: Our product works with 28 symbols. The average accuracy level of the signals is 99%. We see signals below 15 pips as unsuccessful. Technique Signal   indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators. The indi
    Reversal Pattern Pro
    Boonyapagorn Rodvattanajinda
    Reversal Patterns Pro Reversal Patterns Pro is a Price Action (PA) analytical tool that scans the reversal patterns.  - Finds and marks the most dependable Japanese candlestick patterns in real-time. - Supports all time frames (Best for Scalping) - Doesn't repaint making it an exceptional indicator for Expert Advisors. Input parameters : - Support & Resistance Mode ( true or false ) for enabling advanced filtering - Donchian Period - RSI Period - RSI Oversold Level - RSI Overbought Level - Al
    Introduction Harmonic Patterns are best used to predict potential turning point. Traditionally, Harmonic Pattern was identified manually connecting peaks and troughs points in the chart. Manual harmonic pattern detection is painfully tedious and not suitable for everyone. You are often exposed under subjective pattern identification with manual pattern detection. To avoid these limitations, Harmonic Pattern Plus was designed to automate your harmonic pattern detection process. The functionality
    Fibonacci calculator is used with Elliot Waves, it can generate remarkable results. A trader could use these levels or ratios to find high probability trades with very small stop loss. You may also use these ratios to find Elliott Waves extensions and to book profit near those levels. For Elliot Wave experts, Fibonacci calculator is a highly useful tool that can assist them in calculating Fibonacci extension and retracement levels for the market price. The indicator proves itself as a useful one
    Trend Line Chart Pattern Signals  Is a traders Tool for Signals based on Strong  Patterns Formed By a pair of robust trend lines. They FOR WITH DIFFERENT POPULAR PATTERNS ON CHARTS LIKE – TRIANGLES, FLAGS,RANGE , ASCENDING TRIANGLES, DESCENDING PATTERNS, PENNANTS ETC. The TREND LINES  form  dynamically  on running bars. The  sensitivity  of the trend lines can be changed by custom settings. The  Buy and Sell Signals Generate upon Break Of the Trend Line + "Close" of the same bar above the previo
    KeltnerTRBands
    Ahmet Metin Yilmaz
    Keltner Channels are volatility-based bands that are placed on either side of an asset's price and can aid in determining the direction of a trend. The exponential moving average (EMA) of a Keltner Channel is typically 20 periods, although this can be adjusted if desired.( Default is 50 here..) In the Classic Keltner Channels The upper and lower bands are typically set two times the average true range (ATR) above and below the EMA, although the multiplier can also be adjusted based on personal p
    EARLY REMINDER: The Starting price is 65 price will rise soon up to 365$ and then 750$ after first 10 copies of sales. Grab this offer now! Introduction Hello, traders! Welcome to the demonstration of the Forex Beast Indicator , a comprehensive tool designed to assist aspiring traders in navigating the complexities of the forex market. This indicator incorporates seven essential components to provide a well-rounded trading experience: Moving Averages Colored Zones Support and Resistance Levels
    ATR Channels
    Ahmet Metin Yilmaz
    ATR Channel is an indicator. It shows us ATR ( depends on selected period ) Line on main chart. It also draw 3 up ATR channels (ATRu) and 3 down ATR channels (ATRd) on the same window. All they helps you to trade with a ATR indicator. There are 6 extern inputs; PeriodsATR   : You can change ATR Period default is 13. MA_Periods   : Use for draw ATR channels MA periods. Default is 34. MA_Type       : You can change MA_method here. Default is Linear weighted. Mult_Factor1 : It is for first up and d
    Käufer dieses Produkts erwarben auch
    Gann Made Easy
    Oleg Rodin
    4.81 (118)
    Gann Made Easy ist ein professionelles und einfach zu bedienendes Forex-Handelssystem, das auf den besten Handelsprinzipien unter Verwendung der Theorie von Mr. basiert. W.D. Gann. Der Indikator liefert genaue KAUF- und VERKAUFSsignale, einschließlich Stop-Loss- und Take-Profit-Levels. Mit PUSH-Benachrichtigungen können Sie auch unterwegs handeln. Bitte kontaktieren Sie mich nach dem Kauf! Ich werde meine Handelstipps und tolle Bonusindikatoren kostenlos mit Ihnen teilen! Wahrscheinlich haben Si
    Cycle Maestro
    Stefano Frisetti
    NOTE: CYCLEMAESTRO is distributed only on this website, there are no other distributors. Demo version is for reference only and is not supported. Full versione is perfectly functional and it is supported CYCLEMAESTRO , the first and only indicator of Cyclic Analysis, useful for giving signals of TRADING, BUY, SELL, STOP LOSS, ADDING. Created on the logic of Serghei Istrati and programmed by Stefano Frisetti ; CYCLEMAESTRO is not an indicator like the others, the challenge was to interpret only t
    Scalper Inside PRO
    Alexey Minkov
    4.76 (63)
    !SPECIAL SALE! An exclusive indicator that utilizes an innovative algorithm to swiftly and accurately determine the market trend. The indicator automatically calculates opening, closing, and profit levels, providing detailed trading statistics. With these features, you can choose the most appropriate trading instrument for the current market conditions. Additionally, you can easily integrate your own arrow indicators into Scalper Inside Pro to quickly evaluate their statistics and profitability
    Gold Stuff
    Vasiliy Strukov
    4.86 (257)
    Gold Stuff-Ein Trendindikator, der speziell für Gold entwickelt wurde, kann auch auf allen Finanzinstrumenten verwendet werden. Der Indikator wird nicht neu gezeichnet und verzögert sich nicht. Empfohlener Zeitrahmen H1. Nach diesem Indikator geschrieben EA Gold Stuff Berater, können Sie es in meinem Profil finden. WICHTIG! Kontaktieren Sie mich sofort nach dem Kauf, um Anweisungen und Bonus zu erhalten!   Sie können eine kostenlose Kopie unseres Strong Support- und Trendscanner-Indikators er
    Derzeit 20% Rabatt! Die beste Lösung für jeden Neueinsteiger oder Expert Händler! Dieses Dashboard arbeitet mit 28 Währungspaaren. Es basiert auf 2 unserer Hauptindikatoren (Advanced Currency Strength 28 und Advanced Currency Impulse). Es bietet einen hervorragenden Überblick über den gesamten Forex-Markt. Es zeigt die Werte der Advanced Currency Strength, die Veränderungsrate der Währungen und die Signale für 28 Devisenpaare in allen (9) Zeitrahmen. Stellen Sie sich vor, wie sich Ihr Handel
    M1 Arrow
    Oleg Rodin
    5 (17)
    Eine Intraday-Strategie, die auf zwei Grundprinzipien des Marktes basiert. Der Algorithmus basiert auf der Analyse von Volumina und Preiswellen mit zusätzlichen Filtern. Der intelligente Algorithmus des Indikators gibt nur dann ein Signal, wenn sich zwei Marktfaktoren zu einem vereinen. Der Indikator berechnet Wellen eines bestimmten Bereichs auf dem M1-Diagramm unter Verwendung der Daten des höheren Zeitrahmens. Und um die Welle zu bestätigen, verwendet der Indikator eine Volumenanalyse. Dieser
    Golden Trend Indicator
    Noha Mohamed Fathy Younes Badr
    5 (10)
    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
    Trend Screener
    STE S.S.COMPANY
    4.78 (93)
    Trendindikator, bahnbrechende, einzigartige Lösung für Trendhandel und -filterung mit allen wichtigen Trendfunktionen in einem Tool! Es handelt sich um einen 100 % nicht neu zu malenden Multi-Timeframe- und Multi-Währungs-Indikator, der für alle Symbole/Instrumente verwendet werden kann: Forex, Rohstoffe, Kryptowährungen, Indizes und Aktien. ZEITLICH BEGRENZTES ANGEBOT: Der Support- und Resistance-Screener-Indikator ist für nur 50 $ und lebenslang verfügbar. (Ursprünglicher Preis 250 $) (Angebot
    GOLD Impulse with Alert
    Bernhard Schweigert
    4.6 (10)
    Dieser Indikator ist eine hervorragende Kombination aus unseren 2 Produkten Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics . Es funktioniert für alle Zeitrahmen und zeigt grafisch Impulse der Stärke oder Schwäche für die 8 wichtigsten Währungen plus ein Symbol! Dieser Indikator ist darauf spezialisiert, die Beschleunigung der Währungsstärke für beliebige Symbole wie Gold, Exotische Paare, Rohstoffe, Indizes oder Futures anzuzeigen. Als erster seiner Art kann jedes Symbol
    Algo Pumping MT4
    Ihor Otkydach
    5 (6)
    PUMPING STATION – Ihre persönliche „All-inclusive“-Strategie Wir präsentieren Ihnen PUMPING STATION – einen revolutionären Forex-Indikator, der Ihr Trading in eine spannende und effektive Erfahrung verwandeln wird. Es handelt sich nicht nur um ein Hilfsmittel, sondern um ein vollwertiges Handelssystem mit leistungsstarken Algorithmen, die Ihnen helfen, stabiler zu traden. Beim Kauf dieses Produkts erhalten Sie KOSTENLOS: Exklusive Set-Dateien: Für automatische Einrichtung und maximale Leistung.
    Enigmera
    Ivan Stefanov
    5 (7)
    ENIGMERA: Der Kern des Marktes Wichtig: Die MQL5.com-Demo wird im Strategy Tester ausgeführt und spiegelt möglicherweise nicht vollständig die Funktionalität von Enigmera wider. Überprüfen Sie die Beschreibung, Screenshots und das Video für Details. Zögern Sie nicht, mir bei Fragen eine Nachricht zu senden! Der Code des Indikators wurde vollständig neu geschrieben. Version 3.0 fügt neue Funktionen hinzu und behebt Fehler, die seit der Einführung des Indikators aufgetreten sind. Einführung Dies
    TPSproTREND PrO
    Roman Podpora
    4.68 (25)
    VERSION MT5        —        ИНСТРУКЦИЯ RUS           —        INSTRUCTIONS  ENG Hauptfunktionen: Präzise Eingangssignale OHNE RENDERING! Wenn ein Signal erscheint, bleibt es relevant! Dies ist ein wichtiger Unterschied zu Redraw-Indikatoren, die ein Signal liefern und es dann ändern können, was zu einem Verlust des eingezahlten Geldes führen kann. Jetzt können Sie mit größerer Wahrscheinlichkeit und Genauigkeit in den Markt eintreten. Es gibt auch eine Funktion zum Einfärben der Kerzen nach de
    Easy Breakout
    Mohamed Hassan
    5 (11)
    After your purchase, feel free to contact me for more details on how to receive a bonus indicator called VFI, which pairs perfectly with Easy Breakout for enhanced confluence!   Easy Breakout is a powerful price action trading system built on one of the most popular and widely trusted strategies among traders: the Breakout strategy ! This indicator delivers crystal-clear Buy and Sell signals based on breakouts from key support and resistance zones. Unlike typical breakout indicators, it levera
    Dynamic Forex28 Navigator
    Bernhard Schweigert
    5 (5)
    Dynamic Forex28 Navigator – Das Forex-Handelstool der nächsten Generation AKTUELL 49 % RABATT. Dynamic Forex28 Navigator ist die Weiterentwicklung unserer seit langem beliebten Indikatoren und vereint die Leistung von drei in einem: Advanced Currency Strength28 Indicator (695 Bewertungen) + Advanced Currency IMPULSE mit ALERT (520 Bewertungen) + CS28 Combo Signals (Bonus) Details zum Indikator https://www.mql5.com/en/blogs/post/758844 Was bietet der Strength Indicator der nächsten Generation?
    IX Power MT4
    Daniel Stein
    4.78 (9)
    IX Power: Markteinblicke für Indizes, Rohstoffe, Kryptowährungen und Forex Überblick IX Power ist ein vielseitiges Tool zur Analyse der Stärke von Indizes, Rohstoffen, Kryptowährungen und Forex-Symbolen. Während FX Power die höchste Präzision für Währungspaare bietet, indem es alle verfügbaren Paardaten einbezieht, konzentriert sich IX Power ausschließlich auf die Marktdaten des zugrunde liegenden Symbols. Dies macht IX Power zu einer hervorragenden Wahl für Nicht-Forex-Märkte und zu einem zuv
    Stratos Pali
    Michela Russo
    5 (2)
    Stratos Pali Indicator   is a revolutionary tool designed to enhance your trading strategy by accurately identifying market trends. This sophisticated indicator uses a unique algorithm to generate a complete histogram, which records when the trend is Long or Short. When a trend reversal occurs, an arrow appears, indicating the new direction of the trend. Important Information Revealed Leave a review and contact me via mql5 message to receive My Top 5 set files for Stratos Pali at no cost! Dow
    Scalper Vault
    Oleg Rodin
    5 (29)
    Scalper Vault ist ein professionelles Scalping-System, das Ihnen alles bietet, was Sie für erfolgreiches Scalping benötigen. Dieser Indikator ist ein komplettes Handelssystem, das von Forex- und Binäroptionshändlern verwendet werden kann. Der empfohlene Zeitrahmen ist M5. Das System liefert Ihnen genaue Pfeilsignale in Richtung des Trends. Es liefert Ihnen auch Top- und Bottom-Signale und Gann-Marktniveaus. Die Indikatoren bieten alle Arten von Warnungen, einschließlich PUSH-Benachrichtigungen.
    RelicusRoad Pro
    Relicus LLC
    4.63 (104)
    Jetzt 147 US -Dollar (nach ein paar Aktualisierungen auf 499 US -Dollar) - Unbegrenzte Konten (PCs oder MACs) RelicusRoad Benutzerhandbuch + Schulungsvideos + Zugang zur privaten Discord-Gruppe + VIP-Status EINE NEUE ART, DEN MARKT ZU BETRACHTEN RelicusRoad ist der weltweit leistungsstärkste Handelsindikator für Forex, Futures, Kryptowährungen, Aktien und Indizes und gibt Händlern alle Informationen und Tools, die sie benötigen, um profitabel zu bleiben. Wir bieten technische Analysen und Ha
    - Real price is 80$ - 40% Discount (It is 49$ now) - Lifetime update free Contact me for instruction, add group and any questions! Related Products:  Bitcoin Expert , Gold Expert - Non-repaint - I just sell my products in Elif Kaya profile, any other websites are stolen old versions, So no any new updates or support. 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 design
    Advanced Supply Demand
    Bernhard Schweigert
    4.91 (294)
    Derzeit 33% Rabatt! Die beste Lösung für jeden Anfänger oder erfahrenen Händler! Dieser Indikator ist ein einzigartiges, qualitativ hochwertiges und erschwingliches Trading-Tool, da wir eine Reihe von proprietären Funktionen und eine neue Formel integriert haben. Mit diesem Update werden Sie in der Lage sein, doppelte Zeitrahmenzonen anzuzeigen. Sie können nicht nur einen höheren TF (Zeitrahmen) anzeigen, sondern sowohl den Chart-TF als auch den höheren TF: SHOWING NESTED ZONES. Alle Supply Dema
    Beast Super Signal
    Dustin Vlok
    4.73 (89)
    Suchen Sie nach einem leistungsstarken Indikator für den Devisenhandel, der Ihnen dabei helfen kann, profitable Handelsmöglichkeiten mit Leichtigkeit zu erkennen? Suchen Sie nicht weiter als das Beast Super Signal. Dieser benutzerfreundliche trendbasierte Indikator überwacht kontinuierlich die Marktbedingungen, sucht nach neuen sich entwickelnden Trends oder springt auf bestehende Trends ein. Das Beast Super Signal gibt ein Kauf- oder Verkaufssignal, wenn alle internen Strategien aufeinander ab
    FX Power MT4 NG
    Daniel Stein
    4.94 (18)
    FX Power: Analysieren Sie die Stärke von Währungen für intelligentere Handelsentscheidungen Übersicht FX Power ist Ihr unverzichtbares Werkzeug, um die tatsächliche Stärke von Währungen und Gold unter allen Marktbedingungen zu verstehen. Indem Sie starke Währungen kaufen und schwache verkaufen, vereinfacht FX Power Ihre Handelsentscheidungen und deckt Chancen mit hoher Wahrscheinlichkeit auf. Ob Sie Trends folgen oder extreme Delta-Werte nutzen, um Umkehrungen zu prognostizieren, dieses Tool p
    KT Renko Patterns MT4
    KEENBASE SOFTWARE SOLUTIONS
    2.33 (3)
    KT Renko Patterns analysiert das Renko-Diagramm Stein für Stein, um bekannte Chartmuster zu finden, die häufig von Händlern an verschiedenen Finanzmärkten verwendet werden. Im Vergleich zu zeitbasierten Charts ist das Handeln mit Mustern auf Renko-Charts einfacher und deutlicher, da sie weniger überladen wirken. KT Renko Patterns enthält mehrere Renko-Muster, von denen viele ausführlich im Buch "Profitable Trading with Renko Charts" von Prashant Shah erklärt werden. Ein vollständig automatisie
    Quantum Breakout Indicator PRO
    Bogdan Ion Puscasu
    4.96 (26)
    Wir stellen vor       Quantum Breakout PRO   , der bahnbrechende MQL5-Indikator, der die Art und Weise, wie Sie mit Breakout-Zonen handeln, verändert!   Quantum Breakout PRO   wurde von einem Team erfahrener Händler mit über 13 Jahren Handelserfahrung entwickelt und soll Ihre Handelsreise mit seiner innovativen und dynamischen Breakout-Zonen-Strategie auf ein neues Niveau bringen. Der Quantum Breakout Indicator zeigt Ihnen Signalpfeile auf Breakout-Zonen mit 5 Gewinnzielzonen und Stop-Loss-Vo
    MTF Supply Demand Zones
    Georgios Kalomoiropoulos
    4.82 (22)
    Automatisierte Angebots- und Nachfragezonen der nächsten Generation. Neuer und innovativer Algorithmus, der bei jedem Diagramm funktioniert. Alle Zonen werden dynamisch entsprechend der Preisbewegung des Marktes erstellt. ZWEI ARTEN VON WARNUNGEN --> 1) WENN DER PREIS EINE ZONE ERREICHT 2) WENN EINE NEUE ZONE BILDET WIRD Sie erhalten keinen weiteren nutzlosen Indikator. Sie erhalten eine vollständige Handelsstrategie mit nachgewiesenen Ergebnissen.     Neue Eigenschaften:     Warnungen, w
    FX Levels MT4
    Daniel Stein
    5 (2)
    FX Levels: Außerordentlich präzise Unterstützungs- und Widerstandszonen für alle Märkte Kurzüberblick Suchen Sie eine verlässliche Methode, um Support- und Resistance-Level in jedem Markt zu identifizieren—egal ob Währungspaare, Indizes, Aktien oder Rohstoffe? FX Levels vereint die traditionelle „Lighthouse“-Methode mit einem modernen dynamischen Ansatz und bietet nahezu universelle Genauigkeit. Durch unsere Erfahrung mit echten Brokern sowie automatischen täglichen und Echtzeit-Updates hilft
    Probieren Sie "Chart Patterns All in One" im Demo-Modus aus und erhalten Sie einen Bonus. Senden Sie mir eine Nachricht, nachdem Sie es im Demo-Modus getestet haben, um Ihren Bonus zu erhalten. Hinterlassen Sie nach dem Kauf einen Kommentar, um 8 hochwertige Indikatoren als Bonus zu erhalten. Der Chart Patterns All-in-One Indikator hilft Tradern, verschiedene Chartmuster, die häufig in der technischen Analyse verwendet werden, zu visualisieren. Dieser Indikator unterstützt die Identifizierung m
    Apollo Secret Trend ist ein professioneller Trendindikator, der verwendet werden kann, um Trends für jedes Paar und jeden Zeitrahmen zu finden. Der Indikator kann leicht zu Ihrem primären Handelsindikator werden, mit dem Sie Markttrends erkennen können, unabhängig davon, welches Paar oder welchen Zeitrahmen Sie bevorzugen. Durch die Verwendung eines speziellen Parameters im Indikator können Sie die Signale an Ihren persönlichen Handelsstil anpassen. Der Indikator bietet alle Arten von Warnungen,
    Reversal Master
    Alexey Minkov
    4.92 (13)
    !SPECIAL SALE! The Reversal Master is an indicator for determining the current direction of price movement and reversal points. The indicator will be useful for those who want to see the current market situation better. The indicator can be used as an add-on for ready-made trading systems, or as an independent tool, or to develop your own trading systems. The Reversal Master indicator, to determine the reversal points,  analyzes a lot of conditions since the combined analysis gives a more accura
    FX Volume
    Daniel Stein
    4.6 (35)
    FX Volume: Erleben Sie den echten Marktüberblick aus der Sicht eines Brokers Kurzüberblick Möchten Sie Ihre Handelsstrategie auf das nächste Level bringen? FX Volume liefert Ihnen Echtzeit-Einblicke in die Positionierung von Retail-Tradern und Brokern — lange bevor verzögerte Berichte wie der COT verfügbar sind. Ob Sie nach beständigen Gewinnen streben oder einfach einen tieferen Vorteil am Markt suchen, FX Volume hilft Ihnen, große Ungleichgewichte zu erkennen, Breakouts zu bestätigen und Ihr
    Weitere Produkte dieses Autors
    To get access to MT5 version please click   here . This is the exact conversion from TradingView: "ZLSMA - Zero Lag LSMA" by "veryfid". 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
    To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Hull Suite" By "Insilico". - The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. - 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 tra
    This is the Chandelier Exit trend indicator applied to heiken ashi candles based on "G TREND GUNBOT" by "LUIS_GANDATA_G_TREND" on tradingview. The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms.(make sure to disable heiken ashi mode to get the same results as the screenshot.) 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
    FREE
    To get access to MT4 version please click here . This is the exact conversion from TradingView: "Supertrend" by " KivancOzbilgic ". The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. 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 tra
    To download MT4 version please click here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
    FREE
    To download MT5 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. This is a sample EA code that operates based on bullish and bearish linear regression candles . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input string     Risk_Management= "" ; input double fixed_lot_size=
    To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Twin Range Filter" by "colinmck". - The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. - 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 b
    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
    Strategy description Detect trend based on GoldTrader rules. Enter in both direction as much as needed to achieve acceptable amount of profit. The screenshot is the backtest EURUSD related to 2020.1.1 to 2023.1.1 in M15. ==> 30% draw-down and 30% profit over three years. This is a light load expert. Most calculations are done based on M15 candle closure. Note: Martingale is a betting system.
    FREE
    GoldTrader
    Yashar Seyyedin
    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
    To get access to MT5 version please click   here . This is the exact conversion from TradingView: "Hammer & ShootingStar Candle Detector" by "MoriFX". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
    FREE
    To download MT5 version please click  here . 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
    ADX and DI
    Yashar Seyyedin
    To download MT5 version please click here . This is the exact conversion from TradingView indicator: "ADX and DI" By " BeikabuOyaji". This is probably the most popular implementation of Average Directional Index available. This indicator lets you read the buffers as below: index 0: DIPlusBuffer ==> Green Line by default index 1: DIMinusBuffer ==> Red Line by default index 2: ADXBuffer ==> Navy Line by default - You can message in private chat for further changes you need. Note: This is a non-rep
    To get access to MT5 version please click here . - This is a conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. note: Color filled areas and colored candles are not supported in MT4 version. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; inp
    To get access to MT5 version please click here . - This is the exact conversion from TradingView: "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 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 download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. - 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
    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.
    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
    To get access to MT5 version please click here . This is the exact conversion from TradingView: "SwingArm ATR Trend Indicator" by " vsnfnd ". The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. 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
    This is MacroTrendTrader. It trades in DAILY time frame even if you run it on lower time frames. It opens/closes trades once per day at a specific time that you choose via input tab: - "param(1-5)" are optimization parameters. - "Open/Close Hour" is set via input tab. Make sure to choose this to be away from nightly server shutdown. - "high risk" mode if chosen, sets a closer stop loss level. Therefore higher lot sizes are taken.  This is a light load EA from processing point of view. Calculatio
    FREE
    To download MT4 version please click here . 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 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
    - 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 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
    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
    To download MT5 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,16,17 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 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 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
    Auswahl:
    Golden Joy
    139
    Golden Joy 2023.07.16 18:31 
     

    waiting for you to export it as EA, I am used to trading with this indicator, and I love it

    Yashar Seyyedin
    49684
    Antwort vom Entwickler Yashar Seyyedin 2023.07.16 18:47
    Thanks for the positive review. Wish you happy trading.
    Antwort auf eine Rezension
    Version 1.50 2023.05.29
    alerts are back.
    Version 1.40 2023.05.29
    a serious bug fix!
    Version 1.30 2023.02.22
    push notifications added.
    Version 1.20 2023.02.14
    Added Alert details: Time Frame and Symbol
    Version 1.10 2023.02.14
    Added Alerts option.