• 概要
  • レビュー (1)
  • コメント
  • 最新情報

ML Lorentzian Classification by jdehorty

5

█ OVERVIEW

A Lorentzian Distance Classifier (LDC) is a Machine Learning classification algorithm capable of categorizing historical data from a multi-dimensional feature space. This indicator demonstrates how Lorentzian Classification can also be used to predict the direction of future price movements when used as the distance metric for a novel implementation of an Approximate Nearest Neighbors (ANN) algorithm.

This indicator provide signal as buffer, so very easy for create EA from this indicator

█ BACKGROUND

In physics, Lorentzian space is perhaps best known for its role in describing the curvature of space-time in Einstein's theory of General Relativity (2). Interestingly, however, this abstract concept from theoretical physics also has tangible real-world applications in trading.

Recently, it was hypothesized that Lorentzian space was also well-suited for analyzing time-series data (4), (5). This hypothesis has been supported by several empirical studies that demonstrate that Lorentzian distance is more robust to outliers and noise than the more commonly used Euclidean distance (1), (3), (6). Furthermore, Lorentzian distance was also shown to outperform dozens of other highly regarded distance metrics, including Manhattan distance, Bhattacharyya similarity, and Cosine similarity (1), (3). Outside of Dynamic Time Warping based approaches, which are unfortunately too computationally intensive for PineScript at this time, the Lorentzian Distance metric consistently scores the highest mean accuracy over a wide variety of time series data sets (1).

Euclidean distance is commonly used as the default distance metric for NN-based search algorithms, but it may not always be the best choice when dealing with financial market data. This is because financial market data can be significantly impacted by proximity to major world events such as FOMC Meetings and Black Swan events. This event-based distortion of market data can be framed as similar to the gravitational warping caused by a massive object on the space-time continuum. For financial markets, the analogous continuum that experiences warping can be referred to as "price-time".

Below is a side-by-side comparison of how neighborhoods of similar historical points appear in three-dimensional Euclidean Space and Lorentzian Space (image 2)

This figure demonstrates how Lorentzian space can better accommodate the warping of price-time since the Lorentzian distance function compresses the Euclidean neighborhood in such a way that the new neighborhood distribution in Lorentzian space tends to cluster around each of the major feature axes in addition to the origin itself. This means that, even though some nearest neighbors will be the same regardless of the distance metric used, Lorentzian space will also allow for the consideration of historical points that would otherwise never be considered with a Euclidean distance metric.

Intuitively, the advantage inherent in the Lorentzian distance metric makes sense. For example, it is logical that the price action that occurs in the hours after Chairman Powell finishes delivering a speech would resemble at least some of the previous times when he finished delivering a speech. This may be true regardless of other factors, such as whether or not the market was overbought or oversold at the time or if the macro conditions were more bullish or bearish overall. These historical reference points are extremely valuable for predictive models, yet the Euclidean distance metric would miss these neighbors entirely, often in favor of irrelevant data points from the day before the event. By using Lorentzian distance as a metric, the ML model is instead able to consider the warping of price-time caused by the event and, ultimately, transcend the temporal bias imposed on it by the time series.

For more information on the implementation details of the Approximate Nearest Neighbors (ANN) algorithm used in this indicator, please refer to the detailed comments in the source code.

█ HOW TO USE

The image 3 is an explanatory breakdown of the different parts of this indicator as it appears in the interface

The image 4 is an explanation of the different settings for this indicator

General Settings:
  • Source - This has a default value of "hlc3" and is used to control the input data source.
  • Neighbors Count - This has a default value of 8, a minimum value of 1, a maximum value of 100, and a step of 1. It is used to control the number of neighbors to consider.
  • Max Bars Back - This has a default value of 2000.
  • Feature Count - This has a default value of 5, a minimum value of 2, and a maximum value of 5. It controls the number of features to use for ML predictions.
  • Color Compression - This has a default value of 1, a minimum value of 1, and a maximum value of 10. It is used to control the compression factor for adjusting the intensity of the color scale.
  • Show Exits - This has a default value of false. It controls whether to show the exit threshold on the chart.
  • Use Dynamic Exits - This has a default value of false. It is used to control whether to attempt to let profits ride by dynamically adjusting the exit threshold based on kernel regression.

Feature Engineering Settings:
Note: The Feature Engineering section is for fine-tuning the features used for ML predictions. The default values are optimized for the 4H to 12H timeframes for most charts, but they should also work reasonably well for other timeframes. By default, the model can support features that accept two parameters (Parameter A and Parameter B, respectively). Even though there are only 4 features provided by default, the same feature with different settings counts as two separate features. If the feature only accepts one parameter, then the second parameter will default to EMA-based smoothing with a default value of 1. These features represent the most effective combination I have encountered in my testing, but additional features may be added as additional options in the future.
  • Feature 1 - This has a default value of "RSI" and options are: "RSI", "WT", "CCI", "ADX".
  • Feature 2 - This has a default value of "WT" and options are: "RSI", "WT", "CCI", "ADX".
  • Feature 3 - This has a default value of "CCI" and options are: "RSI", "WT", "CCI", "ADX".
  • Feature 4 - This has a default value of "ADX" and options are: "RSI", "WT", "CCI", "ADX".
  • Feature 5 - This has a default value of "RSI" and options are: "RSI", "WT", "CCI", "ADX".

Filters Settings:
  • Use Volatility Filter - This has a default value of true. It is used to control whether to use the volatility filter.
  • Use Regime Filter - This has a default value of true. It is used to control whether to use the trend detection filter.
  • Use ADX Filter - This has a default value of false. It is used to control whether to use the ADX filter.
  • Regime Threshold - This has a default value of -0.1, a minimum value of -10, a maximum value of 10, and a step of 0.1. It is used to control the Regime Detection filter for detecting Trending/Ranging markets.
  • ADX Threshold - This has a default value of 20, a minimum value of 0, a maximum value of 100, and a step of 1. It is used to control the threshold for detecting Trending/Ranging markets.

Kernel Regression Settings:
  • Trade with Kernel - This has a default value of true. It is used to control whether to trade with the kernel.
  • Show Kernel Estimate - This has a default value of true. It is used to control whether to show the kernel estimate.
  • Lookback Window - This has a default value of 8 and a minimum value of 3. It is used to control the number of bars used for the estimation. Recommended range: 3-50
  • Relative Weighting - This has a default value of 8 and a step size of 0.25. It is used to control the relative weighting of time frames. Recommended range: 0.25-25
  • Start Regression at Bar - This has a default value of 25. It is used to control the bar index on which to start regression. Recommended range: 0-25

Display Settings:
  • Show Bar Colors - This has a default value of true. It is used to control whether to show the bar colors.
  • Show Bar Prediction Values - This has a default value of true. It controls whether to show the ML model's evaluation of each bar as an integer.
  • Use ATR Offset - This has a default value of false. It controls whether to use the ATR offset instead of the bar prediction offset.
  • Bar Prediction Offset - This has a default value of 0 and a minimum value of 0. It is used to control the offset of the bar predictions as a percentage from the bar high or close.

