• 概述
  • 评论 (1)
  • 评论 (3)
  • 新特性

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



    评论 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

    推荐产品
    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
    PRO Fibonacci Tool MT4
    Samil Bozuyuk
    5 (1)
    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 MT4
    Young Ho Seo
    4 (7)
    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
    PZ Penta O MT4
    PZ TRADING SLU
    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
    黃牛終端介面軟體是一個指標,它不從事自動買賣交易。 此指標顯示當前交易區域,當出現剝頭皮交易機會時可以進入交易。 當出現倒賣訊號時,相關交易對的右側,綠松石色燈亮起,並在其上方寫有確切的交易方向。 之後,點擊綠松石按鈕即可進入交易。 將開啟一個新分頁。 隨後,預計蠟燭收盤,這是進入倒賣交易的條件。 為了透過黃牛終端進行成功的黃牛交易; 請務必觀看說明部分中的影片。 像士兵一樣堅持使用黃牛終端軟體 。 每個交易對的右側有 5M、15M 和 DIRECTION 欄。 首先,點擊“通知”按鈕並將其設為綠色。 您無需一直注視著螢幕。 只需等待綠松石燈訊號或 Metatrader 警報訊息聲音即可。 閱讀上面寫的確切操作方向(也是方向欄文字),它是綠松石色的。 在確切的交易方向上,點擊綠松石按鈕進行倒賣。 在為剝頭皮交易打開的新選項卡中,像獵人一樣等待 pinbar 或吞噬蠟燭關閉。 當 pinbar 或吞沒蠟燭收盤是建倉條件時,按照黃牛終端指示的方向建倉。 在與持倉入場方向相反的一側添加止損單。 (例如,如果是多頭交易,則止損單的位置是最後收盤蠟燭的最低價位。) 然後,將您的止盈訂單新增
    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)
    可以说,这是您可以为MetaTrader平台找到的最完整的谐波价格形成自动识别指标。它检测19种不同的模式,像您一样认真对待斐波那契投影,显示潜在的反转区域(PRZ),并找到合适的止损和获利水平。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 它检测19种不同的谐波价格形态 它绘制了主要,衍生和互补的斐波那契投影(PRZ) 它评估过去的价格走势并显示每个过去的形态 该指标分析其自身的质量和性能 它显示合适的止损和获利水平 它使用突破来表明合适的交易 它在图表上绘制所有样式比率 它实现了电子邮件/声音/视觉警报 受斯科特·M·卡尼(Scott M. Carney)的书的启发,该指标旨在满足最纯粹和最熟练的交易者的需求。但是,它采取了一种使交易更容易的方式:在向交易发出信号之前,它会等待Donchian朝正确方向突破,从而使交易信号非常可靠。 斐波那契投影与向量无关 它实现了电子邮件/声音/推送警报 它绘制了ABCD投影 重要提示: 为了符合 Scott M. Carney先生 的商标申诉,某些图案名称已重命名为不言自明的替代方式, Scott M.
    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)
    123模式 是最受欢迎,功能强大和灵活的图表模式之一。该模式由三个价格点组成:底部,峰值或谷值以及38.2%至71.8%之间的斐波纳契回撤位。当价格突破最后一个峰值或谷值时,该形态被认为是有效的,此时指标绘制箭头,发出警报并可以进行交易。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 清除交易信号 可自定义的颜色和尺寸 实施绩效统计 可定制的斐波那契回撤水平 显示适当的止损和获利水平 该指标可用于查找连续或反转形态 它是不可重涂和不可重涂的 它实现了电子邮件/声音/视觉警报 123模式 可以表现为连续或反转模式。为了简化操作,该指标使您可以选择要寻找哪种类型的形态,使其成为趋势或反转交易者的绝佳工具。 设置 将指标加载到任何图表时,将显示一组选项作为输入参数。如果您认为它们太多,请不要感到失望,因为参数被分组为不言自明的块。这就是每个参数块的作用。 幅度-幅度表示替代价格点之间的最小柱线量。要找到大图案,请增加幅度参数。要查找较小的模式,请减小幅度参数。 闵。回撤-形态中所需的最小斐波那契回撤。设置为零不对其进行评估。 最大。回撤-形态中可能的最大斐
    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
    Harmonic Pattern Plus MT4
    Young Ho Seo
    4.44 (18)
    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
    该产品的买家也购买
    Gann Made Easy
    Oleg Rodin
    4.8 (116)
    Gann Made Easy 是一个专业且易于使用的外汇交易系统,它基于使用先生理论的最佳交易原则。 W.D.江恩。该指标提供准确的买入和卖出信号,包括止损和获利水平。您甚至可以使用推送通知在旅途中进行交易。 购买后请联系我!我将免费与您分享我的交易技巧和丰厚的红利指标! 您可能已经多次听说过江恩交易方法。通常 Gann 的理论不仅对于新手交易者而且对于那些已经有一定交易经验的人来说都是非常复杂的东西。这是因为江恩的交易方法在理论上并不那么容易应用。我花了几年时间来完善这些知识,并将最好的原则应用到我的外汇指标中。 该指标非常易于应用。您所需要的只是将其附加到您的图表并遵循简单的交易建议。该指标不断进行市场分析工作并寻找交易机会。当它检测到一个好的入口点时,它会为您提供一个箭头信号。该指标还显示止损和获利水平。 换句话说,当您像先生一样进行交易时,该指标会为您提供最佳江恩建议。江恩亲自告诉你此时此刻该做什么。但最好的部分是您不需要了解任何有关江恩交易原则的知识,因为该指标会为您完成整个市场分析工作。
    目前八折优惠! 对任何新手或专家交易者来说都是最好的解决方案! 这个仪表板软件适用于28种货币对。它基于我们的两个主要指标(高级货币强度28和高级货币冲动)。它对整个外汇市场提供了一个伟大的概述。它显示高级货币强度值,货币运动速度和28个外汇对在所有(9)时间段的信号。想象一下,当你可以使用图表上的单一指标观察整个市场,以确定趋势和或剥头皮的机会时,你的交易将得到改善 我们已经在这个指标中建立了一些功能,使你更容易识别强势和弱势货币,同时识别和确认潜在的交易。该指标以图形方式显示货币的强势或弱势是增加还是减少,以及它在所有时间段的表现。 增加的新功能是动态市场斐波那契水平,它适应当前的市场条件变化,这是一个已经在我们的高级货币强度28和高级货币冲动指标中使用的成熟的加分项。 在交易时,总是将弱势货币和强势货币配对,这个新指标将帮助你做到这一点。 用户手册:点击这里  https://www.mql5.com/en/blogs/post/708783 特点  显示每个时间段的ACS28和GAP-speed(冲动)的货币强度值。 列:颜色代码以7种颜色显示货币强度:强势
    Gold Stuff
    Vasiliy Strukov
    4.86 (254)
    Gold Stuff 是专为黄金设计的趋势指标,也可用于任何金融工具。 该指标不会重绘,也不会滞后。 推荐时间框架 H1。 在它指标工作全自动专家顾问 EA Gold Stuff。 你可以在我的个人资料中找到它。 重要! 购买后立即与我联系,以获得说明和奖金!   您可以免费收到我们的强力支持和趋势扫描指标的副本,请私信。大部头书! 购买后立即联系我以获得设置和个人奖励!   设置 绘制箭头 - 打开关闭。 在图表上绘制箭头。 警报 - 打开关闭声音警报。 电子邮件通知 - 打开关闭。 电子邮件通知。 Puch-notification - 打开关闭。 推送通知。 接下来,调整色域。 Gold Stuff 是专为黄金设计的趋势指标,也可用于任何金融工具。 该指标不会重绘,也不会滞后。 推荐时间框架 H1。 在它指标工作全自动专家顾问 EA Gold Stuff。 你可以在我的个人资料中找到它。 购买后立即联系我以获得设置和个人奖励!   设置 绘制箭头 - 打开关闭。 在图表上绘制箭头。 警报 - 打开关闭声音警报。 电子邮件通知 - 打开关闭。 电子邮件通知。 Puch
    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 - 基于市场的两个基本原则的盘中策略。 该算法基于使用附加过滤器对交易量和价格波动的分析。该指标的智能算法仅在两个市场因素合二为一时才会发出信号。该指标使用较高时间框架的数据计算 M1 图表上某个范围的波浪。为了确认波浪,该指标使用了成交量分析。 从理论上讲,该指标可以与其他时间框架一起使用,但您需要考虑到该指标最初是为在 M1 上交易而开发的这一事实。 该指标是一个现成的交易系统。交易者所需要的只是跟随信号。此外,该指标可以成为您自己的交易系统的基础。交易仅在分钟图表上进行。 尽管指标使用 MTF 原理,但指标算法尽可能稳定。 购买后,一定要写信给我!我将与您分享我的交易设置和建议!祝您交易成功!感谢您的关注!
    Dynamic Forex28 Navigator
    Bernhard Schweigert
    5 (5)
    Dynamic Forex28 Navigator - 下一代外汇交易工具。 当前 49% 折扣。 Dynamic Forex28 Navigator 是我们长期流行的指标的演变,将三种功能合二为一: 高级货币强度 28 指标 (695 条评论)+ 高级货币 IMPULSE 带警报 (520 条评论)+ CS28 组合信号(奖励)。 有关指标的详细信息 https://www.mql5.com/en/blogs/post/758844 下一代强度指标提供什么? 您喜欢的原始指标的一切,现在通过新功能和更高的精度进行了增强。 主要特点: 专有货币强度公式。  所有时间范围内的平滑和准确的强度线。 非常适合识别趋势和精确进入。 动态市场斐波那契水平(市场斐波那契)。  此指标独有的独特功能。 斐波那契应用于货币强度,而不是价格图表。 适应实时市场活动以获得准确的反转区域。 实时市场动量。  第 9 行显示市场是活跃还是被动。 对于定时交易至关重要。 全面的警报和显示。  每种货币最强的买入和卖出动量。 ​​28 对的双重动量买入和卖出。 超买/超卖警告外部范围和止损。 反转
    Scalper Vault
    Oleg Rodin
    5 (29)
    Scalper Vault 是一个专业的剥头皮系统,为您提供成功剥头皮所需的一切。该指标是一个完整的交易系统,可供外汇和二元期权交易者使用。推荐的时间范围是 M5。 该系统为您提供趋势方向的准确箭头信号。它还为您提供顶部和底部信号以及江恩市场水平。无论您拥有何种交易经验,该系统都易于使用。您只需要遵循简单的规则并每天重复该过程。 建议将此系统用于主要货币对。感谢您的关注! 请注意,该指标在策略测试器中可能无法正常工作。因此,我建议仅在模拟或真实账户的真实交易条件下使用该系统。 指示器提供所有类型的警报,包括推送通知。 购买指标后请与我联系。我将免费与您分享我的个人交易建议和出色的奖励指标! 祝您交易愉快,盈利!
    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 – 您的专属“全包式”交易策略 我们为您推出PUMPING STATION —— 一款革命性的外汇指标,它将使您的交易变得更加有趣且高效。这不仅仅是一个辅助工具,而是一套完整的交易系统,具备强大的算法,帮助您开始更加稳定的交易。 购买本产品,您将免费获得: 专属设置文件:用于自动配置,实现最大化性能。 逐步视频教程:学习如何使用PUMPING STATION策略进行交易。 Pumping Utility:专为PUMPING STATION打造的半自动交易机器人,让交易变得更加方便和简单。 购买后请立即联系我,我将为您提供所有额外资源的访问权限。 PUMPING STATION如何工作: 趋势监控:能够即时识别市场趋势方向。趋势是您最好的朋友。 进场信号:图表上的箭头会提示您何时进场以及交易方向。 明确的交易目标:指标会自动识别最佳的平仓时机。 回调交易:内置的基于布林带的价格通道可检测修正结束并发出新趋势开始的信号。 效率分析:如果当前设置效果较差,系统会自动提示。只需调整PUMPING STATION,即可获得最佳性能。 功能强大: 推送和邮件通知:即
    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)
    趋势指标,趋势交易和过滤的突破性独特解决方案,所有重要趋势功能都内置在一个工具中! 它是 100% 非重绘多时间框架和多货币指标,可用于所有符号/工具:外汇、商品、加密货币、指数、股票。 限时优惠:支撑和阻力筛选指标仅售 50美元,终身有效。(原价 250 美元)(优惠延长) 趋势筛选器是有效的指标趋势跟踪指标,它在图表中提供带有点的箭头趋势信号。 趋势分析器指标中可用的功能: 1.趋势扫描仪。 2. 具有最大利润分析的趋势线。 3.趋势货币强度计。 4. 带有警报的趋势反转点。 5. 带有警报的强趋势点。 6. 趋势箭头 每日分析示例,每日信号表现...等与我们的趋势筛选指标,可以在这里找到: 点击这里 限时优惠:Trend Screener Indicator 仅售 50 美元且终身可用。原价 125$) 通过访问我们的 MQL5 博客,您可以找到我们所有的高级指标以及分析示例、每日信号表现...等。 : 点击这里 我们的趋势系统由 2 个指标组成: 1. Trend Screener Indicator:显示趋势仪表盘、图表中的趋势线、入场点...等。 2. Trend
    Enigmera
    Ivan Stefanov
    5 (7)
    ENIGMERA: 市场的核心 重要提示:MQL5.com 演示版本在策略测试器中运行,可能无法完全反映 Enigmera 的功能。请查看描述、截图和视频了解详细信息。如有任何问题,请随时联系我! 该指标的代码已完全重写。版本 3.0 增加了新功能并修复了自指标发布以来积累的错误。 简介 这个指标和交易系统是金融市场的一种独特方法。ENIGMERA 使用分形周期来精确计算支撑和阻力水平。它展示了真实的积累阶段,并提供了方向和目标。无论是在趋势中还是在修正中,这个系统都能工作。 它是如何工作的 指标的大部分功能通过图表左侧的按钮控制,使得能够快速响应不同的市场情况。 按钮 ON/OFF – 显示或隐藏整个指标。 Channel – 激活支撑通道,显示可接受的偏差范围。 Dev1 (第一偏差) – 指示价格在支撑偏差内的波动,信号表示市场正在整合或积累力量。 Dev2 (第二偏差) – 显示价格在偏差之间的波动,表示趋势形成和方向。 Dev3 (第三偏差) – 表示趋势的显著加速和高波动性。 45deg (45度) – 显示市场的节奏和相对于 45 度线的运动稳定性。 Tgt1/2
    Apollo Secret Trend
    Oleg Rodin
    5 (6)
    Apollo Secret Trend 是一个专业的趋势指标,可用于查找任何货币对和时间范围内的趋势。该指标可以轻松成为您的主要交易指标,无论您喜欢交易什么货币对或时间框架,您都可以使用它来检测市场趋势。通过在指标中使用特殊参数,您可以使信号适应您的个人交易风格。 该指标提供所有类型的警报,包括推送通知。指示器的信号不要重绘!在提供的屏幕截图中,您可以看到 Apollo Secret Trend 指标与超买/超卖振荡器指标相结合,我将完全免费为您提供。该交易系统可用于日间交易、剥头皮和长期交易。 购买后请联系我免费获得第二个超买超卖震荡指标!我还将为您提供有关如何使用该系统的说明。我还将与您分享丰厚的奖金! 祝您交易愉快,盈利!感谢您的关注!
    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
    成交量突破震荡指标是一种以震荡指标的形式将价格变动与成交量趋势相匹配的指标。 我想将成交量分析整合到我的策略中,但大多数成交量指标都令我失望, 例如 OBV、资金流量指数、A/D,还有成交量加权 Macd 和许多其他指标。 因此,我为自己编写了这个指标,我对它的实用性感到满意,因此我决定将其发布到市场上。 主要特点: 它突出显示了价格在成交量增加(突破)支持下朝某个方向移动的阶段。 它突出显示了成交量增加停止并因此市场收缩的阶段。 它突出显示了价格和成交量均未移动的阶段,尤其是在时间范围(<=15 分钟)的日内交易中,因此市场已为未来的运行做好准备。 当其他 EA 交易程序发出的虚假信号不受交易量增加的支持时,可过滤掉这些信号。 它使趋势和范围阶段可视化变得非常容易 输入参数: 计算设置: 计算类型:快速、正常、慢速,用于监控短期、中期和长期,保持在同一时间范围内。 计算周期:计算周期 交易量设置: 交易量类型:TickVolume(主要用于外汇)和RealVolume(用于股票市场) 信号设置: 信号周期:信号线周期 突破水平:突破信号的阈值水平 警报设置 警报类型:收盘
    - 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)
    向您介绍一款优秀的技术指标——Grabber,它是一套即开即用的“全包式”交易策略。 在一个代码中集成了强大的市场技术分析工具、交易信号(箭头)、提醒功能和推送通知。 每位购买该指标的用户还可免费获得以下内容: Grabber辅助工具:用于自动管理已开仓位 视频操作指南:逐步教学如何安装、设置和使用该指标进行交易 原创Set文件:可快速自动配置,帮助实现最佳交易效果 忘掉其他策略吧!只有Grabber能够真正激励你在交易中攀登新高峰! Grabber策略的主要特点: 交易周期:从M5到H4 适用资产:任意,但我推荐我亲自测试过的品种(GBPUSD、GBPCAD、GBPCHF、AUDCAD、AUDUSD、AUDSGD、AUDCHF、NZDUSD、NZDCAD、EURCAD、EURUSD、EURAUD、EURGBP、EURCHF、USDCAD、USDSGD) 交易时间:全天候 24/7 交易效果:我分享自己的真实交易结果,并在此教学如何操作: https://www.mql5.com/ru/market/product/134563?source=Site+Market+MT5+Indic
    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   - 這是最好的股票技術指標。 此指標演算法分析資產的價格變動並反映波動性和潛在的進入區域。 指標特點: 這是一個帶有 Magic 和兩個趨勢箭頭塊的超級指標,可實現舒適且有利可圖的交易。 圖表上顯示用於切換方塊的紅色按鈕。 Magic 在指標設定中進行設置,以便您可以將指標安裝在顯示不同區塊的兩個圖表上。 Gold Venamax 可以放置在具有不同箭頭緩衝區(GV 和 SD)的兩個圖表上。 為此,您需要在設定中選擇不同的 Magic,例如,一個具有 Magic = 999,另一個具有 Magic = 666。接下來,您可以使用圖表上的紅色按鈕選擇箭頭緩衝區。 指標設定中的每個箭頭緩衝區(GV и SD)都有一個單獨的箭頭過濾器,以實現舒適且有利可圖的交易(UseFiltrGV = true; 和 UseFiltrSD = true;)。 進入的最佳訊號 = 遵循兩個緩衝區的訊號箭頭(GV 和 SD)+ 所有三個 MA 線(紅色或藍色)的方向 + TMA 通道邊界(下或上) 。 TMA 通道邊界(下限或上限)也可用於鎖定利潤和/或以較短的停損位進行逆
    GOLD Impulse with Alert
    Bernhard Schweigert
    4.6 (10)
    这个指标是我们2个产品 Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics 的一个超级组合。 它适用于所有时间框架,并以图形方式显示8种主要货币和一种符号的强势或弱势冲动! 该指标专门用于显示任何符号的货币强度加速,如黄金、异国货币对、商品、指数或期货。这是它的第一个指标,任何符号都可以被添加到第9行,以显示黄金、白银、石油、DAX、US30、MXN、TRY、CNH等的真实货币强度加速(冲动或速度)。 建立在新的基础算法上,它使识别和确认潜在的交易更加容易。这是因为它以图形方式显示了一种货币的强势或弱势是否正在加速,并测量了这种加速的速度--把它想象成你汽车中的速度表。当你加速时,事情显然会发生得更快,这在外汇市场上也是一样的,即如果你配对的货币正在向相反的方向加速,你就会发现一个潜在的有利可图的交易。 动态市场斐波那契28水平被用作警报触发器,将适应市场活动。如果冲动击中黄色触发线,你将收到警报。然后你就知道作为一个交易员应该做什么。货币对和方向已经给出。只需点击警报按钮,就可以切换到该货
    FX Volume
    Daniel Stein
    4.6 (35)
    FX Volume:从经纪商视角洞察真实市场情绪 简要概述 想要提升您的交易策略? FX Volume 可提供零售交易者和经纪商的持仓实时数据——远早于诸如 COT 之类的延迟报告。不论您希望获得持续稳定的收益,还是想在市场中多一分制胜的砝码, FX Volume 都能帮您识别重大失衡、确认突破以及完善风险管理。立即开启体验,让真实的成交量数据为您的交易决策带来革新! 1. 为什么 FX Volume 对交易者格外有用 极具准确度的早期预警 • 快速捕捉有多少交易者正在买入或卖出某个货币对——比大多数人提前一步。 • FX Volume 是 唯一 能够整合多家零售经纪商真实成交量数据并以简洁方式呈现的工具。 强力风险管理 • 及时识别多头或空头仓位的巨大不平衡,这往往预示着潜在的趋势反转,帮助您更自信地设置止损和目标位。 • 独家而真实的数据让每一次交易决策更具可靠性。 优化进场与出场点 • 发现“过度集中”的交易(大多数交易者都在同一方向),并通过真实成交量来确认突破。 • 避免依赖常见指标可能带来的误导信号,而是利用真实的实时成交量。 适配各种交易策略 • 将 FX
    Max Min Cycle
    Vitalyi Belyh
    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:分析货币强度,助您做出更明智的交易决策 概述 FX Power 是一款专业工具,帮助您全面了解主要货币和黄金在任何市场条件下的真实强度。通过识别强势货币用于买入,弱势货币用于卖出, FX Power 简化了交易决策,并帮助您发现高概率的交易机会。不论您是想跟随趋势还是通过极端的 Delta 值预测反转,这款工具都能完美适应您的交易风格。别再盲目交易——用 FX Power 让您的交易更加智慧。 1. 为什么 FX Power 对交易者极具价值 实时货币和黄金强度分析 • FX Power 实时计算并显示主要货币和黄金的相对强度,助您全面了解市场动态。 • 监控领先或落后资产,轻松识别值得交易的货币对。 全面的多时间框架视图 • 跟踪短期、中期和长期时间框架的货币和黄金强度,以便将您的交易策略与市场趋势保持一致。 • 无论是快进快出的短线交易还是更长期的投资策略, FX Power 都能为您提供所需的信息。 Delta 动态分析用于趋势和反转 • 极端 Delta 值常常预示反转机会,而平缓的 Delta 变化则确认趋势延续。 • 使用 Delta 分析,轻
    Gold Buster M1 System - 是 XAUUSD 货币对 M1 图表的专业交易系统。但是,尽管该系统最初是专门为交易黄金而开发的,但该系统也可以与其他一些货币对一起使用。购买后,我会给你一个除了XAUUSD之外,可以和系统一起使用的交易对列表,这将扩大你使用这个系统的可能性 系统中的所有指标都不会重复! 该系统是一组三个指标。它是一个趋势指标、箭头指标和成交量指标,直观地显示了市场的强弱。 购买后,您可以立即下载趋势指标。我将免费为您提供剩余的两个指标,因为它们是整个系统的一部分。我还将为您提供一个模板,您可以使用该模板在图表上加载指标。此外,我将教你如何使用我的系统进行交易并分享我的建议。还有丰厚的红利等着你! 购买后请务必立即写信给我!
    Chart Patterns All in One
    Davit Beridze
    4.68 (19)
    以演示模式试用 "Chart Patterns All in One" 并获得奖励。试用后,请发送消息给我以领取奖励。 购买后留言即可获得8个高质量的指标作为赠品。 Chart Patterns All-in-One 指标帮助交易者可视化技术分析中常用的各种图表形态。它帮助识别潜在的市场行为,但不保证盈利。建议在购买前在模拟模式下测试该指标。 当前优惠 : “Chart Patterns All in One” 指标享受 50% 折扣。 包含的形态 : 1-2-3 形态 :通过三个关键点(高点或低点)检测市场反转。 买入 :连续两个低点后出现较低的高点。 卖出 :连续两个高点后出现较高的低点。 可视化 :线条和箭头连接识别的点。 双顶和双底 :当价格形成两个连续的高点(双顶)或低点(双底)且它们大致相等时,表明反转趋势。 双顶 :看跌反转。 双底 :看涨反转。 可视化 :线条连接峰值或低谷,箭头标记反转点。 三顶和三底 :与双顶/双底类似,但有三个连续的高点或低点,信号更强的反转趋势。 三顶 :看跌反转。 三底 :看涨反转。 可视化 :线条和箭头标记形态。 三角形 :在趋势延续前识别
    TPSproTREND PrO
    Roman Podpora
    4.68 (25)
    VERSION MT5        —        ИНСТРУКЦИЯ RUS           —        INSTRUCTIONS  ENG 主要功能: 准确的输入信号,无需渲染! 如果出现信号,它仍然相关!这是与重提指标的一个重要区别,重提指标可以提供信号然后改变信号,这可能导致存款资金的损失。现在您可以以更高的概率和准确度进入市场。还有一个功能是在箭头出现后为蜡烛着色,直到达到目标(止盈)或出现反转信号。 显示止损/获利区域 为了提高搜索切入点时的视觉清晰度,创建了一个模块,该模块最初显示买入/卖出区域,在该区域中搜索进入市场的最佳点。用于处理止损水平的附加智能逻辑有助于随着时间的推移减小其大小,从而降低进入交易(移动 sl)时的初始风险。 显示较高时间范围内的最小值/最大值(MTF 模式) 添加了一项功能,可以显示较高时间间隔的最小/最大校正位置,并显示趋势变化。此外,MIN/MAX 现在有编号,显示修正内容。 风险回报率 (RR) 使用指标算法,可以检测精确的入场点,平均风险回报比超过1k2。这也伴随着视觉效果,例如,收到信号后会出现蜡烛的彩色草图。 无论价
    Order Blocks ICT Multi TF MT4
    Diego Arribas Lopez
    5 (2)
    [ 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
    黄金趋势   - 这是一个很好的股票技术指标。该指标算法分析资产的价格走势,并反映波动性和潜在进入区。 最佳指标信号: - 卖出 = 红色柱状图 + 红色短指针 + 同方向黄色信号箭头。 - 买入 = 蓝色柱状图 + 蓝色多头指针 + 同方向水蓝色信号箭头。 该指标的优点 1. 该指标生成的信号准确度高。 2. 只有当趋势发生变化时,才能重新绘制已确认的箭头信号。 3. 您可以在任何经纪商的 MetaTrader 4 交易平台上进行交易。 4. 您可以交易任何资产(货币、金属、加密货币、股票、指数等)。 5. 最好在 H1 时间框架(中期交易)上进行交易。 6. 在指标设置中可更改个别参数(TF、颜色等),以便每位交易者都能轻松定制适合自己的指标。 7. 该指标既可作为交易系统的主要补充,也可作为独立的交易系统使用。   注意:交易的入場準確性和盈利能力僅取決於交易者的技能。 任何指標都只是交易者的助手,而不是行動指南。黃金法則 - 根據趨勢開單,獲利並等待下一個最佳訊號。 MetaTrader 5 黄金趋势指标版本  祝大家交易好运,稳定盈利!
    波浪同步器是波浪分析的可视化指标。结合蜡烛图运动序列并构建定向波浪,与市场一起产生同步运动。 每个波浪的开始都以信号箭头开始,还有警报。 该指标永远不会重绘或移动先前历史记录上的箭头。 信号箭头出现在蜡烛图的收盘价。 适用于任何交易工具和时间框架。 易于使用和配置,仅包含 2 个输入参数:选择与所选参数一起使用的时间框架和计算 MA 线的方法。 推荐的参数可以移动 1-2 个周期。 红色箭头方向用于购买交易资产。 蓝色箭头方向用于出售交易资产。 ----------------------------------------------------------------------------------------------
    PZ Order Block
    PZ TRADING SLU
    订单块的个人实现,一种简单而有效的头寸交易策略。如果价格范围没有在与突破相反的方向被突破,则交易者应进入市场或在最后一个订单块的方向上寻找交易。为清楚起见,未绘制开放块。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 一个看涨的开盘是在一个新的市场低点之后的第一个看涨柱 看跌的开盘是在新的市场高点之后的第一个看跌柱 当打开的块被破坏时出现信号,成为订单块 当一个订单块被打破到相反的一侧时,它就变成了一个反转块 该指标实施各种警报 它不会重新粉刷或重新粉刷 输入参数 周期:创建新高或新低所需的柱线数量。较小的值会产生更多的信号。 最小 ATR 过滤器:订单块栏的最小主体尺寸,表示为 ATR 的乘数。 Max ATR Filter:订单块的最大主体尺寸,表示为 ATR 的乘数。 颜色:设置线条和箭头的颜色和大小。 警报:启用显示/电子邮件/推送/声音警报。 支持和问题 使用帮助台解决问题或及时获得支持。写一封电子邮件至:help@pointzero-trading.com。 作者 Arturo López Pérez,私人投资者和投机者、软件工程师和 P
    作者的更多信息
    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
    Volume Oscillator
    Yashar Seyyedin
    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
    Full Pack Moving Average
    Yashar Seyyedin
    4 (2)
    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
    筛选:
    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
    来自开发人员的回复 Yashar Seyyedin 2023.07.16 18:47
    Thanks for the positive review. Wish you happy trading.
    回复评论
    版本 1.50 2023.05.29
    alerts are back.
    版本 1.40 2023.05.29
    a serious bug fix!
    版本 1.30 2023.02.22
    push notifications added.
    版本 1.20 2023.02.14
    Added Alert details: Time Frame and Symbol
    版本 1.10 2023.02.14
    Added Alerts option.