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

SOMFX1Predictor

If you like trading by candle patterns and want to reinforce this approach by modern technologies, this indicator and other related tools are for you. In fact, this indicator is a part of a toolbox, that includes a neural network engine implementing Self-Organizing Map (SOM) for candle patterns recognition, prediction, and provides you with an option to explore input and resulting data. The toolbox contains:

  • SOMFX1Builder - a script for training neural networks; it builds a file with generalized data about most characteristic price figures which can be used for next bars prediction either in a built-in sub-window (see SOMFX1 below), or directly on the chart (see SOMFX1Predictor below);
  • SOMFX1 - the indicator for price pattern prediction and visual analysis of a trained neural network, input and resulting data (in a separate sub-window);
  • SOMFX1Predictor - this indicator for predicting price patterns just in the main window;
The tools are separated from each other due to some MetaTrader 4 limitations, for example, it's not currently possible to run lengthy calculations in indicators because they are executed in the main thread.

In brief, all the process of price analysis, network training, pattern recognition and prediction supposes the following steps:

  1. Build a neural network by SOMFX1Builder;
  2. Analyze the resulting neural network performance by means of SOMFX1; if not satisfied, repeat step 1 with new settings; you may skip this step if you wish;
  3. Use final neural network for price pattern prediction using SOMFX1Predictor.

Please find details about step 1 and 2 - network training and visual analysis of data on the web-pages of corresponding tools - SOMFX1Builder and SOMFX1. This document covers SOMFX1Predictor usage.