Backtesting Settings:
  • Show Backtest Results - This has a default value of true. It is used to control whether to display the win rate of the given configuration.


█ WORKS CITED

(1) R. Giusti and G. E. A. P. A. Batista, "An Empirical Comparison of Dissimilarity Measures for Time Series Classification," 2013 Brazilian Conference on Intelligent Systems, Oct. 2013, DOI: 10.1109/bracis.2013.22.
(2) Y. Kerimbekov, H. Ş. Bilge, and H. H. Uğurlu, "The use of Lorentzian distance metric in classification problems," Pattern Recognition Letters, vol. 84, 170–176, Dec. 2016, DOI: 10.1016/j.patrec.2016.09.006.
(3) A. Bagnall, A. Bostrom, J. Large, and J. Lines, "The Great Time Series Classification Bake Off: An Experimental Evaluation of Recently Proposed Algorithms." ResearchGate, Feb. 04, 2016.
(4) H. Ş. Bilge, Yerzhan Kerimbekov, and Hasan Hüseyin Uğurlu, "A new classification method by using Lorentzian distance metric," ResearchGate, Sep. 02, 2015.
(5) Y. Kerimbekov and H. Şakir Bilge, "Lorentzian Distance Classifier for Multiple Features," Proceedings of the 6th International Conference on Pattern Recognition Applications and Methods, 2017, DOI: 10.5220/0006197004930501.
(6) V. Surya Prasath et al., "Effects of Distance Measure Choice on KNN Classifier Performance - A Review." .

=======================

Note on "repainting":
To be clear, once a bar has closed, this indicator will NOT repaint. This is true for both the ML predictions and the Kernel estimate.

Note on bar requirement for "learning":
That's a valuable recommendation. Using a timeframe of H4 or lower when working with this indicator because of this require historical price data for learning and analysis is a practical approach. It ensures that you have an adequate number of historical bars to enable the indicator to learn and adapt effectively to price behavior (MT4 have just about1000 bar in chart with bigger timeframe). If you have any more insights or questions related to trading or indicators, feel free to share or ask.

Note for buffer

Incase create EA with signal from this indicator please use iCustom (detail in word document at here)

レビュー 1
samaara
19
samaara 2024.04.26 07:32 
 

When I bought this indicator, I was facing issues with using it in my EA. The indicator was slow and caused errors. So, I reached out to the author of this indicator and asked for help. He always responded to my questions, removed the errors I was facing and even gave me a working sample EA so that I could use it. The indicator now works smoothly and gives good signals!

