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

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
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 2 Copy of 10 Left  for 290 $ 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 个要使用的时间范围。 在仪表板内持续执行趋势强度排名排序。可以禁用此排序,以便更轻松地查找特定符号。然后,交易品种将按照它们在交易品种参数中输入的相同顺序显示,或者按照它们在市场报价窗口中显示的顺序显示。 通过在矩形内单击,将打开一个带有相关交易品种和时间范围的新图表。 将指标放在一张
To get access to MT4 version please click here . This is the exact conversion from TradingView: "Breakout Finder" by "LonesomeTheBlue". The screenshot shows similar results from tradingview and Metatrader. This is a medium-load processing indicator. Updates are calculated per candle. This is a non-repaint indicator. The major input options are available. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks for downloading
FREE
揭开市场真正隐藏的模式,使用 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 (79)
使用趋势筛选指标释放趋势交易的力量:由模糊逻辑和多货币系统提供支持的终极趋势交易解决方案! 使用趋势筛选器(由模糊逻辑提供支持的革命性趋势指标)提升您的趋势交易。 它是一个强大的趋势跟踪指标,结合了超过 13 种高级工具和功能以及 3 种交易策略,使其成为使您的 Metatrader 成为趋势分析器的多功能选择。 限时优惠:趋势筛选指标终身仅需 50 美元。 ( 原价 250$ ) (优惠延长) 体验趋势筛选器 100% 无需重新绘制的准确性,确保您的交易决策不受过去价格变化的影响。 释放多时间框架和多货币功能的多功能性,使您能够以无与伦比的信心在外汇、商品、加密货币和指数领域进行交易。 利用 Trend Screener 的综合策略套件增强您的交易: - 趋势跟踪策略和趋势延续策略 :趋势筛选器的趋势跟踪策略提供清晰的趋势延续信号,让您有效捕捉趋势走势并管理风险。 - 反转策略和早期入场点策略 :趋势筛选器的反转策略可检测市场方向的潜在变化,使您能够预测趋势反转并利用疲弱的市场趋势。通过早期入场点,您可以在潜在的趋势变化之前定位自己 获取可观的利润。 - 倒卖策略: 趋势筛选器的倒卖
Moneytron — профессиональный сигнальный индикатор тренда Индикатор Moneytron предназначен для тех, кто хочет зарабатывать стабильно и системно, торгуя по тренду. Он автоматически определяет: • Точки входа (Buy/Sell сигналы) • 3 уровня тейк-профита (TP1, TP2, TP3) • 3 уровня стоп-лосса (SL1, SL2, SL3) • Показывает реальную статистику успешности сделок прямо на графике Особенности: • Работает на всех валютных парах и металлах • Идеален для таймфреймов M30, H1 и выше • Подходит как для начинающи
Golden Trend Indicator MT5
Noha Mohamed Fathy Younes Badr
4.88 (17)
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 (5)
PUMPING STATION – 您的专属“全包式”交易策略 我们为您推出PUMPING STATION —— 一款革命性的外汇指标,它将使您的交易变得更加有趣且高效。这不仅仅是一个辅助工具,而是一套完整的交易系统,具备强大的算法,帮助您开始更加稳定的交易。 购买本产品,您将免费获得: 专属设置文件:用于自动配置,实现最大化性能。 逐步视频教程:学习如何使用PUMPING STATION策略进行交易。 Pumping Utility:专为PUMPING STATION打造的半自动交易机器人,让交易变得更加方便和简单。 购买后请立即联系我,我将为您提供所有额外资源的访问权限。 PUMPING STATION如何工作: 趋势监控:能够即时识别市场趋势方向。趋势是您最好的朋友。 进场信号:图表上的箭头会提示您何时进场以及交易方向。 明确的交易目标:指标会自动识别最佳的平仓时机。 回调交易:内置的基于布林带的价格通道可检测修正结束并发出新趋势开始的信号。 效率分析:如果当前设置效果较差,系统会自动提示。只需调整PUMPING STATION,即可获得最佳性能。 功能强大: 推送和邮件通知:即
FX Power MT5 NG
Daniel Stein
5 (13)
FX Power:分析货币强度,助您做出更明智的交易决策 概述 FX Power 是一款专业工具,帮助您全面了解主要货币和黄金在任何市场条件下的真实强度。通过识别强势货币用于买入,弱势货币用于卖出, FX Power 简化了交易决策,并帮助您发现高概率的交易机会。不论您是想跟随趋势还是通过极端的 Delta 值预测反转,这款工具都能完美适应您的交易风格。别再盲目交易——用 FX Power 让您的交易更加智慧。 1. 为什么 FX Power 对交易者极具价值 实时货币和黄金强度分析 • FX Power 实时计算并显示主要货币和黄金的相对强度,助您全面了解市场动态。 • 监控领先或落后资产,轻松识别值得交易的货币对。 全面的多时间框架视图 • 跟踪短期、中期和长期时间框架的货币和黄金强度,以便将您的交易策略与市场趋势保持一致。 • 无论是快进快出的短线交易还是更长期的投资策略, FX Power 都能为您提供所需的信息。 Delta 动态分析用于趋势和反转 • 极端 Delta 值常常预示反转机会,而平缓的 Delta 变化则确认趋势延续。 • 使用 Delta 分析,轻
Grabber System MT5
Ihor Otkydach
5 (5)
向您介绍一款优秀的技术指标——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
支撑和阻力筛选器是 MetaTrader 的一个级别指标,它在一个指标内提供多种工具。 可用的工具有: 1. 市场结构筛选器。 2. 看涨回调区。 3. 看跌回调区。 4.每日枢轴点 5.每周枢轴点 6. 每月枢轴点 7. 基于谐波形态和成交量的强大支撑和阻力。 8. 银行级区域。 限时优惠:HV 支撑和阻力指示器仅售 50 美元且终生可用。 (原价 125$) 通过访问我们的 MQL5 博客,您可以找到我们所有带有分析示例的高级指标: 单击此处 主要特点 基于谐波和音量算法的强大支撑和阻力区域。 基于谐波和成交量算法的看涨和看跌回调区域。 市场结构筛选器 每日、每周和每月的枢轴点。 文档 所有支持和阻力筛选器文档(说明)和策略详细信息均可在我们 MQL5 博客的这篇文章中找到: 单击此处。 接触 如果您有任何问题或需要帮助,请通过私信联系我。 作者 SAYADI ACHREF,金融科技软件工程师,Finansya 创始人。
TPSproTREND PrO MT5
Roman Podpora
4.72 (18)
VERSION MT4        —        ИНСТРУКЦИЯ RUS           —        INSTRUCTIONS  ENG 主要功能: 准确的输入信号,无需渲染! 如果出现信号,它仍然相关!这是与重提指标的一个重要区别,重提指标可以提供信号然后改变信号,这可能导致存款资金的损失。现在您可以以更高的概率和准确度进入市场。还有一个功能是在箭头出现后为蜡烛着色,直到达到目标(止盈)或出现反转信号。 显示止损/获利区域 为了提高搜索切入点时的视觉清晰度,创建了一个模块,该模块最初显示买入/卖出区域,在该区域中搜索进入市场的最佳点。用于处理止损水平的附加智能逻辑有助于随着时间的推移减小其大小,从而降低进入交易(移动 sl)时的初始风险。 显示较高时间范围内的最小值/最大值(MTF 模式) 添加了一项功能,可以显示较高时间间隔的最小/最大校正位置,并显示趋势变化。此外,MIN/MAX 现在有编号,显示修正内容。 风险回报率 (RR) 使用指标算法,可以检测精确的入场点,平均风险回报比超过1k2。这也伴随着视觉效果,例如,收到信号后会出现蜡烛的彩色草图。 无论
FX Volume MT5
Daniel Stein
4.82 (17)
FX Volume:从经纪商视角洞察真实市场情绪 简要概述 想要提升您的交易策略? FX Volume 可提供零售交易者和经纪商的持仓实时数据——远早于诸如 COT 之类的延迟报告。不论您希望获得持续稳定的收益,还是想在市场中多一分制胜的砝码, FX Volume 都能帮您识别重大失衡、确认突破以及完善风险管理。立即开启体验,让真实的成交量数据为您的交易决策带来革新! 1. 为什么 FX Volume 对交易者格外有用 极具准确度的早期预警 • 快速捕捉有多少交易者正在买入或卖出某个货币对——比大多数人提前一步。 • FX Volume 是 唯一 能够整合多家零售经纪商真实成交量数据并以简洁方式呈现的工具。 强力风险管理 • 及时识别多头或空头仓位的巨大不平衡,这往往预示着潜在的趋势反转,帮助您更自信地设置止损和目标位。 • 独家而真实的数据让每一次交易决策更具可靠性。 优化进场与出场点 • 发现“过度集中”的交易(大多数交易者都在同一方向),并通过真实成交量来确认突破。 • 避免依赖常见指标可能带来的误导信号,而是利用真实的实时成交量。 适配各种交易策略 • 将 FX
TPSpro RFI Levels MT5
Roman Podpora
4.55 (20)
指示       俄罗斯 -        英语   建议 与指示器一起使用     -       TPSpro 趋势专业版 -   MT4版本       主要功能: 向卖家和买家显示活跃区域! 该指标显示所有正确的初始买入和卖出脉冲水平/区域。激活这些水平/区域后,开始寻找切入点,水平会改变颜色并填充特定阴影。此外,还会显示箭头,以便更直观地了解情况。 显示更高时间范围内的级别/区域(MTF 模式) 添加了使用更高时间间隔显示级别/区域的功能。此外,该指标还具有自动趋势检测功能(   TPSproTREND PRO   )。 用于交易的单独专业的逐步算法。 该算法专为日内交易而设计,既可顺势交易,也可逆势交易。每个活动模板均提供详细说明。 适用于多种时间范围 。 TPSpro RFI 水平指标可用于图表上的任何时间范围,从一分钟(M1)开始一直到每月(MN)。 图形和声音警报。 该指标提供图形和声音指示,确保您不会错过交易入场信号。还提供手机通知。 简单有效的主动模式扫描仪。 这是一个非常紧凑的活动模式扫描仪,当模式在一个方向上在所有时间范围内激活时,它会自动警报并向您的手机发送
FX Levels MT5
Daniel Stein
5 (4)
FX Levels:适用于所有市场的高精度支撑与阻力 快速概览 想要精准确定适用于任何市场(外汇、指数、股票或大宗商品)的支撑与阻力吗? FX Levels 将传统的“Lighthouse”方法与前沿的动态分析相结合,实现近乎通用的准确性。依托真实经纪商经验和自动化的每日与实时更新, FX Levels 帮助您捕捉价格反转点、设置合理的盈利目标,并自信地管理交易。立即使用,体验更准确的支撑/阻力分析如何助力您的交易更上层楼! 1. 为什么 FX Levels 对交易者非常有利 极度精准的支撑 & 阻力区 • FX Levels 专为不同经纪商提供的行情源和时间设置而设计,可生成几乎相同的价位区,解决数据不一致的常见问题。 • 这意味着无论您在哪里交易,都能获得稳定一致的水平线,为策略打下更加牢固的基础。 结合传统与先进技术 • 通过将久经考验的“Lighthouse”方法与动态分析相融合, FX Levels 不仅限于每日刷新,还可针对新的价格波动进行即时更新。 • 您可以选择经典的静态方式,或实时捕捉新出现的水平,以贴近最新的市场行为。 识别清晰的反转点 • FX Lev
Gold Stuff mt5
Vasiliy Strukov
4.93 (178)
Gold Stuff mt5 是专为黄金设计的趋势指标,也可用于任何金融工具。 该指标不会重绘,也不会滞后。 推荐时间框架 H1。 购买后立即联系我以获得设置和个人奖励!   你可以在我的个人资料中找到它。   重要! 购买后立即与我联系,以获得说明和奖金!   您可以免费收到我们的强力支持和趋势扫描指标的副本,请私信。大部头书!   设置 绘制箭头 - 打开关闭。 在图表上绘制箭头。 警报 - 打开关闭声音警报。 电子邮件通知 - 打开关闭。 电子邮件通知。 Puch-notification - 打开关闭。 推送通知。 接下来,调整色域。 Gold Stuff mt5 是专为黄金设计的趋势指标,也可用于任何金融工具。 该指标不会重绘,也不会滞后。 推荐时间框架 H1。 购买后立即联系我以获得设置和个人奖励!   设置 绘制箭头 - 打开关闭。 在图表上绘制箭头。 警报 - 打开关闭声音警报。 电子邮件通知 - 打开关闭。 电子邮件通知。 Puch-notification - 打开关闭。 推送通知。 接下来,调整色域。
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
Basic Harmonic Patterns Dashboard MT5
Mehran Sepah Mansoor
4.13 (8)
该仪表盘显示所选符号的最新可用谐波形态,因此您可以节省时间并提高效率 /  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:   调整模式的最大迭代次数(如果该值越小,则模式越少,性能越快;如果该值越大,则模式越多,性能越慢)
IX Power MT5
Daniel Stein
4.86 (7)
IX Power:解锁指数、大宗商品、加密货币和外汇市场洞察 概述 IX Power 是一款多功能工具,可分析指数、大宗商品、加密货币和外汇市场的强弱表现。 FX Power 提供针对货币对的最高精度,利用所有可用货币对数据进行分析,而 IX Power 专注于基础资产的市场数据。这使得 IX Power 成为非外汇市场的理想选择,同时在需要简单外汇分析时也非常可靠。它可以无缝适用于任何图表,提供清晰的、有行动价值的洞察,帮助提升您的交易决策。 1. 为什么 IX Power 对交易者非常有价值 多市场强弱分析 • IX Power 分析指数、大宗商品、加密货币和外汇市场的强弱表现,为每个市场提供量身定制的洞察。 • 监控 US30、WTI、黄金、比特币等资产的表现,发现交易机会。 适用于更广泛的市场 • 对于外汇交易, FX Power 提供无与伦比的精度,通过分析所有相关货币对。 • IX Power 专注于基础资产的市场数据,非常适合非外汇市场及简化的外汇分析。 实时适应性 • 借助自适应算法, IX Power 实时响应市场数据变化,保持分析的最新性。 • 实时更新
Trend Line Map Pro MT5
STE S.S.COMPANY
4.09 (11)
趋势线图指标是趋势筛选器指标的插件。它用作趋势筛选器(趋势线信号)生成的所有信号的扫描仪。 它是基于趋势筛选器指标的趋势线扫描仪。如果您没有 Trend Screener Pro Indicator,Trend Line Map Pro 将无法使用。 It's a Trend Line Scanner based on Trend Screener Indicator. If you don't have Trend Screener Pro Indicator,     the Trend Line Map Pro will not work . 通过访问我们的 MQL5 博客,您可以下载趋势线图指标的免费版本。购买前试用,不受 Metatrader Tester 限制。 :  点击这里 1. 容易获得的优势 根据货币和时间范围显示买入和卖出信号。 评估自图表中出现箭头以来价格上涨或下跌的点数。 (趋势筛选指标箭头) 显示信号的时序。 获取多时间范围和多货币警报以购买和出售警报。 2. 如何使用趋势线图 如何显示买卖信号仪表板? 如果您有任何问题或需要帮助,请通过私
Quantum TrendPulse
Bogdan Ion Puscasu
5 (13)
介绍 Quantum TrendPulse   ,这是一款终极交易工具,它将 SuperTrend   、   RSI 和 Stochastic 的强大功能整合到一个综合指标中,以最大限度地发挥您的交易潜力。该指标专为追求精准和效率的交易者而设计,可帮助您自信地识别市场趋势、动量变化以及最佳进入和退出点。 主要特点: 超级趋势整合: 轻松跟随当前的市场趋势并乘上盈利浪潮。 RSI 精度: 检测超买和超卖水平,非常适合把握市场逆转时机,可用作 SuperTrend 的过滤器 随机精度: 利用随机振荡在波动的市场中寻找隐藏的机会, 用作超级趋势的过滤器 多时间范围分析: 从 M5 到 H1 或 H4,在不同时间范围内关注市场动态。 可定制的警报: 当您的自定义交易条件得到满足时收到通知,这样您就不会错过任何交易。 无论您是新手还是经验丰富的交易员,   Quantum TrendPulse 都能为您提供所需的优势,帮助您增强策略并自信地进行交易。借助这一强大的指标,将洞察力转化为利润 — 掌控您的交易! ***购买 Quantum TrendPulse,即可免费获得 Quantum Tr
首先,值得强调的是,这个交易工具是非重绘、非重画和非滞后的指标,非常适合专业交易。 在线课程,用户手册和演示。 智能价格行动概念指标是一个非常强大的工具,既适用于新手,也适用于经验丰富的交易者。它将超过20个有用的指标合并到一个指标中,结合了高级交易思想,如内圈交易员分析和智能资金概念交易策略。该指标侧重于智能资金概念,提供有关大型机构交易方式的见解,帮助预测它们的动向。 它在流动性分析方面尤其擅长,有助于理解机构的交易方式。它擅长预测市场趋势,并仔细分析价格波动。通过将您的交易与机构策略对齐,您可以更准确地预测市场走向。该指标多才多艺,擅长分析市场结构,识别重要的订单区块,并识别各种模式。 它擅长识别BOS和CHoCH等模式,理解动量的转变,并突出显示供需强劲的关键区域。它还擅长发现强大的不平衡,并分析价格创造更高高点或更低低点的模式。如果您使用斐波那契回撤工具,该指标可以满足您的需求。它还可以识别相等的高点和低点,分析不同的时间框架,并通过仪表板显示数据。 对于使用更高级策略的交易者,该指标提供了工具,如公平价值差指标和优惠和折扣区域的识别。它特别关注高时间框架订单区块,并
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%以上的高回报率资产。 额外优势: 全面的交易计划: 提供系统化和纪律性交易的分步支持计划。 高效时间利用: 每天仅需一
FX Dynamic:借助可定制的 ATR 分析,追踪波动率与趋势 概述 FX Dynamic 是一款强大的工具,通过计算平均真实波幅(ATR)来为交易者提供日内和日间波动性方面的深度见解。通过设置 80%、100%、130% 等关键波动率阈值,您可以快速识别潜在的盈利机会,或者在市场超出常规范围时及时得到预警。 FX Dynamic 可根据您经纪商的时区进行调整,帮助您保持一致的波动率衡量标准,并能与 MetaTrader 平台完美结合,实现实时分析。 1. 为什么 FX Dynamic 对交易者极具价值 实时 ATR 洞察 • 仅需一眼便可了解日间与日内波动水平。当价格触及或突破 80%、100%、130% 的 ATR 阈值时,会发出提示,让您知道市场是否达到临界水平。 • 在波动完全爆发前预判可能的衰竭或突破走势。 多市场通用 • 适用于外汇、商品、指数等多种资产。 FX Dynamic 可以自动识别经纪商时区,也可手动进行调整。 • 您可选择只专注于某一特定品种,或在多市场保持一致的 ATR 标准。 更智能的风险管理 • 利用 ATR 门槛来优化止损或止盈位置。当市场
- Lifetime update free Contact me for instruction, any questions! Related Product:  Gold Trade Expert MT5 - Non-repaint - I just sell my products in Elif Kaya Profile, any other websites are stolen old versions, So no any new updates or support. Introduction The breakout and retest strategy is traded support and resistance levels. it involves price breaking through a previous level.  The break and retest strategy is designed to help traders do two main things, the first is to avoid false breako
Royal Scalping Indicator M5
Vahidreza Heidar Gholami
5 (6)
Royal Scalping Indicator is an advanced price adaptive indicator designed to generate high-quality trading signals. Built-in multi-timeframe and multi-currency capabilities make it even more powerful to have configurations based on different symbols and timeframes. This indicator is perfect for scalp trades as well as swing trades. Royal Scalping is not just an indicator, but a trading strategy itself. Features Price Adaptive Trend Detector Algorithm Multi-Timeframe and Multi-Currency Trend Low
Atomic Analyst MT5
Issam Kassas
4.32 (19)
首先值得强调的是,该交易指标是非重绘、非延迟的指标,这使其成为手动和机器人交易的理想选择。 用户手册:设置、输入和策略。 Atomic Analyst是一种PA价格行动指标,利用价格的力量和动量来寻找市场上更好的机会。配备了高级过滤器,可帮助去除噪音和假信号,并提高交易潜力。使用多层复杂的指标,Atomic Analyst扫描图表,并将复杂的数学计算转化为任何初学者都能理解并用来做出一致交易决策的简单信号和颜色。 “Atomic Analyst”是专为新手和经验丰富的交易者量身定制的综合交易解决方案。它将高级指标和一流功能融合为一体的交易策略,使其成为所有类型交易者的多功能选择。 日内交易和剥头皮策略:专为快速准确的日内交易和短期交易而设计。 日内和摆动交易策略:可用作追求价格大幅波动的日内和摆动交易者的可靠工具。 多货币和市场:凭借其可靠的精度,在不同的工具和市场上运作。 多个时间框架:可在多个时间框架上使用,性能良好。 稳定性:所有指标均不重绘、不重绘和不滞后,确保可靠的信号。 信号清晰度:提供箭头信号,用于清晰的入场和出场点。 实时警报:通过交易入场、SL和TP警报通知交易者
Gold Trend 5
Sergei Linskii
3.5 (2)
黄金趋势 - 这是一个很好的股票技术指标。该指标算法分析资产的价格走势,并反映波动性和潜在进入区。 最佳指标信号: - 卖出 = 红色柱状图 + 红色短指针 + 同方向黄色信号箭头。 - 买入 = 蓝色柱状图 + 蓝色多头指针 + 同方向水蓝色信号箭头。 该指标的优点 1. 该指标生成的信号准确度高。 2. 只有当趋势发生变化时,才能重新绘制已确认的箭头信号。 3. 您可以在任何经纪商的 MetaTrader 5 交易平台上进行交易。 4. 您可以交易任何资产(货币、金属、加密货币、股票、指数等)。 5. 最好在 H1 时间框架(中期交易)上进行交易。 6. 在指标设置中可更改个别参数(TF、颜色等),以便每位交易者都能轻松定制适合自己的指标。 7. 该指标既可作为交易系统的主要补充,也可作为独立的交易系统使用。   注意:交易的入場準確性和盈利能力僅取決於交易者的技能。 任何指標都只是交易者的助手,而不是行動指南。黃金法則 - 根據趨勢開單,獲利並等待下一個最佳訊號。 MetaTrader 4 黄金趋势指标版本  祝大家交易好运,稳定盈利!
首先,值得强调的是,这个交易系统是一个非重绘、非重画和非滞后的指标,这使得它非常适合手动和机器人交易。 在线课程,手册和下载预设。 “智能趋势交易系统 MT5”是专为新手和经验丰富的交易者量身定制的综合交易解决方案。它结合了超过 10 个优质指标,具有 7 多个强大的交易策略,使其成为适用于各种市场条件的多功能选择。 趋势跟随策略:提供精确的入场和止损管理,以有效地跟随趋势。 反转策略:识别潜在的趋势反转,使交易者能够利用区域市场的机会。 剃头策略:专为快速准确的日内交易和短期交易而设计。 稳定性:所有指标都不会重绘、不会重画和不会滞后,确保可靠的信号。 定制:支持自定义策略,以满足个人交易偏好。超过 7 种策略和组合可帮助您找到最佳策略。 信号清晰度:提供箭头信号,以指示清晰的入场和退出点。 实时警报:通过交易进出警报使交易者保持了解。 深入分析:提供更高时间框架的趋势分析和实时交易监控。 自适应颜色编码:利用蜡烛颜色编码来显示成交量、趋势和反转蜡烛信号。通过蜡烛颜色分析市场方向。 “智能趋势交易系统 MT5”赋予交易者必要的工具,以便在各种市场条件下做出明智和战略性的交易决策。无论
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  
ICT, SMC, SMART MONEY CONCEPTS, SMART MONEY, Smart Money Concept, Support and Resistance, Trend Analysis, Price Action, Market Structure, Order Blocks, BOS/CHoCH,   Breaker Blocks ,  Momentum Shift,   Supply&Demand Zone/Order Blocks , Strong Imbalance,   HH/LL/HL/LH,    Fair Value Gap, FVG,  Premium  &   Discount   Zones, Fibonacci Retracement, OTE, Buy Side Liquidity, Sell Side Liquidity, BSL/SSL Taken, Equal Highs & Lows, MTF Dashboard, Multiple Time Frame, BigBar, HTF OB, HTF Market Structure
Timeframes Trend Scanner   is a trend analyzer or trend screener indicator that helps you know the trend in   all timeframes of selected symbol you are watching . This indicator provides clear & detailed analysis results on a beautiful dashboard, let you able to use this result right away without need to do any additional analysis. How it works Step 1: Calculate values of 23 selected & trusted technical indicators (Oscillator & Moving Average indicators) Step 2: Analyze all indicators using bes
KT Trend Trading Suite MT5
KEENBASE SOFTWARE SOLUTIONS
KT Trend Trading Suite 是一款多功能指标,它结合了趋势跟随策略和多个突破点作为入场信号。 当新趋势形成后,该指标会提供多个入场机会,让交易者能够顺势而为。为了避免不重要的入场点,还引入了回调阈值的概念。 MT4版本可在此处获取  https://www.mql5.com/en/market/product/46268 功能特点 将多种市场动态纳入一个公式中,以清晰展现市场趋势。 绘制矩形框标记入场信号,并配合局部高点和低点进行定位。 指标会自动评估自身信号的准确性,并提供多个简明的性能指标。 内置多周期仪表盘,扫描所有可用时间周期,并显示每个周期内的趋势方向。 输入参数 History Bars:   用于分析历史信号的K线数量。  Signals Period:   整数值,决定入场信号的强度。 Pullback Depth:   整数值,决定趋势继续前常见的回调深度。 Trend Period:   整数值,用于判断主要趋势方向。 Show MTF Dashboard:   显示/隐藏多周期扫描仪表盘。 Performance Analysis:
Gartley Hunter Multi
Siarhei Vashchylka
5 (9)
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all possible timeframes. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Patterns: Gartley, Butterfly, Shark, Crab. Bat, Alternate Bat, Deep Crab, Cypher 2. Simultaneous search for patterns on dozens of trading instruments and on all possible timeframes 3. Search for patterns of all possible sizes. From the smallest to the largest 4. All fou
作者的更多信息
Hull Suite By Insilico
Yashar Seyyedin
5 (2)
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Hull Suite" By "Insilico". - The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #include <Trade\Trade.mqh> CTrade tra
This is the Chandelier Exit trend indicator applied to heiken ashi candles based on "G TREND GUNBOT" by "LUIS_GANDATA_G_TREND" on tradingview. The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms.(make sure to disable heiken ashi mode to get the same results as the screenshot.) Heiken ashi candles filter out many of the chops and therefore as an input to Chandelier Exit you achieve well filtered Buy and Sell signals. Also you can choose
FREE
ADX and DI
Yashar Seyyedin
To download MT5 version please click here . This is the exact conversion from TradingView indicator: "ADX and DI" By " BeikabuOyaji". This is probably the most popular implementation of Average Directional Index available. This indicator lets you read the buffers as below: index 0: DIPlusBuffer ==> Green Line by default index 1: DIMinusBuffer ==> Red Line by default index 2: ADXBuffer ==> Navy Line by default - You can message in private chat for further changes you need. Note: This is a non-rep
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Trend Regularity Adaptive Moving Average","TRAMA" By "   LuxAlgo   ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
Volume Oscillator
Yashar Seyyedin
To download MT4 version please click here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
Strategy description Detect trend based on GoldTrader rules. Enter in both direction as much as needed to achieve acceptable amount of profit. The screenshot is the backtest EURUSD related to 2020.1.1 to 2023.1.1 in M15. ==> 30% draw-down and 30% profit over three years. This is a light load expert. Most calculations are done based on M15 candle closure. Note: Martingale is a betting system.
FREE
Vortex Indicator
Yashar Seyyedin
5 (1)
To download MT4 version please click here . - This is vortex indicator. - It is used to detect trend strength and direction. - It consists of two line(buffers). ==> VIM and VIP - There are three types of signals related to this indicator: 1. crossing VIM and VIP 2. threshold on distance between VIP and VIM 3. VIP above VIM vice versa. - This is a non-repaint indicator with light processing.
FREE
To download MT5 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. This is a sample EA code that operates based on bullish and bearish linear regression candles . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input string     Risk_Management= "" ; input double fixed_lot_size=
To get access to MT5 version please click here . - This is a conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. note: Color filled areas and colored candles are not supported in MT4 version. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; inp
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Twin Range Filter" by "colinmck". - The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. - This is a light-load processing and non-repaint indicator. - All input options are available.  - Buffers are available for processing in EAs. - You can message in private chat for further changes you need. Here is the code a sample EA that operated b
GoldTrader
Yashar Seyyedin
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. martingale version is available here . Strategy description - Detect trend based on EMA18-EMA50-SMA200 alignment in three time frames: M15, H1, H4 - Trade in trend direction and exit when above alignment is broken. - The bot is tuned to trade XAUUSD(Gold). - The bot output is break even in rangin
FREE
To 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
For MT5 version please click here . This is the exact conversion from TradingView: "Average True Range Stop Loss Finder" By "veryfid". - This indicator implements a deviation channel. - The channel determines trend direction as well as stop loss placement. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing
B Xtrender
Yashar Seyyedin
To download MT4 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
For MT4 version please click here . This is the exact conversion from TradingView: "Range Filter 5min" By "guikroth". - This indicator implements Alerts as well as the visualizations. - Input tab allows to choose Heiken Ashi or Normal candles to apply the filter to. It means it is a (2 in 1) indicator. - This indicator lets you read the buffers for all data on the window. For details on buffers please message me. - This is a non-repaint and light processing load indicator. - You can message in p
TRAMA by LuxAlgo
Yashar Seyyedin
5 (1)
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Trend Regularity Adaptive Moving Average","TRAMA" By " LuxAlgo ". - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart. - You can message in private chat for further changes you need. Thanks for downloading
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Stochastic Momentum Index" By "UCSgears". - This is a popular version of stochastic oscillator on tradingview. - This is a light-load processing and non-repaint indicator. - Buffers are available for the lines on chart. - You can message in private chat for further changes you need. Thanks for downloading
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Twin Range Filter" by "colinmck". - The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. - This is a light-load processing and non-repaint indicator. - All input options are available.  - Buffers are available for processing in EAs. - You can message in private chat for further changes you need. Here is the sample code of EA that operates
To download the MT5 version of Donchian Trend Ribbon please click here . You may also check this link . This is a conversion from TradingView: "Donchian Trend Ribbon" By "LonesomeTheBlue". This is a light-load processing and non-repaint indicator. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks for downloading
To get access to MT4 version please click here . This is the exact conversion from TradingView: "Supertrend" by " KivancOzbilgic ". The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. This is a light-load processing and non-repaint indicator. You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Supertrend . #include <Trade\Trade.mqh> CTrade tra
To get access to MT5 version please click here . This is the exact conversion from TradingView: "SwingArm ATR Trend Indicator" by " vsnfnd ". The screenshot shows similar results from tradingview and Metatrader when tested on ICMarkets on both platforms. Also known as : "Blackflag FTS" by "Jose Azcarate" This is a light-load processing and non-repaint indicator. All input options are available except multi time frame Buffers are available for processing in EAs. Extra option to show buy and sell
To 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
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 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
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 MT4 version please click here . This is the exact conversion from TradingView: "RSI versus SMA" By "JayRogers". This indicator lets you read the buffers for all Lines on chart.  Note: This is an indicator, Not an expert. Meaning It does not take trades. If you want the EA please contact via message. You can easily use the indicator to understand the logic behind trades that the TradingView strategy takes. The strategy is profitable if this indicator is applied to the right symbol at
FREE
To download 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
筛选:
无评论
回复评论
版本 1.10 2024.08.25
Fixed a bug!