This is just a warning to make it clear: this indicator requires a file built by SOMFX1Builder. So, you need either to install SOMFX1Builder and generate the file in accordance to your needs, or ask a friend (who's having this script) to build the file for you and send it to you.


How it works

This indicator is the most simple part of the neural network toolbox. It takes a file with a trained network and shows you prediction of the network on the chart. This is a red line which can be partially thick and partially thin. Thick fragments denote bars where the network is more confident in its prediction than on thin fragments. The prediction starts on the vertical dotted line in yellow named "FromPastToFuture". You can drag the line to an arbitrary position, and the indicator will read current sample at this position, and run SOM against this sample, so you'll see new prediction. The current price sample is a fragment of price deltas taken from PatternSize bars to the left of the "FromPastToFuture" line. When you open the indicator first time, the line is placed at LearnStop bar. If you move the line to 0-th bar, the indicator will automatically keep the line on new 0-th bars which will appear in future, that is the line will stick to the latest bar.

Please note, that the prediction starts at the current bar, that is the current bar is also predicted. This is done because current bar is usually unfinished and requires prediction as well. Moreover, if we could take currently unfinished bar into consideration, it will make prediction inconsistent (unstable during current bar lifetime). Due to the fact that current bar is predicted, the red line with prediction starts 1 bar left to the vertical line "FromPastToFuture" - it shows how price should change on the current bar.

The indicator can optionaly show the neural network itself, when ShowMap is true. In this case the indicator displays 2 square maps on the main chart.

The left square denotes current activity of every neuron: neurons with high excitation are shown in red, and neurons with high inhibition are shown in blue. In other words, the redder the cell on the map, the better it fits to current price sample.

The second - right-side - square map displays "population density" of every unit, that is its color denotes number of samples occured in the trainig data, which are landed to corresponding cell and formed corresponding price pattern. Again red color means relatively high population, and blue - relatively small. Gray cells do not have corresponding samples in training data.


Parameters

  • LearnStart - number of a bar in history, or an exact date and time of the bar (in the format "YYYY.MM.DD HH:MM"), where training data began; this parameter is a string, whick allows you to enter either a number or a date; this parameter is used here not for training but for building actual price samples (corresponded to the network), which is important if UseAverage parameter is true (see below), as well as for map "population" visualization; default value - 5001; if you enter an automatically generated filename in NetFileName parameter (see below), the indicator parses the name and overrides this parameter by a value from the name; in other words, this parameter has no effect when an automatically generated filename is specified in NetFileName parameter.
  • LearnStop - number of a bar in history, or an exact date and time of the bar (in the format "YYYY.MM.DD HH:MM"), where training data ended; this parameter is also a string; default value - 1; this parameter is used here not for training but for building actual price samples (corresponded to the network), which is important if UseAverage parameter is true, and for map "population" visualization; this parameter has no effect when an automatically generated filename is specified in NetFileName parameter;
  • PatternSize - number of bars in a single pattern; default value - 5; this parameter has no effect when an automatically generated filename is specified in NetFileName parameter;
  • GridSize - dimentions of the map; this is a number of cells/units on X and Y axes; allowed values: 3 - 50; default value - 7; this parameter has no effect when an automatically generated filename is specified in NetFileName parameter;
  • PredictionBars - number of bars to predict; default value - 10; please note, that every next bar is predicted with less accuracy than previous, because unavoidable errors on every bar are accumulated;
  • UseAverage - this is a special mode switch; when disabled (false, default value) predictions are made using weights of winning neurons, that is they are product of the map; when enabled (true), predictions are based on average values of all price samples mapped into winning neuron; this requires not only the map, but the training data as it was used for the network training, which is why it's important to specify exact date and time where sampling has been made during training; you may "play" with this parameter to obtain better results: using weight vectors is the conventional approach, but using averages adds more data awareness;
  • PriceType - price type to use for sampling; default value - close; this parameter has no effect when an automatically generated filename is specified in NetFileName parameter;
  • AddInvertedPrice - enable/disable a mode, when inverted price movements are added into the samples; default - true;
  • NetFileName - a filename of the trained neural network generated by SOMFX1Builder script; if the name was generated automatically, it comprises several necessary components to restore most of abovementioned parameters, so a user may fill in only this one parameter; the filename structure is the following: SOM-V-D-SYMBOL-TF-YYYYMMDDHHMM-YYYYMMDDHHMM-P.candlemap, where V - PatternSize, D - GridSize, SYMBOL - current work symbol, TF - current timeframe, YYYYMMDDHHMM - LearnStart and LearnStop respectively; P - PriceType;
  • CellSize - size of a single unit visualized on the chart (if ShowMap is true); default value - 20, which is ok for maps with dimentions up to 10; for larger map choose smaller cell size, or otherwise the two map views will overlap;
  • PrintData - enable/disable debug logging; default - false;
  • ShowMap - an option to visualize map on the chart in the same way as it's done by SOMFX1 indicator; default - false;

If some of parameters are incorrect, the indicator prints an error message into the log. For example, you can load a map only on a chart with the same symbol and timeframe that was used during training.

推荐产品
History Pattern Search
Yevhenii Levchenko
该指标建立当前报价,可以与历史报价进行比较,并在此基础上进行价格走势预测。指示器有一个文本字段,用于快速导航到所需日期。 选项: 符号 - 选择指标将显示的符号; SymbolPeriod - 选择指标从中获取数据的时段; IndicatorColor - 指示器颜色; HorisontalShift - 由指标绘制的报价移动指定的柱数; Inverse - true 反转引号,false - 原始视图; ChartVerticalShiftStep - 图表垂直移动(键盘上的向上/向下箭头); 接下来是文本字段的设置,您可以在其中输入日期,您可以通过按“回车”立即跳转到该日期。 接下来是文本字段的设置,您可以在其中输入日期,您可以通过按“回车”立即跳转到该日期。
Owl smart levels
Sergey Ermolov
4.63 (54)
MT5版本  |  FAQ Owl Smart Levels Indicator   是一個完整的交易系統,包含   Bill Williams   的高級分形、構建正確的市場波浪結構的 Valable ZigZag 以及標記準確入場水平的斐波那契水平等流行的市場分析工具 進入市場和地方獲利。 策略的详细说明 指示灯使用说明 顾问-贸易猫头鹰助手助理 私人用户聊天 ->购买后写信给我,我会将您添加到私人聊天中,您可以在那里下载所有奖金 力量在於簡單! Owl Smart Levels   交易系統非常易於使用,因此適合專業人士和剛開始研究市場並為自己選擇交易策略的人。 策略和指標中沒有隱藏的秘密公式和計算方法,所有策略指標都是公開的。 Owl Smart Levels 允許您快速查看進入交易的信號,突出顯示下訂單的水平並向您發送有關已出現信號的通知。 優點很明顯: 清楚地顯示主要和更高時間框架的趨勢方向。 指示儀器信號的出現。 標記開單、止損設置和固定利潤的水平。 沒有多餘的,只有必要的結構! ZigZag   表示全球趨勢的方向,因此也表示貿易方向。 市場反轉點的短線清楚地表明在
Master scalping M1
Nataliia Marchuk
Master Scalping M1 is an innovative indicator that uses an algorithm to quickly and accurately determine the trend.The indicator calculates the time of opening and closing positions, the indicator's algorithms allow you to find the ideal moments to enter a deal (buy or sell an asset), which increase the success of transactions for most traders. Benefits of the indicator: Easy to assemble, does not overload the chart with unnecessary information. Can be used as a filter for any strategy. Works on
Trend PA
Mikhail Nazarenko
5 (3)
The Trend PA indicator uses   Price Action   and its own filtering algorithm to determine the trend. This approach helps to accurately determine entry points and the current trend on any timeframe. The indicator uses its own algorithm for analyzing price changes and Price Action. Which gives you the advantage of recognizing, without delay, a new nascent trend with fewer false positives. Trend filtering conditions can be selected in the settings individually for your trading style. The indicator
Trendiness Index
Libertas LLC
5 (3)
"The trend is your friend" is one of the best known sayings in investing, because capturing large trendy price movements can be extremely profitable. However, trading with the trend is often easier said than done, because many indicators are based on price reversals not trends. These aren't very effective at identifying trendy periods, or predicting whether trends will continue. We developed the Trendiness Index to help address this problem by indicating the strength and direction of price trend
Infinity Trend Pro
Yaroslav Varankin
1 (1)
This is a trend indicator without redrawing Developed instead of the binary options strategy (by the color of the Martingale candlestick) Also works well in forex trading When to open trades (binary options) A signal will appear in the place with a candle signaling the current candle It is recommended to open a deal for one candle of the current timeframe M1 and M5 When a blue dot appears, open a deal up When a red dot appears, open a trade down. How to open trades on Forex. When a signal is rec
Cosmic Diviner X Planet
Olena Kondratenko
4 (2)
This unique multi-currency strategy simultaneously determines the strength of trends and market entry points, visualizing this using histograms on the chart. The indicator is optimally adapted for trading on the timeframes М5, М15, М30, Н1. For the convenience of users, the indicator renders the entry point (in the form of an arrow), recommended take profit levels (TP1, TP2 with text labels) and the recommended Stop Loss level. The take profit levels (TP1, TP2) are automatically calculated for
Blahtech Market Profile
Blahtech Limited
4.61 (18)
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. Blahtech Limited presents their Market Profile indicator for the MetaTrader community. Ins
FreqoMaster
Stanislav Korotky
The main idea of this indicator is rates analysis and prediction by Fourier transform. The indicator decomposes exchange rates into main harmonics and calculates their product in future. The indicator shows 2 price marks in history, depicting price range in the past, and 2 price marks in future with price movement forecast. Buy or sell decision and take profit size are displayed in a text label in the indicator window. The indicator uses another indicator as an engine for calculations - FreqoMet
VR Cub
Vladimir Pastushak
VR Cub 这是获得高质量切入点的指标。该指标的开发是为了促进数学计算并简化对仓位入场点的搜索。多年来,该指标所针对的交易策略已被证明其有效性。交易策略的简单性是其巨大的优势,即使是新手交易者也能成功进行交易。 VR Cub 计算开仓点以及获利和止损目标水平,这显着提高了效率和易用性。查看使用以下策略进行交易的屏幕截图,了解简单的交易规则。 设置、设置文件、演示版本、说明、问题解决,可以从以下位置获取 [博客] 您可以在以下位置阅读或撰写评论 [关联] 版本为 [MetaTrader 5] 计算入场点的规则 开仓 要计算入场点,您需要将 VR Cub 工具从最后一个高点拉伸到最后一个低点。 如果第一个点在时间上早于第二个点,交易者等待柱线收于中线上方。 如果第一个点在时间上晚于第二个点,交易者等待柱线收于中线下方。 根据上述条件,严格在 柱线收盘 后建仓。 换句话说,如果我们在小时图上进行交易,那么从最高点到最低点的时间距离必须超过24小时,最高点和最低点之间的点数必须大于或等于平均价格变动每天。 维持和改变市场地位 可以有多个未平仓头寸;每个头寸都可以单独修改。 VR Cu
这是一个预测蜡烛收盘价的指标。 该指标主要用于 D1 图表。 该指标适用于传统外汇交易和二元期权交易。 该指标可以用作独立的交易系统,也可以作为您现有交易系统的补充。 该指标分析当前蜡烛,计算蜡烛本身内部的某些强度因素,以及前一根蜡烛的参数。 因此,该指标预测市场走势的进一步方向和当前蜡烛的收盘价。 由于这种方法,该指标既适用于短期盘中交易,也适用于中长期交易。 该指标允许您设置指标在分析市场情况期间将产生的潜在信号的数量。 在指标设置中有一个特殊的参数。 此外,该指标可以通过图表上的消息、电子邮件以及推送通知的形式通知新信号。感谢您的关注!交易愉快! 购买后一定要写信给我! 我会给你我的交易指标的建议! 还可以获得奖金!
Title : Market Bias Indicator - Oscillator-Based Trading Tool Introduction : Discover the potential of the "Market Bias Indicator," a revolutionary oscillator-based trading tool designed for precise market analysis. If you're in search of a robust alternative to traditional bias indicators, your quest ends here. Market Bias Indicator offers unparalleled accuracy in identifying market sentiment and is your gateway to confident trading decisions. Recommended Trading Pairs : Market Bias Indicator i
COG LR Osc AM
Andriy Matviyevs'kyy
The presented indicator allows you to determine potential entry points into the market and set protective orders at reasonable levels. This product can be useful for both beginners and experienced traders. The indicator is based on calculation methods proven by time and practicing traders. The indicator is calculated in two stages: At the first stage, linear regression (LR) of the selected price type is determined for a given number of chart periods. At the second stage, the obtained data is p
Trade with Gann on your side!! MASTER CIRCLE 360 CIRCLE CHART, originally created by Gann admitted that this is “The Mother of all charts”. It is one of the last studies that this great trader left for us. The numeric tab le is apparently quite simple like all the tables and is based on square numbers, the SQUARE OF 12 and is by evolution, one of the most important square numbers. Here we can find CYCLE, PRICE AND TIME thanks to angles and grades, to show past and future support and resistance.
不重繪箭頭的外匯剝頭皮指標。它在 M5、M15、M30、H1 時間框架上效果最佳。默認設置適用於 M5 時間範圍。下圖顯示了使用“period=0.35”參數值處理 H1 圖表的示例。您可以下載演示版並自行測試。現在,我們幾乎在所有剝頭皮策略中都使用該指標的信號。根據我們的計算,其信號的準確性約為 95%,具體取決於時間範圍。該指標適用於所有貨幣對。我們已經在所有主要貨幣對和金屬上進行了測試。在任何地方都獲得了幾乎相同的 +-95% 的準確度。 指標的好處: 不重繪箭頭 適用於所有貨幣對 高信號精度 適合剝頭皮 指標設置: period - 計算信號精度的周期。 Price - 告訴指標使用哪個價格:CLOSE、OPEN、HIGH、LOW。默認情況下,該指標適用於收盤價。
5 signal in 1  Product     TimeFrame   Recommend   1m-5m recommend  signal   TF  5m    Banks Pro Binary Option is Indicator for binary option Can Use Manaul Trade or Robot on Platform  Mt2Trading  https://www.mt2trading.com/?ref=104    Time Trading   good work  EU session    Recommend  Curency   EUR  GBP USD        careful   AUD JPY      Recommend  Martingale 2-5 Step   Recommend  set profit  2%-5%/Day Setting Brake  News Event High volatility   recommend  15-30 min Have Problem Contract
Trend Scanner
Vladimir Kalendzhyan
4.38 (8)
By purchasing this indicator, you have the right to receive a free copy of one of   my other indicator's or advisor’s!  (All future updates are included. No limits) . To get it , please contact me by  mql5 message ! The Trend Scanner trend line indicator displays the trend direction and its changes. The indicator works on all currency pairs and  timeframes. The indicator simultaneously displays multiple readings on the price chart: the support and resistance lines of the currency pair, the exist
Bintang Binary R2
Anthonius Soruh
5 (2)
Bintang Binary Indicator work all pairs Time Frame : M5 Expaired : 1 Candle No Repaint, No Delay and Alerts Use manual and auto trading  Easy to use Trial Version, Rent Version and Full Version avaliable Trial Version >>> download here  https://www.mql5.com/en/market/product/54602 Trial Version not have Alerts Rent version 1 month, 3 month, 6 month, 9 month, and 1 years Auto trading is better use MT2 Trading Platform (Contact me for discount 10 % MT2 trading licence) Work good for forex trading
这种用于从无穷远衡量货币强弱的创新指标是长期交易的黄牛和交易者不可或缺的助手。 分析货币强弱的系统早已被世界领先的交易者所熟知并在市场上使用。 没有这种分析,任何套利交易都是不完整的。 我们的指标很容易确定基础货币相对于彼此的强弱。 它显示所有或当前货币对的折线图,允许即时分析和搜索最强的入口点。 该指标直观,允许您快速找到并切换到任何一对,具有可放置在地下室和主图表上的移动面板。 通知货币强度变化的计时器模式使交易者有机会在手机上收到通知。  使用货币功率计无穷大指示器的几种策略: 1. 使用货币强度的线性显示图表搜索交叉点作为新兴趋势的信号 2. 在趋势反转信号出现后,向强势货币方向反弹 3. 使用货币强度发散分析扭转当前趋势 4. 使用其他无限指标向强势货币方向交易  如果您有任何问题或希望收到私人聊天的个人邀请,请写信给我:profitcamp@mail.ru
The Th3Eng PipFinite indicator is based on a very excellent analysis of the right trend direction with perfect custom algorithms. It show the true direction and the best point to start trading. With StopLoss point and Three Take Profit points. Also it show the right pivot of the price and small points to order to replace the dynamic support and resistance channel, Which surrounds the price. And Finally it draws a very helpful Box on the left side on the chart includes (take profits and Stop loss
The indicator detects and displays 3 Drives harmonic pattern (see the screenshot). The pattern is plotted by the extreme values of the ZigZag indicator (included in the resources, no need to install). After detecting the pattern, the indicator notifies of that by a pop-up window, a mobile notification and an email. The indicator highlights the process of the pattern formation and not just the complete pattern. In the former case, it is displayed in the contour triangles. After the pattern is com
Insider Scalper Binary This tool is designed to trade binary options. for short temporary spends. to make a deal is worth the moment of receiving the signal and only 1 candle if it is m1 then only for a minute and so in accordance with the timeframe. for better results, you need to select well-volatile charts.... recommended currency pairs eur | usd, usd | jpy .... the indicator is already configured, you just have to add it to the chart and trade .... The indicator signals the next can
The indicator displays the data of the Stochastic oscillator from a higher timeframe on the chart. The main and signal lines are displayed in a separate window. The stepped response is not smoothed. The indicator is useful for practicing "manual" forex trading strategies, which use the data from several screens with different timeframes of a single symbol. The indicator uses the settings that are identical to the standard ones, and a drop-down list for selecting the timeframe. Indicator Parame
Distinctive
Tatiana Savkevych
Distinctive is a forex trending arrow indicator for identifying potential entry points. I like it, first of all, because it has a simple mechanism of work, adaptation to all time periods and trading tactics. Created on the basis of a regression channel with filters. Plotting the Lawrence indicator signals on a price function chart using a mathematical approach. How it works - when the price breaks out in the overbought / oversold zone (channel levels), a buy or sell signal is generated. Every
斐波那契折返和扩展画线工具 适用于MT4平台的斐波那契折返和扩展画线工具,适合于使用黄金分割交易的交易者 优点:没有多余的线,没有过长的线,易于观察发现交易的机会 试用版: https://www.mql5.com/zh/market/product/35884 主要功能: 1.可以直接画出多组斐波那契折返,可以看出重要折返点之间的关系; 2.可以画出斐波那契扩展,比率有三种0.618,1,1.618 3.画出的斐波那契折返和扩展均可左右移动,有数值显示,方便观察 4.可通过数字键切换周期 使用指南和功能键: 1.按 [ 或R画折返,按需要画折返,最多云持8组折返; 2.按 ] 或E画扩展; 3.按 \ 删除当前周期下的所有扩展和折返,其余周期的不受影响 4.如何左右移动折返和扩展 (1)点击第一组折返的F5字符,可以左右移动折返; (2)点击COP的字符 ,可以左右移动扩展; 5. (1)点击第一组折返的F5字符,按del 可以删除这组折返; (2)点击COP的字符, 按del 可以删除这组扩展; 6.修改折返和扩展(随着市场的运行
FreqoMeterForecast
Stanislav Korotky
The main idea of this indicator is rates analysis and prediction by Fourier transform. Indicator decomposes exchange rates into main harmonics and calculates their product in future. You may use the indicator as a standalone product, but for better prediction accuracy there is another related indicator - FreqoMaster - which uses FreqoMeterForecast as a backend engine and combines several instances of FreqoMeterForecast for different frequency bands. Parameters: iPeriod - number of bars in the ma
PZ 123 Pattern
PZ TRADING SLU
3.75 (4)
123模式 是最受欢迎,功能强大和灵活的图表模式之一。该模式由三个价格点组成:底部,峰值或谷值以及38.2%至71.8%之间的斐波纳契回撤位。当价格突破最后一个峰值或谷值时,该形态被认为是有效的,此时指标绘制箭头,发出警报并可以进行交易。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 清除交易信号 可自定义的颜色和尺寸 实施绩效统计 可定制的斐波那契回撤水平 显示适当的止损和获利水平 该指标可用于查找连续或反转形态 它是不可重涂和不可重涂的 它实现了电子邮件/声音/视觉警报 123模式 可以表现为连续或反转模式。为了简化操作,该指标使您可以选择要寻找哪种类型的形态,使其成为趋势或反转交易者的绝佳工具。 设置 将指标加载到任何图表时,将显示一组选项作为输入参数。如果您认为它们太多,请不要感到失望,因为参数被分组为不言自明的块。这就是每个参数块的作用。 幅度-幅度表示替代价格点之间的最小柱线量。要找到大图案,请增加幅度参数。要查找较小的模式,请减小幅度参数。 闵。回撤-形态中所需的最小斐波那契回撤。设置为零不对其进行评估。 最大。回撤-形态中可能
ZhiBiCCI MT4
Qiuyang Zheng
5 (1)
【ZhiBiCCI】指标适合所有的周期使用,也适合所有的市场品种。 【ZhiBiCCI】绿色实线是逆转看涨背离。绿色虚线是经典的看涨背离。 【ZhiBiCCI】向红色实线是反向看跌背离。红色虚线是古典看跌背离。 【ZhiBiCCI】可以在参数里面设置(Alert、Send mail、Send notification),设置为(true)就可以发送即时信号到警报窗口、电子邮件、即时消息。 参数设置说明: 【displayAlert】:这是警报开关,设置成true,如果出现箭头就会自动警报提示;设置成false,则不会警报提示。 【sendmail_NO_OFF】:这是发送邮件的开关,设置成true,如果出现箭头就会发送邮件到你在MT4设置好的邮箱里面;设置成false,则不会发邮件。 【sendnotification_NO_OFF】:这是发送即时消息的开关,设置成true,如果出现箭头就会发送消息到你的移动设备;设置成false,则不会发消息。 更多好用的指标网址: https://www.mql5.com/en/users/zhengqiuyang/seller
该指标自动计算并绘制斐波那契支撑位和阻力位 - 最有效的市场分析工具之一。 计算使用所选期间和时间范围的平均价格数据。此期间的最小值和最大值被视为运动的开始和结束。 斐波那契水平让您可以看到潜在的参考点,围绕这些点价格走势可以放缓或逆转,也就是说,它们用于预测进一步的走势,以及设置止损和限价单。 参数: PartsShow - 从当前柱状图显示的历史级别数 CalcPeriod - 价格平均周期 SmoothingMethod - 价格平均法(26 个选项) TF - 用于计算的时间范围 LevelColor - 水平线的颜色 ZeroLevelColor - 零级颜色 ShowVerticalLine - 启用/禁用水平之间的垂直线的显示 VLineStyle - 垂直线的样式 VLineColor - 垂直线的颜色 ShowInfo - 启用以标签形式显示有关级别百分比值的信息,否则以对象描述的形式显示 InfoFontSize - 信息字体大小 InfoColor - 信息字符串的颜色 FiboLevels - 显示水平的百分比值
Support and Resistance is a very important reference for trading.  This indicator provides customized support and resistance levels, automatic draw line and play music functions.  In addition to the custom RS, the default RS includes Pivot Point, Fibonacci, integer Price, MA, Bollinger Bands. Pivot Point is a resistance and support system. It has been widely used at froex,stocks, futures, treasury bonds and indexes. It is an effective support resistance analysis system. Fibonacci also known as t
该产品的买家也购买
引入神奇外汇指标:释放精准交易的力量 你是否厌倦了寻找在所有时间框架上都能取得出色结果的完美外汇指标?别再继续寻找了!神奇外汇指标已经来到,改变您的交易体验,将您的利润推向新的高度。 神奇外汇指标基于尖端技术和多年的精心开发,堪称外汇市场上的强大和精确的巅峰之作。这个卓越的工具旨在满足各个层次的交易者需求,在追求持续盈利性方面提供无与伦比的优势。 神奇外汇指标的独特之处在于其无与伦比的适应性。无论您是日内交易者、波段交易者还是更喜欢长期持仓,该指标都经过优化,能在所有时间框架上取得出色的结果。然而,当在1小时时间框架上使用时,它的准确性和捕捉市场复杂走势的能力得到真正展示。 准备好对神奇外汇指标的准确性和可靠性感到惊讶。其先进的算法无缝结合了强大的指标、统计分析和趋势识别,实时为您提供全面的市场视图。指标的智能和动态信号使您能够自信地做出明智的交易决策,最大限度地提高获胜交易的机会。 不再犹豫和迷茫。神奇外汇指标消除了交易的猜测,使您在市场参与者中具有独特的优势。其用户友好的界面和直观的设计使得无论是经验丰富的专业人士还是初学者都能轻松掌握这一卓越工具的力量。 有了神奇外汇指标的支持,
目前八折优惠! 对任何新手或专家交易者来说都是最好的解决方案! 这个仪表板软件适用于28种货币对。它基于我们的两个主要指标(高级货币强度28和高级货币冲动)。它对整个外汇市场提供了一个伟大的概述。它显示高级货币强度值,货币运动速度和28个外汇对在所有(9)时间段的信号。想象一下,当你可以使用图表上的单一指标观察整个市场,以确定趋势和或剥头皮的机会时,你的交易将得到改善 我们已经在这个指标中建立了一些功能,使你更容易识别强势和弱势货币,同时识别和确认潜在的交易。该指标以图形方式显示货币的强势或弱势是增加还是减少,以及它在所有时间段的表现。 增加的新功能是动态市场斐波那契水平,它适应当前的市场条件变化,这是一个已经在我们的高级货币强度28和高级货币冲动指标中使用的成熟的加分项。 在交易时,总是将弱势货币和强势货币配对,这个新指标将帮助你做到这一点。 用户手册:点击这里  https://www.mql5.com/en/blogs/post/708783 特点  显示每个时间段的ACS28和GAP-speed(冲动)的货币强度值。 列:颜色代码以7种颜色
TPSpro RFI Levels
Roman Podpora
5 (13)
A key element in trading is zones or levels from which decisions to buy or sell a trading instrument are made. Despite attempts by major players to conceal their presence in the market, they inevitably leave traces. Our task was to learn how to identify these traces and interpret them correctly. Reversal First Impulse levels (RFI)   -  Version MT5                INSTRUCTIONS                 RUS                 ENG                                       R ecommended to use with an indicator   -  
TPSproTREND PrO
Roman Podpora
5 (15)
TPSpro TRENDPRO  - is a trend indicator that automatically analyzes the market and provides information about the trend and each of its changes, as well as giving signals for entering trades without redrawing! The indicator uses each candle, analyzing them separately. referring to different impulses - up or down impulse. Exact entry points into transactions for currencies, crypto, metals, stocks, indices!  -  Version MT5               DETAILED DESCRIPTION        /       TRADING SETUPS           
Atomic Analyst
Issam Kassas
5 (1)
首先值得强调的是,该交易指标是非重绘、非延迟的指标,这使其成为手动和机器人交易的理想选择。 Atomic Analyst是一种PA价格行动指标,利用价格的力量和动量来寻找市场上更好的机会。配备了高级过滤器,可帮助去除噪音和假信号,并提高交易潜力。使用多层复杂的指标,Atomic Analyst扫描图表,并将复杂的数学计算转化为任何初学者都能理解并用来做出一致交易决策的简单信号和颜色。 “Atomic Analyst”是专为新手和经验丰富的交易者量身定制的综合交易解决方案。它将高级指标和一流功能融合为一体的交易策略,使其成为所有类型交易者的多功能选择。 日内交易和剥头皮策略:专为快速准确的日内交易和短期交易而设计。 日内和摆动交易策略:可用作追求价格大幅波动的日内和摆动交易者的可靠工具。 多货币和市场:凭借其可靠的精度,在不同的工具和市场上运作。 多个时间框架:可在多个时间框架上使用,性能良好。 稳定性:所有指标均不重绘、不重绘和不滞后,确保可靠的信号。 信号清晰度:提供箭头信号,用于清晰的入场和出场点。 实时警报:通过交易入场、SL和TP警报通知交易者。 多个利润水平:使用
Advanced Currency Strength28 Indicator
Bernhard Schweigert
4.9 (662)
目前26%的折扣 任何新手或专家交易者的最佳解决方案! 这个指标是一个独特的、高质量的、可负担得起的交易工具,因为我们纳入了一些专有的功能和一个新的公式。只需一个图表,你就可以读出28个外汇对的货币强度!想象一下,你的交易将如何得到改善,因为你的交易是在你的手中进行的。想象一下,你的交易将如何改善,因为你能够准确地确定新趋势或剥头皮机会的触发点? 用户手册:点击这里  https://www.mql5.com/en/blogs/post/697384 这是第一本,原版的! 不要买一个毫无价值的崇拜者的克隆品。 特别的 子窗口中的箭头显示强劲的货币势头GAP将指导你的交易! 当基础货币或报价货币处于超卖/超买区域(外盘斐波那契水平)时,在个人图表的主窗口中出现警告信号。 当货币力量从外围区间回落时,回撤/反转警报。 十字星模式的特别警报 可选择多个时间框架,以快速查看趋势! 货币强度线在所有的时间框架中都非常平稳,当使用较高的时间框架来识别总体趋势,然后使用较短的时间框架来确定精确的入口时,效果非常好。你可以根据自己的意愿选择任何时间框架。每个时间框架都由其自身进
Scalper Inside PRO
Alexey Minkov
4.75 (55)
An exclusive indicator that utilizes an innovative algorithm to swiftly and accurately determine the market trend. The indicator automatically calculates opening, closing, and profit levels, providing detailed trading statistics. With these features, you can choose the most appropriate trading instrument for the current market conditions. Additionally, you can easily integrate your own arrow indicators into Scalper Inside Pro to quickly evaluate their statistics and profitability. Scalper Inside
Quantum Trend Sniper Indicator MT4
Bogdan Ion Puscasu
4.59 (39)
介绍   量子趋势狙击指标 ,突破性的 MQL5 指标,正在改变您识别和交易趋势反转的方式!由拥有超过13年交易经验的资深交易员团队开发,     量子趋势狙击指标   旨在通过其创新的方式以极高的准确度识别趋势反转,将您的交易之旅推向新的高度。 ***购买量子趋势狙击指标,即可免费获得量子突破指标!*** 当量子突破指标识别出趋势反转时,它会向您发出警报和信号箭头,并建议您三个止盈水平。 它既适合新手交易者,也适合专业交易者。 量子 EA 通道:       点击这里 MT5版本:       点击这里 建议: 时间范围:  所有时间范围。为了获得最佳结果,我们建议在 M15、M30 和 H1 时间范围内使用它。 货币对:欧元兑美元、英镑兑美元、澳元兑美元、欧元兑英镑, EURAUD, XAUUSD 账户类型:ECN、Raw 或 Razor,点差极低 经纪时间:任意 经纪商:IC Markets、Pepperstone with Raw 和 Razor 的点差最低 建议止损:50 点 建议止盈水平:20 点、50 点和 1
TrendMaestro
Stefano Frisetti
5 (2)
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link: TRENDMAESTRO recognizes a new TREND in the bud, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these data and therefore the moment in which prices have strong probability of f
XQ Indicator MetaTrader 4
Marzena Maria Szmit
3 (2)
Step into the realm of Forex trading with confidence and precision using XQ, a cutting-edge Forex indicator designed to elevate your trading game to unprecedented heights. Whether you're a seasoned trader or just stepping into the world of currency exchange,   XQ Forex Indicator   empowers you with the insights and signals needed to make informed trading decisions. The signal conditions are a combination of three indicators, and XQ Forex Indicator only display  medium and long-term trends . The
使用我们的自定义MT4指标发现成功外汇交易的秘诀! 您是否曾经想过如何在外汇市场上取得成功,一贯赚取利润,同时降低风险? 这是您一直在寻找的答案! 允许我们介绍我们的专有MT4指标,该指标将彻底改变您的交易方法。 独特的多功能性 我们的指标专为喜欢Renko和Rangebar Candle编队的用户而设计。 我们了解到,这些图表类型受到许多经验丰富的交易者的青睐,这就是为什么我们的指标与它们无缝集成,从而提供无与伦比的市场分析。 清晰的趋势信号 忘记复杂的分析! 我们的指标利用鲜艳的色彩和清晰的点结构来明确指示市场趋势。 红色和蓝色的点毫无疑问地对价格变动的方向留下了疑问,从而可以在您的交易中快速决策。 与HH/HL HL/LL策略对齐 如果您正在寻求一个指标,该指标无缝地与基于HH/HL和HL/LL结构的策略无缝合作,则不需要更多。 我们的工具不仅确定了这些形式,而且还促进了它们在投资过程中的有效利用。 绝对的清晰度和简单性 我们的首要任务是为您提供一种不仅有效而且易于使用的工具。 我们的指标是为了清晰而设计的,使您可以专注于做出投资决策,而不是
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
现在优惠 33%! 任何新手或专业交易者的最佳解决方案! 该指标是一款独特、高质量、且价格合理的交易工具,因为我们已经整合了许多专有功能和新公式。 依据此更新,您将能够显示双重时间帧区域。 您不仅可以显示一个较高的时间帧,还可以同时显示图表时间帧,加上更高的时间帧:显示嵌套时区。 供需双方所有交易者都会喜欢它。 :) 重要信息披露 高级供需的最大潜力,请访问 https://www.mql5.com/zh/blogs/post/720245   想象您的交易如何得以改善,是因为您能够精准定位入场或目标位吗? 构建于新的底层算法,它可以更轻松地识别出买卖双方之间的潜在失衡。 这是因为它以图形方式展示供需最强劲区域,及其过去的表现(显示旧区域)。 这些功能旨在帮助您更轻松地发现最佳入场区域和价位。 现在您可以针对您的交易品种和时间帧来优化和编辑区域强度! 高级供需指标适用于所有产品和时间帧。 它是一个新的公式,非常新的功能是两个区域强度函数可由用户输入进行调整! 这在交易中是一大优势。 当您学习如何使用专有功能,例如带有价格游离最小 X 因子的区域强度时,您能够判断该区域强劲与否。 供
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
介绍     Quantum Breakout PRO   ,突破性的 MQL5 指标,正在改变您交易突破区域的方式!   Quantum Breakout PRO 由拥有超过 13 年交易经验的经验丰富的交易者团队开发,旨在通过其创新和动态的突破区域策略将您的交易之旅推向新的高度。 量子突破指标将为您提供带有 5 个利润目标区域的突破区域的信号箭头,以及基于突破框的止损建议。 它既适合新手交易者,也适合专业交易者。 量子 EA 通道:       点击这里 MT5版本:   点击这里 重要的!购买后请私信我领取安装手册。 建议: 时间范围:M15 货币对:GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD 账户类型:ECN、Raw 或 Razor,点差极低 经纪商时间:GMT +3 经纪商:IC Markets、Pepperstone with Raw 和 Razor 的点差最低 规格: 不重漆! 最多 5 个建议利润目标区域 建议止损水平 可定制的盒子。您可以设置自己的 Box Time Start 和 Box Time E
FX Power MT4 NG
Daniel Stein
5 (8)
通过 mql5 和 Telegram 上 的晨间简报获取每日市场更新,包括详细信息和屏幕截图 ! FX Power MT4 NG 是我们长期以来非常受欢迎的货币强度计算器 FX Power 的下一代产品。 这款下一代强度计算器能提供什么?您所喜爱的原版 FX Power 的所有功能 附加功能 黄金/XAU 强度分析 更精确的计算结果 可单独配置的分析周期 可自定义计算限制,以获得更好的性能 为希望查看更多信息的用户提供特殊的多实例设置 无尽的图形设置,可在每个图表中设置您最喜欢的颜色 无数的通知选项,让您再也不会错过任何重要信息 采用 Windows 11 和 macOS 风格的全新圆角设计 神奇的移动指标面板 FX Power 主要功能 所有主要货币的完整强势历史 所有时间框架内的货币强弱历史 所有经纪商和图表的计算结果完全相同 100% 可靠的实时计算 -> 无重绘 可通过下拉列表选择分析时段 通过自定义模式单独配置分析时段 可在一个图表中使用多个实例 可移动 FX Power 显示屏(通过拖放) 适用于高分辨率 QHD、UHD 和 4K 显示器 自动终端配置 针对平板电脑
介绍 ON Trade Waves Patterns Harmonic Elliot Wolfe,这是一款高级指标,旨在使用手动和自动方法检测各种市场模式。以下是它的工作原理: 谐波模式: 该指标可以识别出现在您图表上的谐波模式。这些模式对于练习谐波交易理论的交易者非常重要,正如Scott Carney的书《谐波交易第1卷和第2卷》所描述的那样。无论您是手动绘制它们还是依赖自动检测,ON Trade Waves Patterns都可以胜任。 控制面板: 我们配备了一个用户友好的控制面板,它会保存您的图表和时间帧设置,使您可以轻松切换不同配置。您甚至可以最小化它以最大化图表空间。如果您更喜欢使用其他分析工具,只需单击关闭按钮即可隐藏所有指标数据。 模板保存: 当您自定义设置或添加其他指标,如移动平均线或布林带时,该指标会自动保存您的模板。这意味着您可以随时轻松加载您喜欢的设置。 优化显示: 对于Windows 10用户,我们建议调整您的DPI设置以获得高清设备上的最佳屏幕体验。右键单击MetaTrader图标,选择“兼容性”,然后选择“更改高DPI设置”,将其设置为“系统(增强)”。
Entry Points Pro
Yury Orlov
4.7 (224)
这是一款 MT4 的趋势指标,可提供准确的入场交易信号,且无重绘或延迟。 它可应用在任何金融资产:外汇、加密货币、贵金属、股票、指数。 最好的结果出现在 M15+ 的时间帧内。 指标的 MT5 版本 重要! 购买后请联系我,以便获取详细指南和奖励。 视频 (6:22) - 一个信号赢取的利润等于指标价格的三倍。 视频 (4:44) - 它如何在测试器中工作,我的提示和技巧。 视频 (1:44) - 有关它如何处理加密货币和指数的几句话。 大多数交易者在 Entry Points Pro 指标的帮助下,在第一个交易周内就改善了他们的交易结果。 Entry Points Pro 指标的益处 入场信号无重绘或延迟 如果信号出现,并得到确认(如果信号所在烛条已收盘),则它不会再消失;不像是重绘指标,它会导致重大的财产损失,因为它们可以在显示信号后再将其删除。 无差错开仓 指标算法可令您找到入场交易(买入或卖出资产)的理想时机,从而提高每位交易者的成功率。 Entry Points Pro 可操作任何资产 它允许您在 MT4 平台上交易任何经纪商提供的加密货币、股票、
Advanced Currency IMPULSE with ALERT
Bernhard Schweigert
4.91 (493)
目前31%的折扣!! 对任何新手或专家交易者来说都是最好的解决方案! 这个指标是一个独特的、高质量的、负担得起的交易工具,因为我们已经纳入了一些专有的功能和一个秘密的公式。只需一张图表,它就能给出所有28种货币对的警报。想象一下,你的交易将如何改善,因为你能够准确地确定新趋势或剥头皮机会的触发点 建立在新的基础算法上,它使识别和确认潜在交易变得更加容易。这是因为它以图形方式显示了一种货币的强势或弱势是否正在加速,并测量了这种加速的速度--把它想象成你汽车中的速度表。当你加速时,事情显然会发生得更快,这在外汇市场上也是一样的,即如果你配对的货币正在向相反的方向加速,你就会发现一个潜在的有利可图的交易。 货币动量的垂直线和箭头将指导你的交易! 动态的市场斐波那契23水平被用作警报触发器,将适应市场活动。如果冲动触及黄色触发线,您将在MetaTrader或您的电子邮件或推送警报中收到警报。然后你就知道作为一个交易员应该做什么。货币对和方向已经给出。只要点击警报按钮,就可以切换到该货币对或打开一个新的图表,以便进一步分析。警报级别可以通过用户输入来改变,可以选择3个敏感度级别
首先值得强调的是,这个交易系统是一个不重绘、不重画和不滞后的指标,这使它非常适合专业交易。 “智能支撑和阻力交易系统”是专为新手和经验丰富的交易者量身定制的先进指标。它赋予交易者在外汇市场上精确和自信的能力。这个综合系统结合了7+种策略、10个指标和各种交易方法,包括日内交易策略、波段交易策略、支撑和阻力策略、蜡烛图模式策略、VWAP策略、多时间段趋势策略等。它提供箭头信号、入场和出场点、交易警报、更高时间框架的趋势分析、实时交易监控以及见解深刻的趋势和成交量蜡烛染色。通过自动支撑和阻力检测,这是一个多面手的指标,帮助交易者在不同的市场条件下做出明智的决策。 “智能支撑和阻力交易系统”是一个强大的技术分析方法,融合了一套高端和强大的指标和工具。在其核心,这个系统识别关键的支撑和阻力水平,这些水平作为潜在市场反转或延续的关键区域。该系统无缝集成了多时间框架趋势面板,增强了交易者在不同时间框架下评估当前趋势方向的能力。此外,蜡烛图模式检测器扫描价格图表以获取重要的蜡烛图模式,为潜在的市场走势提供宝贵的见解。此外,VWAP(成交量加权平均价格)的加入帮助交易者评估市场情绪和日内趋势
TakePropips Donchian Trend Pro
Eric John Pajarillaga Aldana
4.82 (17)
TakePropips Donchian Trend Pro   (MT4) 是一款功能强大且有效的工具,可使用 Donchian 通道自动检测趋势方向,并为您提供进场和退场交易信号! 这个多功能指标包括趋势扫描器、交易信号、统计面板、筛选器、交易时段和警报历史仪表板。它旨在为您提供交易信号并节省您分析图表的时间! 您可以在我们的博文中下载用户手册和安装指南:   https   :// www.mql5.com/en/blogs/post/751368 今天立减 50%!价格从 98 美元降到 49 美元! 您可以在 Strategy Tester 上测试该指标(启用可视模式)。如果您喜欢在实时图表上进行测试,也可以给我发消息以获取 7 天试用版。 视频教程也可在说明下方获得更多详细信息。 如果您有任何问题或需要任何帮助,请与我联系。 TakePropips Donchian Trend Pro 指标适用于所有外汇对、金属、商品、指数和加密货币。 主要特点 交易信号 - 检测多个时间范围内所有货币对的买卖机会。它将为您提供警报并在图表上绘制交易信号,最多 3 个止盈价和一个止
介绍 Zeus 指标:您的终极利润突破交易工具。 该指标简化了交易,消除了使用突破策略进行深入分析的需要。它会根据您预设的时间框架自动绘制区域,建议止损(SL)、获利点(TP)和跟踪止损水平。 当价格接近买入或卖出入场点时,Zeus 指标会迅速通知您并显示信号箭头。它还提供了四个不同获利点和各种跟踪止损选项的建议。 这个工具适用于初学者和经验丰富的交易者。 频道支持: 点击这里 商店 : 点击这里 MT5 版本: 点击这里 建议: 时间框架:M5 或 M15 货币对:与所有货币对兼容 帐户类型:与任何类型的帐户兼容 建议止损:使用 Zeus 指标提供的 SL 建议 建议获利点:使用 Zeus 指标的 TP 建议 规格: 根据您预设的时间框架自动绘制区域 自动建议买入和卖出入场点 自动建议跟踪止损以保护利润 自动且易于看到的止损和获利点 包括警报通知 提供用于回测结果的面板 为每个货币对提供可自定义选项 能够调整区域边界以满足每个货币对的具体需求 以及更多功能! 联系方式: 如果您有任何问题或需要帮助,请随时通过私信与我们联系。
FX Volume
Daniel Stein
4.6 (35)
通过 mql5 和 Telegram 上 的 " 晨间简报 "获取每日市场更新,包括详细信息和屏幕截图 ! 外汇交易量(FX Volume)是第一个也是唯一一个从经纪商角度真正洞察市场情绪的交易量指标。 直接在您的图表上看到这些信息是真正改变游戏规则和突破性的交易解决方案。 受益于独特的市场数据洞察,如 比率(Ratios )显示货币多头和空头头寸的比率(百分比 比率变化 显示所选时间段内的多头比率及其百分比变化 总交易量 显示货币的总交易量(多头和空头),以手为单位 多头 交易量显示货币所有多头头寸的交易量 空头 交易量显示所有货币空头头寸的交易量 净多头 显示净多头交易量,即所有多头头寸减去所有空头头寸(以手为单位)。 净多头百分比 显示货币净多头交易量的变化 请阅读我们的基本教程 -> "如何使用外汇交易量进行交易 " 获取更多信息,如常见问题、交易技巧和教程视频,请访问我们的 外汇交易量公共信息频道 请 安装并运行 SI Connect 以建立与我们数据中心的持续连接 背景信息 我们都知道,外汇是一个分散的市场。这就是为什么我们必须打破常规思维,开发一个独
Quantum Heiken Ashi PRO MT4
Bogdan Ion Puscasu
4.43 (7)
介绍     Quantum Heiken Ashi PRO 图表 Heiken Ashi 蜡烛旨在提供对市场趋势的清晰洞察,以其过滤噪音和消除虚假信号的能力而闻名。告别令人困惑的价格波动,迎接更流畅、更可靠的图表表示。 Quantum Heiken Ashi PRO 的真正独特之处在于其创新公式,它将传统烛台数据转换为易于阅读的彩色条。红色和绿色条分别优雅地突出了看跌和看涨趋势,让您能够以非凡的精度发现潜在的进入和退出点。 量子 EA 通道:       点击这里 MT5版本:       点击这里 这一卓越的指标具有以下几个关键优势: 增强清晰度:通过平滑价格波动,Heiken Ashi 金条可以更清晰地反映市场趋势,使您更容易识别有利的交易机会。 减少噪音:告别经常导致错误信号的不稳定价格变动。 Quantum Heiken Ashi 指标可过滤噪音,使您能够做出更明智的交易决策 无缝集成:Heiken Ashi 指标专为 MetaTrader 开发,可无缝集成到您的交易平台中。它用户友好、高度可定制,并且与您的其他交易指标和过滤器兼容 无论您是寻求新优势的经验
Cycle Sniper
Elmira Memish
4.41 (34)
NEW YEAR SALE PRICE FOR LIMITED TIME!!! Please contact us after your purchase and we will send you the complimentary indicators to complete the system Cycle Sniper is not a holy grail but when you use it in a system which is explained in the videos, you will feel the difference. If you are not willing to focus on the charts designed with Cycle Sniper and other free tools we provide, we recommend not buying this indicator. We recommend watching the videos about the indiactor and system before pu
RelicusRoad Pro
Relicus LLC
4.78 (139)
现在$ 147(更新后增加到$ 499) - 无限帐户(PC或Mac) RelicusRoad 用户手册 + 培训视频 + 访问 Private Discord Group + VIP 身份 一种看待市场的新方式 RelicusRoad 是世界上最强大的外汇、期货、加密货币、股票和指数交易指标,为交易者提供保持盈利所需的所有信息和工具。我们提供技术分析和交易计划,帮助每一位交易者取得成功,从初学者到高级。它是一个关键的交易指标,可以提供足够的信息来预测未来的市场。我们相信一个完整的解决方案,而不是图表上几个没有意义的不同指标。这是一个多合一指标,显示无与伦比且非常准确的信号、箭头 + 价格行为信息。 RelicusRoad 基于强大的人工智能,提供缺失的信息和工具来教育您并使您成为交易专家,成为成功的交易者。 几乎所有技术指标都滞后,这意味着它们只能报告已经发生的事情。因此,他们只确认您过去可以看到的价格已经在哪里。我们相信领先指标可以预测未来价格,而无需重新绘制,也不要过度依赖可能改变并导致重新绘制的滞后指标。如果您根据滞后指标进行交易并建立头寸,您就知道您已
GOLD Impulse with Alert
Bernhard Schweigert
4.56 (9)
这个指标是我们2个产品 Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics 的一个超级组合。 它适用于所有时间框架,并以图形方式显示8种主要货币和一种符号的强势或弱势冲动! 该指标专门用于显示任何符号的货币强度加速,如黄金、异国货币对、商品、指数或期货。这是它的第一个指标,任何符号都可以被添加到第9行,以显示黄金、白银、石油、DAX、US30、MXN、TRY、CNH等的真实货币强度加速(冲动或速度)。 建立在新的基础算法上,它使识别和确认潜在的交易更加容易。这是因为它以图形方式显示了一种货币的强势或弱势是否正在加速,并测量了这种加速的速度--把它想象成你汽车中的速度表。当你加速时,事情显然会发生得更快,这在外汇市场上也是一样的,即如果你配对的货币正在向相反的方向加速,你就会发现一个潜在的有利可图的交易。 动态市场斐波那契28水平被用作警报触发器,将适应市场活动。如果冲动击中黄色触发线,你将收到警报。然后你就知道作为一个交易员应该做什么。货币对和方向已经给出。只需点击警报按钮,就可以
Gann Signal
Kirill Borovskii
Gann Signal is a very simple indicator at first glance, but hidden inside is many years of experience in studying W.D.Ganna methods. The indicator gives accurate BUY/SELL signals, without redrawing. The indicator is very easy to use. All you need to do is attach it to your chart and follow its recommendations. The indicator constantly analyzes the market for entry opportunities. When such an opportunity appears, the indicator gives a signal in the form of an arrow. I repeat, all signals are NOT
Currency Strength Exotics
Bernhard Schweigert
4.88 (33)
目前8折优惠! 对任何新手或专家交易者来说都是最好的解决方案! 这个指标是专门用来显示任何符号的货币强度,如异国货币对、商品、指数或期货。它是同类产品中的第一个,任何符号都可以添加到第9行,以显示黄金、白银、石油、DAX、US30、MXN、TRY、CNH等的真实货币强度。这是一个独特的、高质量的、负担得起的交易工具,因为我们已经纳入了一些专有的功能和一个新的公式。想象一下,你的交易将如何改善,因为你能够准确地确定新趋势或剥头皮机会的触发点? 用户手册:点击这里   https://www.mql5.com/en/blogs/post/708876 它适用于所有时间框架。你将很快能够看到TREND! 根据新的基础算法设计,它使识别和确认潜在交易变得更加容易。这是因为它以图形方式显示了8种主要货币和一种符号的强弱。 该指标显示了8种主要货币(澳元加元瑞士法郎欧元英镑日元新西兰美元)的强弱线,再加上一个符号! 该指标显示了符号的真实价值。例如:对于XAUUSD(黄金):价格以美元报价。如果黄金在上涨,你怎么能知道是黄金的强势还是美元的弱势?只有当黄金走强时,我们才会进行
CONGESTION BREAKOUT PRO This indicator scans the breakout of congestion zones . This indicator unlike any other congestion indicator you will find in the market right now,  it uses an advanced algorithm not peculiar to most traditional congestion indicators available today . The advanced algorithm used to define the congestions  is greatly responsible for the high rate real congestion zones and low rate fake congestion zones spotted by this product. UNDERSTANDING CONGESTION Congestion are
Th3Eng PipFinite Pro
Ahmed Farag
5 (2)
Th3Eng PipFinite PRO Indicator This product is distinct from the Th3Eng PipFinite Original, utilizing a different logic and algorithms. The Th3Eng PipFinite Pro indicator offers analysis of trend directions using custom algorithms. It provides indications of trend direction, entry points, a stop loss point, and three take profit points. The indicator also displays pivot points, dynamic support and resistance channels, and a side-box with detailed current signal information. How to Trade with
Reversal Sniper
Elmira Memish
5 (3)
Reversal Sniper is designed to find the extreme reversals of the price. Indicator collects data of Cycle Sniper Indicator. NOTE: REVERSAL SNIPER Indicator is made for Cycle Sniper Users as an additional tool.  However, it can be used by the traders who look for finding out strong reversal levels. Indicator works on all timeframes and all instruments. Reversal  Sniper  Checks: Harmonic Patterns RSI Zig Zag and Harmonic Swings Cycle Sniper Indicator's Buy / Sell Signals The complex algo i
作者的更多信息
WalkForwardOptimizer MT5
Stanislav Korotky
3.86 (7)
WalkForwardOptimizer library allows you to perform rolling and cluster walk-forward optimization of expert advisers (EA) in MetaTrader 5. To use the library include its header file WalkForwardOptimizer.mqh into your EA source code, add call provided functions as appropriate. Once the library is embedded into EA, you may start optimization according to the procedure described in the User guide . When it's finished, intermediate results are saved into a CSV file and some special global variables.
RenkoFromRealTicks
Stanislav Korotky
4.67 (3)
This non-trading expert utilizes so called custom symbols feature ( available in MQL API as well) to build renko charts based on history of real ticks of selected standard symbol. RenkoFromRealTicks generates custom symbol quotes, thus you may open many charts to apply different EAs and indicators to the renko. It also transmits real ticks to update renko charts in real time. The generated renko chart uses M1 timeframe. It makes no sense to switch the renko chart to a timeframe other than M1. T
VolumeDeltaBars
Stanislav Korotky
This indicator is a conventional analytical tool for tick volumes changes. It calculates tick volumes for buys and sells separately, and their delta on every bar, and displays volumes by price clusters (cells) within a specified bar (usually the latest one). The algorithm used internally is the same as in the indicator VolumeDeltaMT5 , but results are shown as cumulative volume delta bars (candlesticks). Analogous indicator for MetaTrader 4 exists - CumulativeDeltaBars . This is a limited substi
AutomaticZigZag
Stanislav Korotky
4.67 (3)
This is a non-parametric ZigZag providing 4 different methods of calculation. Upward edge continues on new bars while their `highs` are above highest `low` among previous bars, downward edge continues on next bars while their `lows` are below lowest `high` among previous; Gann swing: upward edge continues while `highs` and `lows` are higher than on the left adjacent bar, downward edge continues while `highs` and `lows` are lower than on the left adjacent bar. Inside bars (with lower `high` and
FREE
Time And Sales Layout indicator shows traded buy and sell volumes right on the chart. It provides a graphical representation of most important events in the time and sales table. The indicator downloads and processes a history of real trade ticks. Depending from selected depth of history, the process may take quite some time. During history processing the indicator displays a comment with progress percentage. When the history is processed, the indicator starts analyzing ticks in real time. The l
CustomVolumeDelta
Stanislav Korotky
4.5 (2)
This indicator displays volume delta (of either tick volume or real volume) encoded in a custom symbol, generated by special expert advisers, such as RenkoFromRealTicks . MetaTrader does not allow negative values in the volumes, this is why we need to encode deltas in a special way, and then use CustomVolumeDelta indicator to decode and display the deltas. This indicator is applicable only for custom instruments generated in appropriate way (with signed volumes encoded). It makes no sense to ap
FREE
VolumeDeltaWaves
Stanislav Korotky
5 (1)
This indicator is an extended implementation of Weis waves. It builds Weis waves on absolute volumes (which is the classical approach) or delta of volumes (unique feature) using different methods of wave formation and visualization. It works with real volumes, if available, or with tick volumes otherwise, but also provides an option to use so called "true volume surrogates", as an artificial substitution for missing real volumes (for example, for Forex symbols), which was introduced in correspo
Comparator
Stanislav Korotky
4.14 (7)
This indicator compares the price changes during the specified period for the current symbol and other reference symbol. It allows to analyze the similar movements of highly correlated symbols, such as XAUUSD and XAGUSD, and find their occasional convergences and divergences for trading opportunities. The indicator displays the following buffers: light-green thick line - price changes of the current symbol for TimeGap bars; light-blue thin line - price changes of the reference symbol ( LeadSymbo
FREE
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker, but in real time only, without access to its history. This expert adviser OrderBook History Playback allows you to playback the market book events on the history using files, created by OrderBook Recorder . The exper
FREE
HZZM
Stanislav Korotky
2.67 (3)
This is an adaptive ZigZag based on modification of  HZZ indicator (original source code is available in this article ). Most important changes in this version: two additional indicator buffers added for zigzag evolution monitoring - they show cross signs at points where zigzag direction first changes; zigzag range (H) autodetection on day by day basis; time-dependent adjustment of zigzag range. Parameters: H - zigzag range in points; this parameter is similar to original HZZ, but it can take 0
FREE
Most of traders use resistance and support levels for trading, and many people draw these levels as lines that go through extremums on a chart. When someone does this manually, he normally does this his own way, and every trader finds different lines as important. How can one be sure that his vision is correct? This indicator helps to solve this problem. It builds a complete set of virtual lines of resistance and support around current price and calculates density function for spatial distributi
ADXS
Stanislav Korotky
5 (3)
Ever wondered why standard ADX is made unsigned and what if it would be kept signed? This indicator gives the answer, which allows you to trade more efficient. This indicator calculates ADX values using standard formulae, but excludes operation of taking the module of ADX values, which is forcedly added into ADX for some reason. In other words, the indicator preserves natural signs of ADX values, which makes it more consistent, easy to use, and gives signals earlier than standard ADX. Strictly s
ADXSignal
Stanislav Korotky
Classical ADX revamped to provide faster and more solid trading signals. This indicator calculates ADX values using standard formulae, but excludes operation of taking the module of ADX values, which is forcedly added into ADX for some reason. In other words, the indicator preserves natural signs of ADX values, which makes it more consistent, easy to use, and gives signals earlier than standard ADX. Strictly speaking, any conversion to an absolute value destroys a part of information, and it mak
VolumeDelta
Stanislav Korotky
4.67 (3)
This indicator provides the analysis of tick volume deltas. It calculates tick volumes for buys and sells separately, and their delta on every bar, and displays volumes by price clusters (cells) within a specified bar (usually the latest one). This is a limited substitution of market delta analysis based on real volumes, which are not available on Forex. The indicator displays the following data in its sub-window: light-blue histogram - buy (long) volumes; orange histogram - sell (short) volumes
WalkForwardDemo MT5
Stanislav Korotky
4 (2)
WalkForwardDemo is an expert adviser (EA) demonstrating how the built-in library WalkForwardOptimizer (WFO) for walk-forward optimization works. It allows you to easily optimize, view and analyze your EA performance and robustness in unknown trading conditions of future. You may find more details about walk-forward optimization in Wikipedia . Once you have performed optimization using WFO, the library generates special global variables (saved in an "archived" file with GVF-extension) and a CSV-f
FREE
PointsVsBars
Stanislav Korotky
This indicator provides a statistical analysis of price changes (in points) versus time delta (in bars). It calculates a matrix of full statistics about price changes during different time periods, and displays either distribution of returns in points for requested bar delta, or distribution of time deltas in bars for requested return. Please, note, that the indicator values are always a number of times corresponding price change vs bar delta occurred in history. Parameters: HistoryDepth - numbe
FREE
SOMFX1Builder
Stanislav Korotky
5 (1)
If you like trading by candle patterns and want to reinforce this approach by modern technologies, this script is for you. In fact, it is a part of a toolbox, that includes a neural network engine implementing Self-Organizing Map (SOM) for candle patterns recognition, prediction, and provides you with an option to explore input and resulting data. The toolbox contains: SOMFX1Builder  - this script for training neural networks; it builds a file with generalized data about most characteristic pric
FREE
This is a demo version of a non-trading expert , which utilizes so called the custom symbols feature ( available in MQL as well ) to build renko charts based on historical quotes of selected standard symbol and to refresh renko in real-time according to new ticks. Also it translates real ticks to the renko charts, which allows other EAs and indicators to trade and analyze renko. Place the EA on a chart of a working instrument. The lesser timeframe of the source chart is, the more precise resulti
FREE
ReturnAutoScale
Stanislav Korotky
5 (2)
The indicator calculates running total of linear weighted returns. It transforms rates into integrated and difference-stationary time series with distinctive buy and sell zones. Buy zones are shown in blue, sell zones in red. Parameters: period - number of bars to use for linear weighted calculation; default value - 96; smoothing - period for EMA; default value - 5; mode - an integer value for choosing calculation mode: 0 - long term trading; 1 - medium term trading; 2 - short term trading; defa
FREE
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker in real time. The expert OrderBook Recorder records market book changes and stores them in local files for further usage in indicators and expert adviser, including testing in the tester. The expert stores market book
FREE
OrderBook Utilities is a script, which performs several service operations on order book hob-files, created by OrderBook Recorder . The script processes a file for work symbol of the current chart. The file date is selected by means of the input parameter CustomDate (if it's filled in) or by the point where the script is dropped on the chart. Depending from the operation, useful information is written into the log, and optionally new file is created. The operation is selected by the input parame
FREE
Year2Year
Stanislav Korotky
This indicator shows price changes for the same days in past years. D1 timeframe is required. This is a predictor indicator that finds D1 bars for the same days in past 8 years and shows their relative price changes on the current chart. Parameters: LookForward - number of days (bars) to show "future" price changes; default is 5; Offset - number of days (bars) to shift back in history; default is 0; ShowAverage - mode switch; true - show mean value for all 8 years and deviation bounds; false - s
FREE
CyclicPatterns
Stanislav Korotky
This indicator shows price changes for the same days in the past. This is a predictor that finds bars for the same days in past N years, quarters, months, weeks, or days (N is 10 by default) and shows their relative price changes on the current chart. Number of displayed buffers and historical time series for comparison is limited to 10, but indicator can process more past periods if averaging mode is enabled (ShowAverage is true) - just specify required number in the LookBack parameter. Paramet
RenkoCharts
Stanislav Korotky
This non-trading expert utilizes so called custom symbols feature ( available in MQL as well ) to build renko charts based on historical quotes of selected standard symbol and to refresh renko in real-time according to new ticks. Also, it translates real ticks to the renko charts, which allows other EAs and indicators to trade and analyze renko. Place RenkoCharts on a chart of a work instrument. The lesser timeframe of the source chart is, the more precise resulting renko chart is, but the lesse
WalkForwardBuilder MT5
Stanislav Korotky
5 (1)
This script allows performing a walk-forward analysis of trading experts based on the data collected by the WalkForwardLight MT5 library. The script builds a cluster walk forward report and rolling walk forward reports that refine it, in the form of a single HTML page. This script is optional, as the library automatically generates the report immediate after the optimization in the tester is complete. However, the script is convenient because it allows using the same collected data to rebuild th
FREE
Mirror
Stanislav Korotky
This indicator predicts rate changes based on the chart display principle. It uses the idea that the price fluctuations consist of "action" and "reaction" phases, and the "reaction" is comparable and similar to the "action", so mirroring can be used to predict it. The indicator has three parameters: predict - the number of bars for prediction (24 by default); depth - the number of past bars that will be used as mirror points; for all depth mirroring points an MA is calculated and drawn on the ch
If you like trading crosses (such as AUDJPY, CADJPY, EURCHF, and similar), you should take into account what happens with major currencies (especially, USD and EUR) against the work pair: for example, while trading AUDJPY, important levels from AUDUSD and USDJPY may have an implicit effect. This indicator allows you to view hidden levels, calculated from the major rates. It finds nearest extremums in major quotes for specified history depth, which most likely form resistence or support levels, a
EvoLevels
Stanislav Korotky
The indicator displays most prominent price levels and their changes in history. It dynamically detects regions where price movements form attractors and shows up to 8 of them. The attractors can serve as resistance or support levels and outer bounds for rates. Parameters: WindowSize - number of bars in the sliding window which is used for detection of attractors; default is 100; MaxBar - number of bars to process (for performance optimization); default is 1000; when the indicator is called from
ExtraMovingPivots
Stanislav Korotky
This is an intraday indicator that uses conventional formulae for daily and weekly levels of pivot, resistance and support, but updates them dynamically bar by bar. It answers the question how pivot levels would behave if every bar were considered as the last bar of a day. At every point in time, it takes N latest bars into consideration, where N is either the number of bars in a day (round the clock, i.e. in 24h) or the number of bars in a week - for daily and weekly levels correspondingly. So,
The indicator draws a histogram of important levels for several major currencies attached to the current cross rates. It is intended for using on charts of crosses. It displays a histogram calculated from levels of nearest extremums of related major currencies. For example, hidden levels for AUDJPY can be detected by analyzing extremums of AUD and JPY rates against USD, EUR, GBP, and CHF. All instruments built from these currencies must be available on the client. This is an extended version of
筛选:
jrc74
811
jrc74 2015.11.17 15:56 
 

Hi,

I bought your product now. I had trained the network with SOMFX1Builder, I put the name file in the parameter box of SOMFX1Predictor but after this I see as red line forecast only horizontal line and not up or down red line. I show you by picture

回复评论
版本 1.3 2021.11.20
Recompilation.
版本 1.2 2015.06.29
If UseAverage=true mode, mean square deviation is calculated for all patterns on each bar, and high and low boundaries are displayed as gray lines.

Visual testing is supported with some limitations: the UseAverage mode is not available, the ShowMap mode is not available. Full testing is impossible due to the tester's limitation of provided data range.