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

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.
For MT4 version please click here . - This is the exact conversion from TradingView source: "Hurst Cycle Channel Clone Oscillator" By "LazyBear". - All input options are available. - This is a non-repaint and light processing load indicator. - Buffers are available for use in EAs and optimization purposes. - You can message in private chat for further changes you need.
RoboTick Signal
Mahir Okan Ortakoy
Hello, In this indicator, I started with a simple moving average crossover algorithm. However, in order ot get more succesfull results, I created different scenarios by basin the intersections and aptimized values of the moving averages on opening, closing, high and low values. I am presenting you with the most stable version of the moving averages that you have probably seen in any environment. We added a bit of volume into it. In my opinion, adding the Bollinger Band indicator from the ready-
XFlow
Maxim Kuznetsov
XFlow shows an expanding price channel that helps determine the trend and the moments of its reversal. It is also used when accompanying transactions to set take profit/stop loss and averages. It has practically no parameters and is very easy to use - just specify an important moment in the history for you and the indicator will calculate the price channel. DISPLAYED LINES ROTATE - a thick solid line. The center of the general price rotation. The price makes wide cyclical movements around the
[ 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
Market Noise 市場噪音是確定價格圖表上的市場階段的指標,並且還可以在累積或派發階段發生時區分清晰平滑的趨勢運動和嘈雜的平坦運動。 每個階段都適合自己的交易類型:趨勢適合趨勢追蹤系統,平坦適合激進型交易。 當市場噪音開始時,您可以決定退出交易。 同樣,反之亦然,一旦噪音結束,您就需要關閉激進的交易系統。 有人可以使用兩種類型的交易策略進行交易,從一種策略切換到另一種策略。 因此,該指標在交易決策領域中扮演了好助手的角色。 任何價格變動都可以分為兩個部分 - 選定時間段內的總體價格變動以及該時間段內以價格波動形式出現的噪音。 同時,不同時期的不同市場可以表現出噪音和趨勢成分之間廣泛的相互關係(圖1)。 價格變動的噪音水平越高,辨別潛在趨勢的方向和強度就越困難。 因此,在這種情況下有必要使用較慢的趨勢識別方法。 另一方面,在低噪音水平的市場中,主要趨勢很容易確定,並且更快的確定趨勢的方法是合理的,確保價格方向變化的交易訊號的滯後最小。 為了確定市場狀態,使用高級效率比 (ER),該比率基於特定時期內總價格變動與噪音市場變動總和的指數比較。效率比 (ER) 可以變化從0到1。
- This is an implementation of OCC ==> open close cross - This indicator applies twelve different averaging methods to open and close prices separately to signal the trend switching. - All MA methods are set as input as well as period and different offsets applied to linear regression and ALMA averaging. - Buffers 16 and 17 can be used in EAs to detect trend direction. - You can message in private chat for further changes you need.
Volume Trade Levels
Mahmoud Sabry Mohamed Youssef
The idea behind this indicator is very simple , First it contains 2 mechanisms to place your trades: 1- Enter the Pips you want to duplicate to price levels. 2- Automatically let the indicator specify the largest Buy / Sell Volume Candle and place duplicated levels based on the candle itself. How it works: 1- Enter the Pips you want to duplicate to price levels:    1- once the indicator is loaded you will need first to Specify the number of pips in the indicator Configuration window ,you can
ShortBS
Yan Qi Zhu
ShortBS是一个很好的短线交易指示器,能很好与 BestPointOfInitiation ( https://www.mql5.com/zh/market/product/96671 )配合,能让你找到最合适的buy和sell位置,指标不含有未来函数,不会重新绘制。是一个针对(如果你感觉到这个指标能够帮助你进行更准确的交易,请帮忙给个好评,希望我的作品能够帮助更多有需要的人) ===================参数列表===================== maPeriod: 25 slowPeriod:20 fastPeriod:10 stepPeriod:5 =================参考使用方法=================== 此指标可以适用于任何交易品种,能够用在任何周期。
To get access to MT4 version please click   here . This is the exact conversion from TradingView: QQE MT4 Glaz-modified by JustUncleL This is a light-load processing and non-repaint indicator. All input options are available. This is not a multi time frame indicator. Buffers are available for processing in EAs. You can message in private chat for further changes you need.
Buy Sell Visual MTF
Naththapach Thanakulchayanan
This MT5 indicator, Bull Bear Visual MTF (21 Time Frames), summarize the strength color graphic and percentages of power for both  Bull and Bear in current market emotion stage which will show you in multi time frames and sum of the total Bull and Bear power strength which is an important information for traders especially you can see all Bull and Bear power in visualized graphic easily, Hope it will be helpful tool for you for making a good decision in trading.
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. Thanks
PriceActionOracle
Vitalii Zakharuk
The PriceActionOracle indicator greatly simplifies your trading decision-making process by providing accurate signals about market reversals. It is based on a built-in algorithm that not only recognizes possible reversals, but also confirms them at support and resistance levels. This indicator embodies the concept of market cyclicality in a form of technical analysis. PriceActionOracle tracks the market trend with a high degree of reliability, ignoring short-term fluctuations and noise around
Kill Zones MT5
Diego Arribas Lopez
MT4 Version Kill Zones Kill Zones allows you to insert up to 3 time zones in the chart. The visual representation of the Kill Zones in the chart together with an alert and notification system helps you to ignore fake trading setups occurring outside the Kill Zones or specific trading sessions. Using Kill Zones in your trading will help you filter higher probability trading setups. You should select time ranges where   the market   usually reacts with high volatility. Based on   EST time zone, f
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
This is a two in one indicator implementation of Average Directional Index based on heiken ashi and normal candles. Normal candles and Heiken Ashi is selectable via input tab. The other inputs are ADX smoothing and DI length. This indicator lets you read the buffers: +di: buffer 6 -di: buffer 7 -adx: buffer 10 Note: This is a non-repaint indicator with light load processing. - You can message in private chat for further changes you need.
CAD Sniper X MT5
Mr James Daniel Coe
4.91 (11)
BUILDING ON THE SUCCESS OF MY POPULAR FREE EA 'CAD SNIPER'... I PRESENT CAD SNIPER X! THOUSANDS MORE TRADES | NO BROKER LIMITATIONS | BETTER STATISTICS | MULTIPLE STRATEGIES Send me a PRIVATE MESSAGE after purchase for the manual and a free bonus TWO STRATEGIES IN ONE FOR AUDCAD, NZDCAD, GBPCAD and CADCHF Strategy 1 can be used with any broker, trades much more frequently and is the default strategy for CAD Sniper X. It's shown robust backtest success for many years and is adapted
Boom 600 Precision Spike Detector The Boom 600 Precision Spike Detector is your ultimate tool for trading the Boom 600 market with precision and confidence. Equipped with advanced features, this indicator helps you identify potential buy opportunities and reversals, making it an essential tool for traders aiming to capture spikes with minimal effort. Key Features: Non-Repainting Signals: Accurate, non-repainting signals that you can trust for reliable trading decisions. Audible Alerts: Stay on t
Trend dashboard MT5
Jan Flodin
5 (1)
当识别出强劲趋势或趋势逆转时,此多时间框架和多品种趋势指标会发出警报。它可以通过选择使用移动平均线(单或双(MA 交叉))、RSI、布林带、ADX、综合指数(Constance M. Brown)、Awesome(比尔威廉姆斯)、MACD(信号线)来构建仪表板来实现)、Heiken Ashi 平滑、赫尔移动平均线、随机指标交叉、江恩 HiLo 激活器和交易者动态指数。它可以用于从 M1 到 MN 的所有时间范围。最大限度。仪表板中可以同时显示 9 个时间范围。仪表板中的颜色为绿色代表看涨,红色代表看跌,蓝色代表中性(指标值不在范围内)。 结合您自己的规则和技术,该指标将允许您创建(或增强)您自己的强大系统。 特征 指标可以将信号写入全局变量,智能交易系统可以使用这些变量进行自动交易 。 最多可以选择 9 个要使用的时间范围。 在仪表板内持续执行趋势强度排名排序。可以禁用此排序,以便更轻松地查找特定符号。然后,交易品种将按照它们在交易品种参数中输入的相同顺序显示,或者按照它们在市场报价窗口中显示的顺序显示。 通过在矩形内单击,将打开一个带有相关交易品种和时间范围的新图表。 将指标放在一张
Seasonal Pattern Trader
Dominik Patrick Doser
Disclaimer : Keep in mind that seasonal patterns are not always reliable. Therefore, thoughtful risk management is crucial to minimize losses.  Seasonal patterns in the financial world are like a well-guarded secret that successful investors use to their advantage. These patterns are recurring price movements that occur during specific periods or around special events. Additionally, there are also intraday patterns that repeat. For example, Uncle Ted from Forex Family suggests examining previou
In order for Trailing Money Python   to work more efficiently, it was designed to be quite simple and plain and optimized by adding the Trailing Stop.  The robot only trades in a 5 minute time frame. There is a saying that brokers often use: "Earnings are worthy of the wallet!" Here, we see this word as a philosophy of trade. Therefore, we developed this robot. ** Timeframe: 5 Minutes ** Supported: ***Especially Stocks at Futures ** The minimum amount depends on the margin requirement of t
Nasdaq 5 Gage MT5
Kambiz Shahriarynasab
For Nasdaq trading, the most important principle is to know the trend of the fund. This indicator with 6 green and red lights provides you with the daily path of this important indicator. This indicator has been tested for 6 months and has a win rate of over 85%. Be sure to contact me before purchasing to get the necessary instructions on how to use and set up this indicator. You should use a broker that has dollar index, vix, and commodities. MT4 Version You can contact us via Instagram,
Impulse fractals indicator - is counter-trend oriented complex market fractal pattern.  Market creates bull/bear impulse, trend starts, fractals on impulsed wave are an agressive pullback signals. Buy arrow is plotted when market is bearish and it's impulse showed up-side fractal, and sell arrow is plotted when market is bullish and it's impulse showed dn-side fractal. Main indicator's adjustable inputs : impulsePeriod - main period of impulse histogram  filterPeriod  - smoothes impulse accordi
Traffic Signal
Ramzi Abuwarda
推出瞩目的MT5指标——交通信号,它基于分析RSI(相对强弱指标)、Stochastics(随机指标)、CCI(商品通道指标)和趋势等多个时间框架上的水平,以获取最准确的入场信号的特殊策略。交通信号是您成功交易的终极通道!该创新指标精确且专业,通过集成先进的技术指标,并覆盖所有时间框架,助您准确把握市场动向,为您提供无与伦比的自信心。 通过交通信号,您可以全面分析关键指标,经过精密校准,以探测最具利润潜力的交易机会。告别不确定性,迎接明智决策的新时代。交通信号将RSI、Stochastics、CCI和趋势等指标融合得天衣无缝,为您描绘市场动态提供鲜活画面,前所未有。 畅享轻松的市场趋势和模式,交通信号为您持续监测各个时间框架。无论您偏好短期激动还是长期战略,这一杰出指标均可满足您的交易风格,为您提供对市场起伏的整体认知。 交通信号的准确性是其成功的基石。通过广泛的研究与开发,该指标提供精确调校和时机准确的信号。告别虚假信号,迎接前所未有的可靠性水平。就像有一位可信赖的盟友与您并肩作战,以毫不动摇的准确性引导您走向丰盈机会。 通过直观的界面和易于理解的信号,您将体验到自信交易的乐趣。无论
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Twin Range Filter" by " colinmck ". - This is a light-load processing and non-repaint indicator. - All input options are available.  - Buffers are available for processing in EAs. - You can message in private chat for further changes you need. Here is the code a sample EA that operated based on signals coming from the indicator: #include <Trade\Trade.mqh> CTrade trade; int handle_twr= 0 ; input gro
Dragon Ultra
Dang Cong Duong
5 (1)
At first, I got my teeth into   Dragon Ultra   Expert Advisor. Build a smart grid both with the trend and against the trend. The powerful combination of locking and partial loss closure. The program is constantly being improved and upgraded. You should use the  Dragon Training proficiently before buying the product. You can run in real environment with the Dragon Lite , note that the input parameters are hidden. Advantages of the Dragon Ultra Smart recovery system with Fibonacci grid Good resist
Introduction This indicator detects volume spread patterns for buy and sell opportunity. The patterns include demand and supply patterns. You might use each pattern for trading. However, these patterns are best used to detect the demand zone (=accumulation area) and supply zone (=distribution area). Demand pattern indicates generally potential buying opportunity. Supply pattern indicates generally potential selling opportunity. These are the underlying patterns rather than direct price action. T
Market Session Visual
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 yo
该产品的买家也购买
TPSpro RFI Levels MT5
Roman Podpora
4.75 (12)
指示       俄罗斯 -        英语   建议 与指示器一起使用     -       TPSpro 趋势专业版 -   MT4版本       交易中的一个关键要素是做出买卖交易工具决定的区域或水平。尽管主要参与者试图隐藏他们在市场中的存在,但他们不可避免地会留下痕迹。我们的任务是学习如何识别这些痕迹并正确解释它们。 主要功能: 向卖家和买家显示活跃区域! 该指标显示所有正确的初始买入和卖出脉冲水平/区域。激活这些水平/区域后,开始寻找切入点,水平会改变颜色并填充特定阴影。此外,还会显示箭头,以便更直观地了解情况。 显示更高时间范围内的级别/区域(MTF 模式) 添加了使用更高时间间隔显示级别/区域的功能。此外,该指标还具有自动趋势检测功能(   TPSproTREND PRO   )。 用于交易的单独专业的逐步算法。 该算法专为日内交易而设计,既可顺势交易,也可逆势交易。每个活动模板均提供详细说明。 适用于多种时间范围 。 TPSpro RFI 水平指标可用于图表上的任何时间范围,从一分钟(M1)开始一直到每月(MN)。 图形和声音警报。 该指标提供图形和声音指示
该仪表盘显示所选符号的最新可用谐波形态,因此您可以节省时间并提高效率 /  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:   调整模式的最大迭代次数(如果该值越小,则模式越少,性能越快;如果该值越大,则模式越多,性能
Atbot
Zaha Feiz
4.88 (40)
AtBot: 它是如何工作的以及如何使用它 ### 它是如何工作的 “AtBot”指标用于MT5平台,通过结合技术分析工具生成买入和卖出信号。它集成了简单移动平均线(SMA)、指数移动平均线(EMA)和平均真实波幅(ATR)指标,以识别交易机会。此外,它还可以利用Heikin Ashi蜡烛来增强信号的准确性。 购买后留下评论,您将获得特别的奖励礼物。 ### 主要特点: - 不重绘: 信号在绘制后不会改变。 - 不变动: 信号保持一致,不会被更改。 - 无延迟: 提供及时的信号,没有延迟。 - 多种时间框架: 可在任何时间框架上使用,以适应您的交易策略。 ### 操作步骤: #### 输入和设置: - firstkey (TrendValue): 调整趋势检测的灵敏度。 - Secondkey (SignalValue): 定义买入/卖出信号生成的灵敏度。 - masterkey (ExitValue): 控制信号的退出策略。 - h: 切换是否根据Heikin Ashi蜡烛生成信号(真/假)。 - notifications: 启用或禁用信号提醒。 #### ATR计算: ATR测
Trend Screener Pro MT5
STE S.S.COMPANY
4.88 (66)
使用趋势筛选指标释放趋势交易的力量:由模糊逻辑和多货币系统提供支持的终极趋势交易解决方案! 使用趋势筛选器(由模糊逻辑提供支持的革命性趋势指标)提升您的趋势交易。 它是一个强大的趋势跟踪指标,结合了超过 13 种高级工具和功能以及 3 种交易策略,使其成为使您的 Metatrader 成为趋势分析器的多功能选择。 限时优惠:趋势筛选指标终身仅需 50 美元。 ( 原价 250$ ) (优惠延长) 体验趋势筛选器 100% 无需重新绘制的准确性,确保您的交易决策不受过去价格变化的影响。 释放多时间框架和多货币功能的多功能性,使您能够以无与伦比的信心在外汇、商品、加密货币和指数领域进行交易。 利用 Trend Screener 的综合策略套件增强您的交易: - 趋势跟踪策略和趋势延续策略 :趋势筛选器的趋势跟踪策略提供清晰的趋势延续信号,让您有效捕捉趋势走势并管理风险。 - 反转策略和早期入场点策略 :趋势筛选器的反转策略可检测市场方向的潜在变化,使您能够预测趋势反转并利用疲弱的市场趋势。通过早期入场点,您可以在潜在的趋势变化之前定位自己 获取可观的利润。 - 倒卖策略: 趋势筛选器的倒卖
Atomic Analyst MT5
Issam Kassas
4.32 (19)
首先值得强调的是,该交易指标是非重绘、非延迟的指标,这使其成为手动和机器人交易的理想选择。 用户手册:设置、输入和策略。 Atomic Analyst是一种PA价格行动指标,利用价格的力量和动量来寻找市场上更好的机会。配备了高级过滤器,可帮助去除噪音和假信号,并提高交易潜力。使用多层复杂的指标,Atomic Analyst扫描图表,并将复杂的数学计算转化为任何初学者都能理解并用来做出一致交易决策的简单信号和颜色。 “Atomic Analyst”是专为新手和经验丰富的交易者量身定制的综合交易解决方案。它将高级指标和一流功能融合为一体的交易策略,使其成为所有类型交易者的多功能选择。 日内交易和剥头皮策略:专为快速准确的日内交易和短期交易而设计。 日内和摆动交易策略:可用作追求价格大幅波动的日内和摆动交易者的可靠工具。 多货币和市场:凭借其可靠的精度,在不同的工具和市场上运作。 多个时间框架:可在多个时间框架上使用,性能良好。 稳定性:所有指标均不重绘、不重绘和不滞后,确保可靠的信号。 信号清晰度:提供箭头信号,用于清晰的入场和出场点。 实时警报:通过交易入场、SL和TP警报通知交
Gold Stuff mt5
Vasiliy Strukov
4.92 (172)
Gold Stuff mt5 是专为黄金设计的趋势指标,也可用于任何金融工具。 该指标不会重绘,也不会滞后。 推荐时间框架 H1。 购买后立即联系我以获得设置和个人奖励!   你可以在我的个人资料中找到它。   重要! 购买后立即与我联系,以获得说明和奖金!   您可以免费收到我们的强力支持和趋势扫描指标的副本,请私信。大部头书!   设置 绘制箭头 - 打开关闭。 在图表上绘制箭头。 警报 - 打开关闭声音警报。 电子邮件通知 - 打开关闭。 电子邮件通知。 Puch-notification - 打开关闭。 推送通知。 接下来,调整色域。 Gold Stuff mt5 是专为黄金设计的趋势指标,也可用于任何金融工具。 该指标不会重绘,也不会滞后。 推荐时间框架 H1。 购买后立即联系我以获得设置和个人奖励!   设置 绘制箭头 - 打开关闭。 在图表上绘制箭头。 警报 - 打开关闭声音警报。 电子邮件通知 - 打开关闭。 电子邮件通知。 Puch-notification - 打开关闭。 推送通知。 接下来,调整色域。
首先,值得强调的是,这个交易系统是一个非重绘、非重画和非滞后的指标,这使得它非常适合手动和机器人交易。 在线课程,手册和下载预设。 “智能趋势交易系统 MT5”是专为新手和经验丰富的交易者量身定制的综合交易解决方案。它结合了超过 10 个优质指标,具有 7 多个强大的交易策略,使其成为适用于各种市场条件的多功能选择。 趋势跟随策略:提供精确的入场和止损管理,以有效地跟随趋势。 反转策略:识别潜在的趋势反转,使交易者能够利用区域市场的机会。 剃头策略:专为快速准确的日内交易和短期交易而设计。 稳定性:所有指标都不会重绘、不会重画和不会滞后,确保可靠的信号。 定制:支持自定义策略,以满足个人交易偏好。超过 7 种策略和组合可帮助您找到最佳策略。 信号清晰度:提供箭头信号,以指示清晰的入场和退出点。 实时警报:通过交易进出警报使交易者保持了解。 深入分析:提供更高时间框架的趋势分析和实时交易监控。 自适应颜色编码:利用蜡烛颜色编码来显示成交量、趋势和反转蜡烛信号。通过蜡烛颜色分析市场方向。 “智能趋势交易系统 MT5”赋予交易者必要的工具,以便在各种市场条件下做出明智和战略性的交易决策。无论
FX Levels MT5
Daniel Stein
FX Levels 是一款异常精确的支撑位和阻力位指标,它将传统的灯塔方法与创新的动态方法相结合,可在所有交易符号中完美运行。这包括货币对、指数、股票或商品。FX Levels 可识别反转点并将其显示在图表上,在您的交易活动中,这些反转点可理想地用作盈利目标。 在开发 FX Levels 的过程中,我们利用了与经纪商打交道的丰富经验,以及他们在数据源和时间设置方面的差异。因此,FX Levels 现在可以识别不同经纪商几乎 100% 相同的水平。FX Levels 的这一特殊功能为用户提供了前所未有的可靠性,这是其他任何支撑和阻力指标都无法比拟的。 在 Stein Investments,我们非常注重细节,因为这正是一个好的交易工具与一个伟大的工具之间的区别所在,而这种对细节的额外关注使我们能够为用户将众所周知的分析方法提升到一个全新的水平。 试试吧... FX Levels 属性中的大多数条目都很直观;不过,我在此仅重点解释其中的关键条目。 首先,您可以选择两种分析方法。许多人都熟悉的 经典方法 来自前一款产品 Lighthouse,它的运行方式比较静态,每天只更新一次。 而创
Quantum TrendPulse
Bogdan Ion Puscasu
5 (3)
介绍 Quantum TrendPulse   ,这是一款终极交易工具,它将 SuperTrend   、   RSI 和 Stochastic 的强大功能整合到一个综合指标中,以最大限度地发挥您的交易潜力。该指标专为追求精准和效率的交易者而设计,可帮助您自信地识别市场趋势、动量变化以及最佳进入和退出点。 主要特点: 超级趋势整合: 轻松跟随当前的市场趋势并乘上盈利浪潮。 RSI 精度: 检测超买和超卖水平,非常适合把握市场逆转时机,可用作 SuperTrend 的过滤器 随机精度: 利用随机振荡在波动的市场中寻找隐藏的机会, 用作超级趋势的过滤器 多时间范围分析: 从 M5 到 H1 或 H4,在不同时间范围内关注市场动态。 可定制的警报: 当您的自定义交易条件得到满足时收到通知,这样您就不会错过任何交易。 无论您是新手还是经验丰富的交易员,   Quantum TrendPulse 都能为您提供所需的优势,帮助您增强策略并自信地进行交易。借助这一强大的指标,将洞察力转化为利润 — 掌控您的交易! ***购买 Quantum TrendPulse,即可免费获得 Quantum T
FX Volume MT5
Daniel Stein
4.93 (14)
通过 mql5 和 Telegram 上 的 " 晨间简报 "获取每日市场更新,包括详细信息和屏幕截图 ! 外汇交易量(FX Volume)是第一个也是唯一一个从经纪商角度真正洞察市场情绪的交易量指标。 直接在您的图表上看到这些信息是真正改变游戏规则和突破性的交易解决方案。 受益于独特的市场数据洞察,如 比率(Ratios )显示货币多头和空头头寸的比率(百分比 比率变化 显示所选时间段内的多头比率及其百分比变化 总交易量 显示货币的总交易量(多头和空头),以手为单位 多头 交易量显示货币所有多头头寸的交易量 空头 交易量显示所有货币空头头寸的交易量 净多头 显示净多头交易量,即所有多头头寸减去所有空头头寸(以手为单位)。 净多头百分比 显示货币净多头交易量的变化 请阅读我们的基本教程 -> "如何使用外汇交易量进行交易 " 获取更多信息,如常见问题、交易技巧和教程视频,请访问我们的 外汇交易量公共信息频道 请 安装并运行 SI Connect 以建立与我们数据中心的持续连接 背景信息 我们都知道,外汇是一个分散的市场。这就是为什么我们必须打破常规思维,开发一个独
Entry Points Pro for MT5
Yury Orlov
4.44 (126)
这款指标用于 MT5,可提供准确的入场交易信号,且无重绘。 它可应用在任何金融资产:外汇、加密货币、贵金属、股票、指数。 它将提供极其精准的评估,并告诉您何时开仓和平仓的最佳时机。 观看 视频 (6:22),其中包含一个仅处理单一信号的示例,该信号即可值回指标购价! 大多数交易者在 Entry Points Pro 指标的帮助下,在第一个交易周内即改善了他们的交易结果。 订阅我们的 Telegram 群 ! Entry Points Pro 指标的益处。 入场信号无重绘 如果信号出现,并得到确认,则它不会再消失;不像是重绘指标,它会导致重大的财产损失,因为它们可以在显示信号后再将其删除。 无差错开仓 指标算法可令您找到入场交易(买入或卖出资产)的理想时机,从而提高每位交易者的成功率。 Entry Points Pro 可操作任何资产 它允许您在 MT5 平台上交易任何经纪商的加密货币、股票、贵金属、指数、大宗商品和货币。 提供任何方向的信号 Entry Points Pro 指标提供针对任意价格走势的入场交易信号 - 上涨、下跌或横盘(横向)。
FX Power MT5 NG
Daniel Stein
5 (7)
通过 mql5 和 Telegram 上 的晨间简报获取每日市场更新,包括详细信息和屏幕截图 ! FX Power MT5 NG 是我们长期以来非常受欢迎的货币强度计算器 FX Power 的下一代产品。 这款下一代强度计算器能提供什么?您所喜爱的原版 FX Power 的所有功能 附加功能 黄金/XAU 强度分析 更精确的计算结果 可单独配置的分析周期 可自定义计算限制,以获得更好的性能 为希望查看更多信息的用户提供特殊的多实例设置 无尽的图形设置,可在每个图表中设置您最喜欢的颜色 无数的通知选项,让您再也不会错过任何重要信息 采用 Windows 11 和 macOS 风格的全新圆角设计 神奇的移动指标面板 FX Power 主要功能 所有主要货币的完整强势历史 所有时间框架内的货币强弱历史 所有经纪商和图表的计算结果完全相同 100% 可靠的实时计算 -> 无重绘 可通过下拉列表选择分析时段 通过自定义模式单独配置分析时段 可在一个图表中使用多个实例 可移动 FX Power 显示屏(通过拖放) 适用于高分辨率 QHD、UHD 和 4K 显示器 自动终端配置 针对平板电脑
介绍黄金闪电剥头皮指标,这是在M1、M5和M15时间框架上剥头皮黄金的终极工具。该指标使用先进的AI神经网络开发,保证了稳定的盈利能力和卓越的交易结果。为了确保精准和高效,黄金闪电剥头皮指标在M15时间框架上提供最佳表现。 主要特点: 先进的AI神经网络: 利用尖端AI技术实现无与伦比的准确性。 无重绘: 保证信号可靠,无重绘,确保一致的表现。 多时间框架剥头皮: 针对M1、M5和M15时间框架进行优化,其中M15时间框架提供最佳结果。 全面的信号: 提供清晰的买入/卖出信号、盈利(TP)和止损(SL)水平,帮助做出明智的交易决策。 优势: 高准确性: 通过高度精确的信号实现卓越的交易成功。 实时警报: 通过即时警报和信号保持领先地位。 用户友好: 使用简便,提供清晰的说明和支持。 终身访问: 享受终身访问权限和当前版本的免费更新。 专家支持: 获得我们专家团队的终身个人支持。 使用方法: 将黄金闪电剥头皮指标安装到您的MT5平台上。 按照指标提供的买入/卖出信号进行操作。 利用TP/SL水平优化您的交易。 交易建议: 盈利(TP): 使用20至50点作为盈利目标。 止损(SL
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
首先,值得强调的是,这个交易工具是非重绘、非重画和非滞后的指标,非常适合专业交易。 在线课程,用户手册和演示。 智能价格行动概念指标是一个非常强大的工具,既适用于新手,也适用于经验丰富的交易者。它将超过20个有用的指标合并到一个指标中,结合了高级交易思想,如内圈交易员分析和智能资金概念交易策略。该指标侧重于智能资金概念,提供有关大型机构交易方式的见解,帮助预测它们的动向。 它在流动性分析方面尤其擅长,有助于理解机构的交易方式。它擅长预测市场趋势,并仔细分析价格波动。通过将您的交易与机构策略对齐,您可以更准确地预测市场走向。该指标多才多艺,擅长分析市场结构,识别重要的订单区块,并识别各种模式。 它擅长识别BOS和CHoCH等模式,理解动量的转变,并突出显示供需强劲的关键区域。它还擅长发现强大的不平衡,并分析价格创造更高高点或更低低点的模式。如果您使用斐波那契回撤工具,该指标可以满足您的需求。它还可以识别相等的高点和低点,分析不同的时间框架,并通过仪表板显示数据。 对于使用更高级策略的交易者,该指标提供了工具,如公平价值差指标和优惠和折扣区域的识别。它特别关注高时间框架订单
支撑和阻力筛选器是 MetaTrader 的一个级别指标,它在一个指标内提供多种工具。 可用的工具有: 1. 市场结构筛选器。 2. 看涨回调区。 3. 看跌回调区。 4.每日枢轴点 5.每周枢轴点 6. 每月枢轴点 7. 基于谐波形态和成交量的强大支撑和阻力。 8. 银行级区域。 限时优惠:HV 支撑和阻力指示器仅售 50 美元且终生可用。 (原价 125$) 通过访问我们的 MQL5 博客,您可以找到我们所有带有分析示例的高级指标: 单击此处 主要特点 基于谐波和音量算法的强大支撑和阻力区域。 基于谐波和成交量算法的看涨和看跌回调区域。 市场结构筛选器 每日、每周和每月的枢轴点。 文档 所有支持和阻力筛选器文档(说明)和策略详细信息均可在我们 MQL5 博客的这篇文章中找到: 单击此处。 接触 如果您有任何问题或需要帮助,请通过私信联系我。 作者 SAYADI ACHREF,金融科技软件工程师,Finansya 创始人。
PZ Trend Trading MT5
PZ TRADING SLU
3.67 (3)
许多盈利交易者不仅知道如何识别市场趋势,而且也能把握趋势建立后的交易机会。 Pz 趋势交易 指标设计用来在趋势行情中尽可能的赚取利润。 已建立的趋势提供了一揽子交易机会,但大多数趋势交易指标完全忽视了它们,让交易者在趋势行情时完全不知道该如何做!一般趋势指标只通知有关的趋势变化,但根本不足以得到卓越的回报. Pz 趋势交易 指标比一般趋势指标显示多达 20 倍的交易 , 因为它注重所谓的市场时机。它不仅显示当前的市场趋势,也有回调,内柱线的突破和调整。它令您在趋势回调之后介入,安全的柱线内突破金字塔加仓,以及发现潜在的反转,和已知的调整。 趋势改变 一个趋势改变在市场方向变化时发生。趋势变化在图表上用带数字的彩色圆圈显示。蓝色 (1) 信号为上涨开始, 而红色 (1) 信号为下跌开始。趋势变化并非评估当前价格动作的结果, 它意味着交易设置是不定时地。如果您正确使用本指标, 在趋势变化时, 您将将已经入场 (参看下面的调整)。 回调 但凡趋势在运动中,行情上下抖动,盈利者收割利润,且其它参与者入场。趋势回调代表好的买入机会,通常是由主力获利离场导致。如果行情在回调后回归上行, 指
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
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
可以说,这是您可以为MetaTrader平台找到的最完整的谐波价格形成自动识别指标。它检测19种不同的模式,像您一样认真对待斐波那契投影,显示潜在的反转区域(PRZ),并找到合适的止损和获利水平。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 它检测19种不同的谐波价格形态 它绘制了主要,衍生和互补的斐波那契投影(PRZ) 它评估过去的价格走势并显示每个过去的形态 该指标分析其自身的质量和性能 它显示合适的止损和获利水平 它使用突破来表明合适的交易 它在图表上绘制所有样式比率 它实现了电子邮件/声音/视觉警报 受斯科特·M·卡尼(Scott M. Carney)的书的启发,该指标旨在满足最纯粹和最熟练的交易者的需求。但是,它采取了一种使交易更容易的方式:在向交易发出信号之前,它会等待Donchian朝正确方向突破,从而使交易信号非常可靠。 斐波那契投影与向量无关 它实现了电子邮件/声音/推送警报 它绘制了ABCD投影 重要提示: 为了符合 Scott M. Carney先生 的商标申诉,某些图案名称已重命名为不言自明的替代方式, Scot
RelicusRoad Pro MT5
Relicus LLC
5 (17)
现在$ 147(更新后增加到$ 499) - 无限帐户(PC或Mac) RelicusRoad 用户手册 + 培训视频 + 访问 Private Discord Group + VIP 身份 一种看待市场的新方式 RelicusRoad 是世界上最强大的外汇、期货、加密货币、股票和指数交易指标,为交易者提供保持盈利所需的所有信息和工具。我们提供技术分析和交易计划,帮助每一位交易者取得成功,从初学者到高级。它是一个关键的交易指标,可以提供足够的信息来预测未来的市场。我们相信一个完整的解决方案,而不是图表上几个没有意义的不同指标。这是一个多合一指标,显示无与伦比且非常准确的信号、箭头 + 价格行为信息。 RelicusRoad 基于强大的人工智能,提供缺失的信息和工具来教育您并使您成为交易专家,成为成功的交易者。 几乎所有技术指标都滞后,这意味着它们只能报告已经发生的事情。因此,他们只确认您过去可以看到的价格已经在哪里。我们相信领先指标可以预测未来价格,而无需重新绘制,也不要过度依赖可能改变并导致重新绘制的滞后指标。如果您根据滞后指标进行交易并建立头寸,您就知道您已
Meco Ultimate Channel
Thapelo Kapwe
5 (1)
This indicator belongs to the family of channel indicators. These channel indicator was created based on the principle that the market will always trade in a swinging like pattern. The swinging like pattern is caused by the existence of both the bulls and bears in a market. This causes a market to trade in a dynamic channel. it is designed to help the buyer to identify the levels at which the bulls are buying and the bear are selling. The bulls are buying when the Market is cheap and the bears a
介绍     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。 接触 如果您有任何疑问或需要帮
Bill Williams Advanced
Siarhei Vashchylka
5 (8)
Bill Williams Advanced is designed for automatic chart analysis using Bill Williams' "Profitunity" system. The indicator analyzes four timeframes at once. Manual (Be sure to read before purchasing) Advantages 1. Automatically analyzes the chart using the "Profitunity" system of Bill Williams. The found signals are placed in a table in the corner of the screen. 2. Equipped with a trend filter based on the Alligator indicator. Most of the system signals are recommended to be used only accordi
Quantum Trend Sniper
Bogdan Ion Puscasu
4.71 (49)
介绍   量子趋势狙击指标 ,突破性的 MQL5 指标,正在改变您识别和交易趋势反转的方式!由拥有超过13年交易经验的资深交易员团队开发,     量子趋势狙击指标   旨在通过其创新的方式以极高的准确度识别趋势反转,将您的交易之旅推向新的高度。 ***购买量子趋势狙击指标,即可免费获得量子突破指标!*** 当量子突破指标识别出趋势反转时,它会向您发出警报和信号箭头,并建议您三个止盈水平。 它既适合新手交易者,也适合专业交易者。 量子 EA 通道:       点击这里 MT4版本:       点击这里 建议: 时间范围: 所有时间范围。为了获得最佳结果,我们建议在 M15、M30 和 H1 时间范围内使用它。 货币对:欧元兑美元、英镑兑美元、澳元兑美元、欧元兑英镑、, EURAUD,  XAUUSD 账户类型:ECN、Raw 或 Razor,点差极低 经纪时间:任意 经纪商:IC Markets、Pepperstone with Raw 和 Razor 的点差最低 建议止损:50 点 建议止盈水平:20 点、50 点和
Blahtech Supply Demand MT5
Blahtech Limited
4.54 (13)
Was: $299  Now: $99   Supply Demand uses previous price action to identify potential imbalances between buyers and sellers. The key is to identify the better odds zones, not just the untouched ones. Blahtech Supply Demand indicator delivers functionality previously unavailable on any trading platform. This 4-in-1 indicator not only highlights the higher probability zones using a multi-criteria strength engine, but also combines it with multi-timeframe trend analysis, previously confirmed swings
该指标通过忽略突然的波动和市场噪音,以无与伦比的可靠性跟踪市场趋势。它被设计用于趋势交易日内图表和较小的时间范围。其获胜率约为85%。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 极易交易 查找超卖/超买情况 随时享受无噪音交易 避免在盘中图表中被鞭打 该指标分析其自身的质量和性能 它实现了一个多时间仪表板 该指标适用于低时限交易,因为它通过降低平均价格周围的市场噪音而忽略了突然的价格飙升或修正。 该指标根本不需要优化 它实现了一个多时间仪表板 它实现了电子邮件/声音/推送警报 指示器为不可重涂和不可重涂 该指标实现了适合于较小时间范围的趋势跟踪方向,该趋势可以渗透到较高时间范围内的非常长的趋势中,从而扩大了您的收益。 指标剖析 指标显示一条彩色的线,周围环绕着一个价格带。彩色线是有价证券的平均价格,而价格带表示超买/超卖水平。如果平均价格为蓝色,则您应该在市场没有超买的情况下寻找多头交易;如果平均价格为红色,则应该在市场没有超卖的情况下寻找空头交易。 指标的趋势变化并不表示立即进行交易或完成相反交易的信号!这些频段用于计时。 技术信息 指
Smart Liquidity Profile MT5
Suvashish Halder
5 (2)
The Smart Liquidity Profile is color-coded based on the importance of the traded activity at specific price levels, allowing traders to identify significant price levels such as support and resistance levels, supply and demand zones, liquidity gaps, consolidation zones, Buy-Side/Sell-Side Liquidity and so on.  Smart Liquidity Profile allows users to choose from a number of different time periods including 'Auto,' 'Fixed Range,' 'Swing High,' 'Swing Low,' 'Session,' 'Day,' 'Week,' 'Month,' 'Quart
Blahtech Market Profile MT5
Blahtech Limited
5 (9)
Was: $249  Now: $99   Market Profile defines a number of day types that can help the trader to determine market behaviour. A key feature is the Value Area, representing the range of price action where 70% of trading took place. Understanding the Value Area can give traders valuable insight into market direction and establish the higher odds trade. It is an excellent addition to any system you may be using. Inspired by Jim Dalton’s book “Mind Over Markets”, this indicator is designed to suit the
作者的更多信息
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Supertrend" by " KivancOzbilgic ". This is a light-load processing and non-repaint indicator. Highlighter option isn't available in MT4 version. You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Supertrend . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input double fixed_lo
To get access to MT5 version please click here . You can also check the other popular version of this indicator   here . This is the exact conversion from TradingView:"HIGH AND LOW Optimized Trend TrackerHL OTT" by "kivancozbilgic" This is a light-load processing indicator. It is a non-repaint indicator. Colored Candle and Highlighting options are not available. Buffers are available for processing in EAs. You can message in private chat for further changes you need. Thanks.
To get access to MT5 version please click here . This is the exact conversion from TradingView: "SwingArm ATR Trend Indicator" by " vsnfnd ". Also known as : "Blackflag FTS" by "Jose Azcarate" This is a light-load processing and non-repaint indicator. All input options are available except multi time frame Buffers are available for processing in EAs. Extra option to show buy and sell signal alerts. You can message in private chat for further changes you need.
To download MT5 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. This is a sample EA code that operates based on bullish and bearish linear regression candles . #property strict input string EA_Setting= "" ; input int magic_number= 1234 ; input string     Risk_Management= "" ; input double fixed_lot_size=
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "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 MT4 version please click here . - This is the exact conversion from TradingView: "Didi Index" by " everget ". - This is a popular version of DIDI index on tradingview. - This is a light-load processing and non-repaint indicator. - Buffer is available for the lines on chart and arrows on chart. - You can message in private chat for further changes you need. Thanks for downloading
I do not have the exact indicator for MT4 but the nearest possible look alike can be downloaded from here . Also you may check this link . This is the exact conversion from TradingView: "Donchian Trend Ribbon" By "LonesomeTheBlue". One of the coolest indicators out there to detect trend direction and strength. As a trader you always need such indicator to avoid getting chopped in range markets. There are ten buffers as colors to use in EAs also. The indicator is loaded light and non-repaint. Not
GoldTrader
Yashar Seyyedin
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. martingale version is available here . Strategy description - Detect trend based on EMA18-EMA50-SMA200 alignment in three time frames: M15, H1, H4 - Trade in trend direction and exit when above alignment is broken. - The bot is tuned to trade XAUUSD(Gold). - The bot output is break even in rangi
FREE
This is the Chandelier Exit trend indicator applied to heiken ashi candles based on "G TREND GUNBOT" by "LUIS_GANDATA_G_TREND" on tradingview. Heiken ashi candles filter out many of the chops and therefore as an input to Chandelier Exit you achieve well filtered Buy and Sell signals. Also you can choose to apply the trend indicator to normal candles via input tab. (two in one indicator) This is a non-repaint and light processing load indicator. You can message in private chat for further change
FREE
Volume Oscillator
Yashar Seyyedin
To download MT4 version please click here . The Volume Oscillator measures volume by analyzing the relationship between two Moving Averages. The Volume Oscillator indicator subtracts a fast MA from slow MA. The fast and slow MA periods are configurable via input tab. Volume indicators are an ingredient of trading systems to avoid entry in thin liquidity markets. Having set a threshold on Volume Oscillator you can avoid entering chop. Buffers are available to access via EA.
FREE
To download MT4 version please click here . - This is the exact conversion from TradingView: "Linear Regression Candles" By "ugurvu". - The overall look of the indicator is like Heiken Ashi. - It can be used as a trend confirmation indicator to detect the right trend direction. - This indicator lets you read the buffers for Candles' OHLC. - This is a non-repaint and light processing load indicator - You can message in private chat for further changes you need. Thanks
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
Please backtest with the exact balance of your live account before applying to real money. ==> If account balance is too low it may not trade at all! For MT4 version please contact via private message. Strategy description - Detect trend based on GoldTrader rules. - Enter in both direction as much as needed to achieve acceptable amount of profit. - Although this is a martingale bot it is very unlikely to loose your money, because: ==> the money management rules are safe and low risk. ==> entries
FREE
IntradayTrader
Yashar Seyyedin
This Expert is developed to optimize parameters to trade intraday trending markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 12% profitability in EURUSD for a period of a year and 2% draw-down using optimization to find best inputs.
FREE
Hull Suite By Insilico
Yashar Seyyedin
5 (1)
To get access to MT4 version please click here . - This is the exact conversion from TradingView: "Hull Suite" By "Insilico". - This is a light-load processing and non-repaint indicator. - You can message in private chat for further changes you need. Here is the source code of a simple Expert Advisor operating based on signals from  Hull Suite . #include <Trade\Trade.mqh> CTrade trade; int handle_hull= 0 ; input group "EA Setting" input int magic_number= 123456 ; //magic number input double fixe
Choppy Trader
Yashar Seyyedin
This Expert is developed to optimize parameters to trade in choppy markets. Simply use optimization to find the proper inputs for specific symbol you are interested in.  This is a light load EA from processing point of view. You can easily run this on several charts simultaneously. Make sure to set a different magic number for each. note: The screenshot shows a 20% profitability in USDCAD for a period of 4-months and 5% draw-down using optimization to find best inputs.
FREE
To download MT5 version please click here . - This is 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
Vortex Indicator
Yashar Seyyedin
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 . 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 download MT5 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
To 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
B Xtrender
Yashar Seyyedin
To download MT4 version please click here . This is the exact conversion from TradingView: "B-Xtrender" By "QuantTherapy". - It is an oscillator based on RSI and multiple layers of moving averages. -   It is a two in one indicator to calculate overbought and oversold zones for different RSI settings. -  This indicator lets you read the buffers for all data on the window. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
To download MT4 version please click here . - This is the exact conversion from TradingView: "QQE mod" By "Mihkel00". - It can be used to detect trend direction and trend strength. - Gray bars represent weak trends. You can set thresholds to achieve better accuracy in detecting trend strength. - There is buffer index 15 to use in EA for optimization purposes. - The indicator is loaded light and non-repaint.  - You can message in private chat for further changes you need.  
For MT4 version please click here . This is the exact conversion from TradingView: "Average True Range Stop Loss Finder" By "veryfid". - This indicator implements a deviation channel. - The channel determines trend direction as well as stop loss placement. - This is a non-repaint and light processing load indicator. - You can message in private chat for further changes you need.
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Twin Range Filter" by " colinmck ". - This is a light-load processing and non-repaint indicator. - All input options are available.  - Buffers are available for processing in EAs. - You can message in private chat for further changes you need. Here is the sample code of EA that operates based on signals coming from indicator: #property strict input string EA_Setting= "" ; input int magic_number= 12
To get access to MT5 version please click here . This is the exact conversion from TradingView: "Zero Lag MACD Enhanced - Version 1.2" by "   Albert.Callisto ". 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
Didi Index by everget MT4
Yashar Seyyedin
5 (1)
To get access to MT5 version please click here . - This is the exact conversion from TradingView: "Didi Index" by " everget ". - This is a popular version of DIDI index on tradingview. - This is a light-load processing and non-repaint indicator. - Buffer is available for the lines on chart and arrows 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: "Range Identifier" By "Mango2Juice". - All twelve averaging options are available:  EMA, DEMA, TEMA, WMA, VWMA, SMA, SMMA, RMA, HMA, LSMA, Kijun, McGinley - This is a light-load processing and non-repaint indicator. - Buffer is available for the main line on chart and not for thresholds.  - You can message in private chat for further changes you need.
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
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
筛选:
无评论
回复评论
版本 1.10 2024.08.25
Fixed a bug!