• Overview
  • Reviews (1)
  • Comments (3)
  • What's new

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;
    }
    



    Reviews 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

    Recommended products
    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. 
    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
    Scalper Terminal interface software is an indicator, it does not engage in automatic buy-sell transactions. This indicator shows the current trading zone where transactions can be entered when a scalping trade opportunity occurs. When there is a scalping signal, on the right side of the relevant trading pair, the Turquoise light turns on and the exact trading direction is written above it. After that, click on the Turquoise button to enter the transaction. A new tab opens. Afterwards, candle clo
    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)
    Trade smarter, not harder: Empower your trading with Harmonacci Patterns 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 | Update Guide | Troubleshooting | FAQ | All Products ] It detects 19 different harmonic pric
    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)
    Unlock powerful breakout opportunities The 123 Pattern is one of the most popular, powerful and flexible chart patterns. The pattern is made up of three price points: a bottom, a peak or valley, and a Fibonacci retracement between 38.2% and 71.8%. A pattern is considered valid when the price breaks beyond the last peak or valley, moment at which the indicator plots an arrow, rises an alert, and the trade can be placed. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ]
    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
    PinBar Hunter
    Dmitrijs Ivanajevs
    PinBar Hunter — Your reliable assistant for trading the Pin Bar pattern! High Accuracy Signals This indicator automatically identifies bullish and bearish pin bars, instantly displaying clear arrows on the chart for convenient entry into trades. Flexible Signal Filters Utilize built-in time and Moving Average (MA) filters to receive only the highest quality and most reliable trading signals. Convenient Information Panel All indicator settings and current statuses are always at han
    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
    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
    TSO Bollinger Bandit Strategy is an indicator based on the Bollinger Bandit Trading Strategy as presented in the book Building Winning Trading Systems with TradeStation by G. Pruitt and J. R. Hill. SCANNER is included . Now with Scanner you can find trading opportunities and setups easily and faster. Features A complete entry and exit strategy for trending markets. Get email / push notifications when an entry signal occurs. The indicator is not repainting. Can easily be used in an EA. (see For
    Contact me for instruction, any questions! Introduction Chart patterns   are an essential tool traders and investors use to analyze the future price movements of securities. One such pattern is the triple bottom or the triple top pattern, which can provide valuable insights into potential price reversals. This pattern forms when a security reaches a low   price level   three times before reversing upward or reaches a high price level three times before reversing downward.   Triple Top Bottom P
    Buyers of this product also purchase
    Gann Made Easy
    Oleg Rodin
    4.8 (116)
    Gann Made Easy is a professional and easy to use Forex trading system which is based on the best principles of trading using the theory of W.D. Gann. The indicator provides accurate BUY and SELL signals including Stop Loss and Take Profit levels. You can trade even on the go using PUSH notifications. PLEASE CONTACT ME AFTER PURCHASE TO GET MY TRADING TIPS PLUS A GREAT BONUS! Probably you already heard about the Gann trading methods before. Usually the Gann theory is a very complex thing not only
    Currently 20% OFF ! Best Solution for any Newbie or Expert Trader! This dashboard software is working on 28 currency pairs plus one. It is based on 2 of our main indicators (Advanced Currency Strength 28 and Advanced Currency Impulse). It gives a great overview of the entire Forex market plus Gold or 1 indices. It shows Advanced Currency Strength values, currency speed of movement and signals for 28 Forex pairs in all (9) timeframes. Imagine how your trading will improve when you can watch the e
    Gold Stuff
    Vasiliy Strukov
    4.86 (254)
    Gold Stuff is a trend indicator designed specifically for gold and can also be used on any financial instrument. The indicator does not redraw and does not lag. Recommended time frame H1. At it indicator work full auto  Expert Advisor EA Gold Stuff. You can find it at my profile. Contact me immediately after the purchase to get   personal bonus!  You can get a free copy of our Strong Support and Trend Scanner indicator, please pm. me! Settings  and manual here  Please note that I do not sell my
    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
    M1 Arrow
    Oleg Rodin
    5 (17)
    M1 Arrow is an indicator which is based on natural trading principles of the market which include volatility and volume analysis. The indicator can be used with any time frame and forex pair. One easy to use parameter in the indicator will allow you to adapt the signals to any forex pair and time frame you want to trade. The Arrows DO NOT REPAINT and DO NOT LAG! The algorithm is based on the analysis of volumes and price waves using additional filters. The intelligent algorithm of the indicator
    Dynamic Forex28 Navigator
    Bernhard Schweigert
    5 (5)
    Specials Discount now. The Next Generation Forex Trading Tool. Dynamic Forex28 Navigator is the evolution of our long-time, popular indicators, combining the power of three into one: Advanced Currency Strength28 Indicator (695 reviews) + Advanced Currency IMPULSE with ALERT (520 reviews) + CS28 Combo Signals (recent Bonus) Details about the indicator  https://www.mql5.com/en/blogs/post/758844 What Does The Next-Generation Strength Indicator Offer? Everything you loved about the originals, now
    Scalper Vault
    Oleg Rodin
    5 (29)
    Scalper Vault is a professional scalping system which provides you with everything you need for successful scalping. This indicator is a complete trading system which can be used by forex and binary options traders. The recommended time frame is M5. The system provides you with accurate arrow signals in the direction of the trend. It also provides you with top and bottom signals and Gann market levels. The indicator provides all types of alerts including PUSH notifications. PLEASE CONTACT ME AFT
    Golden Trend Indicator
    Noha Mohamed Fathy Younes Badr
    4.9 (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
    Algo Pumping MT4
    Ihor Otkydach
    5 (4)
    PUMPING STATION – Your Personal All-inclusive strategy Introducing PUMPING STATION — a revolutionary Forex indicator that will transform your trading into an exciting and effective activity! This indicator is not just an assistant but a full-fledged trading system with powerful algorithms that will help you start trading more stable! When you purchase this product, you also get FOR FREE: Exclusive Set Files: For automatic setup and maximum performance. Step-by-step video manual: Learn how to tra
    Easy Breakout
    Mohamed Hassan
    4.73 (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
    Trend Screener
    STE S.S.COMPANY
    4.78 (93)
    Unlock the Power of Trends Trading with the Trend Screener Indicator: Your Ultimate Trend Trading Solution powered by Fuzzy Logic and Multi-Currencies System! Elevate your trading game with the Trend Screener, the revolutionary trend indicator designed to transform your Metatrader into a powerful Trend Analyzer. This comprehensive tool leverages fuzzy logic and integrates over 13 premium features and three trading strategies, offering unmatched precision and versatility. LIMITED TIME OFFER : Sup
    Enigmera
    Ivan Stefanov
    5 (7)
    ENIGMERA: The core of the market The indicator’s code has been completely rewritten. Version 3.0 adds new functionalities and removes bugs that had accumulated since the indicator’s inception. Introduction This indicator and trading system is a remarkable approach to the financial markets . ENIGMERA uses the fractal cycles to accurately calculate support and resistance levels. It shows the authentic accumulation phase and gives direction and targets.  A system that works whether we are in a tre
    Apollo Secret Trend is a professional trend indicator which can be used to find trends on any pair and time frame. The indicator can easily become your primary trading indicator which you can use to detect market trends no matter what pair or time frame you prefer to trade. By using a special parameter in the indicator you can adapt the signals to your personal trading style. The indicator provides all types of alerts including PUSH notifications. The signals of the indicator DO NOT REPAINT! In
    Lux Trend
    Mohamed Hassan
    5 (3)
    After purchase, please contact me to get your trading tips + more information for a great bonus!   Lux Trend is a professional strategy based on using Higher Highs and Lower Highs to identify and draw Trendline Breakouts! Lux Trend  utilizes two Moving Averages to confirm the overall trend direction before scanning the market for high-quality breakout opportunities, ensuring more accurate and reliable trade signals. This is a proven trading system used by real traders worldwide, demonstrating
    Volume Break Oscillator is an indicator that matches price movement with volume trends in the form of an oscillator. I wanted to integrate volume analysis into my strategies but I have always been disappointed by most volume indicators, such as OBV, Money Flow Index, A/D but also as Volume Weighted Macd and many others. I therefore wrote this indicator for myself, I am satisfied with how useful it is, and therefore I decided to publish it on the market. Main features: It highlights the phase
    - 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
    Grabber System MT4
    Ihor Otkydach
    5 (1)
    Let me introduce you to an excellent technical indicator – Grabber, which works as a ready-to-use "All-Inclusive" trading strategy. Within a single code, it integrates powerful tools for technical market analysis, trading signals (arrows), alert functions, and push notifications. Every buyer of this indicator also receives the following for free: Grabber Utility for automatic management of open orders Step-by-step video guide: how to install, configure, and trade with the indicator Custom set fi
    Volatility Trend System - a trading system that gives signals for entries. The volatility system gives linear and point signals in the direction of the trend, as well as signals to exit it, without redrawing and delays. The trend indicator monitors the direction of the medium-term trend, shows the direction and its change. The signal indicator is based on changes in volatility and shows market entries. The indicator is equipped with several types of alerts. Can be applied to various trading ins
    Gold Venamax MT4
    Sergei Linskii
    2 (1)
    Gold Venamax - this is a best stock technical indicator. The indicator algorithm analyzes the price movement of an asset and reflects volatility and potential entry zones. Indicator features: This is a super indicator with Magic and two Blocks of trend arrows for comfortable and profitable trading. Red Button for switching blocks is displayed on the chart. Magic is set in the indicator settings, so that you can install the indicator on two charts displaying different Blocks. Gold Venamax can be
    GOLD Impulse with Alert
    Bernhard Schweigert
    4.6 (10)
    This indicator is a super combination of our 2 products  Advanced Currency IMPULSE with ALERT  and  Currency Strength Exotics . It works for all time frames and shows graphically impulse of strength or weakness for the 8 main currencies plus one Symbol! This Indicator is specialized to show currency strength acceleration for any symbols like Gold, Exotic Pairs, Commodities, Indexes or Futures. Is first of its kind, any symbol can be added to the 9th line to show  true currency strength accelerat
    FX Volume
    Daniel Stein
    4.6 (35)
    FX Volume: Experience Genuine Market Sentiment from a Broker’s Perspective Quick Overview Looking to elevate your trading approach? FX Volume provides real-time insights into how retail traders and brokers are positioned—long before delayed reports like the COT. Whether you’re aiming for consistent gains or simply want a deeper edge in the markets, FX Volume helps you spot major imbalances, confirm breakouts, and refine your risk management. Get started now and see how genuine volume data can
    Cyclical indicator for trading and predicting the direction of the market. Shows the cyclical behavior of the price in the form of an oscillator. Gives signals for opening deals when rebounding from the upper and lower boundaries of the oscillator. In the form of a histogram, it shows the smoothed strength of the trend. Will complement any trading strategy, from scalping to intraday. The indicator does not redraw. Suitable for use on all symbols/instruments. Suitable time frames for short-term t
    FX Power MT4 NG
    Daniel Stein
    4.94 (18)
    FX Power: Analyze Currency Strength for Smarter Trading Decisions Overview FX Power is your go-to tool for understanding the real strength of currencies and Gold in any market condition. By identifying strong currencies to buy and weak ones to sell, FX Power simplifies trading decisions and uncovers high-probability opportunities. Whether you’re looking to follow trends or anticipate reversals using extreme delta values, this tool adapts seamlessly to your trading style. Don’t just trade—trade
    Gold Buster M1 System is an easy to use tool for the XAUUSD pair. But, despite the fact that the system was originally developed exclusively for trading gold, the system can also be used with some other currency pairs like GBPUSD, USDJPY and some others. After the purchase, I will give you a list of trading pairs that can be used with the system in addition to XAUUSD, which will expand your possibilities for using this system. Moreover the system can be used with various time frames. ALL INDICAT
    Chart Patterns All in One
    Davit Beridze
    4.68 (19)
    Try "Chart Patterns All in One" Demo and get Bonus. Send me message after trying demo to get Bonus. Leave a Comment after purchase to get 8 high quality indicators as Bonus. The Chart Patterns All-in-One indicator helps traders visualize various chart patterns commonly used in technical analysis. It supports identifying potential market behaviors, but profitability is not guaranteed. Testing in demo mode is recommended before purchasing. Current Offer : 50% discount on the "Chart Patterns All
    TPSproTREND PrO
    Roman Podpora
    4.68 (25)
    VERSION MT5        —        ИНСТРУКЦИЯ RUS           —        INSTRUCTIONS  ENG Main functions: Accurate entry signals WITHOUT REPAINTING! Once a signal appears, it remains valid! This is a significant distinction from repainting indicators that might provide a signal and then alter it, potentially leading to deposit losses. Now, you can enter the market with higher probability and precision. There's also a function to color candles after an arrow appears until the target (take profit) is reache
    [ MT5 Version ]  [ Kill Zones ]  [ SMT Divergences ] How to trade using Order Blocks:  Click here User Interface Performance:  During testing in the strategy tester, the UI may experience lag. Rest assured, this issue is specific to the testing environment and does not affect the indicator's performance in live trading. Elevate your trading strategy with the  Order Blocks ICT Multi TF  indicator, a cutting-edge tool designed to enhance your trading decisions through advanced order block analys
    Gold Trend 4
    Sergei Linskii
    Gold Trend - this is a good stock technical indicator. The indicator algorithm analyzes the price movement of an asset and reflects volatility and potential entry zones. The best indicator signals: For SELL = red histogram + red SHORT pointer + yellow signal arrow in the same direction. For BUY = blue histogram + blue LONG pointer + aqua signal arrow in the same direction. Benefits of the indicator: The indicator produces signals with high accuracy. A confirmed arrow signal can only be redrawn
    Wave Synchronizer is a visual indicator of wave analysis. Combines candlestick movement sequences and builds directional waves, producing synchronous movements together with the market. The beginning of each wave begins with a signal arrow, there are also alerts. The indicator will never redraw or move the arrows on the previous history. Signal arrows appear at the close of the candle. Adapts to work with any trading instruments and time frames. Easy to use and configure, contains only 2 input
    Early reversals made easy A personal implementation of Order Blocks, a simple yet effective position trading strategy. The trader should enter the market or look for trades in the direction of the last order block, if the price range has not been breached in the opposite direction of the breakout. Open blocks are not drawn for clarity. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] A bullish open block is the first bullish bar after a fresh market low A bearish ope
    More from author
    Hull Suite By Insilico
    Yashar Seyyedin
    5 (2)
    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
    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 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 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
    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
    Vortex Indicator
    Yashar Seyyedin
    5 (1)
    To download MT4 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
    FREE
    To download MT5 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. This is a sample EA code that operates based on bullish and bearish linear regression candles . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input string     Risk_Management= "" ; input double fixed_lot_size=
    To get access to MT5 version please click here . - This is a conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. note: Color filled areas and colored candles are not supported in MT4 version. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; inp
    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
    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
    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.
    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
    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 MT4 version please click here . - This is the exact conversion from TradingView: "Stochastic Momentum Index" By "UCSgears". - This is a popular version of stochastic oscillator on tradingview. - This is a light-load processing and non-repaint indicator. - Buffers are available for the lines on chart. - You can message in private chat for further changes you need. Thanks for downloading
    To download the MT5 version of Donchian Trend Ribbon please click here . You may also check this link . This is a conversion from TradingView: "Donchian Trend Ribbon" By "LonesomeTheBlue". This is a light-load processing and non-repaint indicator. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks for downloading
    To get access to MT4 version please click here . This is the exact conversion from TradingView: "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 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 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
    To get access to MT5 version please click   here . This is the exact conversion from TradingView: "Hammer & ShootingStar Candle Detector" by "MoriFX". This is a light-load processing and non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
    FREE
    To download MT5 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
    FREE
    - 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
    MacroTrendTrader
    Yashar Seyyedin
    This is MacroTrendTrader. It trades in DAILY time frame even if you run it on lower time frames. It opens/closes trades once per day at a specific time that you choose via input tab: - "param(1-5)" are optimization parameters. - "Open/Close Hour" is set via input tab. Make sure to choose this to be away from nightly server shutdown. - "high risk" mode if chosen, sets a closer stop loss level. Therefore higher lot sizes are taken.  This is a light load EA from processing point of view. Calculatio
    FREE
    To download MT4 version please click here . This is the exact conversion from TradingView: "RSI versus SMA" By "JayRogers". This indicator lets you read the buffers for all Lines on chart.  Note: This is an indicator, Not an expert. Meaning It does not take trades. If you want the EA please contact via message. You can easily use the indicator to understand the logic behind trades that the TradingView strategy takes. The strategy is profitable if this indicator is applied to the right symbol at
    FREE
    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
    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 . 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
    Filter:
    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
    48967
    Reply from developer Yashar Seyyedin 2023.07.16 18:47
    Thanks for the positive review. Wish you happy trading.
    Reply to review
    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.