• 概述
  • 评论
  • 评论
  • 新特性

Nadaraya Watson Envelope LuxAlgo

To get access to MT4 version click here.

  • This is the exact conversion from "Nadaraya-Watson Envelope" by "LuxAlgo". (with non-repaint input option)
  • This is not a light-load processing indicator if repaint input is set to true.
  • All input options are available. 
  • Buffers are available for processing in EAs.
  • I changed default input setup to non-repaint mode for better performance required for mql market validation procedure.

Here is the source code of a simple Expert Advisor operating based on signals from this indicator.

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

input group "EA Setting"
input int magic_number=123456; //magic number
input double fixed_lot_size=0.01; // select fixed lot size
input bool multiplie_entry=false; //allow multiple entries in the same direction

input group "nw setting"
input double h = 8.;//Bandwidth
input double mult = 3; //
input ENUM_APPLIED_PRICE src = PRICE_CLOSE; //Source
input bool repaint = false; //Repainting Smoothing


int OnInit()
  {
   trade.SetExpertMagicNumber(magic_number);
   handle_nw=iCustom(_Symbol, PERIOD_CURRENT, "Market/Nadaraya Watson Envelope LuxAlgo", h, mult, src, repaint);
   if(handle_nw==INVALID_HANDLE) 
   {
      Print("Indicator not found!");
      return INIT_FAILED;
   }
   return(INIT_SUCCEEDED);
  }

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

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

bool IsNWBuy(int i)
{
   double array[];
   ArraySetAsSeries(array, true);
   CopyBuffer(handle_nw, 5, i, 1, array);
   return array[0]!=EMPTY_VALUE;
}

bool IsNWSell(int i)
{
   double array[];
   ArraySetAsSeries(array, true);
   CopyBuffer(handle_nw, 6, i, 1, array);
   return array[0]!=EMPTY_VALUE;
}

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

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


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

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


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

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

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


