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

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 sometime
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-
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
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
EverGrowth Pro MT5
Canberk Dogan Denizli
如果您正在為未來的交易尋求一個務實的視角,請允許我介紹 EverGrowth。 您是否對使用成熟的專業 EA(包含大約 6800 行的廣泛代碼庫)進行交易活動的想法著迷? EverGrowth 擁有多種功能和指標,通過在真實市場條件下忠實地複制測試結果來優先考慮真實性。 它利用先進的功能,為交易者提供全面的工具集來增強他們的交易策略。 因此,EverGrowth 是終極 EA,適合在 M1 時間範圍內交易各種貨幣對。 目前,我們的活躍交易涉及美元加元和歐元兌美元貨幣對。 然而,隨著時間的推移,我們將修改這些貨幣對以適應市場,就像在變革的浪潮中衝浪一樣。 我們將根據 EA 的性能調整我們的方法,確保無縫適應。   請放心,我們的客戶服務體驗已經接近完美,因為我們 24/7 都會勤勉地監控我們的收件箱。 我們及時回複查詢和建議,保證最長 24 小時響應時間。 請允許我闡明許多交易者經常忽視的一個關鍵方面:優化。 女士們先生們,優化是關鍵! 交易模式的有效性可能會在一個月之間波動,具體取決於特定的貨幣對。 這一現實仍然是不可否認的。 如果我們的目標是維持盈利能力,我們就必須巧妙地駕馭市
To get access to MT4 version please click  here . This is the exact conversion from TradingView: "VolATR" by "barrettdenning" The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. This is a light-load processing. This 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. Here is the source code of a sample EA operating based
The Price Tracker Indicator is designed to outline a dynamic price channel, showcasing areas where price movement is typically contained. The indicator highlights potential areas of interest where price may react when approaching the channel limits. Versatile for Scalping and Swing Trading The indicator adapts to all timeframes and can complement various trading strategies. It integrates seamlessly with tools such as supply and demand levels, reversal patterns, and other confluences. Key Feat
[ 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
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 g
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.
Balanced Price Range BPR Indicator ICT MT5 The Balanced Price Range BPR Indicator ICT MT5 is a specialized tool within the ICT trading framework in MetaTrader 5. This indicator detects the overlap between two Fair Value Gaps (FVG), helping traders identify key price reaction areas. It visually differentiates market zones by marking bearish BPRs in brown and bullish BPRs in green, offering valuable insights into market movements.   Balanced Price Range Indicator Overview The table below outlines
FREE
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
RRR with lines Indicator Download MT5 Effective risk management is a fundamental aspect of sustainable trading in financial markets. The RRR Indicator in MetaTrader 5 provides traders with a structured approach to calculating the Risk-to-Reward Ratio (RRR) . By drawing three adjustable horizontal lines, it assists traders in setting Stop Loss and Take Profit levels with precision. «Indicator Installation & User Guide» MT5 Indicator Installation  |  RRR with lines Indicator MT5  | ALL Products By
FREE
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.
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
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 from ot
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
Revera
Anton Kondratev
5 (1)
REVERA EA 是一种多币种、灵活、全自动、多方面的开放工具,用于识别 EURUSD + AUDUSD + AUDCAD 市场的弱点! Not        Grid       , Not        Martingale       , Not         AI         , Not         Neural Network ,     Not       Arbitrage . Default     Settings for One Сhart     EURUSD M15 REVERA 指南 信号 佣金经纪人退款 更新 我的博客 Only 7 Copy of 10 Left  for 390 $ Next Price 590 $  这   是   多种 货币   系统   那   允许   你   多样化   你的   风险   跨 多个 货币 对 。 ​ 默认 设置 ​ ​   工作   在   这   一张图表   欧元/美元     M15 每个位置总是有一个   固定 SL+TP 和 虚拟 交易利润跟踪 。 任何   利润   追踪   是  
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 个要使用的时间范围。 在仪表板内持续执行趋势强度排名排序。可以禁用此排序,以便更轻松地查找特定符号。然后,交易品种将按照它们在交易品种参数中输入的相同顺序显示,或者按照它们在市场报价窗口中显示的顺序显示。 通过在矩形内单击,将打开一个带有相关交易品种和时间范围的新图表。 将指标放在一张
揭开市场真正隐藏的模式,使用 PREDATOR AURORA 交易系统——混合交易指标的终极王者。看清别人看不到的机会! PREDATOR AURORA 交易系统是一款为拒绝平庸、追求卓越的交易者设计的强大工具。这不仅仅是另一个普通的指标;它是你的秘密武器,是你的不公平优势。它是一种复杂的混合狩猎系统,能够以致命的精确度追踪市场动向,在这个只有强者才能生存的丛林中脱颖而出。受自然界中最强大捕食者的启发,PREDATOR AURORA采用先进的自适应算法,能够无缝适应不断变化的市场条件。就像潜伏在阴影中的捕食者,它能穿透市场噪音,揭示其他人可能永远无法发现的高概率交易机会。 主要特点: 自适应狩猎机制: 能够即时调整以适应市场波动,让你在任何交易环境中都能高效掌控局势。 多时间框架分析: 覆盖6个时间框架(M1到D1),让你从更广阔的视角洞察市场,超越普通分析的局限。 动态状态识别: 通过直观的颜色编码信号实时识别市场状态,为你的每一步操作提供指导。 性能跟踪与结果模拟: 内置信号跟踪算法,帮助你衡量和预测设置的成功率,将每次交易转化为精心计算的胜利。 基于波动性的预设: 提
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
该产品的买家也购买
Trend Screener Pro MT5
STE S.S.COMPANY
4.85 (82)
使用趋势筛选指标释放趋势交易的力量:由模糊逻辑和多货币系统提供支持的终极趋势交易解决方案! 使用趋势筛选器(由模糊逻辑提供支持的革命性趋势指标)提升您的趋势交易。 它是一个强大的趋势跟踪指标,结合了超过 13 种高级工具和功能以及 3 种交易策略,使其成为使您的 Metatrader 成为趋势分析器的多功能选择。 限时优惠:趋势筛选指标终身仅需 50 美元。 ( 原价 250$ ) (优惠延长) 体验趋势筛选器 100% 无需重新绘制的准确性,确保您的交易决策不受过去价格变化的影响。 释放多时间框架和多货币功能的多功能性,使您能够以无与伦比的信心在外汇、商品、加密货币和指数领域进行交易。 利用 Trend Screener 的综合策略套件增强您的交易: - 趋势跟踪策略和趋势延续策略 :趋势筛选器的趋势跟踪策略提供清晰的趋势延续信号,让您有效捕捉趋势走势并管理风险。 - 反转策略和早期入场点策略 :趋势筛选器的反转策略可检测市场方向的潜在变化,使您能够预测趋势反转并利用疲弱的市场趋势。通过早期入场点,您可以在潜在的趋势变化之前定位自己 获取可观的利润。 - 倒卖策略: 趋势筛选器的倒卖
Divergence Bomber
Ihor Otkydach
5 (3)
购买该指标的每位用户将额外免费获得以下内容: 原创工具“Bomber Utility”,该工具会自动跟踪每一笔交易,设置止损和止盈点,并根据策略规则自动平仓; 适用于不同交易品种的指标设置文件(Set 文件); 三种不同风险模式下的 Bomber Utility 设置文件:“最低风险”、“平衡风险” 和 “观望策略”; 一套详细的 视频操作手册,帮助您快速完成安装、配置并开始使用本交易系统。 注意: 要获取以上所有赠品,请通过 MQL5 的私人消息系统联系卖家。 我为您介绍原创的自定义指标 “Divergence Bomber”(背离轰炸机),它是一套基于 MACD 背离交易策略 的“全功能”交易系统。 该技术指标的主要任务是识别 价格与 MACD 指标之间的背离,并发出交易信号(包括推送通知),指示未来价格可能的运动方向。平均而言,这些信号的准确率超过 98%。有关该指标如何工作的详细说明,请观看本页面上的视频演示。 该系统使用 止损订单 和 动态回撤平仓机制 来管理交易。 Divergence Bomber 指标的主要特点: 支持交易的品种: AUDCAD、AUDCHF、AUDSG
Golden Trend Indicator MT5
Noha Mohamed Fathy Younes Badr
4.89 (18)
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
Ihor Otkydach
5 (11)
PUMPING STATION – 您的专属“全包式”交易策略 我们为您推出PUMPING STATION —— 一款革命性的外汇指标,它将使您的交易变得更加有趣且高效。这不仅仅是一个辅助工具,而是一套完整的交易系统,具备强大的算法,帮助您开始更加稳定的交易。 购买本产品,您将免费获得: 专属设置文件:用于自动配置,实现最大化性能。 逐步视频教程:学习如何使用PUMPING STATION策略进行交易。 Pumping Utility:专为PUMPING STATION打造的半自动交易机器人,让交易变得更加方便和简单。 购买后请立即联系我,我将为您提供所有额外资源的访问权限。 PUMPING STATION如何工作: 趋势监控:能够即时识别市场趋势方向。趋势是您最好的朋友。 进场信号:图表上的箭头会提示您何时进场以及交易方向。 明确的交易目标:指标会自动识别最佳的平仓时机。 回调交易:内置的基于布林带的价格通道可检测修正结束并发出新趋势开始的信号。 效率分析:如果当前设置效果较差,系统会自动提示。只需调整PUMPING STATION,即可获得最佳性能。 功能强大: 推送和邮件通知:即
Cycle Maestro MT5
Stefano Frisetti
NOTE: CYCLEMAESTRO is distributed only on this website, there are no other distributors. Demo version is for reference only and is not supported. Full versione is perfectly functional and it is supported. CYCLEMAESTRO , the first and only indicator of Cyclic Analysis, useful for giving signals of TRADING, BUY, SELL, STOP LOSS, ADDING. Created on the logic of   Serghei Istrati   and programmed by   Stefano Frisetti ;   CYCLEMAESTRO   is not an indicator like the others, the challenge was to inter
MonetTrend
Aliya Bolek
MonetTrend — Премиум-индикатор для торговли по тренду (M30, H1, H4) MonetTrend — это мощный и визуально понятный трендовый индикатор, созданный для торговли на таймфреймах M30, H1 и H4. Он идеально подходит для работы с волатильными инструментами, такими как: • Золото (XAUUSD) • Криптовалюты (BTCUSD) • Валютные пары (EURUSD, USDJPY и др.) Ключевые особенности MonetTrend: • Автоматическое отображение Take Profit 1 (TP1) и Stop Loss (SL): После появления сигнала индикатор сразу показывает: • TP
支撑和阻力筛选器是 MetaTrader 的一个级别指标,它在一个指标内提供多种工具。 可用的工具有: 1. 市场结构筛选器。 2. 看涨回调区。 3. 看跌回调区。 4.每日枢轴点 5.每周枢轴点 6. 每月枢轴点 7. 基于谐波形态和成交量的强大支撑和阻力。 8. 银行级区域。 限时优惠:HV 支撑和阻力指示器仅售 50 美元且终生可用。 (原价 125$) 通过访问我们的 MQL5 博客,您可以找到我们所有带有分析示例的高级指标: 单击此处 主要特点 基于谐波和音量算法的强大支撑和阻力区域。 基于谐波和成交量算法的看涨和看跌回调区域。 市场结构筛选器 每日、每周和每月的枢轴点。 文档 所有支持和阻力筛选器文档(说明)和策略详细信息均可在我们 MQL5 博客的这篇文章中找到: 单击此处。 接触 如果您有任何问题或需要帮助,请通过私信联系我。 作者 SAYADI ACHREF,金融科技软件工程师,Finansya 创始人。
Quantum TrendPulse
Bogdan Ion Puscasu
5 (13)
介绍 Quantum TrendPulse   ,这是一款终极交易工具,它将 SuperTrend   、   RSI 和 Stochastic 的强大功能整合到一个综合指标中,以最大限度地发挥您的交易潜力。该指标专为追求精准和效率的交易者而设计,可帮助您自信地识别市场趋势、动量变化以及最佳进入和退出点。 主要特点: 超级趋势整合: 轻松跟随当前的市场趋势并乘上盈利浪潮。 RSI 精度: 检测超买和超卖水平,非常适合把握市场逆转时机,可用作 SuperTrend 的过滤器 随机精度: 利用随机振荡在波动的市场中寻找隐藏的机会, 用作超级趋势的过滤器 多时间范围分析: 从 M5 到 H1 或 H4,在不同时间范围内关注市场动态。 可定制的警报: 当您的自定义交易条件得到满足时收到通知,这样您就不会错过任何交易。 无论您是新手还是经验丰富的交易员,   Quantum TrendPulse 都能为您提供所需的优势,帮助您增强策略并自信地进行交易。借助这一强大的指标,将洞察力转化为利润 — 掌控您的交易! ***购买 Quantum TrendPulse,即可免费获得 Quantum Tr
TPSproTREND PrO MT5
Roman Podpora
4.72 (18)
VERSION MT4        —        ИНСТРУКЦИЯ RUS           —        INSTRUCTIONS  ENG 主要功能: 准确的输入信号,无需渲染! 如果出现信号,它仍然相关!这是与重提指标的一个重要区别,重提指标可以提供信号然后改变信号,这可能导致存款资金的损失。现在您可以以更高的概率和准确度进入市场。还有一个功能是在箭头出现后为蜡烛着色,直到达到目标(止盈)或出现反转信号。 显示止损/获利区域 为了提高搜索切入点时的视觉清晰度,创建了一个模块,该模块最初显示买入/卖出区域,在该区域中搜索进入市场的最佳点。用于处理止损水平的附加智能逻辑有助于随着时间的推移减小其大小,从而降低进入交易(移动 sl)时的初始风险。 显示较高时间范围内的最小值/最大值(MTF 模式) 添加了一项功能,可以显示较高时间间隔的最小/最大校正位置,并显示趋势变化。此外,MIN/MAX 现在有编号,显示修正内容。 风险回报率 (RR) 使用指标算法,可以检测精确的入场点,平均风险回报比超过1k2。这也伴随着视觉效果,例如,收到信号后会出现蜡烛的彩色草图。 无论
FX Power MT5 NG
Daniel Stein
5 (15)
FX Power:分析货币强度,助您做出更明智的交易决策 概述 FX Power 是一款专业工具,帮助您全面了解主要货币和黄金在任何市场条件下的真实强度。通过识别强势货币用于买入,弱势货币用于卖出, FX Power 简化了交易决策,并帮助您发现高概率的交易机会。不论您是想跟随趋势还是通过极端的 Delta 值预测反转,这款工具都能完美适应您的交易风格。别再盲目交易——用 FX Power 让您的交易更加智慧。 1. 为什么 FX Power 对交易者极具价值 实时货币和黄金强度分析 • FX Power 实时计算并显示主要货币和黄金的相对强度,助您全面了解市场动态。 • 监控领先或落后资产,轻松识别值得交易的货币对。 全面的多时间框架视图 • 跟踪短期、中期和长期时间框架的货币和黄金强度,以便将您的交易策略与市场趋势保持一致。 • 无论是快进快出的短线交易还是更长期的投资策略, FX Power 都能为您提供所需的信息。 Delta 动态分析用于趋势和反转 • 极端 Delta 值常常预示反转机会,而平缓的 Delta 变化则确认趋势延续。 • 使用 Delta 分析,轻
MetaForecast M5
Vahidreza Heidar Gholami
5 (3)
MetaForecast能够根据价格数据中的谐波来预测和可视化任何市场的未来走势。虽然市场不总是可预测的,但如果价格中存在模式,MetaForecast可以尽可能准确地预测未来。与其他类似产品相比,MetaForecast通过分析市场趋势可以生成更精确的结果。 输入参数 Past size (过去的尺寸) 指定MetaForecast用于创建生成未来预测模型的柱数量。该模型以一条黄色线绘制在所选柱上。 Future size (未来的尺寸) 指定应预测的未来柱数量。预测的未来以粉色线表示,并在其上绘制了蓝色回归线。 Degree (程度) 此输入确定了MetaForecast将在市场上进行的分析级别。 Degree 描述  0 对于程度0,建议使用较大的值来设置“过去的尺寸”输入,以覆盖价格中的所有高峰、低谷和细节。  1 (建议的) 对于程度1,MetaForecast可以理解趋势,并通过较小的“过去的尺寸”生成更好的结果。  2 对于程度2,除了趋势,MetaForecast还可以识别反转点。对于大于1的程度,必须使用较高的“细节”和“噪音减少”输入值。  大于2 不建议使用大于
TPSpro RFI Levels MT5
Roman Podpora
4.55 (20)
反转区域 / 峰值交易量 / 主要参与者的活跃区域 =       TS TPSPRO系统 俄语使用说明     /       指示     英语     /           MT4版本      该指标的每位购买者还可免费获得: 6 个月内可访问 RFI SIGNALS 服务的交易信号 - 根据 TPSproSYSTEM 算法准备的切入点。 定期更新的培训材料 - 让您沉浸在策略中并提高您的专业水平。 工作日每天 24 小时提供支持,并可以访问封闭的交易者聊天室 - 沟通、协助和市场情况分析。 作者设定的文件——自动指标设置,无需额外努力即可实现最大效果。 主要功能: 显示卖家和买家的活跃区域! 指标显示所有正确的买入和卖出第一脉冲水平/区域。当这些水平/区域被激活时,即开始寻找切入点的地方,水平会改变颜色并填充特定颜色。还会出现箭头,以便更直观地了解情况。 LOGIC AI - 激活模板时显示用于搜索入口点的区域(圆圈) 为了提高视觉清晰度,添加了使用人工智能搜索入口点的显示区域的功能。 显示更高时间范围内的级别/区域(MTF 模式) 添加了使用更高时间间隔显示级别/区域
Atomic Analyst MT5
Issam Kassas
4.32 (19)
首先值得强调的是,该交易指标是非重绘、非延迟的指标,这使其成为手动和机器人交易的理想选择。 用户手册:设置、输入和策略。 Atomic Analyst是一种PA价格行动指标,利用价格的力量和动量来寻找市场上更好的机会。配备了高级过滤器,可帮助去除噪音和假信号,并提高交易潜力。使用多层复杂的指标,Atomic Analyst扫描图表,并将复杂的数学计算转化为任何初学者都能理解并用来做出一致交易决策的简单信号和颜色。 “Atomic Analyst”是专为新手和经验丰富的交易者量身定制的综合交易解决方案。它将高级指标和一流功能融合为一体的交易策略,使其成为所有类型交易者的多功能选择。 日内交易和剥头皮策略:专为快速准确的日内交易和短期交易而设计。 日内和摆动交易策略:可用作追求价格大幅波动的日内和摆动交易者的可靠工具。 多货币和市场:凭借其可靠的精度,在不同的工具和市场上运作。 多个时间框架:可在多个时间框架上使用,性能良好。 稳定性:所有指标均不重绘、不重绘和不滞后,确保可靠的信号。 信号清晰度:提供箭头信号,用于清晰的入场和出场点。 实时警报:通过交易入场、SL和TP警报通知交易者
MONEYTRON – ТВОЙ ЛИЧНЫЙ СИГНАЛ НА УСПЕХ! XAUUSD | AUDUSD | USDJPY | BTCUSD Поддержка таймфреймов: M5, M15, M30, H1 Почему трейдеры выбирают Moneytron? 82% успешных сделок — это не просто цифры, это результат продуманной логики, точного алгоритма и настоящей силы анализа. Автоматические сигналы на вход — не нужно гадать: когда покупать, когда продавать. 3 уровня Take Profit — ты сам выбираешь свой уровень прибыли: безопасный, уверенный или максимум. Четкий Stop Loss — контролируешь риск
Advanced Currency Strength28 MT5
Bernhard Schweigert
5 (2)
任何新手或专家交易者的最佳解决方案! 这个指标是一个独特的、高质量的、可负担得起的交易工具,因为我们纳入了一些专有的功能和一个新的公式。只需一个图表,你就可以读出28个外汇对的货币强度!想象一下,你的交易将如何得到改善,因为你的交易是在你的手中进行的。想象一下,你的交易将如何改善,因为你能够准确地确定新趋势或剥头皮机会的触发点? 用户手册:点击这里  https://www.mql5.com/en/blogs/post/697384 这是第一本,原版的! 不要买一个毫无价值的崇拜者的克隆品。 特别的 子窗口中的箭头显示强劲的货币势头GAP将指导你的交易! 当基础货币或报价货币处于超卖/超买区域(外盘斐波那契水平)时,在个人图表的主窗口中出现警告信号。 当货币力量从外围区间回落时,回撤/反转警报。 十字星模式的特别警报 可选择多个时间框架,以快速查看趋势! 货币强度线在所有的时间框架中都非常平稳,当使用较高的时间框架来识别总体趋势,然后使用较短的时间框架来确定精确的入口时,效果非常好。你可以根据自己的意愿选择任何时间框架。每个时间框架都由其自身进行了优化。 建立在新的基础算法
Gold Stuff mt5
Vasiliy Strukov
4.93 (178)
Gold Stuff mt5 是专为黄金设计的趋势指标,也可用于任何金融工具。 该指标不会重绘,也不会滞后。 推荐时间框架 H1。 购买后立即联系我以获得设置和个人奖励!   你可以在我的个人资料中找到它。   重要! 购买后立即与我联系,以获得说明和奖金!   您可以免费收到我们的强力支持和趋势扫描指标的副本,请私信。大部头书!   设置 绘制箭头 - 打开关闭。 在图表上绘制箭头。 警报 - 打开关闭声音警报。 电子邮件通知 - 打开关闭。 电子邮件通知。 Puch-notification - 打开关闭。 推送通知。 接下来,调整色域。 Gold Stuff mt5 是专为黄金设计的趋势指标,也可用于任何金融工具。 该指标不会重绘,也不会滞后。 推荐时间框架 H1。 购买后立即联系我以获得设置和个人奖励!   设置 绘制箭头 - 打开关闭。 在图表上绘制箭头。 警报 - 打开关闭声音警报。 电子邮件通知 - 打开关闭。 电子邮件通知。 Puch-notification - 打开关闭。 推送通知。 接下来,调整色域。
FX Volume MT5
Daniel Stein
4.82 (17)
FX Volume:从经纪商视角洞察真实市场情绪 简要概述 想要提升您的交易策略? FX Volume 可提供零售交易者和经纪商的持仓实时数据——远早于诸如 COT 之类的延迟报告。不论您希望获得持续稳定的收益,还是想在市场中多一分制胜的砝码, FX Volume 都能帮您识别重大失衡、确认突破以及完善风险管理。立即开启体验,让真实的成交量数据为您的交易决策带来革新! 1. 为什么 FX Volume 对交易者格外有用 极具准确度的早期预警 • 快速捕捉有多少交易者正在买入或卖出某个货币对——比大多数人提前一步。 • FX Volume 是 唯一 能够整合多家零售经纪商真实成交量数据并以简洁方式呈现的工具。 强力风险管理 • 及时识别多头或空头仓位的巨大不平衡,这往往预示着潜在的趋势反转,帮助您更自信地设置止损和目标位。 • 独家而真实的数据让每一次交易决策更具可靠性。 优化进场与出场点 • 发现“过度集中”的交易(大多数交易者都在同一方向),并通过真实成交量来确认突破。 • 避免依赖常见指标可能带来的误导信号,而是利用真实的实时成交量。 适配各种交易策略 • 将 FX
RelicusRoad Pro MT5
Relicus LLC
4.79 (19)
现在$ 147(更新后增加到$ 499) - 无限帐户(PC或Mac) RelicusRoad 用户手册 + 培训视频 + 访问 Private Discord Group + VIP 身份 一种看待市场的新方式 RelicusRoad 是世界上最强大的外汇、期货、加密货币、股票和指数交易指标,为交易者提供保持盈利所需的所有信息和工具。我们提供技术分析和交易计划,帮助每一位交易者取得成功,从初学者到高级。它是一个关键的交易指标,可以提供足够的信息来预测未来的市场。我们相信一个完整的解决方案,而不是图表上几个没有意义的不同指标。这是一个多合一指标,显示无与伦比且非常准确的信号、箭头 + 价格行为信息。 RelicusRoad 基于强大的人工智能,提供缺失的信息和工具来教育您并使您成为交易专家,成为成功的交易者。 几乎所有技术指标都滞后,这意味着它们只能报告已经发生的事情。因此,他们只确认您过去可以看到的价格已经在哪里。我们相信领先指标可以预测未来价格,而无需重新绘制,也不要过度依赖可能改变并导致重新绘制的滞后指标。如果您根据滞后指标进行交易并建立头寸,您就知道您已经大部分时间
CBT Quantum Maverick
Arpit Sharma
1 (1)
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%以上的高回报率资产。 额外优势: 全面的交易计划: 提供系统化和纪律性交易的分步支持计划。 高效时间利用: 每天仅需一
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 / Low’s  
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
*** Entry In The Zone and SMC Multi Timeframe” 是一款基于智能资金概念(SMC)的实时市场分析工具。它有效地集成了反转信号,并通过多时间框架结构检测自动识别关键反转区域,以及识别重要的兴趣点(POI)。此工具旨在帮助交易者以更大的信心和更有结构的方法进行交易决策和规划。*** 功能包括: 自动化市场结构检测(BOS 和 CHoCH)(mBOS 和 mCHoCH) 识别订单区块、供需区和公平价值缺口(FVG) 流动性区、溢价与折扣区域、平高和平低 关键兴趣点(POI) 交易时段(东京、伦敦、纽约) 可定制的仪表板,适应您的独特交易风格 实时操作,无信号重新绘制,全面的多时间框架覆盖,让您做 出更自信的交易决策 *** SMC | 智能资金概念(SMC)| 智能资金 | SMC 信号 | “Entry In The Zone” | 区域 | SMC 反转信号工具 | 市场结构 | 市场结构分析 | BOS/CHoCH | 自动 BOS 和 CHoCH 检测器 | 订单区块 | 供需区 | 公平价值缺口 | FVG | 流动性 | 溢价与折
Basic Harmonic Patterns Dashboard MT5
Mehran Sepah Mansoor
4.22 (9)
该仪表盘显示所选符号的最新可用谐波形态,因此您可以节省时间并提高效率 /  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:   调整模式的最大迭代次数(如果该值越小,则模式越少,性能越快;如果该值越大,则模式越多,性能越慢)
首先,值得强调的是,这个交易工具是非重绘、非重画和非滞后的指标,非常适合专业交易。 在线课程,用户手册和演示。 智能价格行动概念指标是一个非常强大的工具,既适用于新手,也适用于经验丰富的交易者。它将超过20个有用的指标合并到一个指标中,结合了高级交易思想,如内圈交易员分析和智能资金概念交易策略。该指标侧重于智能资金概念,提供有关大型机构交易方式的见解,帮助预测它们的动向。 它在流动性分析方面尤其擅长,有助于理解机构的交易方式。它擅长预测市场趋势,并仔细分析价格波动。通过将您的交易与机构策略对齐,您可以更准确地预测市场走向。该指标多才多艺,擅长分析市场结构,识别重要的订单区块,并识别各种模式。 它擅长识别BOS和CHoCH等模式,理解动量的转变,并突出显示供需强劲的关键区域。它还擅长发现强大的不平衡,并分析价格创造更高高点或更低低点的模式。如果您使用斐波那契回撤工具,该指标可以满足您的需求。它还可以识别相等的高点和低点,分析不同的时间框架,并通过仪表板显示数据。 对于使用更高级策略的交易者,该指标提供了工具,如公平价值差指标和优惠和折扣区域的识别。它特别关注高时间框架订单区块,并
Gold Trend 5
Sergei Linskii
3.5 (2)
黄金趋势 - 这是一个很好的股票技术指标。该指标算法分析资产的价格走势,并反映波动性和潜在进入区。 最佳指标信号: - 卖出 = 红色柱状图 + 红色短指针 + 同方向黄色信号箭头。 - 买入 = 蓝色柱状图 + 蓝色多头指针 + 同方向水蓝色信号箭头。 该指标的优点 1. 该指标生成的信号准确度高。 2. 只有当趋势发生变化时,才能重新绘制已确认的箭头信号。 3. 您可以在任何经纪商的 MetaTrader 5 交易平台上进行交易。 4. 您可以交易任何资产(货币、金属、加密货币、股票、指数等)。 5. 最好在 H1 时间框架(中期交易)上进行交易。 6. 在指标设置中可更改个别参数(TF、颜色等),以便每位交易者都能轻松定制适合自己的指标。 7. 该指标既可作为交易系统的主要补充,也可作为独立的交易系统使用。   注意:交易的入場準確性和盈利能力僅取決於交易者的技能。 任何指標都只是交易者的助手,而不是行動指南。黃金法則 - 根據趨勢開單,獲利並等待下一個最佳訊號。 MetaTrader 4 黄金趋势指标版本  祝大家交易好运,稳定盈利!
FX Levels MT5
Daniel Stein
5 (4)
FX Levels:适用于所有市场的高精度支撑与阻力 快速概览 想要精准确定适用于任何市场(外汇、指数、股票或大宗商品)的支撑与阻力吗? FX Levels 将传统的“Lighthouse”方法与前沿的动态分析相结合,实现近乎通用的准确性。依托真实经纪商经验和自动化的每日与实时更新, FX Levels 帮助您捕捉价格反转点、设置合理的盈利目标,并自信地管理交易。立即使用,体验更准确的支撑/阻力分析如何助力您的交易更上层楼! 1. 为什么 FX Levels 对交易者非常有利 极度精准的支撑 & 阻力区 • FX Levels 专为不同经纪商提供的行情源和时间设置而设计,可生成几乎相同的价位区,解决数据不一致的常见问题。 • 这意味着无论您在哪里交易,都能获得稳定一致的水平线,为策略打下更加牢固的基础。 结合传统与先进技术 • 通过将久经考验的“Lighthouse”方法与动态分析相融合, FX Levels 不仅限于每日刷新,还可针对新的价格波动进行即时更新。 • 您可以选择经典的静态方式,或实时捕捉新出现的水平,以贴近最新的市场行为。 识别清晰的反转点 • FX Lev
Grabber System MT5
Ihor Otkydach
5 (6)
向您介绍一款优秀的技术指标——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
MetaBands M5
Vahidreza Heidar Gholami
4.5 (2)
MetaBands使用强大且独特的算法绘制通道并检测趋势,以便为交易者提供进出交易的潜在点。它是一个通道指标和强大的趋势指标。它包括不同类型的通道,可以通过使用输入参数简单地合并以创建新通道。MetaBands使用所有类型的警报通知用户市场事件。 功能 支持大多数通道算法 强大的趋势检测算法 能够合并不同类型的通道 多时间帧和多货币(信号矩阵) 所有类型的警报功能(声音、屏幕闪烁、推送通知、电子邮件、弹出窗口、箭头) 它永远不会重绘 趋势检测 MetaBands使用在通道内振荡的蓝色线来检测趋势。当该线遇到通道的上界时,表明开始下跌趋势,当它遇到下界时,表明开始上涨趋势。如果蓝线接近中线,则市场处于整理期。 该指标使用独特的方法来检测趋势。一开始可能看起来有些复杂,但如果您观看视频教程,您就会意识到它是多么强大且易于使用。 入场和出场信号 当趋势变化或价格穿过上下通道时,MetaBands会立即通过不同的方法提醒交易者,这些方法可以在指标设置中启用。 信号矩阵 要监视来自不同时间框架的多个符号并在一个地方查看信号,请单击右上角按钮或按键盘上的M键以打开信号矩阵。该矩阵可以快速概览
介绍     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。 接触 如果您有任何疑问或需要帮助,请通过私人消息与我联系。
Beast Super Signal MT5
Dustin Vlok
2.71 (7)
正在寻找可以帮助您轻松识别有利可图的交易机会的强大外汇交易指标? Beast Super Signal 就是您的不二之选。 这个易于使用的基于趋势的指标持续监控市场状况,寻找新的发展趋势或跳入现有趋势。当所有内部策略一致且彼此 100% 融合时,Beast Super Signal 会发出买入或卖出信号,无需额外确认。当您收到信号箭头警报时,只需买入或卖出。 购买后给我留言,让我加入我的私人 VIP 群组! (仅限购买完整产品)。 购买后给我发消息以获取最新的优化设置文件。 此处提供 MT4 版本。 在此处 获取 Beast Super Signal EA。 查看评论部分以查看最新结果! Beast Super Signal 根据您偏好的 1:1、1:2 或 1:3 风险回报率建议入场价、止损和获利水平,让您放心交易。这个 Beast Super Signal 是 100% 不可重新绘制的,这意味着它永远不会重新计算或重新绘制,每次都能为您提供可靠的信号。 Beast Super Signal 指标适用于所有时间范围,包括货币对、指数、商品和加密货币对。 Beast S
作者的更多信息
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
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
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
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
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
To download MT5 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. This is a sample EA code that operates based on bullish and bearish linear regression candles . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input string     Risk_Management= "" ; input double fixed_lot_size=
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Twin Range Filter" by "colinmck". - The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. - This is a light-load processing and non-repaint indicator. - All input options are available.  - Buffers are available for processing in EAs. - You can message in private chat for further changes you need. Here is the code a sample EA that operated b
Vortex Indicator
Yashar Seyyedin
5 (1)
To download MT4 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
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
ADX and DI
Yashar Seyyedin
To download MT5 version please click here . This is the exact conversion from TradingView indicator: "ADX and DI" By " BeikabuOyaji". This is probably the most popular implementation of Average Directional Index available. This indicator lets you read the buffers as below: index 0: DIPlusBuffer ==> Green Line by default index 1: DIMinusBuffer ==> Red Line by default index 2: ADXBuffer ==> Navy Line by default - You can message in private chat for further changes you need. Note: This is a non-rep
To get access to MT5 version please click here . - This is a conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. note: Color filled areas and colored candles are not supported in MT4 version. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; inp
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Trend Regularity Adaptive Moving Average","TRAMA" By "   LuxAlgo   ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing
B Xtrender
Yashar Seyyedin
To download MT4 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
TRAMA by LuxAlgo
Yashar Seyyedin
5 (1)
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Trend Regularity Adaptive Moving Average","TRAMA" By " LuxAlgo ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
To get access to MT5 version please click here . This is the exact conversion from TradingView: "SwingArm ATR Trend Indicator" by " vsnfnd ". The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. Also known as : "Blackflag FTS" by "Jose Azcarate" This is a light-load processing and non-repaint indicator. All input options are available except multi time frame Buffers are available for processing in EAs. Extra option to show buy and sell
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
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 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
Volume Oscillator for MT4
Yashar Seyyedin
5 (1)
To download MT5 version please click  here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
To 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
- This is the exact conversion from TradingView: " 200-EMA Moving Average Ribbon" By "Dale_Ansel". - This indicator plots a series of moving averages to create a "ribbon" that offers a great visual structure to price action. - This indicator lets you read buffers. For information on buffers please contact via message. - This is a non-repaint and light processing load indicator
FREE
To download 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
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
To download MT5 version please click here . - This is the exact conversion from TradingView: "QQE mod" By "Mihkel00". - It can be used to detect trend direction and trend strength. - Gray bars represent weak trends. You can set thresholds to achieve better accuracy in detecting trend strength. - There is buffer index 15,16,17 to use in EA for optimization purposes. - The indicator is loaded light and non-repaint.  - You can message in private chat for further changes you need.
To download MT5 version please click  here . This is the exact conversion from TradingView: "WaveTrend [LazyBear]" By "zeusuk3". One of the coolest indicators out there to detect overbought and oversold zones. It can be used as a part of more complicated strategy and for confirming a potential trade setup. There are buffers to use in EAs also. The indicator is loaded light and non-repaint. - You can message in private chat for further changes you need. Thanks for downloading 
To download the MT5 version of Donchian Trend Ribbon please click here . You may also check this link . This is a conversion from TradingView: "Donchian Trend Ribbon" By "LonesomeTheBlue". This is a light-load processing and non-repaint indicator. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks for downloading
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.
筛选:
无评论
回复评论
版本 1.10 2024.08.25
Fixed a bug!