おすすめのプロダクト
VR Cub
Vladimir Pastushak
VR Cub は、質の高いエントリーポイントを獲得するためのインジケーターです。このインジケーターは、数学的計算を容易にし、ポジションへのエントリーポイントの検索を簡素化するために開発されました。このインジケーターが作成されたトレーディング戦略は、長年にわたってその有効性が証明されてきました。取引戦略のシンプルさはその大きな利点であり、初心者のトレーダーでもうまく取引することができます。 VR Cub はポジション開始ポイントとテイクプロフィットとストップロスのターゲットレベルを計算し、効率と使いやすさを大幅に向上させます。取引の簡単なルールを理解するには、以下の戦略を使用した取引のスクリーンショットを見てください。 設定、設定ファイル、デモ版、説明書、問題解決方法は、以下から入手できます。 [ブログ] レビューを読んだり書いたりすることができます。 [リンク] のバージョン [MetaTrader 5] エントリーポイントの計算ルール ポジションをオープンする エントリーポイントを計算するには、VR Cub ツールを最後の高値から最後の安値までストレッチする必要があります。
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
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
Owl smart levels
Sergey Ermolov
4.63 (54)
MT5版  |   FAQ Owl Smart Levels Indicator   は、 Bill Williams   の高度なフラクタル、市場の正しい波構造を構築する Valable ZigZag、エントリの正確なレベルをマークする Fibonacci レベルなどの一般的な市場分析ツールを含む 1 つのインジケーター内の完全な取引システムです。 利益を得るために市場と場所に。 戦略の詳細な説明 インジケータを操作するための指示 顧問-取引助手 プライベートユーザーチャット ->購入後に私に書いて、私はプライベートチャットにあなたを追加し、あなたはそこにすべてのボーナスをダウンロードすることができます 力はシンプルさにあります! Owl Smart Levels   取引システムは非常に使いやすいので、専門家にも、市場を勉強し始めて自分で取引戦略を選択し始めたばかりの人にも適しています。 戦略と指標に秘密の数式や計算方法が隠されているわけではなく、すべての戦略指標は公開されています。 Owl Smart Levels を使用すると、取引を開始するためのシグナルをすばやく確認し、
無限からの通貨の強さを測定するためのこの革新的な指標は、長い間取引されているダフ屋やトレーダーにとって不可欠な助手です。 通貨の強さ/弱さを分析するためのシステムは、世界の主要なトレーダーによって市場で長い間知られており、使用されてきました。 任意の裁定取引は、この分析なしでは完全ではありません。 私たちの指標は、互いに関連して基本通貨の強さを簡単に決定します。 これは、インスタント分析を可能にし、最強のエントリポイントを検索し、すべてまたは現在の通貨ペアの折れ線グラフが表示されます。 インジケータは直感的で、すぐに見つけて任意のペアに切り替えることができ、地下室とメインチャートの両方に配置できるモバイルパネルがあります。 通貨の強さの変化の通知のタイマーモードは、トレーダーに電話で通知を受け取る機会を与えます。  通貨パワーメーターインフィニティ指標を使用するためのいくつかの戦略: 1. 通貨の強さの線形表示のチャートを使用して、交差点を新興トレンドの信号として検索します 2. トレンド反転信号が表示された後、強い通貨の方向に頭皮 3. 通貨の強さの発散分析を使用して、
Black series MT4 - The indicator is designed for trading on binary options with Timeframe M1-M5-M15 Multicurrency (Works on cryptocurrency and currency pairs) The signal appears when the candle opens Up to 90% correct signals There is no signal redrawing at all Can be used with other indicators. Good for scalping! In Settings there is: -Indicator working methods -I Allert Arrow color Red signal down Blue signal up Also watch the video how the indicator works and signals
The Smooth Price technical indicator is used for plotting a smoothed line as close to the price of the financial instrument as possible, and serves to eliminate its noise components. The indicator is part of the Monarch trading system, but here it is presented as an independent technical analysis tool. The indicator is based on the cluster digital filter , which, unlike the ClusterSMA , is applied directly to the price time series. Smooth Price does not redraw (except the very last, zero bar) an
Towers - Trend indicator, shows signals, can be used with optimal risk ratio. It uses reliable algorithms in its calculations. Shows favorable moments for entering the market with arrows, that is, using the indicator is quite simple. It combines several filters to display market entry arrows on the chart. Given this circumstance, a speculator can study the history of the instrument's signals and evaluate its effectiveness. As you can see, trading with such an indicator is easy. I waited for an a
Taurus All4 Taurus All4 is a high-performance indicator, it will tell you the strength of the trend, and you will be able to observe the strength of the candle. Our indicator has more than 4 trend confirmations. It is very simple and easy to use. Confirmation Modes Candle Trend Confirmations: When the candle switches to light green the trend is high. When the candle switches to light red the trend is reverting down. When the candle changes to dark red the trend is low. Trendline Trend Conf
This is the binary options signal you all have been looking for. This in a modified version of the Garuda Scalper, that has been modified for Binary Options traders. Signals are very unique! Why this is so effective for binary options is because  it is a trend following system, it understands that the trend is your friend. It takes advantage of the buying/selling after the pullback in continuation of the current trend wave.  Because  signals are generated after the pullback,   you can place shor
ECM Elite Channel is a volatility-based indicator, developed with a specific time algorithm, which consists of finding possible corrections in the market. This indicator shows two outer lines, an inner line (retracement line) and an arrow sign, where the channel theory is to help identify overbought and oversold conditions in the market. The market price will generally fall between the boundaries of the channel. If prices touch or move outside the channel, it's a trading opportunity. The
"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
Strength and weakness of currencies : Shows the currency status at any time, values between 50 and -50 are neutral, everything outside indicates a trend change  Waves : Current state of waves, daily, weekly monthly and yearly Recommended volume for trading a specific number of waves Yearly High Low Drawn waves on which the market will react in advance, without redrawing Yearly candle with bonus levels used to display deviations  For more info contact me
標準パラメーターを使用したMACDインジケーター波に基づく 最後と最後の2つのMACDウェーブで、それぞれ正と負のフィボナッチレベルを扱います。 現時点でMACDインジケーターで負の波が終了している場合、色は緑です。 現時点でMACDインジケーターの正の波が終了している場合、色は赤です。 Waveの終了基準は、MACDの符号が異なる2ティックです。 最後の4つのMACDウェーブのトレンドラインをプロットします。 専門家とうまく働く  その他のスクリーンショット: Figures MACD   https://www.mql5.com/ru/market/product/42031 https://www.mql5.com/en/charts/10581596/audusd-h1-alpari-international https://www.mql5.com/en/charts/10631979/usdjpy-m1-alpari-international https://www.mql5.com/en/charts/10628704/gbpusd-
GMMA Trade X is an EA based on GMMA. GMMA parameters such as MovingAveragePeriod1-24, MovingAverageMAShift1-24, MovingAverageShift1-24 and CandlestickShift1-24 can be adjusted. GMMA Trade X applies BTN TECHNOLOGY's state-of-the-art intelligent technology to help you create optimal results for your trades. May your dreams come true through GMMA Trade X. Good luck. = == == Inquiries = == == E-Mail:support@btntechfx.com
Gyroscope        professional forex expert   (for EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY pairs)   alyzing the market using the Elliot Wave Index. Elliott wave theory is the interpretation of processes in financial markets through a system of visual models (waves) on price charts. The author of the theory, Ralph Elliott, identified eight variants of alternating waves (of which five are in the trend and three are against the trend). The mo
The indicator detects divergence signals - the divergences between the price peaks and the MACD oscillator values. The signals are displayed as arrows in the additional window and are maintained by the messages in a pop-up window, e-mails and push-notifications. The conditions which formed the signal are displayed by lines on the chart and in the indicator window. Indicator Parameters MacdFast - fast MACD line period MacdSlow - slow MACD line period MacdSignal - MACD signal line period MacdPri
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
Chart Patterns Detect 15 patterns (Ascending Triangle, Descending Triangle, Rising Wedge, Falling Wedge, Bullish Flag, Bearish Flag, Bullish Rectangle, Bearish Rectangle Symmetrical triangle, Head and Shoulders, Inverted Head and Shoulders, Triple top, Triple Bottom, Double Top, Double Bottom) Use historical data to calculate the probability of each pattern to succeed (possibility to filter notification according to the chance of success) gives graphic indication about the invalidation level and
This    Nice Trade Point     indicator is designed for signal trading. This indicator generates trend signals. It uses many algorithms and indicators to generate this signal. It tries to generate a signal from the points with the highest trend potential. This indicator is a complete trading product. This indicator does not need any additional indicators. The indicator certainly does not repaint. The point at which the signal is given does not change.     Features and Suggestions Time
Prophet is a trend indicator. Shows the direction of turning points. Can be used with an optimal risk-to-profit ratio. The arrows indicate favorable moments and directions for entering the market. Uses one parameter for setting (adjust from 1 to 3). The probability of a successful trend is very high. In the course of work, the take-profit is much larger than the stop-loss! Works on all currency pairs and on all timeframes.
MACD Display is a MACD disaplay and cross monitoring indicator,which can works on 6 timeframe at same time. Indicator advantage: 1. Deviation from the point can be drawn on the main picture and indicator drawing. It is convenient to observe and can be hidden or displayed by parameter setting. 2. Deviation from the entry point is clearly indicated by the arrow in the drawing. 3. Cross-cycle monitoring can simultaneously monitor the MACD deviation and the golden dead fork of the six-cycle framewor
PipFinite Trend PRO
Karlo Wilson Vendiola
4.9 (2775)
Breakthrough Solution For Trend Trading And Filtering With All Important Features Built Inside One Tool! Trend PRO's smart algorithm detects the trend, filters out market noise and gives entry signals with exit levels. The new features with enhanced rules for statistical calculation improved the overall performance of this indicator. Important Information Revealed Maximize the potential of Trend Pro, please visit www.mql5.com/en/blogs/post/713938 The Powerful Expert Advisor Version Automa
Launch promo! Only a few copies left at 399$! Next price: 499$ Final price: 999$ Live signal:  https://www.mql5.com/en/signals/2220893?source=Site+Profile+Seller MT5:   https://www.mql5.com/en/market/product/107337?source=Site+Profile+Seller For more top Expert Advisors and Indicators, visit:   https://www.mql5.com/en/users/lothimailoan/seller I am Los, please subscribe to receive more updates:   https://www.mql5.com/en/users/lothimailoan/news US30 Scalper EAは、トレードとコーディングに豊富な経験を持つチームによって開発さ
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
FX Flow   indicator can be used as an anticipator of the next trend, preferably confirmed by Price Action or another oscillator (RSi, Stochastic ..). It takes the money flows of the major currencies USD EUR GBP AUD NZD CAD CHF JPY into account, and processes them. Excellent tool for indices, but also for correlations between currencies. Works on each timeframes.  Blue line: Bull market Yellow line: Bear market Note : if the indicator opens the window, but does not draw lines, load the histo
Smart Reversal Signal  is a professional indicator for the MetaTrader 4 platform; it has been developed by a group of professional traders. This indicator is designed for Forex and binary options trading. By purchasing this indicator, you will receive: Excellent indicator signals. Free product support. Regular updates. Various notification options: alert, push, emails. You can use it on any financial instrument (Forex, CFD, options) and timeframe. Indicator Parameters Perod - indicator calcula
The latest Binary Options arrow indicator in the Garuda Signals product line. Binary options signal based on multiple time frame cross over analysis. Gets confirmation from the most consistent signals known to man; Ichimoku, SMA, Bollinger Bands; and also uses the 1 Hour time frame as trend confirmation , so you don't have to open up multiple chart and waste time. - Can be used for all time frames up to 1 hour, but is most POWERFUL for 1 and 5 min options. - Place your Call/PUT based on the Arro
ShinZuka
Muhammad Asyraf Bin Mohamad
Using MACD value for direction. Using RSI as reversal indicator. Using open trading hour. (Recommend Hour 10,11,15 & 19 : MT4-Time) Counter trade if signal failed. Cutloss trade if signal failed. Auto lot calculate based on target profit & takeprofit. Able to set counter trade value. Suitable for commodities & currency.  Timeframe H1. Able to set limit lot open. Able to select day to trade.
BinaryUniversal is a signal indicator for binary options and Forex. In its work, the indicator uses a complex algorithm for generating signals. Before forming a signal, the indicator analyzes volatility, candlestick patterns, important support and resistance levels. The indicator has the ability to adjust the accuracy of the signals, which makes it possible to apply this indicator for both aggressive and conservative trading. The indicator is set in the usual way, it works on any time period and
このプロダクトを購入した人は以下も購入しています
まず第一に、この取引インジケーターは再描画されず、再描画されず、遅延しないことを強調する価値があります。これにより、手動取引とロボット取引の両方に理想的なものになります。 アトミックアナリストは、価格の強さとモメンタムを利用して市場でより良いエッジを見つけるためのPA価格アクションインジケーターです。ノイズや誤ったシグナルを除去し、取引ポテンシャルを高めるための高度なフィルターを備えています。複雑なインジケーターの複数のレイヤーを使用して、アトミックアナリストはチャートをスキャンし、複雑な数学的計算をシンプルなシグナルと色に変換します。これにより、どのような初心者トレーダーでも理解して使用し、一貫した取引の決定を行うことができます。 「アトミックアナリスト」は、新規および経験豊富なトレーダー向けにカスタマイズされた包括的な取引ソリューションです。プレミアムインジケーターとトップノッチの機能を1つの取引戦略に組み合わせ、すべてのタイプのトレーダーにとって汎用性のある選択肢にします。 デイリートレーディングとスキャルピング戦略:高速で正確なデイトレーディングおよび短期トレード
現在26%オフ 初心者やエキスパートトレーダーに最適なソリューション! このインジケーターは、独自の機能と新しい計算式を取り入れた、ユニークで高品質、かつ手頃な価格のトレーディングツールです。たった1枚のチャートで28の為替ペアの通貨強度を読み取ることができます。新しいトレンドやスキャルピングチャンスの引き金となるポイントを正確に特定することができるので、あなたのトレードがどのように改善されるか想像してみてください。 ユーザーマニュアルはこちら  https://www.mql5.com/en/blogs/post/697384 これが最初の1本、オリジナルだ! 価値のないクローンを買わないでください。 特別な サブウィンドウの矢印で強い通貨の勢いを表示 GAPがあなたのトレードを導く! 基準通貨や気配値が売られすぎ・買われすぎのゾーン(外相フィボナッチレベル)にあるとき、個別チャートのメインウィンドウに警告表示。 通貨がレンジの外側から反落した場合、プルバック/リバーサルのアラート。 クロスパターンの特別なアラート 複数の時間枠を選択可能で、トレンドを素早く
ご紹介   クォンタム トレンド スナイパー インジケーターは 、トレンド反転を特定して取引する方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。     クォンタムトレンドスナイパーインジケーター   は、非常に高い精度でトレンドの反転を識別する革新的な方法で、あなたのトレーディングの旅を新たな高みに押し上げるように設計されています。 ***Quantum Trend Sniper Indicatorを購入すると、Quantum Breakout Indicatorを無料で入手できます!*** クォンタム ブレイクアウト インジケーターは、トレンドの反転を特定するとアラートを発し、矢印を示し、3 つのテイクプロフィットレベルを提案します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック MT5のバージョン:       ここをクリック 推奨事項: 期間: すべての時間枠。最良の結果を得るには、
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   -  
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           
Advanced Supply Demand
Bernhard Schweigert
4.92 (310)
現在33%オフ 初心者にもエキスパートトレーダーにも最適なソリューション このインジケーターは独自の機能と新しい公式を多数内蔵しており、ユニークで高品質かつ手頃な取引ツールです。このアップデートでは、2つの時間枠ゾーンを表示できるようになります。より長いTFだけでなく、チャートTFとより長いTF(ネストゾーンを表示)の両方を表示できます。すべてのSupply Demandトレーダーの皆さんのお気に召すはずです。:) 重要情報の公開 Advanced Supply Demandの可能性を最大化するには、 https://www.mql5.com/ja/blogs/post/720245 にアクセスしてください。   エントリーまたはターゲットの正確なトリガーポイントを正確に特定できれば取引がどのように改善されるか想像してみてください。新しい基盤となるアルゴリズムに基づいて構築されているため、買い手と売り手の間の潜在的な不均衡をさらに簡単に特定できます。これは、最も強い需要と供給のゾーンと、過去のパフォーマンス(古いゾーンを表示)がグラフィカルに表現されるためです。これらの機能は、最適
現在20%OFF! 初心者やエキスパートトレーダーのためのベストソリューション! このダッシュボードソフトウェアは、28の通貨ペアで動作しています。それは私達の主要な指標(高度な通貨の強さ28と高度な通貨インパルス)の2に基づいています。それは全体の外国為替市場の大きい概観を与えます。それは、すべての(9)時間枠で28の外国為替ペアのための高度な通貨の強さの値、通貨の動きの速度と信号を示しています。チャート上で1つのインディケータを使用して市場全体を観察し、トレンドやスキャルピングの機会をピンポイントで見つけることができたら、あなたのトレードがどのように改善されるか想像してみてください。 このインディケータには、強い通貨と弱い通貨の識別、潜在的な取引の識別と確認がより簡単になるような機能が搭載されています。このインディケータは、通貨の強さや弱さが増加しているか減少しているか、また、すべての時間枠でどのように機能しているかをグラフィカルに表示します。 新機能として、現在の市場環境の変化に適応するダイナミックなマーケットフィボナッチレベルが追加され、すでに当社のAdvan
SALE NOW! Limited Time Offer! 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
mql5と Telegramの モーニング・ブリーフィングで、詳細とスクリーンショットを含む毎日のマーケット・アップデートをご覧 ください! FX Power MT4 NGは 、長年の人気を誇る通貨強度計FX Powerの次世代モデルです。 この次世代ストレングスメーターは何を提供するのでしょうか?初代FXパワーの魅力すべて プラス GOLD/XAUの強さ分析 より正確な計算結果 個別に設定可能な分析期間 カスタマイズ可能な計算上限値により、さらに優れたパフォーマンスを実現 もっと見たい人のための特別なマルチインスタンス設定 すべてのチャートでお好みの色を無限に設定可能 数え切れないほどの通知オプションにより、重要なことを見逃すことはありません。 Windows 11とmacOSのスタイルで角を丸くした新しいデザイン 魔法のように動くインジケーターパネル FXパワーの主な機能 すべての主要通貨の強さの完全な履歴 すべての時間枠における通貨の強さの履歴 すべてのブローカーとチャートで同一の計算結果 100%信頼できるリアルタイム計算 -> リペイントなし ドロップダウン・リストから
ご紹介     Quantum Breakout PRO は 、ブレイクアウト ゾーンの取引方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発された Quantum Breakout PROは 、革新的でダイナミックなブレイクアウトゾーン戦略により、あなたの取引の旅を新たな高みに押し上げるように設計されています。 クォンタム ブレイクアウト インジケーターは、5 つの利益ターゲット ゾーンを備えたブレイクアウト ゾーン上のシグナル矢印と、ブレイクアウト ボックスに基づいたストップロスの提案を提供します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック MT5バージョン:   ここをクリック 重要!購入後、インストールマニュアルを受け取るためにプライベートメッセージを送ってください。 推奨事項: 時間枠: M15 通貨ペア: GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD アカウントの種類: ECN、Raw、また
このインディケータは、当社の2つの製品 Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics . のスーパーコンビネーションです。 このインジケーターは全ての時間枠で作動し、8つの主要通貨と1つのシンボルの強弱のインパルスをグラフで表示します。 このインジケータは、金、エキゾチックペア、商品、インデックス、先物など、あらゆるシンボルの通貨強度の加速度を表示することに特化されています。金、銀、原油、DAX、US30、MXN、TRY、CNHなどの通貨強度の加速度(インパルスまたは速度)を表示するために、任意のシンボルを9行目に追加できる、この種の最初のものです。 新しいアルゴリズムに基づいて構築され、潜在的な取引の特定と確認がさらに容易になりました。これは、通貨の強さや弱さが加速しているかどうかをグラフィカルに表示し、その加速の速度を測定するためです。加速すると物事は明らかに速く進みますが、これはFX市場でも同じです。つまり、反対方向に加速している通貨をペアリングすれば、潜在的に利益を生む取
今、147ドル(いくつかの更新後に499ドルに増加します) - 無制限のアカウント(PCSまたはMac) RelicusRoad ユーザー マニュアル + トレーニング ビデオ + プライベート Discord グループへのアクセス + VIP ステータス 市場の新しい見方 RelicusRoad は、外国為替、先物、暗号通貨、株式、および指数の世界で最も強力な取引インジケーターであり、トレーダーに収益を維持するために必要なすべての情報とツールを提供します。初心者から上級者まで、すべてのトレーダーが成功するためのテクニカル分析と取引計画を提供します。これは、将来の市場を予測するのに十分な情報を提供する重要な取引指標です。意味をなさないチャート上のいくつかの異なる指標ではなく、完全な解決策を信じています.これは、信号、矢印 + 価格アクション情報を表示するオールインワンのインジケーターで、他に類を見ない非常に正確です。 強力な AI に基づいて、RelicusRoad は不足している情報とツールを提供して、あなたを教育し、トレーディングのプロ、成功したトレーダーにします。
驚異的なFXインジケーター「Miraculous」をご紹介します。完璧な結果を得るための1時間足を含むすべてのタイムフレームで効果的に機能する、最強の強力な特殊MT4フォレックスインジケーターです。 すべてのタイムフレームで優れた結果を提供する最高のFXインジケーターを探し続けるのに疲れましたか?これ以上探す必要はありません!「Miraculous」フォレックスインジケーターをご紹介します。このインジケーターは、トレーディングの経験を変革し、収益を新たなレベルに引き上げるために設計されました。 先進のテクノロジーと長年にわたる緻密な開発に基づいて構築された「Miraculous」フォレックスインジケーターは、FX市場における力と正確さの頂点となります。この素晴らしいツールは、すべてのレベルのトレーダーのニーズを満たすように設計されており、一貫した収益性を追求する上で比類のない優位性を提供します。 「Miraculous」フォレックスインジケーターの他との違いは、その非常に適応性にあります。デイトレーダー、スウィングトレーダーであろうと、長期ポジションを好む方であろうと、このインジケータ
これはほぼ間違いなく、MetaTraderプラットフォームで見つけることができる最も完全な調和価格形成自動認識インジケーターです。 19種類のパターンを検出し、フィボナッチプロジェクションをあなたと同じように真剣に受け止め、潜在的逆転ゾーン(PRZ)を表示し、適切なストップロスとテイクプロフィットレベルを見つけます。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 19の異なる調和価格形成を検出します プライマリ、派生および補完フィボナッチ投影(PRZ)をプロットします 過去の価格行動を評価し、過去のすべてのパターンを表示します この指標は、独自の品質とパフォーマンスを分析します 適切なストップロスとテイクプロフィットのレベルを表示します ブレイクアウトを使用して適切な取引を通知します すべてのパターン比をグラフにプロットします 電子メール/音声/視覚アラートを実装します スコット・M・カーニーの本に着想を得て、この指標は最も純粋で急を要するトレーダーのニーズを満たすように設計されています。ただし、トレードを
How to use Pair Trading Station Pair Trading Station is recommended for H1 time frame and you can use it for any currency pairs. To generate buy and sell signal, follow few steps below to apply Pair Trading Station to your MetaTrader terminal. When you load Pair Trading Station on your chart, Pair Trading station will assess available historical data in your MetaTrader platforms for each currency pair. On your chart, the amount of historical data available will be displayed for each currency pai
TrendMaestro
Stefano Frisetti
5 (2)
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.4 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 a
Price Action Entry Alerts
Stephen Sanjeeve Sahayam
5 (3)
このインジケーターは、売買圧力についてすべてのバーをスクリーニングし、最大量の 4 種類のローソク足パターンを特定します。次に、これらのローソク足はいくつかの線形フィルターを使用してフィルター処理され、買いまたは売りのシグナルが表示されます。シグナルは、より高い時間枠の方向と組み合わせて、取引量が多い時間帯に取引される場合に最も効果的に機能します。すべてのフィルターはカスタマイズ可能で、独立して動作します。ボタンをクリックするだけで単一方向の信号を表示できます。 このインジケーターには、意思決定プロセスに役立つ最も重要な価格アクションとスマート マネーの概念も組み込まれています。 シグナルとトレードに関する教育をすべて 1 つのツールにまとめました。 特徴: 信号は再描画されません。 飲み込むキャンドル、拒否キャンドル、拡張範囲キャンドル、ピンバーを識別します。 有効なシグナルごとに複数のエントリー、ストップロス、複数のテイクプロフィットレベルを表示します。 大容量セッションでフィルタリングします。 サポート/レジスタンスレベルとローソク足の構造でフィルターします。 MACD ヒ
FX Volume
Daniel Stein
4.6 (35)
mql5と Telegramの モーニング・ブリーフィングで、詳細とスクリーンショットを含む毎日のマーケット・アップデートをご覧 ください! FX Volumeは、ブローカーの視点から市場のセンチメントをリアルに洞察する、最初で唯一の出来高インジケーターです。 ブローカーのような機関投資家が外国為替市場でどのようなポジションをとっているか、COTレポートよりもはるかに速く、素晴らしい洞察を提供します。 この情報をチャート上で直接見ることは、あなたの取引にとって真のゲームチェンジャーであり、画期的なソリューションです。 以下のようなユニークなマーケットデータ洞察から利益を得てください。 比率は 、通貨のロングポジションとショートポジションの比率をパーセントで表示します。 比率の変化は 、選択した期間内のロング比率とその変化率を表示します。 Volumes Totalは 、通貨の取引量(ロングとショート)の合計をロット単位で表示します。 Volumes Long :全通貨のロングポジションの取引量を表示します。 Volumes(ショート )は、全通貨のショートポジションの取引量を表示
Thise indicator is up down v6  comes with tradingwiev version. purchased people, after installed on terminal ,contact me on mql5  to get BONUS  TradingView version. up-down indicator is no repaint and works all pairs and lower than weekly time frames charts. it is suitable also 1 m charts for all pairs. and hold long way to signal. dont gives too many signals. when red histogram cross trigger line that is up signal.and price probably will down when blue histogram cross trigger line that is dow
MTF Supply Demand Zones
Georgios Kalomoiropoulos
4.83 (23)
次世代の自動化された需要と供給のゾーン。どのチャートでも機能する新しい革新的なアルゴリズム。すべてのゾーンは、市場の価格行動に従って動的に作成されています。 2種類のアラート --> 1) 価格がゾーンに達したとき 2) 新しいゾーンが形成されたとき もう 1 つの役に立たない指標はありません。実績のある完全な取引戦略を手に入れることができます。     新機能:     価格が需給ゾーンに達したときにアラートを出す     新しい需給ゾーンが作成されたときにアラートを発します     プッシュ通知アラート     ピップ単位のゾーン幅ラベル     MTF のもう 1 つのタイムフレーム。したがって、現在より 2 時間足高いのではなく、現在より 3 時間足し上に見えるようになります。     アラート/ゾーン/MTF 機能を有効/無効にするボタン あなたが得る利点:     取引から感情を取り除きます。     取引エントリをオブジェクト化します。     確率の高いセットアップで利益
Indicator : RealValueIndicator Description : RealValueIndicator is a powerful tool designed specifically for trading on the EURUSD pair. This indicator analyzes all EUR and USD pairs, calculates their real currency strength values, and displays them as a single realistic value to give you a head start on price. This indicator will tell you moves before they happen if you use it right. RealValueIndicator allows you to get a quick and accurate overview of the EURUSD currency pair tops and bottoms,
Cycle Sniper
Elmira Memish
4.39 (36)
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
これはMT4のインジケーターで、再描画なしで取引に参入するための正確なシグナルを提供します。 外国為替、暗号通貨、金属、株式、インデックスなど、あらゆる金融資産に適用できます。かなり正確な見積もりを提供し、取引を開始して終了するのに最適な時期を教えてくれます。1つのシグナルを処理しただけでインジケーターの元が取れた例の 動画 (6:22)をご覧ください。Entry PointsPro インジケーターの助けを借りたほとんどのトレーダーの最初の1週間の結果が改善しています。 Telegramグループ に登録してください。Entry Points Proインジケーターのメリットは次の通りです。 再描画のないエントリーシグナル 再描画されるインジケーターでは一度表示されたシグナルが削除されて大きな金銭的損失につながることがありますが、これと異なり、表示されて確認されたシグナルは消えることがありません。 エラーなしの取引開始 インジケーターアルゴリズムによって取引を開始する(資産を売買する)理想的な瞬間を見つけることができます。それを使用するすべてのトレーダーの成功率が向上します。
TakePropips Donchian Trend Pro
Eric John Pajarillaga Aldana
4.82 (17)
TakePropips Donchian Trend Pro   (MT4) は、ドンチャン チャネルを使用してトレンドの方向を自動的に検出し、エントリーとエグジットの取引シグナルを提供する強力で効果的なツールです! この多機能インジケーターには、トレンド スキャナー、取引シグナル、統計パネル、スクリーナー、取引セッション、およびアラート履歴ダッシュボードが含まれます。取引シグナルを提供し、チャートを分析する時間を節約するように設計されています! ユーザー マニュアルとインストール ガイドは、ブログ投稿 (   https://www.mql5.com/en/blogs/post/751368   ) からダウンロードできます。 今日は 50% オフ! 98ドルから49ドルに値下げ! このインジケーターは、ストラテジー テスターでテストできます (ビジュアル モードを有効にします)。ライブ チャートでテストしたい場合は、7 日間の試用版を入手するようにメッセージを送ることもできます。 詳細については、説明の下にあるビデオ チュートリアルも利用できます。 ご不明な点やサポートが必
Royal Scalping Indicator M4
Vahidreza Heidar Gholami
4.17 (6)
Royal Scalping Indicator is an advanced price adaptive indicator designed to generate high-quality trading signals. Built-in multi-timeframe and multi-currency capabilities make it even more powerful to have configurations based on different symbols and timeframes. This indicator is perfect for scalp trades as well as swing trades. Royal Scalping is not just an indicator, but a trading strategy itself. Features Price Adaptive Trend Detector Algorithm Multi-Timeframe and Multi-Currency Trend Low
Trend arrow Indicator   is an   arrow   Indicator used as an assistant tool for your trading strategy. The indicator analyzes the standard deviation of bar close for a given period and generates a buy or sell signals if the deviation increases. It good to combo with Martingale EA to follow Trend and Sellect Buy Only/Sell Only for EA work Semi-Automatic. You can use this  Indicator with any EAs in my Products.
Royal Wave Pro M4
Vahidreza Heidar Gholami
5 (3)
Royal Wave is a Trend-Power oscillator which has been programmed to locate and signal low-risk entry and exit zones. Its core algorithm statistically analyzes the market and generates trading signals for overbought, oversold and low volatile areas. By using a well-designed alerting system, this indicator makes it easier to make proper decisions regarding where to enter and where to exit trades. Features Trend-Power Algorithm Low risk Entry Zones and Exit Zones Predictions for Overbought and Over
ALQANNAS (Sniper) Indicator Overview: Welcome to ALQANNAS, your ultimate sniper in the forex market! ALQANNAS is a powerful and versatile trading indicator designed to enhance your trading experience. Whether you're a beginner or an experienced trader, ALQANNAS provides you with accurate non repainting signals, trend direction and strength, and advanced features to elevate your trading strategy.   Key Features: Buy and Sell Signals: ALQANNAS is equipped with a sophisticated algorithm that genera
The "Easy Ichimoku Wave Meter" indicator is a basic tool to automatically determine Waves according to Ichimoku! The indicator gives the possibility to simultaneously apply the Wave Theory, Time Theory and Target Price Theory according to the "Little Ichimoku" strategy developed by Sense Hosoda on the MT4 platform.  The use of this tool allows not only novice traders to instantly (fully automatic) determine the waves and their rapid interpretation, it also allows to automatically measure the p
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
作者のその他のプロダクト
This indicator provides the ability to recognize the SMC pattern, essentially a condensed version of the Wyckoff model. Once the pattern is confirmed by RTO, it represents a significant investment opportunity.    There are numerous indicators related to SMC beyond the market, but this is the first indicator to leverage patterns to identify specific actions of BigBoy to  navigate the market. Upgrade 2024-03-08: Add TP by RR feature. The SMC (Smart Money Concept)   pattern   is a market analysis m
This all-in-one indicator displays real-time market structure (internal & swing BOS / CHoCH), order blocks, premium & discount zones, equal highs & lows, and much more...allowing traders to automatically mark up their charts with widely used price action methodologies. Following the release of our Fair Value Gap script, we received numerous requests from our community to release more features in the same category. "Smart Money Concepts" (SMC) is a fairly new yet widely used term amongst price a
This indicator presents an alternative approach to identify Market Structure. The logic used is derived from learning material created by   DaveTeaches (on X) When quantifying Market Structure, it is common to use fractal highs and lows to identify "significant" swing pivots. When price closes through these pivots, we may identify a Market Structure Shift (MSS) for reversals or a Break of Structure (BOS) for continuations. The main difference with this "protected" logic is in how we determine
The Bheurekso Pattern Indicator for MT5 helps traders automatically identify candlestick pattern that formed on the chart base on some japanese candle pattern and other indicator to improve accurate. This indicator scans all candles, recognizes and then displays any candle patterns formed on the chart. The candle displayed can be Bullish or Bearish Engulfing, Bullish or Bearish Harami, and so on. There are some free version now but almost that is repaint and lack off alert function. With this ve
This indicator shows when user set sessions are active and returns various tools + metrics using the closing price within active sessions as an input. Users have the option to change up to 4 session times. The indicator will increasingly lack accuracy when the chart timeframe is higher than 1 hour. Settings Sessions Enable Session: Allows to enable or disable all associated elements with a specific user set session. Session Time: Opening and closing times of the user set session
The Breaker Blocks with Signals indicator aims to highlight a complete methodology based on breaker blocks. Breakout signals between the price and breaker blocks are highlighted and premium/discount swing levels are included to provide potential take profit/stop loss levels. This script also includes alerts for each signal highlighted.   SETTINGS   Breaker Blocks Length: Sensitivity of the detected swings used to construct breaker blocks. Higher values will return longer te
Consolidation is when price is moving inside a clear trading range. When prices are consolidated it shows the market maker placing orders on both sides of the market. This is mainly due to manipulate the un informed money. This indicator automatically identifies consolidation zones and plots them on the chart. The method of determining consolidation zones is based on pivot points and ATR, ensuring precise identification. The indicator also sends alert notifications to users when a new consolida
This indicator builds upon the previously posted Nadaraya-Watson Estimator. Here we have created an envelope indicator based on kernel smoothing with integrated alerts from crosses between the price and envelope extremities. Unlike the Nadaraya-Watson Estimator, this indicator follows a contrarian methodology. Please note that the indicator is subject to repainting. The triangle labels are designed so that the indicator remains useful in real-time applications. Settings Window Size: Dete
The ICT Silver Bullet indicator is inspired from the lectures of "The Inner Circle Trader" (ICT) and highlights the Silver Bullet (SB) window which is a specific 1-hour interval where a Fair Value Gap (FVG) pattern can be formed. A detail document about ICT Silver Bullet here . There are 3 different Silver Bullet windows (New York local time): The London Open Silver Bullet (3 AM — 4 AM ~ 03:00 — 04:00) The AM Session Silver Bullet (10 AM — 11 AM ~ 10:00 — 11:00) The PM Session Silver Bullet
The Buyside & Sellside Liquidity indicator aims to detect & highlight the first and arguably most important concept within the ICT trading methodology,   Liquidity   levels. SETTINGS Liquidity Levels Detection Length: Lookback period Margin: Sets margin/sensitivity for a liquidity level detection Liquidity Zones Buyside Liquidity Zones: Enables display of the buyside liquidity zones. Margin: Sets margin/sensitivity for the liquidity zone boundaries. Color: Color option
This all-in-one indicator displays real-time market structure (internal & swing BOS / CHoCH), order blocks, premium & discount zones, equal highs & lows, and much more...allowing traders to automatically mark up their charts with widely used price action methodologies. Following the release of our Fair Value Gap script, we received numerous requests from our community to release more features in the same category. //------------------------------------// Version 1.x has missing functions + PDAr
The   ICT Unicorn Model   indicator highlights the presence of "unicorn" patterns on the user's chart which is derived from the lectures of   "The Inner Circle Trader" (ICT) . Detected patterns are followed by targets with a distance controlled by the user.   USAGE (image 2) At its core, the ICT Unicorn Model relies on two popular concepts, Fair Value Gaps and Breaker Blocks. This combination highlights a future area of support/resistance. A   Bullish Unicorn Pattern   consists ou
This is a Forex Scalping Trading Sytem based on the Bollinger Bands.  Pairs:Major Time frame: 1M or higher. Spread max:0,0001.  Indicators (just suggestion) Bollinger bands (20, 2); ADX (14 period); RSI   (7 period ). Y ou should only trade this system between 2am to 5am EST, 8am to 12am EST and 7.30pm to 10pm EST. Do not scalp 30 minutes before a orange or red news  report and not for a hour afterwards.   Setup: is for price to move above the lower or lower Bollinger Bands, RSI raise above the
FREE
Overview The   Volume SuperTrend AI   is an advanced technical indicator used to predict trends in price movements by utilizing a combination of traditional SuperTrend calculation and AI techniques, particularly the k-nearest neighbors (KNN) algorithm. The Volume SuperTrend AI is designed to provide traders with insights into potential market trends, using both volume-weighted moving averages (VWMA) and the k-nearest neighbors (KNN) algorithm. By combining these approaches, the indicat
All about Smart Money Concepts Strategy: Market struture: internal or swing BOS, CHoCH; Orderblock; Liquity equal; Fair Value Gap with Consequent encroachment, Balanced price range; Level with Previous month, week, day level or in day level (PMH, PWH, PDH, HOD); BuySell Stops Liquidity (BSL, SSL); Liquidity Void Long Wicks; Premium and Discount; Candle pattern ... "Smart Money Concepts" ( SMC ) is a fairly new yet widely used term amongst price action traders looking to more accurately navigate
The indicator returning pivot point based trendlines with highlighted breakouts . Trendline caculated by pivot point and other clue are ATR, Stdev. The indicator also includes integrated alerts for  trendlines  breakouts and foward message to Telegram channel or group if you want. Settings ·          Lookback bar: Default 200 is number of bar caculate when init indicator. ·          Length:  Pivot points  period ·          Slope Calculation Method: Determines how this lope is calculated. We supp
The indicator   returning pivot point based trendlines with highlighted breakouts . Trendline caculated by pivot point and other clue are ATR, Stdev.   The indicator also includes integrated alerts for  trendlines  breakouts   and foward message to Telegram channel or group if you want. Settings ·            Lookback bar: Default 200 is number of bar caculate when init indicator. ·            Length:  Pivot points  period ·            Slope Calculation Method: Determines how this lope is calcula
All about Smart Money Concepts Strategy: Market struture: internal or swing BOS, CHoCH; Orderblock; Liquity equal; Fair Value Gap with Consequent encroachment, Balanced price range; Level with Previous month, week, day level or in day level (PMH, PWH, PDH, HOD); BuySell Stops Liquidity (BSL, SSL); Liquidity Void Long Wicks; Premium and Discount; Candle pattern ... "Smart Money Concepts" ( SMC ) is a fairly new yet widely used term amongst price action traders looking to more accurately navigate
This is addition of  Effective SV squeeze momentum  that add bolliger band and Keltner channel to chart window.  Squeeze momentum introduced by “John Carter”, the squeeze indicator for MT5 represents a volatility-based tool. Regardless, we can also consider the squeeze indicator as a momentum indicator, as many traders use it to identify the direction and strength of price moves. In fact, the Tradingview  squeeze indicator shows when a financial instrument is willing to change from a trending ma
FREE
The FollowLine indicator is a trend following indicator. The blue/red lines are activated when the price closes above the upper Bollinger band or below the lower one. Once the trigger of the trend direction is made, the FollowLine will be placed at High or Low (depending of the trend). An ATR filter can be selected to place the line at a more distance level than the normal mode settled at candles Highs/Lows. Some features: + Trend detech + Reversal signal + Alert teminar / mobile app
The Inversion Fair Value Gaps (IFVG) indicator is based on the inversion FVG concept by ICT and provides support and resistance zones based on mitigated Fair Value Gaps (FVGs). Image 1   USAGE Once mitigation of an FVG occurs, we detect the zone as an "Inverted FVG". This would now be looked upon for potential support or resistance. Mitigation occurs when the price closes above or below the FVG area in the opposite direction of its bias. (Image 2) Inverted Bullish FVGs Turn into P
The Breaker Blocks with Signals indicator aims to highlight a complete methodology based on breaker blocks. Breakout signals between the price and breaker blocks are highlighted and premium/discount swing levels are included to provide potential take profit/stop loss levels. This script also includes alerts for each signal highlighted.   SETTINGS   Breaker Blocks Length: Sensitivity of the detected swings used to construct breaker blocks. Higher values will return longer te
There are many linear regression indicators out there, most of them draw lines or channels, but this one actually draws a chart. The beauty of the indicator like Heiken Ashi is it removes a lot of market noise. 4 (OHLC) arrays are filled with Linear Regression(LR) values of each price for the LR period (default=14). The period of the Linear Regression is adjustable dependant on the market conditions. The SMA (default=14) also has period adjustment. Candles are generated with Green for 'Up' cand
ICT Concepts
Minh Truong Pham
5 (2)
The ICT Concepts indicator regroups core concepts highlighted by trader and educator "The Inner Circle Trader" (ICT) into an all-in-one toolkit. Features include Market Structure (MSS & BOS), Order Blocks, Imbalances, Buyside/Sellside Liquidity, Displacements, ICT Killzones, and New Week/Day Opening Gaps. It’s one kind of Smart money concepts. USAGE: Please read this document  !    DETAILS Market Structure Market structure labels are constructed from price breaking a prior extreme point. T
The ICT Concepts indicator regroups core concepts highlighted by trader and educator "The Inner Circle Trader" (ICT) into an all-in-one toolkit. Features include Market Structure (MSS & BOS), Order Blocks, Imbalances, Buyside/Sellside Liquidity, Displacements, ICT Killzones, and New Week/Day Opening Gaps. It’s one kind of Smart money concepts.   USAGE:   Please read this   document  !      DETAILS Market Structure Market structure labels are constructed from price breaking a prior extreme
The ICT Silver Bullet indicator is inspired from the lectures of "The Inner Circle Trader" (ICT) and highlights the Silver Bullet (SB) window which is a specific 1-hour interval where a Fair Value Gap (FVG) pattern can be formed. A detail document about ICT Silver Bullet   here . There are 3 different Silver Bullet windows (New York local time): The London Open Silver Bullet (3 AM — 4 AM ~ 03:00 — 04:00) The AM Session Silver Bullet (10 AM — 11 AM ~ 10:00 — 11:00) The PM Session Silver Bulle
A problem when indicator call webrequest is "The WebRequest() function is synchronous, which means its breaks the program execution and waits for the response from the requested server. Since the delays in receiving a response can be large, the function is not available for calls from indicators, because indicators run in a common thread shared by all indicators and charts on one symbol. Indicator performance delay on one of the charts of a symbol may stop updating of all charts of the same symb
FREE
An Implied Fair Value Gap (IFVG) is a three candles imbalance formation conceptualized by ICT that is based on detecting a larger candle body & then measuring the average between the two adjacent candle shadows. This indicator automatically detects this imbalance formation on your charts and can be extended by a user set number of bars. The IFVG average can also be extended until a new respective IFVG is detected, serving as a support/resistance line. Alerts for the detection of bull
OVERVIEW K-means is a clustering algorithm commonly used in machine learning to group data points into distinct clusters based on their similarities. While K-means is not typically used directly for identifying support and resistance levels in financial markets, it can serve as a tool in a broader analysis approach. Support and resistance levels are price levels in financial markets where the price tends to react or reverse. Support is a level where the price tends to stop falling
This indicator shows when user set sessions are active and returns various tools + metrics using the closing price within active sessions as an input. Users have the option to change up to 4 session times. The indicator will increasingly lack accuracy when the chart timeframe is higher than 1 hour. Settings Sessions Enable Session: Allows to enable or disable all associated elements with a specific user set session. Session Time: Opening and closing times of the user set session
フィルタ:
samaara
19
samaara 2024.04.26 07:32 
 

When I bought this indicator, I was facing issues with using it in my EA. The indicator was slow and caused errors. So, I reached out to the author of this indicator and asked for help. He always responded to my questions, removed the errors I was facing and even gave me a working sample EA so that I could use it. The indicator now works smoothly and gives good signals!

レビューに返信
バージョン 1.8 2024.04.22
Fix error on divider 0 when learn
バージョン 1.7 2024.01.31
Fix categories number
バージョン 1.6 2024.01.31
Add "categories" - prediction value to buffer.
バージョン 1.5 2023.12.06
add buffer for easier make EA from this indicator
バージョン 1.4 2023.11.01
fix bug zero division
バージョン 1.1 2023.09.27
Fix bug display horizontal line when buffer 0