推荐产品
This indicator closes the positions when Profit. This way you can achieve a goal without determine Take Profit.  Parameters: Profit: the amount of Dolllars you want to close when profit.  Just determine Profit section and open new positions. If Any of your positions reaches above Profit , Indicator will close automatically and you will recieve your Profit. 
To get access to MT4 version please click here . This is the exact conversion from TradingView:"HIGH AND LOW Optimized Trend TrackerHL OTT" by "kivancozbilgic" This is a light-load processing indicator. It is a non-repaint indicator. All input options are available.  Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
About indicator > The indicator is a function based on one value (open/high prices up to now) and then it is a mathematical representation of the whole function that is totally independent from any else values. So, if you ask yourself will the future be as it is on the graph... I can tell you - as it was the same as the trading function up to the moment "now"... In conclusion, the point of the indicator is  to try to show the future of the trading function into eternity. The graphic is sometim
For MT4 version please click here . - This is the exact conversion from TradingView source: "Hurst Cycle Channel Clone Oscillator" By "LazyBear". - All input options are available. - This is a non-repaint and light processing load indicator. - Buffers are available for use in EAs and optimization purposes. - You can message in private chat for further changes you need.
RoboTick Signal
Mahir Okan Ortakoy
Hello, In this indicator, I started with a simple moving average crossover algorithm. However, in order ot get more succesfull results, I created different scenarios by basin the intersections and aptimized values of the moving averages on opening, closing, high and low values. I am presenting you with the most stable version of the moving averages that you have probably seen in any environment. We added a bit of volume into it. In my opinion, adding the Bollinger Band indicator from the ready-
XFlow
Maxim Kuznetsov
XFlow shows an expanding price channel that helps determine the trend and the moments of its reversal. It is also used when accompanying transactions to set take profit/stop loss and averages. It has practically no parameters and is very easy to use - just specify an important moment in the history for you and the indicator will calculate the price channel. DISPLAYED LINES ROTATE - a thick solid line. The center of the general price rotation. The price makes wide cyclical movements around the
RubdFx Spike
Namu Makwembo
Rubdfx Spike Indicator 1.5: Updated for Strategic Trading The Rubdfx Spike Indicator is developed to aid traders in identifying potential market reversals and trends. It highlights spikes that indicate possible upward or downward movements, helping you observe when a trend may continue. A trend is identified when a buy or sell spike persists until the next opposite spike appears. Key Features: Versatility: Any Timeframe Adaptability: Designed   to work on all Timeframes however Recommended for
Market Session Pro
Kambiz Shahriarynasab
The  Market Sessions Indicator for MT5 helps you  predict market turnarounds  by detecting major supply and demand areas. These pivot points tend to occur after a new session has started and the previous one is still open. It is also used to gauge how many points or pips the market moves on average during a session. This helps us to place better our take profits and stop losses. The indicator works on all forex pairs, gold, silver, commodities, stocks, indices and any other instrument that your
- This is an implementation of OCC ==> open close cross - This indicator applies twelve different averaging methods to open and close prices separately to signal the trend switching. - All MA methods are set as input as well as period and different offsets applied to linear regression and ALMA averaging. - Buffers 16 and 17 can be used in EAs to detect trend direction. - You can message in private chat for further changes you need.
Volume Trade Levels
Mahmoud Sabry Mohamed Youssef
The idea behind this indicator is very simple , First it contains 2 mechanisms to place your trades: 1- Enter the Pips you want to duplicate to price levels. 2- Automatically let the indicator specify the largest Buy / Sell Volume Candle and place duplicated levels based on the candle itself. How it works: 1- Enter the Pips you want to duplicate to price levels:    1- once the indicator is loaded you will need first to Specify the number of pips in the indicator Configuration window ,you can
ShortBS
Yan Qi Zhu
ShortBS是一个很好的短线交易指示器,能很好与 BestPointOfInitiation ( https://www.mql5.com/zh/market/product/96671 )配合,能让你找到最合适的buy和sell位置,指标不含有未来函数,不会重新绘制。是一个针对(如果你感觉到这个指标能够帮助你进行更准确的交易,请帮忙给个好评,希望我的作品能够帮助更多有需要的人) ===================参数列表===================== maPeriod: 25 slowPeriod:20 fastPeriod:10 stepPeriod:5 =================参考使用方法=================== 此指标可以适用于任何交易品种,能够用在任何周期。
CChart
Rong Bin Su
在外汇和金融市场中,快速反应和精准的决策至关重要。然而,常规的 MetaTrader 5 终端最低只支持 1 分钟图表,限制了交易者对市场波动的敏感度。为了解决这一问题,我们推出了全新的 秒级图表 K 线指标 ,让您在副图中轻松查看和分析 1 秒至 30 秒的市场动态。 主要功能 支持多种秒级周期 :该指标允许您选择以下周期,满足不同交易策略的需求: S1 : 1 秒 S2 : 2 秒 S3 : 3 秒 S4 : 4 秒 S5 : 5 秒 S10 : 10 秒 S15 : 15 秒 S20 : 20 秒 S30 : 30 秒 实时更新 :秒级图表将实时更新,确保您在每一刻都能获取到最新的市场信息,帮助您做出及时的交易决策。 用户友好的界面 :该指标在副图中显示,直观易用,您可以轻松切换不同的时间周期,快速分析市场走势。 适用人群 短线交易者 :适合高频交易和短线策略的交易者,通过秒级图表捕捉瞬息万变的市场机会。 技术分析师 :为技术分析提供更细致的数据支持,帮助您识别潜在的买入和卖出信号。 如何使用 将指标添加到您的图表上。 选择您希望观察的秒级时间周期。 实时监控市场动向,利用丰
To get access to MT4 version please click   here . This is the exact conversion from TradingView: QQE MT4 Glaz-modified by JustUncleL This is a light-load processing and non-repaint indicator. All input options are available. This is not a multi time frame indicator. Buffers are available for processing in EAs. You can message in private chat for further changes you need.
Buy Sell Visual MTF
Naththapach Thanakulchayanan
This MT5 indicator, Bull Bear Visual MTF (21 Time Frames), summarize the strength color graphic and percentages of power for both  Bull and Bear in current market emotion stage which will show you in multi time frames and sum of the total Bull and Bear power strength which is an important information for traders especially you can see all Bull and Bear power in visualized graphic easily, Hope it will be helpful tool for you for making a good decision in trading.
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. Thanks
PriceActionOracle
Vitalii Zakharuk
The PriceActionOracle indicator greatly simplifies your trading decision-making process by providing accurate signals about market reversals. It is based on a built-in algorithm that not only recognizes possible reversals, but also confirms them at support and resistance levels. This indicator embodies the concept of market cyclicality in a form of technical analysis. PriceActionOracle tracks the market trend with a high degree of reliability, ignoring short-term fluctuations and noise around
The indicator determines a special pattern of Joe Dinapoli. It gives very high probability buy and sell signals. Indicator does not repaint. Indicator Usage Buy Signal ''B'' Entry : Market buy order at signal bar close Stop : Low of signal bar Take Profit : First swing high Sell Signal ''S'' Entry : Market sell order at signal bar close Stop : High of signal bar Take Profit : First swing low Indicator Parameters Fast EMA : External Parameter (should be kept as default) Slow EMA: External Param
[ MT4 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 analysis
This is a two in one indicator implementation of Average Directional Index based on heiken ashi and normal candles. Normal candles and Heiken Ashi is selectable via input tab. The other inputs are ADX smoothing and DI length. This indicator lets you read the buffers: +di: buffer 6 -di: buffer 7 -adx: buffer 10 Note: This is a non-repaint indicator with light load processing. - You can message in private chat for further changes you need.
CAD Sniper X MT5
Mr James Daniel Coe
4.9 (10)
BUILDING ON THE SUCCESS OF MY POPULAR FREE EA 'CAD SNIPER'... I PRESENT CAD SNIPER X! THOUSANDS MORE TRADES | NO BROKER LIMITATIONS | BETTER STATISTICS | MULTIPLE STRATEGIES Send me a PRIVATE MESSAGE after purchase for the manual and a free bonus TWO STRATEGIES IN ONE FOR AUDCAD, NZDCAD, GBPCAD and CADCHF Strategy 1 can be used with any broker, trades much more frequently and is the default strategy for CAD Sniper X. It's shown robust backtest success for many years and is adapted
Boom 600 Precision Spike Detector The Boom 600 Precision Spike Detector is your ultimate tool for trading the Boom 600 market with precision and confidence. Equipped with advanced features, this indicator helps you identify potential buy opportunities and reversals, making it an essential tool for traders aiming to capture spikes with minimal effort. Key Features: Non-Repainting Signals: Accurate, non-repainting signals that you can trust for reliable trading decisions. Audible Alerts: Stay on t
Explosive Breakout Hunter 是一款旨在通过捕捉强劲突破来最大化收益的智能交易系统(EA)。 尽管胜率约为50%,且每月的交易次数有限,但它更注重质量而非数量。 耐心等待最佳交易机会,稳步积累大幅获利。 您可以通过回测结果的截图了解该EA的潜在盈利能力。 此外,您还可以免费试用EA的演示版,亲自体验其效果。 安装非常简单,无需更改任何设置。 EA可以在大多数使用GMT+2(包括夏令时)的经纪商服务器上正常运行,且无需额外调整。如果您的经纪商服务器时间不同,也可以通过EA属性轻松调整。 必要条件: 交易货币对:   USDJPY 时间周期:   1小时图 交易时间:   东欧时间(EET)7:00至12:00 推荐条件: 最低初始资金: $1,000 杠杆: 最低1:25(推荐1:100) 使用VPS: 建议通过VPS确保EA全天候稳定运行 中长期策略: 本EA以中长期收益最大化为优势,建议至少运行1年,甚至更长时间! 回测参数: 回测时间: 2014年1月1日至2024年11月30日 初始资金: $5,000 杠杆比例: 1:100 账户资金风险比例: 5%
Trend dashboard MT5
Jan Flodin
5 (1)
当识别出强劲趋势或趋势逆转时,此多时间框架和多品种趋势指标会发出警报。它可以通过选择使用移动平均线(单或双(MA 交叉))、RSI、布林带、ADX、综合指数(Constance M. Brown)、Awesome(比尔威廉姆斯)、MACD(信号线)来构建仪表板来实现)、Heiken Ashi 平滑、赫尔移动平均线、随机指标交叉、江恩 HiLo 激活器和交易者动态指数。它可以用于从 M1 到 MN 的所有时间范围。最大限度。仪表板中可以同时显示 9 个时间范围。仪表板中的颜色为绿色代表看涨,红色代表看跌,蓝色代表中性(指标值不在范围内)。 结合您自己的规则和技术,该指标将允许您创建(或增强)您自己的强大系统。 特征 指标可以将信号写入全局变量,智能交易系统可以使用这些变量进行自动交易 。 最多可以选择 9 个要使用的时间范围。 在仪表板内持续执行趋势强度排名排序。可以禁用此排序,以便更轻松地查找特定符号。然后,交易品种将按照它们在交易品种参数中输入的相同顺序显示,或者按照它们在市场报价窗口中显示的顺序显示。 通过在矩形内单击,将打开一个带有相关交易品种和时间范围的新图表。 将指标放在一张
Seasonal Pattern Trader
Dominik Patrick Doser
Disclaimer : Keep in mind that seasonal patterns are not always reliable. Therefore, thoughtful risk management is crucial to minimize losses.  Seasonal patterns in the financial world are like a well-guarded secret that successful investors use to their advantage. These patterns are recurring price movements that occur during specific periods or around special events. Additionally, there are also intraday patterns that repeat. For example, Uncle Ted from Forex Family suggests examining previou
In order for Trailing Money Python   to work more efficiently, it was designed to be quite simple and plain and optimized by adding the Trailing Stop.  The robot only trades in a 5 minute time frame. There is a saying that brokers often use: "Earnings are worthy of the wallet!" Here, we see this word as a philosophy of trade. Therefore, we developed this robot. ** Timeframe: 5 Minutes ** Supported: ***Especially Stocks at Futures ** The minimum amount depends on the margin requirement of t
Nasdaq 5 Gage MT5
Kambiz Shahriarynasab
For Nasdaq trading, the most important principle is to know the trend of the fund. This indicator with 6 green and red lights provides you with the daily path of this important indicator. This indicator has been tested for 6 months and has a win rate of over 85%. Be sure to contact me before purchasing to get the necessary instructions on how to use and set up this indicator. You should use a broker that has dollar index, vix, and commodities. MT4 Version You can contact us via Instagram,
Impulse fractals indicator - is counter-trend oriented complex market fractal pattern.  Market creates bull/bear impulse, trend starts, fractals on impulsed wave are an agressive pullback signals. Buy arrow is plotted when market is bearish and it's impulse showed up-side fractal, and sell arrow is plotted when market is bullish and it's impulse showed dn-side fractal. Main indicator's adjustable inputs : impulsePeriod - main period of impulse histogram  filterPeriod  - smoothes impulse accordi
Traffic Signal
Ramzi Abuwarda
推出瞩目的MT5指标——交通信号,它基于分析RSI(相对强弱指标)、Stochastics(随机指标)、CCI(商品通道指标)和趋势等多个时间框架上的水平,以获取最准确的入场信号的特殊策略。交通信号是您成功交易的终极通道!该创新指标精确且专业,通过集成先进的技术指标,并覆盖所有时间框架,助您准确把握市场动向,为您提供无与伦比的自信心。 通过交通信号,您可以全面分析关键指标,经过精密校准,以探测最具利润潜力的交易机会。告别不确定性,迎接明智决策的新时代。交通信号将RSI、Stochastics、CCI和趋势等指标融合得天衣无缝,为您描绘市场动态提供鲜活画面,前所未有。 畅享轻松的市场趋势和模式,交通信号为您持续监测各个时间框架。无论您偏好短期激动还是长期战略,这一杰出指标均可满足您的交易风格,为您提供对市场起伏的整体认知。 交通信号的准确性是其成功的基石。通过广泛的研究与开发,该指标提供精确调校和时机准确的信号。告别虚假信号,迎接前所未有的可靠性水平。就像有一位可信赖的盟友与您并肩作战,以毫不动摇的准确性引导您走向丰盈机会。 通过直观的界面和易于理解的信号,您将体验到自信交易的乐趣。无论
Smart Engulfing MT5
Ashkan Hazegh Nikrou
智能吞噬 MT5 简介: 踏入精致交易领域,使用 Smart Engulfing MT5,这是您辨别顶级吞噬模式的专业指标。这款工具专为 MetaTrader 5 用户而设计,注重精准性和易用性。轻松揭示有利可图的交易机会,Smart Engulfing MT5 通过警报、箭头和三个独特的获利水平引导您,使其成为追求简单和高效的交易者的终极伴侣。 第二部分:释放纯吞噬模式的力量 深入了解市场运动的复杂性,使用 Pure Engulf 模式分析器。与传统工具不同,它以精湛的方式运作,过滤掉无关的模式,仅关注最有利可图的机会。其独特算法拥有超过 70% 的显著成功率,确保每笔交易都得到智能决策的支持。 第三部分:自适应信号查看模式 使用 Smart Engulfing MT5 创新的信号查看模式——反向和方向。这两种模式适用于不同的市场情景,使交易者能够利用区间和趋势条件。 反向模式 :适用于导航市场回撤,反向模式智能地识别相反方向的信号。在区间市场中表现出色,它帮助交易者在逆转时实现盈利动作。 方向模式 :专为趋势市场设计,方向模式专注于与市场趋势一致的信号。它使交易者能够顺势而
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Twin Range Filter" by " colinmck ". - This is a light-load processing and non-repaint indicator. - All input options are available.  - Buffers are available for processing in EAs. - You can message in private chat for further changes you need. Here is the code a sample EA that operated based on signals coming from the indicator: #include <Trade\Trade.mqh> CTrade trade; int handle_twr= 0 ; input gro
该产品的买家也购买
Trend Screener Pro MT5
STE S.S.COMPANY
4.88 (68)
使用趋势筛选指标释放趋势交易的力量:由模糊逻辑和多货币系统提供支持的终极趋势交易解决方案! 使用趋势筛选器(由模糊逻辑提供支持的革命性趋势指标)提升您的趋势交易。 它是一个强大的趋势跟踪指标,结合了超过 13 种高级工具和功能以及 3 种交易策略,使其成为使您的 Metatrader 成为趋势分析器的多功能选择。 限时优惠:趋势筛选指标终身仅需 50 美元。 ( 原价 250$ ) (优惠延长) 体验趋势筛选器 100% 无需重新绘制的准确性,确保您的交易决策不受过去价格变化的影响。 释放多时间框架和多货币功能的多功能性,使您能够以无与伦比的信心在外汇、商品、加密货币和指数领域进行交易。 利用 Trend Screener 的综合策略套件增强您的交易: - 趋势跟踪策略和趋势延续策略 :趋势筛选器的趋势跟踪策略提供清晰的趋势延续信号,让您有效捕捉趋势走势并管理风险。 - 反转策略和早期入场点策略 :趋势筛选器的反转策略可检测市场方向的潜在变化,使您能够预测趋势反转并利用疲弱的市场趋势。通过早期入场点,您可以在潜在的趋势变化之前定位自己 获取可观的利润。 - 倒卖策略: 趋势筛选器的倒卖
TPSproTREND PrO MT5
Roman Podpora
4.54 (13)
RelicusRoad Pro MT5
Relicus LLC
5 (17)
现在$ 147(更新后增加到$ 499) - 无限帐户(PC或Mac) RelicusRoad 用户手册 + 培训视频 + 访问 Private Discord Group + VIP 身份 一种看待市场的新方式 RelicusRoad 是世界上最强大的外汇、期货、加密货币、股票和指数交易指标,为交易者提供保持盈利所需的所有信息和工具。我们提供技术分析和交易计划,帮助每一位交易者取得成功,从初学者到高级。它是一个关键的交易指标,可以提供足够的信息来预测未来的市场。我们相信一个完整的解决方案,而不是图表上几个没有意义的不同指标。这是一个多合一指标,显示无与伦比且非常准确的信号、箭头 + 价格行为信息。 RelicusRoad 基于强大的人工智能,提供缺失的信息和工具来教育您并使您成为交易专家,成为成功的交易者。 几乎所有技术指标都滞后,这意味着它们只能报告已经发生的事情。因此,他们只确认您过去可以看到的价格已经在哪里。我们相信领先指标可以预测未来价格,而无需重新绘制,也不要过度依赖可能改变并导致重新绘制的滞后指标。如果您根据滞后指标进行交易并建立头寸,您就知道您已
TPSpro RFI Levels MT5
Roman Podpora
4.67 (15)
指示       俄罗斯 -        英语   建议 与指示器一起使用     -       TPSpro 趋势专业版 -   MT4版本       交易中的一个关键要素是做出买卖交易工具决定的区域或水平。尽管主要参与者试图隐藏他们在市场中的存在,但他们不可避免地会留下痕迹。我们的任务是学习如何识别这些痕迹并正确解释它们。 主要功能: 向卖家和买家显示活跃区域! 该指标显示所有正确的初始买入和卖出脉冲水平/区域。激活这些水平/区域后,开始寻找切入点,水平会改变颜色并填充特定阴影。此外,还会显示箭头,以便更直观地了解情况。 显示更高时间范围内的级别/区域(MTF 模式) 添加了使用更高时间间隔显示级别/区域的功能。此外,该指标还具有自动趋势检测功能(   TPSproTREND PRO   )。 用于交易的单独专业的逐步算法。 该算法专为日内交易而设计,既可顺势交易,也可逆势交易。每个活动模板均提供详细说明。 适用于多种时间范围 。 TPSpro RFI 水平指标可用于图表上的任何时间范围,从一分钟(M1)开始一直到每月(MN)。 图形和声音警报。 该指标提供图形和声音指示
CBT Quantum Maverick 高效的二元期权交易系统 CBT Quantum Maverick 是一款精心设计的高性能二元期权交易系统,专为追求精准、简单和纪律的交易者打造。无需自定义,该系统经过优化,可直接使用并产生高效结果。只需遵循信号操作,稍加练习即可掌握。 主要特点: 信号精准度: 基于当前K线生成下根K线交易信号,无频繁重绘。 市场多样性: 专为二元期权交易设计,兼容多种经纪商和资产类别,适应不同交易偏好。 兼容性: Deriv Synthetic Charts :适用于任何时间框架。 OTC Charts :来自如 Quotex、PocketOption、Binomo、Stockity、IQOption、Exnova、OlympTrade、Deriv、Binolla 和 Homebroker 的经纪商,可导入 MT5(一周内提供免费导入支持,之后需支付服务费用)。 外汇、加密货币和商品市场 :扩展资产利用。 高收益二元资产 :建议使用90%以上的高回报率资产。 额外优势: 全面的交易计划: 提供系统化和纪律性交易的分步支持计划。 高效时间利用: 每天
Golden Trend Indicator MT5
Noha Mohamed Fathy Younes Badr
4.78 (9)
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
Quantum TrendPulse
Bogdan Ion Puscasu
5 (4)
介绍 Quantum TrendPulse   ,这是一款终极交易工具,它将 SuperTrend   、   RSI 和 Stochastic 的强大功能整合到一个综合指标中,以最大限度地发挥您的交易潜力。该指标专为追求精准和效率的交易者而设计,可帮助您自信地识别市场趋势、动量变化以及最佳进入和退出点。 主要特点: 超级趋势整合: 轻松跟随当前的市场趋势并乘上盈利浪潮。 RSI 精度: 检测超买和超卖水平,非常适合把握市场逆转时机,可用作 SuperTrend 的过滤器 随机精度: 利用随机振荡在波动的市场中寻找隐藏的机会, 用作超级趋势的过滤器 多时间范围分析: 从 M5 到 H1 或 H4,在不同时间范围内关注市场动态。 可定制的警报: 当您的自定义交易条件得到满足时收到通知,这样您就不会错过任何交易。 无论您是新手还是经验丰富的交易员,   Quantum TrendPulse 都能为您提供所需的优势,帮助您增强策略并自信地进行交易。借助这一强大的指标,将洞察力转化为利润 — 掌控您的交易! ***购买 Quantum TrendPulse,即可免费获得 Quantum T
FX Power MT5 NG
Daniel Stein
5 (7)
释放 FX Power NG 的全部威力:终极货币强度表 八年多来,FX Power 一直为全球交易者提供可靠、精确的货币强弱分析。 现在,FX Power NG 将这一值得信赖的工具提升到新的水平,提供先进的功能,为您的交易带来无与伦比的准确性、定制化和洞察力。 是什么让 FX Power NG 成为严肃交易者的必备工具? FX Power NG 以您喜爱的原版 FX Power 的所有功能为基础,进行了重要的添加和改进: 黄金强度分析 (XAU):现在,您可以在追踪货币对的同时追踪黄金的强弱,从而获得更广泛的市场洞察力。 精细计算:在每次分析中体验更精确、更可靠的结果。 自定义分析周期:调整分析周期以适应您的交易策略,从日内分析到长期洞察。 先进的多实例设置:运行多个实例以获得全面的视图,非常适合分析多个时间框架或策略。 无限图形定制:个性化每个图表的颜色和样式,以匹配您的交易环境。 增强的警报功能:设置自定义通知,让你不会错过重要的转变或机会。 现代设计和动态面板:享受专为最新操作系统设计的时尚、用户友好界面,以及流畅的交互式指标面板。 FX Power NG 的突出
首先,值得强调的是,这个交易工具是非重绘、非重画和非滞后的指标,非常适合专业交易。 在线课程,用户手册和演示。 智能价格行动概念指标是一个非常强大的工具,既适用于新手,也适用于经验丰富的交易者。它将超过20个有用的指标合并到一个指标中,结合了高级交易思想,如内圈交易员分析和智能资金概念交易策略。该指标侧重于智能资金概念,提供有关大型机构交易方式的见解,帮助预测它们的动向。 它在流动性分析方面尤其擅长,有助于理解机构的交易方式。它擅长预测市场趋势,并仔细分析价格波动。通过将您的交易与机构策略对齐,您可以更准确地预测市场走向。该指标多才多艺,擅长分析市场结构,识别重要的订单区块,并识别各种模式。 它擅长识别BOS和CHoCH等模式,理解动量的转变,并突出显示供需强劲的关键区域。它还擅长发现强大的不平衡,并分析价格创造更高高点或更低低点的模式。如果您使用斐波那契回撤工具,该指标可以满足您的需求。它还可以识别相等的高点和低点,分析不同的时间框架,并通过仪表板显示数据。 对于使用更高级策略的交易者,该指标提供了工具,如公平价值差指标和优惠和折扣区域的识别。它特别关注高时间框架订单
FX Volume MT5
Daniel Stein
4.93 (14)
利用外汇交易量在外汇交易中获得真正的优势:终极成交量指标 外汇交易量(FX Volume)是第一个也是唯一一个从内部人士的角度揭示真实市场情绪的交易量指标。通过对机构市场参与者和经纪商的定位提供独到的见解,FX Volume 使您能够以通常只为主要参与者保留的先见之明进行交易。告别 COT 报告的延迟,FX Volume 可以在您的图表上即时为您提供这些关键信息,使您能够做出更快、更明智的交易决策。 为什么外汇交易量对您的交易至关重要? 使用 FX Volume,您可以获得无与伦比的独特市场数据,为您提供一般交易量指标无法提供的洞察力。以下是您可以在图表上直接跟踪的数据: 仓位比率:查看各种货币的多空比率,清晰了解市场情绪。 比率变化:查看所选时间段内多头头寸的百分比变化。 总交易量:实时跟踪各货币的总交易量(多头和空头)。 详细的多头和空头交易量:准确了解每种货币的买卖量。 净多头交易量:查看多头和空头头寸之间的差额,以衡量净情绪。 净多头百分比变化:以百分比的形式了解净多头情绪的变化,以便快速比较。 成交量-价格相关性:跟踪成交量如何影响价格,找到潜在转折点。 如何访问
Basic Harmonic Patterns Dashboard MT5
Mehran Sepah Mansoor
4.57 (7)
该仪表盘显示所选符号的最新可用谐波形态,因此您可以节省时间并提高效率 /  MT4 版本 。 免费指标:  Basic Harmonic Pattern 指标列 Symbol:   显示所选符号 Trend:     看涨或看跌 Pattern:    形态类型(Gartley、蝴蝶、蝙蝠、螃蟹、鲨鱼、Cypher 或 ABCD) Entry:     入口价格 SL: 止损价 TP1: 第一止盈价 TP2: 第二次获利价格 TP3: 第三次获利价格 Current price:    当前价格 Age (in bars):   最后绘制的模式的年龄 主要输入 Symbols :   从 "28 种主要货币对 "或 "选定符号 "中选择。 Selected Symbols :   希望监控的符号,用逗号分隔("EURUSD,GBPUSD,XAUUSD")。如果您的经纪商为货币对设置了后缀或前缀,您必须在以下两个参数中添加(货币对前缀或货币对后缀)。 Max Iteration:   调整模式的最大迭代次数(如果该值越小,则模式越少,性能越快;如果该值越大,则模式越多,性能
首先,值得强调的是,这个交易系统是一个非重绘、非重画和非滞后的指标,这使得它非常适合手动和机器人交易。 在线课程,手册和下载预设。 “智能趋势交易系统 MT5”是专为新手和经验丰富的交易者量身定制的综合交易解决方案。它结合了超过 10 个优质指标,具有 7 多个强大的交易策略,使其成为适用于各种市场条件的多功能选择。 趋势跟随策略:提供精确的入场和止损管理,以有效地跟随趋势。 反转策略:识别潜在的趋势反转,使交易者能够利用区域市场的机会。 剃头策略:专为快速准确的日内交易和短期交易而设计。 稳定性:所有指标都不会重绘、不会重画和不会滞后,确保可靠的信号。 定制:支持自定义策略,以满足个人交易偏好。超过 7 种策略和组合可帮助您找到最佳策略。 信号清晰度:提供箭头信号,以指示清晰的入场和退出点。 实时警报:通过交易进出警报使交易者保持了解。 深入分析:提供更高时间框架的趋势分析和实时交易监控。 自适应颜色编码:利用蜡烛颜色编码来显示成交量、趋势和反转蜡烛信号。通过蜡烛颜色分析市场方向。 “智能趋势交易系统 MT5”赋予交易者必要的工具,以便在各种市场条件下做出明智和战略性的交易决策。无论
Matrix Arrow Indicator MT5
Juvenille Emperor Limited
5 (13)
矩阵箭头指标 MT5   是一种独特的 10 合 1 趋势,遵循   100% 非重绘多时间框架指标 ,可用于所有符号/工具: 外汇 、 商品 、 加密货币 、 指数 、 股票 。 Matrix Arrow Indicator MT5 将在其早期阶段确定当前趋势,从多达 10 个标准指标中收集信息和数据,它们是: 平均定向运动指数 (ADX) 商品渠道指数 (CCI) 经典 Heiken Ashi 蜡烛 移动平均线 移动平均收敛散度 (MACD) 相对活力指数 (RVI) 相对强弱指数 (RSI) 抛物线SAR 随机振荡器 威廉姆斯的百分比范围 当所有指标给出有效的买入或卖出信号时,相应的箭头将打印在图表上,在下一根蜡烛/柱线开盘时,指示强劲的上升趋势/下降趋势。用户可以选择使用哪些指标,并可以单独调整每个指标的参数。 Matrix Arrow Indicator MT5 仅从选定的指标中收集信息,并仅根据其数据打印箭头。   Matrix Arrow Indicator MT5   还可以为所有新信号发送终端、推送通知或电子邮件警报。无论您是黄牛、日内交易者还是波段交易者, Mat
FX Dynamic - 您需要的唯一 ATR 指标 准备好用无与伦比的精确性和洞察力为您的交易策略增添动力了吗? FX Dynamic 是首个也是唯一的 ATR 指标,专为 货币分析 和 自动调整经纪商的 GMT 变动 而设计。告别过时的工具,拥抱掌握市场波动的终极解决方案。 为什么 FX Dynamic 能够改变游戏规则? 基于货币的 ATR 分析 - 摆脱传统工具的束缚。FX Dynamic 是首个超越外汇货币对和商品等符号的 ATR 指标,可 深入洞察 单个货币的 波动性 。 无与伦比的 GMT 时区 转换调整准确性 - 无需再手动修正时区。FX Dynamic 会 自动考虑经纪商的 GMT 时区转换 ,确保提供市场上最准确、最可靠的分析。 一体化多功能性 - 从短期剥头皮到长期投资,FX Dynamic 可通过自定义时间框架和精确设置适应您的交易风格。 交易者喜爱的功能 多资产分析: 分析货币、外汇货币对、黄金等。FX Dynamic 可让您发现 单个货币 对之外 的 true 动态 。 增强型风险管理: 利用为每种资产和货币量身定制的可靠 ATR 数据,自信地
MetaForecast M5
Vahidreza Heidar Gholami
5 (2)
MetaForecast能够根据价格数据中的谐波来预测和可视化任何市场的未来走势。虽然市场不总是可预测的,但如果价格中存在模式,MetaForecast可以尽可能准确地预测未来。与其他类似产品相比,MetaForecast通过分析市场趋势可以生成更精确的结果。 输入参数 Past size (过去的尺寸) 指定MetaForecast用于创建生成未来预测模型的柱数量。该模型以一条黄色线绘制在所选柱上。 Future size (未来的尺寸) 指定应预测的未来柱数量。预测的未来以粉色线表示,并在其上绘制了蓝色回归线。 Degree (程度) 此输入确定了MetaForecast将在市场上进行的分析级别。 Degree 描述  0 对于程度0,建议使用较大的值来设置“过去的尺寸”输入,以覆盖价格中的所有高峰、低谷和细节。  1 (建议的) 对于程度1,MetaForecast可以理解趋势,并通过较小的“过去的尺寸”生成更好的结果。  2 对于程度2,除了趋势,MetaForecast还可以识别反转点。对于大于1的程度,必须使用较高的“细节”和“噪音减少”输入值。  大于2 不建议使用大
TPA True Price Action indicator reveals the true price action of the market makers through 100% non-repainting signals strictly at the close of a candle! TPA shows entries and re-entries, every time the bulls are definitely stronger than the bears and vice versa. Not to confuse with red/green candles. The shift of power gets confirmed at the earliest stage and is ONE exit strategy of several. There are available now two free parts of the TPA User Guide for our customers. The first "The Basics"
Atomic Analyst MT5
Issam Kassas
4.32 (19)
首先值得强调的是,该交易指标是非重绘、非延迟的指标,这使其成为手动和机器人交易的理想选择。 用户手册:设置、输入和策略。 Atomic Analyst是一种PA价格行动指标,利用价格的力量和动量来寻找市场上更好的机会。配备了高级过滤器,可帮助去除噪音和假信号,并提高交易潜力。使用多层复杂的指标,Atomic Analyst扫描图表,并将复杂的数学计算转化为任何初学者都能理解并用来做出一致交易决策的简单信号和颜色。 “Atomic Analyst”是专为新手和经验丰富的交易者量身定制的综合交易解决方案。它将高级指标和一流功能融合为一体的交易策略,使其成为所有类型交易者的多功能选择。 日内交易和剥头皮策略:专为快速准确的日内交易和短期交易而设计。 日内和摆动交易策略:可用作追求价格大幅波动的日内和摆动交易者的可靠工具。 多货币和市场:凭借其可靠的精度,在不同的工具和市场上运作。 多个时间框架:可在多个时间框架上使用,性能良好。 稳定性:所有指标均不重绘、不重绘和不滞后,确保可靠的信号。 信号清晰度:提供箭头信号,用于清晰的入场和出场点。 实时警报:通过交易入场、SL和TP警报通知交
介绍     Quantum Breakout PRO   ,突破性的 MQL5 指标,正在改变您交易突破区域的方式!由拥有超过13年交易经验的资深交易员团队开发,     量子突破 PRO     旨在通过其创新和动态的突破区域策略将您的交易之旅推向新的高度。 量子突破指标将为您提供带有 5 个利润目标区域的突破区域的信号箭头,以及基于突破框的止损建议。 它既适合新手交易者,也适合专业交易者。 量子 EA 通道:       点击这里 重要的!购买后请私信我领取安装手册。 建议: 时间范围:M15 货币对:GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD 账户类型:ECN、Raw 或 Razor,点差极低 经纪商时间:GMT +3 经纪商:IC Markets、Pepperstone with Raw 和 Razor 的点差最低 规格: 不重漆! 最多 5 个建议利润目标区域 建议止损水平 可定制的盒子。您可以设置自己的 Box Time Start 和 Box Time End。 接触 如果您有任何疑问或需要帮
FX Levels MT5
Daniel Stein
探索外汇交易水平:您成功交易的终极支撑位和阻力位指标 FX Levels 不仅仅是一个支撑位和阻力位指标;对于那些希望在所有交易符号(无论是货币对、指数、股票还是商品)上获得精确性、可靠性和无缝功能的严肃交易者来说,它是一个改变游戏规则的工具。FX Levels基于成熟的灯塔(Lighthouse)方法,并增强了动态、实时的适应性,可将市场反转点直接显示在您的图表上,非常适合设定精确的盈利目标和优化您的交易条目。 为什么选择 FX Levels? Stein Investments 团队利用多年与经纪商及其不同数据源打交道的经验,使外汇交易水平在准确性和一致性方面脱颖而出。不同经纪商的水平几乎 100% 相同,FX Levels 为您提供无与伦比的可靠性,这是其他指标无法提供的。我们对细节的追求提升了 FX Levels 的水平,确保它不仅能满足您的期望,还能改变您进行支撑位和阻力位分析的方式。 FX Levels 的主要特点 两种分析方法:您可以选择经典的 "灯塔 "方法(适合静态、每日更新的水平),或者先进的动态方法(对蜡烛图形态做出实时反应,提供适应市场变化的可操作水
IX Power MT5
Daniel Stein
4.17 (6)
介绍 IX Power - 提高交易精确度的终极工具! IX Power 采用与 FX Power 相同的无与伦比的精确度设计,可让您掌握从指数和股票到商品、ETF 甚至加密货币的任何交易符号。准确洞察所有您喜爱的资产的短期、中期和长期趋势,为提升您的交易水平做好准备。 为什么选择 IX Power? 有了 IX Power,您的时机选择将变得更加敏锐,帮助您做出更明智、更快速的交易决策。无论您是剥头皮还是波段交易,IX Power 都能为您的一举一动提供即时、可操作的数据。加入无数交易者的行列,体验 IX Power 的变革力量! IX Power 傲视群雄的主要特点 100% 准确的非重绘结果:为您终端上的每个交易符号获取一致、可靠的数据。 自定义强度分析:从预先配置的时段中进行选择,或创建您自己的时段。 灵活的通知:通过电子邮件、信息或手机提醒等自定义通知方式,随时了解市场动态。 此外,IX Power 可与您的交易平台无缝集成。 EA 可访问缓冲区:是使用专家顾问(EA)的交易者的理想之选。 优化性能:设置自定义计算限制,在不牺牲准确性的情况下最大限度地提高速度。
Enjoy a   50% OFF   Christmas holiday sale!   Offer ends 27 December 2025 . After your purchase, feel free to contact me for more details on how to receive a bonus indicator called VFI, which pairs perfectly with Easy Breakout for enhanced confluence!     Easy Breakout MT5   is a powerful price action trading system built on one of the most popular and widely trusted strategies among traders: the   Breakout strategy ! This indicator delivers crystal-clear Buy and Sell signals based on bre
Auto Order Block with break of structure based on ICT and Smart Money Concepts (SMC) Futures Break of Structure ( BoS )             Order block ( OB )            Higher time frame Order block / Point of Interest ( POI )    shown on current chart           Fair value Gap ( FVG ) / Imbalance   -  MTF      ( Multi Time Frame )    HH/LL/HL/LH  -  MTF      ( Multi Time Frame )  Choch  MTF      ( Multi Time Frame )  Volume Imbalance     ,  MTF          vIMB Gap’s Power of 3 Equal High
成為突破者,隨著價格反轉,市場結構會改變利潤。 訂單突破者指示器可以識別趨勢或價格走勢何時接近枯竭並準備好逆轉。它會提醒您市場結構的變化,通常會在發生逆轉或重大回調時發生。 該指標使用專有計算來確定突破和價格動能。每當在可能的耗盡點附近形成新的高點時,指標就會繪製最後一個生成該高點的順序塊。然後,它將隨價格移動隨價格跟隨定單。然後,當價格轉向相反方向並突破該訂單塊時,它會提醒您,從而創建新的市場結構並開始趨勢或重大回調的可能逆轉。 訂單塊是在創建高/低之前的最後一個相反的彩色蠟燭,並且當價格跌破這些關鍵區域以下時,這表明趨勢可能會發生短期或長期反轉。 特徵 提醒您關鍵耗盡點的市場結構變化 價格接近耗盡水平時自動提取訂單塊 在一個方向繼續移動時,在價格後面跟踪定單,以提醒您最佳的反轉輸入 將顏色更改為純色塊,以顯示何時發生市場結構中斷。 適用於所有交易品種和時間範圍 內置集成的彈出窗口和電子郵件警報 策略和如何與定單破壞者指標進行交易 當斷路器塊發生時,您有兩個選擇。 看左邊!我們正在尋求供應/需求或支撐/阻力位嗎?市場結構轉變(逆轉)通常發生在價格重新測試舊水平或
Entry Points Pro for MT5
Yury Orlov
4.44 (124)
这款指标用于 MT5,可提供准确的入场交易信号,且无重绘。 它可应用在任何金融资产:外汇、加密货币、贵金属、股票、指数。 它将提供极其精准的评估,并告诉您何时开仓和平仓的最佳时机。 观看 视频 (6:22),其中包含一个仅处理单一信号的示例,该信号即可值回指标购价! 大多数交易者在 Entry Points Pro 指标的帮助下,在第一个交易周内即改善了他们的交易结果。 订阅我们的 Telegram 群 ! Entry Points Pro 指标的益处。 入场信号无重绘 如果信号出现,并得到确认,则它不会再消失;不像是重绘指标,它会导致重大的财产损失,因为它们可以在显示信号后再将其删除。 无差错开仓 指标算法可令您找到入场交易(买入或卖出资产)的理想时机,从而提高每位交易者的成功率。 Entry Points Pro 可操作任何资产 它允许您在 MT5 平台上交易任何经纪商的加密货币、股票、贵金属、指数、大宗商品和货币。 提供任何方向的信号 Entry Points Pro 指标提供针对任意价格走势的入场交易信号 - 上涨、下跌或横盘(横向)。
支撑和阻力筛选器是 MetaTrader 的一个级别指标,它在一个指标内提供多种工具。 可用的工具有: 1. 市场结构筛选器。 2. 看涨回调区。 3. 看跌回调区。 4.每日枢轴点 5.每周枢轴点 6. 每月枢轴点 7. 基于谐波形态和成交量的强大支撑和阻力。 8. 银行级区域。 限时优惠:HV 支撑和阻力指示器仅售 50 美元且终生可用。 (原价 125$) 通过访问我们的 MQL5 博客,您可以找到我们所有带有分析示例的高级指标: 单击此处 主要特点 基于谐波和音量算法的强大支撑和阻力区域。 基于谐波和成交量算法的看涨和看跌回调区域。 市场结构筛选器 每日、每周和每月的枢轴点。 文档 所有支持和阻力筛选器文档(说明)和策略详细信息均可在我们 MQL5 博客的这篇文章中找到: 单击此处。 接触 如果您有任何问题或需要帮助,请通过私信联系我。 作者 SAYADI ACHREF,金融科技软件工程师,Finansya 创始人。
MetaBands M5
Vahidreza Heidar Gholami
4.5 (2)
MetaBands使用强大且独特的算法绘制通道并检测趋势,以便为交易者提供进出交易的潜在点。它是一个通道指标和强大的趋势指标。它包括不同类型的通道,可以通过使用输入参数简单地合并以创建新通道。MetaBands使用所有类型的警报通知用户市场事件。 功能 支持大多数通道算法 强大的趋势检测算法 能够合并不同类型的通道 多时间帧和多货币(信号矩阵) 所有类型的警报功能(声音、屏幕闪烁、推送通知、电子邮件、弹出窗口、箭头) 它永远不会重绘 趋势检测 MetaBands使用在通道内振荡的蓝色线来检测趋势。当该线遇到通道的上界时,表明开始下跌趋势,当它遇到下界时,表明开始上涨趋势。如果蓝线接近中线,则市场处于整理期。 该指标使用独特的方法来检测趋势。一开始可能看起来有些复杂,但如果您观看视频教程,您就会意识到它是多么强大且易于使用。 入场和出场信号 当趋势变化或价格穿过上下通道时,MetaBands会立即通过不同的方法提醒交易者,这些方法可以在指标设置中启用。 信号矩阵 要监视来自不同时间框架的多个符号并在一个地方查看信号,请单击右上角按钮或按键盘上的M键以打开信号矩阵。该矩阵可以
Berma Bands
Muhammad Elbermawi
The Berma Bands (BBs) indicator is a valuable tool for traders seeking to identify and capitalize on market trends. By analyzing the relationship between the price and the BBs, traders can discern whether a market is in a trending or ranging phase. Berma Bands are composed of three distinct lines: the Upper Berma Band, the Middle Berma Band, and the Lower Berma Band. These lines are plotted around the price, creating a visual representation of the price movement relative to the overall trend.
Contact me for instruction, any questions! Related Product:  Gold Trade Expert MT5 Introduction The breakout and retest strategy is traded support and resistance levels. it involves price breaking through a previous level.  The break and retest strategy is designed to help traders do two main things, the first is to avoid false breakouts. Many false breakouts start with a candlestick that breaks out of a level but ends with an immediate candlestick that brings the price back into the level. T
AT Forex Indicator MT5
Marzena Maria Szmit
5 (5)
The AT Forex Indicator MT5 is a sophisticated trading tool designed to provide traders with a comprehensive analysis of multiple currency pairs. This powerful indicator simplifies the complex nature of the forex market, making it accessible for both novice and experienced traders. AT Forex Indicator uses advanced algorithms to detect trends, patterns and is an essential tool for traders aiming to enhance their forex trading performance. With its robust features, ease of use, and reliable signal
AW Trend Predictor MT5
AW Trading Software Limited
4.75 (52)
一个系统中趋势和故障水平的组合。先进的指标算法过滤市场噪音,确定趋势、进入点以及可能的退出水平。指标信号记录在统计模块中,您可以选择最合适的工具,显示信号历史的有效性。该指标计算获利和止损标记。 手册和说明 ->   这里 / MT4 版本 ->   这里 如何使用指标进行交易: 使用趋势预测器进行交易只需三个简单的步骤: 第 1 步 - 开仓 收到买入信号,成功率超过 70% 第 2 步 - 确定止损 通过相反的信号选择中继线 第 3 步 - 定义止盈策略 策略一:达到 TP1 时平仓 策略 2:达到 TP1 时平仓 50%,达到 TP2 时平仓剩余 50% 策略三:在趋势反转时平仓 好处: 从不重绘结果,信号严格位于蜡烛收盘时 它可以在顾问中使用 获利和止损标记 对交易策略或独立策略的重要补充 市场噪音过滤算法 适用于任何工具 统计模块: 为了更好地选择配对,请使用内置的统计计算。 计算交易 - 给出统计数据的信号总数 成功评级 - 达到 TP1 的信号百分比,或反转那些正获利的信号时的百分比 TakeProfit1 Hit - 达到 TP1 的信号百分比 TakeProfit2
作者的更多信息
Hull Suite By Insilico
Yashar Seyyedin
5 (1)
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #include <Trade\Trade.mqh> CTrade trade; int handle_hull= 0 ; input group "EA Setting" input int magic_number= 123456 ; //magic number input double fixe
For MT4 version please click here . This is the exact conversion from TradingView: "Range Filter 5min" By "guikroth". - This indicator implements Alerts as well as the visualizations. - Input tab allows to choose Heiken Ashi or Normal candles to apply the filter to. It means it is a (2 in 1) indicator. - This indicator lets you read the buffers for all data on the window. For details on buffers please message me. - This is a non-repaint and light processing load indicator. - You can message in p
To get access to 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 get access to MT5 version please click here . - This is the exact conversion from TradingView: "Twin Range Filter" by " colinmck ". - This is a light-load processing and non-repaint indicator. - All input options are available.  - Buffers are available for processing in EAs. - You can message in private chat for further changes you need. Here is the sample code of EA that operates based on signals coming from indicator: #property strict input string EA_Setting= "" ; input int magic_number= 12
To download MT4 version please click here . - This is the exact conversion from TradingView: "Trend Direction Force Index - TDFI [wm]" By "causecelebre". - This indicator uses multiple levels of averaging to detect trend strength. - You can optimize filter low and filter high levels to achieve best results. - You have access to buffers to use in EAs. - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need.
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 rangi
FREE
To download MT5 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. This is a sample EA code that operates based on bullish and bearish linear regression candles . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input string     Risk_Management= "" ; input double fixed_lot_size=
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Supertrend" by " KivancOzbilgic ". This is a light-load processing and non-repaint indicator. Highlighter option isn't available in MT4 version. You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Supertrend . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input double fixed_lo
To get access to MT5 version please click here . This is the exact conversion from TradingView: "SwingArm ATR Trend Indicator" by " vsnfnd ". Also known as : "Blackflag FTS" by "Jose Azcarate" This is a light-load processing and non-repaint indicator. All input options are available except multi time frame Buffers are available for processing in EAs. Extra option to show buy and sell signal alerts. You can message in private chat for further changes you need.
This is the Chandelier Exit trend indicator applied to heiken ashi candles based on "G TREND GUNBOT" by "LUIS_GANDATA_G_TREND" on tradingview. Heiken ashi candles filter out many of the chops and therefore as an input to Chandelier Exit you achieve well filtered Buy and Sell signals. Also you can choose to apply the trend indicator to normal candles via input tab. (two in one indicator) This is a non-repaint and light processing load indicator. You can message in private chat for further change
FREE
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
IntradayTrader
Yashar Seyyedin
This Expert is developed to optimize parameters to trade intraday trending markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 12% profitability in EURUSD for a period of a year and 2% draw-down using optimization to find best inputs.
FREE
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. Strategy description - Detect trend based on GoldTrader rules. - Enter in both direction as much as needed to achieve acceptable amount of profit. - Although this is a martingale bot it is very unlikely to loose your money, because: ==> the money management rules are safe and low risk. ==> entries
FREE
To download MT5 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. Thanks
To get access to MT5 version please click here . You can also check the other popular version of this indicator   here . This is the exact conversion from TradingView:"HIGH AND LOW Optimized Trend TrackerHL OTT" by "kivancozbilgic" This is a light-load processing indicator. It is a non-repaint indicator. Colored Candle and Highlighting options are not available. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
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 vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
To download MT5 version please click  here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
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
Choppy Trader
Yashar Seyyedin
This Expert is developed to optimize parameters to trade in choppy markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 20% profitability in USDCAD for a period of 4-months and 5% draw-down using optimization to find best inputs.
FREE
To download MT5 version please click  here . This is the exact conversion from TradingView: "WaveTrend [LazyBear]" By "zeusuk3". One of the coolest indicators out there to detect overbought and oversold zones. It can be used as a part of more complicated strategy and for confirming a potential trade setup. There are buffers to use in EAs also. The indicator is loaded light and non-repaint. - You can message in private chat for further changes you need. Thanks for downloading 
To get access to MT5 version please click here . - This is a conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. note: Color filled areas and colored candles are not supported in MT4 version. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; inp
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Stochastic Momentum Index" By "UCSgears". - This is a popular version of stochastic oscillator on tradingview. - This is a light-load processing and non-repaint indicator. - Buffers are available for the lines on chart. - You can message in private chat for further changes you need. Thanks for downloading
B Xtrender
Yashar Seyyedin
To download MT4 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
To download MT4 version please click here . - This is the exact conversion from TradingView: "QQE mod" By "Mihkel00". - It can be used to detect trend direction and trend strength. - Gray bars represent weak trends. You can set thresholds to achieve better accuracy in detecting trend strength. - There is buffer index 15 to use in EA for optimization purposes. - The indicator is loaded light and non-repaint.  - You can message in private chat for further changes you need.  
TRAMA by LuxAlgo
Yashar Seyyedin
5 (1)
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Trend Regularity Adaptive Moving Average","TRAMA" By " LuxAlgo ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
For MT4 version please click here . This is the exact conversion from TradingView: "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.
For MT4 version please click  here . - This is the exact conversion from TradingView source: "Squeeze Momentum Indicator" By "LazyBear". - This is a non-repaint and light processing load indicator. - Buffers and inputs are available for use in EAs and optimization purposes. - You can message in private chat for further changes you need. Thanks for downloading...
I do not have the exact indicator for MT4 but the nearest possible look alike can be downloaded from here . Also you may check this link . This is the exact conversion from TradingView: "Donchian Trend Ribbon" By "LonesomeTheBlue". This is a light-load processing and non-repaint indicator. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks for downloading 
筛选:
无评论
回复评论
版本 1.10 2024.08.25
Fixed a bug!