Volatility Regime ZScore Indicator

Volatility Regime ZScore Indicator

Volatility Regime ZScore is a professional volatility–regime indicator designed to classify the market into volatility regimes:

  • low risk (calm market),

  • normal conditions,

  • high risk (unstable / news / breakout environments).

This indicator answers a very specific question:

“Is the market currently calm, normal, or unusually risky?”

It does NOT predict price direction, trends, or entry points by itself.
Instead, it acts as a risk and regime filter, not signal generation.

🔹 What you see on the chart

The indicator is displayed in a separate window as a colored histogram:

  • 🔵 Blue bars – Low Volatility Regime

    • Market is unusually calm relative to its own history

    • Often suitable for:

      • mean reversion

      • scalping

      • range trading

  • ⚪ Silver bars – Normal Volatility Regime

    • Typical market conditions

    • Most strategies can operate normally

  • 🔴 Red bars – High Volatility Regime

    • Market volatility is unusually high

    • Often caused by news, breakouts, panic, or strong momentum

    • Typical use:

      • reduce position size

      • widen stop-loss

      • disable mean-reversion strategies

Horizontal lines represent user-defined volatility thresholds, making regime changes visually clear.

🔹 How to use this indicator in trading (quick examples)

As a strategy filter

  • Trade your normal strategy only during Blue and Silver regimes

  • Pause or limit trading during Red regimes

Risk management

  • Reduce lot size when bars turn red

  • Increase caution around news events

Strategy matching

  • Mean-reversion → prefer Blue / Silver

  • Breakout & momentum → often occur during Red

⚠️ Important:
This indicator does not tell you whether to buy or sell.
It tells you how risky the market environment is.

🔹 Indicator parameters (user-friendly explanation)

  • Volatility Horizons (Short / Medium / Long)
    Control how fast or slow volatility is measured.
    Short horizons react quickly, long horizons capture structural risk.

    • ShortHorizonBars
      Number of bars for short-term volatility. Reacts quickly to recent market changes. Default 15. Tip: very small values (e.g., 5–10) may cause the upside/downside components to become temporarily one-sided, which can produce sharper short-term Z-score swings.

    • MediumHorizonBars
      Number of bars for medium-term volatility. Balances noise and stability. Default 50.

    • LongHorizonBars
      Number of bars for long-term volatility. Captures structural market risk. Default 200.

  • Volatility Horizons Weights
    These parameters define how much each horizon influences the final result.

    • ShortHorizonWeight
      Weight of short-term volatility horizon ShortHorizonBars in the final score. Default 0.5.

    • MediumHorizonWeight
      Weight of medium-term volatility horizon MediumHorizonBars. Default 0.3.

  • LongHorizonWeight
    Weight of long-term volatility horizon LongHorizonBars. Default 0.2.
  • Higher weight on short horizon → faster regime changes.

Higher weight on long horizon → more conservative behavior.


  • Baseline and Volatility Regime Thresholds
  • These parameters define what is considered “normal” volatility and when regimes change.

    • BaselineWindow
      Number of historical bars used to estimate normal volatility behavior. Default 200.

    • LowVolatilityZ
      Z-score threshold below which the market is classified as low volatility. Default -0.5.

    • HighVolatilityZ
      Z-score threshold above which the market is classified as high volatility. Default 0.5.


  • Downside Risk Emphasis
  • This parameter controls how strongly negative price movements affect the volatility score.
    • DownsideWeight
      Value between 0 and 1. Higher values emphasize downside (riskier) volatility. Recommended for risk-aware trading. Default 0.


SECTION 2 – Advanced / Quantitative Description (EA & Systematic Trading)

Conceptual overview

The indicator is based on well-established principles of financial econometrics:

  • realized variance

  • volatility clustering

  • regime normalization via robust Z-scores

It is deterministic, model-free, and does not rely on machine learning.

The indicator uses log-returns and realized variance to estimate volatility across multiple horizons.

Each horizon is normalized independently using Median + MAD (Median Absolute Deviation), providing robustness against outliers, news spikes, and fat-tailed return distributions.


 Multi-horizon Z-score consensus 

The indicator evaluates volatility independently across three horizons, defined by parameters ShortHorizonBars, MediumHorizonBars, LongHorizonBars.

For each horizon k :

1. Log-returns and realized variance

Volatility is computed from log-returns as realized variance, separately for:

  • positive returns (upside volatility),

  • negative returns (downside volatility).

2. Log transformation

xt(k)​ ln(RVt(k)​ ε)

This stabilizes the distribution of volatility estimates.


3. Robust normalization (BaselineWindow)

For each horizon and direction, a robust baseline is estimated using:

  • median

  • MAD (Median Absolute Deviation)

Zt(k)​ = (xt(k)​ − median) / 1.4826 ⋅ MAD

Length of the Baseline Window is defined by parameter BaselineWindow.


4. Horizon consensus (weights)

Per-horizon Z-scores are combined using Horizon wights parametrs ShortHorizonWeight, MediumHorizonWeight, LongHorizonWeight:

Zup = ∑ wk ⋅ ​Zup,(k)

Zdow∑ w⋅ Zdown,(k)


5. Downside-aware final score

Downside and upside volatility are merged using parameter β (DownsideWeight):

β ⋅ Zdow(− β) ⋅ Zup

This produces the final composite volatility score.


6. Regime classification

Using user-defined threshold parameters LowVolatilityZ, HighVolatilityZ

The final score is classified into:

  • Low volatility

  • Normal volatility

  • High volatility

This classification drives histogram colors and.


Implementation Note — Directional RV Stabilization

On short horizons, upside or downside realized variance can become extremely small when price movements are strongly one-sided. Applying a logarithmic transform to near-zero variance may lead to non-informative volatility spikes.

To prevent this effect, the indicator applies a small minimum floor to directional realized variance based on total variance scaled by the corresponding horizon length. This approach preserves volatility asymmetry while improving numerical stability and producing more robust regime classification.


EA integration and indicator buffers

The indicator exposes multiple buffers for Expert Advisors:

  • Buffer 0 — Composite Z-Score
    Contains the final composite volatility score   Z described in Step 5 above.

  • Buffer 1 — ColorIndexBuffer
    Internal buffer used to color histogram bars
    (0 = low, 1 = normal, 2 = high volatility).

  • Buffer 2 — RegimeBuffer
    Discrete regime classification from Step 6 above:
    -1 = Low volatility
    0 = Normal volatility
    +1 = High volatility

  • Buffer 3 — Downside Volatility Z-Score
    Contains the weighted downside Z-score Z d o w n Z^{down}  from Step 4 above.

  • Buffer 4 — Upside Volatility Z-Score
    Contains the weighted upside Z-score Z u p Z^{up}  from Step 4 above.

These buffers allow EA developers to:

  • enable/disable trading by regime,

  • scale position size,

  • detect tail-risk environments,

  • build volatility-aware systems.


What this indicator is (and is not)

✔ Volatility regime detector
✔ Risk and stability filter
✔ EA-friendly and deterministic
✔ Suitable for FX, indices, commodities, crypto

❌ Not a price predictor
❌ Not a trend indicator
❌ Not a standalone trading system


おすすめのプロダクト
Knowledge of the strength and weakness of each currency is vital for every forex trader. Our   Currency Strength Meter indicator   measures the strength of eight major currencies (USD, EUR, GBP, CHF, JPY, CAD, AUD, NZD) by using the Relative Strength Index indicator, also known as RSI. The Currency Strength Meter indicator shows you, simply and quickly, when a currency is oversold, overbought, or in "normal area". This way, you can identify which currency is the strongest and the weakest. Our
Overview TriParity AfterShock PRO Scanner は、MetaTrader 5 用の裁量判断支援ダッシュボード型インジケーターです。本説明において、トライアッドとは 3 つの通貨ペアまたは銘柄の関係を意味します。Scanner は複数のトライアッドと時間足を 1 つのパネルで確認し、トレーダーが監視対象をより構造的に整理できるよう支援します。目的は、チャートの過密状態を減らし、候補を横並びで比較し、より詳しく確認すべき条件を目立たせることです。 本製品は三角裁定を実行するものではありません。真の三角裁定には、3 レッグのほぼ同時執行、非常に低いレイテンシー、そして非常に小さい取引コストが必要です。Scanner は、パリティ調整後にも一時的に残り得る歪み状態を裁量的にレビューするために設計されています。 Functions Scanner は、選択されたトライアッドを複数の時間足で分析し、NOWCAST によって現在の状態を表示します。NOWCAST はセットアップを A、B、C、または NG として評価します。この文脈で NG は、現在の状態が適して
The   Pairs Cross indicator   is a unique tool for negatively correlated trading instruments, such as EURUSD and USDCHF currency pairs. It is based on a concept called pairs trading (or spread trading). Our indicator compares the strength of two currency pairs that are inversely correlated and quickly tells you when it’s time to buy the first pair and short a second pair, and vice versa. This is a straightforward approach to trading currency pairs that works very well. How to you use the Pairs
Smart FVG Stats
- Md Rashidul Hasan
5 (1)
The  Smart FVG Statistics Indicator  is a powerful MetaTrader 5 tool designed to automatically identify, track, and analyze Fair Value Gaps (FVGs) on your charts. Love it? Hate it? Let me know in a review! Feature requests and ideas for new tools are highly appreciated. :) Try "The AUDCAD Trader": https://www.mql5.com/en/market/product/151841 Key Features Advanced  Fair Value Gap  Detection Automatic Identification : Automatically scans for both bullish and bearish FVGs across specified histo
FREE
The Volume Weighted ATR indicator is a helpful tool for measuring market activity. It is based on the idea of the Volume-Weighted ATR. Combining these two elements helps identify potential turning points or breakout opportunities. The indicator for the classification of the activity of the market uses the moving average and its multiples. Accordingly, where the VWATR bar is located (relative to the moving average), it is labelled as ultra-low, low, average, high, very high or ultra high. The Vo
FREE
Correlation Matrix Pro - マルチ通貨ヘッジスキャナー 通貨ペア間の相関関係をリアルタイムで把握! 最大6つの通貨ペア間の統計的関係を同時に可視化する強力な分析ツールです。ポートフォリオ管理、リスク分散、ヘッジ戦略に最適です。 主な機能 - 対数リターンを使用したリアルタイムピアソン相関 - 最大6通貨ペアを同時監視 - 自動タイムフレーム検出 - 調整可能な遡及期間(5-200本) - ヘッジ機会の自動検出 - ミニマルで折りたたみ可能なパネルデザイン - 即座に解釈できるカラーコード付きマトリックス カラーコード 緑 (+0.70 〜 +1.00) = 強い正の相関 薄緑 (+0.50 〜 +0.69) = 中程度の正の相関 グレー (-0.49 〜 +0.49) = 弱い/相関なし オレンジ (-0.50 〜 -0.69) = 中程度の負の相関 赤 (-0.70 〜 -1.00) = 強い負の相関(ヘッジ) なぜ相関分析が重要? リスク管理 高相関ポジションによるリスクの二重化を回避。 ヘッジ戦略 効果的なヘッジのため、強い負の相関を持つペアを自動検出。
FREE
VSA Smart Engine
Jean Carlos Martins Roso
VSASmartEngine - VSA Volume Intelligence System VSASmartEngine is a technical indicator for MetaTrader 5 based on VSA (Volume Spread Analysis) methodology. The system is designed to provide an objective reading of market activity, helping traders identify aggression, absorption, and exhaustion states by analyzing the relationship between volume and price action. The indicator features a dual-processing architecture, allowing the user to switch between the full VSA logic engine or a simplified h
A tool for creating Bill Williams indicators Our tool provides the ability to set Bill Williams indicators on a chart with a mouse click. - The Awesome Oscillator (AO) indicator helps to assess the driving force of the trend. - Alligator indicator — determines the current state of the trend and possible entry and exit points. - Fractals indicator — helps to identify significant levels  - Accelerator Oscillator (AC) indicator — shows the change in trend acceleration. - Market Facilitation Index
FREE
Zephir Breakout
Bernardo Rippe Di Dio Castagna
Zephir Power Indicator v1.30 — Breakout Signal & Statistics Tool for MetaTrader 5 Full strategy Guide on purchase - Trader with track record and 8 years of experience  EXTRA COPY FOR TRADING VIEW FOR THIS INDICATOR Zephir Power Indicator v1.30 is a high-performance breakout detection tool for MT5 that identifies precise bullish and bearish entry points based on candle body breakouts, ATR filters, and optional trend confirmation. Designed for professional traders, this indicator visuall
==================================================================== SMT DIVERGENCE - NASDAQ vs S&P500 (NAS100 / US500) MQL5 Market Product Description ==================================================================== PRODUCT NAME: SMT Divergence Nasdaq vs S&P500 | Smart Money Index Scalper SHORT DESCRIPTION (max 63 chars): Spot Nasdaq reversals using SMT Divergence with S&P500 ---------------------------------------------------------------------- FULL DESCRIPTION ---------------------
FREE
When looking at the volume information that moves the market, a question arises: is it a strong or weak movement? Should it be compared with previous days? These data should be normalized to always have a reference. This indicator reports the market volume normalized between 0-100 values. It has a line that smoothes the main signal (EMA). The normalization of values occurs within an interval defined by user (21 bars on default). User can also define any relative maximum, timeframe and number of
Aurum Axis
Shaba Dzonzi Kagona
AURUM AXIS EA Gold (XAUUSD) Scalping & Swing Trading Expert Advisor I am AURUM AXIS EA , a professional Gold trading robot (XAUUSD EA) designed for traders who demand precision, controlled risk, and consistency in automated trading. I combine scalping and swing trading strategies into one powerful Expert Advisor , allowing you to adapt to changing Gold market conditions with minimal input and maximum control. I was developed by a trader and software developer with over 7 years of combined tradin
It is a Graphical  and Trend  indicator that brings several advantages.      Eliminates noise. Facilitates the identification of the trends. Can be used as directional force indicator. Identify lateralization: candles with close and open price closer. Identifies high volatility: candles with shadows larger than the body. Attention!!!   Works on any asset and any time frame.   Easy setup Symbol:   anyone Time frame:  anyone  Parameters: Indicator  Period  Recommended Period : between
Previous Candle Levels MT5
Wachinou Lionnel Pyrrhus Sovi Guidi
1 (1)
Previous Candle Levels MT5 shows the previous candle levels, it shows the previous candle Open High Low Close levels (OHLC Levels) in different time frame. It's designed to help the trader to analyse the market and pay attention to the previous candle levels in different time frame.  We all know that the OHLC Levels in Monthly, Weekly and Daily are really strong and must of the time, the price strongly reacts at those levels. In the technical analysis, the user can use them as a support and res
FREE
The Killshot Spike Indicator is a premium, institutional-grade tool developed by Coetsee Digital, specifically engineered to catch violent algorithmic spikes. Crafted for traders focusing on Weltrade, Deriv, and SpaceMarkets synthetic indices, this indicator is optimized to operate on the 3-minute (M3) and 5-minute (M5) timeframes. Equipped with an intelligent Auto-Market Detection system, the indicator seamlessly adapts its algorithm based on the chart you apply it to. It supports Bullish-spiki
Histogram Volume (Custom) 明確で精度の高い出来高分析を行うための高度なインジケーター。 機能 現在の市場活動に基づく 買い圧力/売り圧力(Bull/Bear) を表示 リアルタイムの実際の出来高 を表示 買い手と売り手の強さを示す カラー・ヒストグラム を生成 直近 X 本のローソク足における 平均出来高 と偏差を追跡 全ての時間足で値を 正規化 (M1〜MN1 に対応) 主要な出来高統計を表示する ライブパネル を搭載 メリット 市場のどちら側が優勢かを即座に把握 異常な出来高増加や市場活動の変化を検出 強い値動きと弱い値動きを見分けるのに役立つ 全ての市場・時間足で動作 リペイントなし — 安定した信頼性の高い値 対象ユーザー デイトレーダーおよびスイングトレーダー 出来高分析 を取引システムに組み込みたいユーザー 市場活動を素早く視覚的に理解したいトレーダー まとめ Histogram Volume (Custom) は、 現在の出来高の強さ、その変化、そして市場の主導権がどちらにあるか を明確かつ正確に示します。
Simple Weis Wave
Jean Jacques Huve Ribeiro
3.67 (3)
One of the best tools for analyzing volume, Weis Wave was idelized by David Weis, to facilitate the reading of directional flow. For the VSA method disciples it is an evolution of the practices created by Richard Wycoff, facilitating a predictive reading of the market, always seeking an accumulation and distribution of the negotiated contracts. Cumulative wave volume  Range of wave ( removed) Average Wave volume Ref "Tim Ord lectures" ( removed)
FREE
The Supply and Demand Zone Indicator is a powerful and easy-to-use tool designed to help traders identify critical supply and demand zones on the chart. These zones can provide valuable insight into potential market reversals, breakouts, and important price levels where buyers or sellers are likely to take control. The best   FREE Trade Manager . If you want to create your own Hedging or Grid strategies without any coding make sure to check out the   ManHedger Key Features: Automatic Zone Detect
FREE
Decider
Rajeswari Murugesan Murugesan
PIPSBEE DECIDER INDICATOR Multi-Currency Trend & Level Identification System Built with professional market experience, PipsBee Decider is a powerful MetaTrader 5 indicator designed to help traders identify important market levels, trend direction, and potential reaction zones across multiple symbols and timeframes. This indicator is created for traders who want clear structure, accurate levels, and better decision-making without confusion. WHY PIPSBEE DECIDER IS DIFFERENT PipsBee Decider is not
Relative Volume RVOL
Alberto Gauer Borrego
4.67 (3)
Relative Volume or RVOL   is an indicator that averages the volume of X amount of days, making it easy to compare sessions volumes. The histogram only has 3 colors: Green - Above average volume Yellow - Average volume Red - Below average volume The default setting is 20 days, which corresponds more or less to a month of trading. In this version is possible to choose between tick and real volumes (if you are using a broker which offers future contracts) With the data obtained from this in
FREE
Clarity Pulse Detector Clarity Pulse Detector、将確定されたローソク足と対応する出来高バーを分析し、将来のデータに依存せずに真のトレンド転換を識別します。インジケーターは、構成可能なSSP(Signal Strength Parameter)設定に基づいてパルス強度を計算し、直近の高値と安値を比較してブレイクアウトポイントを検出します。 必要な条件が確定したローソク足で満たされると、ツールはそのローソク足に明確な買いまたは売りのマーカーをプロットします。すべての計算は確定したローソク足上で行われるため、過去のシグナルに誤った調整が行われることはありません。 Signal 有効な反転が検出されると、インジケーターは買いシグナルとして強気ローソク足の下に緑色の円を表示し、売りシグナルとして弱気ローソク足の上に赤色の円を表示します。 これらのマーカーはローソク足の確定時に正確に表示されるため、次の始値で迷わずエントリーできます。すべての矢印および円は確定したローソク足にプロットされるため、一度表示されたシグナルが移動したり消えたりするこ
Macro-R Pro Signal — Advanced Trading Signal Indicator Macro-R Pro Signal is a professional trading indicator designed to deliver high-quality BUY and SELL signals with enhanced precision and reduced market noise. By combining Bollinger Bands, RSI, and adaptive volatility filtering , this indicator helps traders identify high-probability reversal points while avoiding unfavorable market conditions. How the Strategy Works This indicator is built on a mean reversion + momentum confirmation concep
FREE
(Special New Year promotion - free price!) The indicator displays the actual 'Scale in points per bar' (identical to the manual setting in the Terminal, see screenshot) in the upper right corner of the chart. The displayed value changes INSTANTLY whenever the chart scale is changed! (This is very convenient when planning screenshots). In Settings: Change language (Russian/English), font size of the displayed text, text label offset coefficient from the graph corner, equally in X and Y directi
FREE
The Institutional Flow Sentinel (Net Sentiment Volume AKA NSV) SEE VOLUME HAPPENING ON THE GO!!!!!!! Overview Retail traders look at price. Institutions look at order flow . The Institutional Flow Sentinel is a high-precision algorithmic system designed to decode the hidden battle between buyers and sellers. By analyzing real-time volume delta and identifying supply/demand imbalances, this system allows you to stop guessing and start trading with the "Smart Money." Why Order Flow? Price charts
MTF Candlestick Patterns Detector: 究極のプライスアクション・コマンドセンター 変化の激しいトレードの世界では、たった一つの反転パターンを見逃すことが、利益の出る週とチャンスを逃す週の分かれ目になります。 MTF Candlestick Patterns Detector は、すべての時間足で24種類以上の伝説的なローソク足パターンを同時にスキャン、検出、集計するために設計されたプロ仕様のMQL5インジケーターです。 チャートを闇雲に探し回ったり、推測したりするのはもう終わりにしましょう。アルゴリズムが、高確率なセットアップをあなたの元へ届けます。 トレーダーの優位性:なぜこのインジケーターなのか? 多くのローソク足インジケーターは、遅行データでチャートを埋め尽くしてしまいます。当検出器は、コクピットのような役割を果たす マルチタイムフレーム(MTF)パネル を提供し、最も重要なトレードの疑問に一目で答えます。 トレンド構造はどうなっているか? パネルは「トレンドパターン」(MN1からH4)と「エントリーパターン」(H1からM5)を分けて表示します。
AURUM PRIME ALGORITHM — The New Era of Gold Trading Experience Institutional-Grade Precision with the Power of Stealth Execution. Aurum Prime Algorithm is not just another Expert Advisor; it is a high-performance trading engine specifically engineered for XAUUSD (Gold) . In a market dominated by high-frequency institutional algorithms, Aurum Prime levels the playing field by utilizing advanced impulse detection coupled with neural-inspired filtering. The Intelligence Behind the Engine The co
The Effort and Result indicator is based on the work of Karthik Marar; a volume spread analysis trader. It compares a price change (Result) to the volume size (Effort) for a certain period.  By comparing the effort and result, we can get more information about the future price movement. Both values are normalized and converted to a scale of 0 - 100 % based on a selectable look-back period. This indicator is also known as the Effort Index. The law of effort and result The law of effort vs. res
Multi-Currency Strength Dashboard PRO MT5 (v3.0) – 統一UI、インラインスパークライン、CSVエクスポート Multi-Currency Strength Dashboard PRO は MetaTrader 5 用インジケーターで、最大 28 の FX 通貨ペア (ブローカー提供のシンボルに依存)を分析することで、 8 つの主要通貨 (USD、EUR、GBP、JPY、CHF、CAD、AUD、NZD)のリアルタイムの 相対的な強さ を測定します。 バージョン 3.0 では、 TradingTips Dashboard Suite テーマに合わせた完全なビジュアル刷新(MSOB Dashboard インジケーターと同じルックアンドフィール)、インライン履歴スパークライン、CSV エクスポートボタン、ドラッグ&ドロップの配置、アラート種別ごとの個別サウンド設定が追加されました。 目的は、通貨の強弱を素早く構造的に可視化することで、 分析すべきペアの選択 (強い通貨対弱い通貨)を支援し、強度差の小さいペアを回避することです。 主な機能 チャー
ATLogic ATLogicインジケーター:すべての取引ツールに対応した多機能ツール ATLogicは、すべての通貨ペア、インデックス、暗号通貨を含む幅広い金融商品向けに設計された包括的で使いやすいテクニカル分析ツールです。この多機能インジケーターは、さまざまな市場でトレーダーに強力な洞察を提供します。 購入後にメッセージを残すと、特別なボーナスギフトを受け取れます 「このインジケーターをより効果的に使用する方法を学ぶために、私のAIチューターとつながるにはメッセージを送ってください!」 主な特徴 - ユニバーサル互換性: ATLogicは、外国為替ペア、株式インデックス、暗号通貨を含むすべての取引ツールでシームレスに機能します。 - マルチタイムフレーム分析:このインジケーターは、短期スキャルピングから長期投資まで、さまざまな時間枠での分析をサポートします。 - 直感的なインターフェース:ユーザーフレンドリーなデザインにより、初心者と経験豊富なトレーダーの両方が利用しやすくなっています。 - 高度なアラートシステム:カスタマイズ可能な通知は、デスクトップシステムとモバイルデ
This is a simple EA Can only open ONE trade EVER then MUST be reattached to the chart everytime you want to use it. Designed to help manual traders Has lot sizes and stops / targets in pips. For a buy trade the engulfing bar must close above the previous red bars high Includes Alarm and Phone notifications Basically if you find a price zone you like and will take a trade if there is an engulfing bar . use this.
FREE
このプロダクトを購入した人は以下も購入しています
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for al
このインジケーターを購入された方には、以下の特典を 無料 で提供しています: 各トレードを自動で管理し、ストップロスとテイクプロフィットを設定し、戦略ルールに基づいてポジションを決済する補助ツール 「Bomber Utility」 様々な銘柄に合わせたインジケーターの設定ファイル(セットファイル) 「最小リスク」、「バランスリスク」、「待機戦略」 の3つのモードで使用できる Bomber Utility 用の設定ファイル このトレーディング戦略をすぐに導入・設定・開始できる ステップバイステップのビデオマニュアル ご注意: 上記の特典を受け取るには、MQL5のプライベートメッセージシステムを通じて販売者にご連絡ください。 オリジナルのカスタムインジケーター 「Divergence Bomber(ダイバージェンス・ボンバー)」 をご紹介します。これは、MACDのダイバージェンス(乖離)戦略に基づいた 「オールインワン」型のトレーディングシステム です。 このテクニカルインジケーターの主な目的は、価格とMACDインジケーターの間に発生するダイバージェンスを検出 し、将来の価格の動きを示す
ScalpPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates — all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or emai
SmartScalping is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates — all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or e
Power Candles V3 - 自己最適化型強弱インジケーター Power Candles V3は 、通貨や銘柄の強さを、適用されたすべてのチャート上で実行可能なトレードプランに変換します。単にローソク足を色分けするだけでなく、バックグラウンドでリアルタイムの自動最適化を実行し、目の前の銘柄に対して最適なストップロス、テイクプロフィット、およびシグナルの閾値を提示します。ワンクリックで実取引に適用でき、エントリーポイント、ストップロス、テイクプロフィットのラインが正確な価格位置にチャート上に表示され、方向性を示すアラートがリアルタイムで発動します。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨事項を入手し、  https://stein.investments でコミュニティに参加しましょう クローズしたバーごとに3,000回以上のトレードシミュレーション。9つの強さの状態。2つの戦略を並行してテスト。勝率の高い設定をワンクリックで適用。 なぜこれが必要なのか ほとんどの強
ご紹介     Quantum Breakout PRO は 、ブレイクアウト ゾーンの取引方法を変革する画期的な MQL5 インジケーターです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。     クォンタム ブレイクアウト プロ   は、革新的でダイナミックなブレイクアウト ゾーン戦略により、あなたのトレーディングの旅を新たな高みに押し上げるように設計されています。 クォンタム ブレイクアウト インジケーターは、5 つの利益ターゲット ゾーンを備えたブレイクアウト ゾーン上のシグナル矢印と、ブレイクアウト ボックスに基づいたストップロスの提案を提供します。 初心者トレーダーにもプロのトレーダーにも適しています。 量子EAチャネル:       ここをクリック 重要!購入後、インストールマニュアルを受け取るためにプライベートメッセージを送ってください。 推奨事項: 時間枠: M15 通貨ペア: GBPJPY、EURJPY、USDJPY、NZDUSD、XAUUSD アカウントの種類: ECN、Raw、またはスプレッドが非常に低い R
SignalTech MT5 is an unique fully rule based trading system for EURUSD, USDCHF, USDJPY, AUDUSD, NZDUSD, EURJPY, AUDJPY, NZDJPY, CADJPY.  All the winning trades with chart setups are published on the comments page. 2026-05 4107 Pips (Until 05-29 NY Closed) 2026-04 2243 Pips 2026-03 2165 Pips 2026-02 2937 Pips 2026-01 2624 Pips 2025-12 1174 Pips It can generate signals with Buy/Sell Arrows and Pop-Up/Sound Alerts. Each signal has clear Entry and Stop Loss levels, which should be automatically flag
MasterTrend Indicator for MT5 A powerful trend-following and signal-evaluation tool MasterTrend   is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking wit
MasterTrend Indicator for MT5 A powerful trend-following and signal-evaluation tool MasterTrend   is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking wit
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2:MT5向けシンセティック・フラクタル構造分析と確認済みエントリー 概要 Azimuth Pro は Merkava Labs によるマルチレベルスイング構造インジケーターです。4つのネストされたスイングレイヤー、スイングアンカーVWAP、ABCパターン検出、3タイムフレーム構造フィルタリング、そして確定バーでの確認済みエントリー — 1つのチャートで、ミクロスイングからマクロサイクルまでを網羅するワークフロー。 これはブラインドシグナル製品ではありません。ロケーション、コンテキスト、タイミングを重視するトレーダーのための構造ファーストワークフローです。 V2発売記念オファー — Azimuth Pro V2をUSD 399で(次の100本)。最終価格:USD 499。 1. V2での変更点 シンセティック・マルチタイムフレームエンジン 上位タイムフレーム分析をMeridian Proと同じ独自のシンセティックアーキテクチャで一から再構築。よりクリーンなHTFコンテキスト、安定したライブ動作、従来のMTF同期問題なし。シンセティックエンジンは 固定比率タ
Quantum TrendPulse を ご紹介します。これは、   SuperTrend   、   RSI   、および Stochastic のパワーを 1 つの包括的なインジケーターに組み合わせて、取引の可能性を最大限に引き出す究極の取引ツールです。精度と効率を求めるトレーダー向けに設計されたこのインジケーターは、市場のトレンド、勢いの変化、最適なエントリー ポイントとエグジット ポイントを自信を持って特定するのに役立ちます。 主な特徴: SuperTrend 統合: 現在の市場動向に簡単に追従し、収益性の波に乗ることができます。 RSI精度: 買われすぎと売られすぎのレベルを検出し、市場の反転のタイミングに最適で、SuperTrendのフィルターとして使用されます。 確率的精度: 確率的振動を活用して、変動の激しい市場で隠れたチャンスを見つけます。SuperTrend のフィルターとして使用されます。 マルチタイムフレーム分析:   M5 から H1 または H4 まで、さまざまなタイムフレームで市場を常に把握します。 カスタマイズ可能なアラート: カスタム取引条件が満たされ
この製品は 2026 年の市場向けに更新され、最新の MT5 ビルドに最適化されています。 価格更新のお知らせ: Smart Trend Trading System は現在 $99 で提供されています。 次の 30 件の購入 後、価格は $199 に上がります。 特別オファー: Smart Trend Trading System を購入後、私にプライベートメッセージを送ることで、 Smart Universal EA を無料 で受け取り、Smart Trend のシグナルを自動売買に変えることができます。 Smart Trend Trading System は、リペイントなし、再描画なし、遅延なしの完全なトレーディングシステムです。よりクリーンなシグナル、より明確なトレンド方向、そしてより整理された取引方法を求めるトレーダー向けに作られています。 Online course , manual and download presets . このシステムは、トレンド検出、反転ゾーン、Smart Cloud、トレーリングストップロジック、サポートとレジスタンス、ローソク足の色分け、ア
ARIPoint
Temirlan Kdyrkhan
1 (1)
ARIPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cu
M30/H1/H4スイング版もあります M5/M15では取りきれない大きな波を狙いたい方へ。 Gold Signal Swing Pro(M30/H1/H4対応)を販売中。 1トレードで$20〜$80+の値幅を狙う。 https://www.mql5.com/en/market/product/177643 KURAMA GOLD SIGNAL PRO(MT5版)— 7層フィルター搭載 XAUUSD完全トレードシステム リペイントなし。リドローなし。ラグなし。すべてのサインは確定後に変わりません。 購入者限定特典:買い切りライセンスをご購入いただいた方に、AI Zone Radar($59相当)+PDFマニュアルを無料プレゼント。購入後にMQL5でメッセージをお送りください。 AI Zone Radar: https://www.mql5.com/en/market/product/175834 ゴールドトレーダーのコミュニティで実際に使用され、精度と使いやすさで高評価。 あなたの問題
この製品は 2026 年の市場向けに更新され、最新の MT5 ビルドに最適化されています。 価格更新のお知らせ: Atomic Analyst は現在 $99 で提供されています。 次の 30 件の購入 後、価格は $199 に上がります。 特別オファー: Atomic Analyst を購入後、私にプライベートメッセージを送ることで、 Smart Universal EA を無料 で受け取り、Atomic Analyst のシグナルを自動売買に変えることができます。 Atomic Analyst は、リペイントなし、再描画なし、遅延なしの Price Action トレーディングインジケーターで、手動取引、シグナルの明確化、EA 自動化のために設計されています。 User manual: settings, inputs and strategy. 価格行動、強さ、モメンタム、マルチタイムフレーム方向、高度なフィルターを分析し、トレーダーがノイズを減らし、弱いセットアップを避け、より構造化された取引判断を行えるようにします。 このインジケーターは、複雑な市場計算をシンプルな視覚シ
Meridian Pro
Ottaviano De Cicco
5 (2)
Meridian Pro 2.00:MT5向けプロ仕様マルチタイムフレーム・トレンドマトリクス Meridian Pro 2.00 は、MetaTrader 5 向けのプロ仕様の適応型トレンドマトリクスです。オリジナルの Meridian トレンドエンジン、クリーンなチャート ribbon、確定足ベースのシグナル矢印、8時間足 dashboard、Fuel momentum、weighted consensus、synthetic HTF processing、そしてチャート上に直接表示される上位足コンテキストラインを統合します。 目的はシンプルです。現在のトレンド、マルチタイムフレーム構造、強度、momentum、EA-ready 状態を、複数チャートに無関係なインジケータを重ねるのではなく、1つの整理された workflow で読むことです。 Meridian Pro の違い 1つの適応型エンジン - 同じ volatility-aware Meridian ロジックを M1 から W1 まで適用します。 Synthetic HTF architecture - 上位足行は下位足デ
Trend Forecaster – Since 2023. The Trend Forecaster indicator utilizes a unique proprietary algorithm to determine entry points for a breakout trading strategy. The indicator identifies price clusters, analyzes price movement near levels, and provides a signal when the price breaks through a level. The Trend Forecaster indicator is suitable for all financial assets, including currencies (Forex), metals, stocks, indices, and cryptocurrencies. You can also adjust the indicator to work on any time
BTMM State Engine Pro is a MetaTrader 5 indicator for traders who use the Beat The Market Maker approach: Asian session context, kill zone timing, level progression, peak formation detection, and a multi-pair scanner from a single chart. It combines cycle state logic with a built-in scanner dashboard so you do not need the same tool on many charts at once. What it does Draws the Asian session range; session times can follow broker server offset or be set in inputs. Tracks level progression (L
この製品は 2026 年の市場向けに更新され、最新の MT5 ビルドに最適化されています。 価格更新のお知らせ: Smart Price Action Concepts は現在 $200 で提供されています。 次の 30 件の購入 後、価格は $299 に上がります。 特別オファー: 購入後、私にプライベートメッセージを送ることで、 無料ボーナス + ギフト を受け取ることができます。 まず、このトレーディングツールはリペイントなし、再描画なし、遅延なしのインジケーターであり、プロフェッショナルな取引に最適であることを強調しておきます。 Online course , and manual Smart Price Action Concepts Indicator は、初心者から経験豊富なトレーダーまで使える非常に強力なツールです。20 種類以上の便利なインジケーターを 1 つにまとめ、Inner Circle Trader Analysis や Smart Money Concepts Trading Strategies などの高度な取引アイデアを組み合わせています。このインジケ
スイングトレーディング は、トレンドの方向のスイングと可能な反転スイングを検出するように設計された最初のインジケーターです。トレーディングの文献で広く説明されているベースラインスイングトレーディングアプローチを使用します。インディケータは、いくつかの価格と時間のベクトルを調査して、全体的なトレンドの方向を追跡し、市場が売られ過ぎまたは買われ過ぎて修正の準備ができている状況を検出します。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] むち打ちを起こさずに市場スイングの利益 インジケーターは常にトレンドの方向を表示します 色付きの価格帯は機会のベースラインを表します 色付きのダッシュは、可能な反転スイングを表します この指標は、独自の品質とパフォーマンスを分析します 複数時間枠のダッシュボードを実装します カスタマイズ可能なトレンドおよびスイング期間 電子メール/サウンド/プッシュアラートを実装します インジケータは再描画またはバックペインティングではありません Swing Tradingとは Swing Tradingは
トレンドトレーディング は、タイミングのプルバックとブレイクアウトにより、市場で起こっているトレンドから可能な限り利益を得るように設計された指標です。確立されたトレンドの中で価格が何をしているかを分析することにより、取引の機会を見つけます。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 自信を持って効率的に金融市場を取引する むち打ちにならずに確立されたトレンドから利益を得る 収益性の高いプルバック、ブレイクアウト、早期の逆転を認識する この指標は、独自の品質とパフォーマンスを分析します 複数時間枠のダッシュボードを実装します インジケーターは再描画されていません 電子メール/音声/視覚アラートを実装します 確立されたトレンドは多くの取引機会を提供しますが、ほとんどのトレンド指標はそれらを完全に無視しています。インジケーターの解釈はかなり簡単です: (1) トレンドの変化 (2) トレンドの方向への後退 (3) トレンドの方向へのブレイクアウト 赤いダッシュ は下降トレンド中の修正です 青いダッシュ は上昇トレンド中
RelicusRoad Pro: 定量的市場オペレーティングシステム 【期間限定】無制限アクセス 70% OFF - 2,000人超のトレーダーと共に なぜ多くのトレーダーは「完璧な」インジケーターを使っても失敗するのでしょうか? それは、文脈を無視して 単一の概念 だけでトレードしているからです。文脈のないシグナルは単なるギャンブルです。勝ち続けるには、 根拠の重なり(コンフルエンス) が必要です。 RelicusRoad Proは単なる矢印インジケーターではありません。完全な 定量的市場エコシステム です。独自のボラティリティモデリングを用いて、価格が推移する「適正価値の道(Fair Value Road)」をマッピングし、ノイズと真の構造的ブレイクを判別します。 推測はやめましょう。機関投資家レベルの「ロード・ロジック」でトレードを。 コアエンジン:「Road」アルゴリズム システムの中心となる Road Algo は、市場環境にリアルタイムで適応するダイナミックなボラティリティチャネルです。 安全ライン(平衡点) と、価格が数学的に反転しやすい 拡張レベル を投影します。 Si
ご購入後、ご連絡いただければ、本インジケーターをベースにしたEA(自動売買システム)を無料ボーナスとしてご提供いたします。 ChandraSAR Optimizer:自己適応型・定量的トレンドエンジン ほとんどのトレンドインジケーターが機能しなくなる理由は単純です。それは「市場は変化するのに、静的なパラメーターは変化しないから」です。 ChandraSAR Optimizer は、単なるシグナル生成と高度なアルゴリズムテストの壁を取り払います。本製品は、配列ベースの高効率なウォークフォワード(Walk-Forward)最適化エンジンをチャートに直接組み込むことで、ボラティリティ変動の問題を解決するMetaTrader 5用のダイナミックなトレンドフォローシステムです。 シャンデリア・エグジット(Chandelier Exit)の精度と、パラボリックSAR(Parabolic SAR)のモメンタム追従性を融合させたChandraSARは、単にシグナルを生成するだけではありません。現在の相場環境に合わせて、自らのパラメーターを継続的にテスト、スコアリングし、適応させます。手動での調整は一
多くの矢印インジケーターは、シグナルだけを表示して、その後の判断をすべてトレーダーに任せてしまいます。KT Alpha Hunter Arrows は、完整なトレードプランをチャート上に提示します。 各シグナル矢印が表示されるたびに、エントリーライン、ストップロス、4つのテイクプロフィット水準、そして現在の銘柄と時間足が今トレードに値するかどうかを示すリアルタイムのエッジ判定が、すでに描画された状態で表示されます。付属の Trade Manager EA は、あなたが手動でエントリーした後の実行管理を担当し、相場が荒れて判断がぶれやすい場面でも規律あるトレードを保ちやすくします。リペイントなし。確定足シグナルのみ。Forex、ゴールド、指数、その他あなたが取引するあらゆる銘柄に対応します。 主な機能 リペイントしない買い矢印と売り矢印を、足の確定後にのみ表示。 各シグナルに、エントリーライン、構造的ストップロス、4つのテイクプロフィット水準を表示。 Edge Dashboard が、現在のチャートで買いセットアップと売りセットアップを別々に評価。 判定システム:No Edge、Mar
サポート線と抵抗線のプロットにうんざりしていませんか? サポートレジスタンス は、非常に興味深いひねりを加えてチャート内のサポートとレジスタンスラインを自動検出およびプロットするマルチタイムフレームインジケーターです。価格レベルは時間とともにテストされ、その重要性が高まるにつれて、ラインは太くなり、暗くなります。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 一晩でテクニカル分析を強化 チャートを閲覧せずに重要な価格レベルを検出 一目ですべての価格レベルの相対的な強さを認識する すべての取引で最大30時間のプロットラインを節約 インジケーターは、すべての価格レベルの年齢を表示します インジケーターは再描画されていません 過去および現在の価格レベルは近接によって崩壊し、現在の市場行動に合わせて調整されます。動作は、必ずしもピークではない場所に線が引かれます。 価格レベルは、時間とともに拒否されるにつれて、より暗く、より広くなります ノイズを避けるために、重要でない価格レベルは定期的にクリアされます カスタマイズ可能な時間枠の
MetaTrader 5 向けスマート多層ブレイクアウト&プルバック検出器 「スマート・シンプル・ファスト!」 高確率のブレイクアウトエントリーを見逃すことにうんざりしていませんか? 複数のチャートを何時間もスキャンし、ブレイクアウトをトレンド方向と通貨のモメンタムに合わせようとして、それでも動きを逃してしまうことはありませんか? Break Pullback は、1つのインジケーターでそのすべてを解決します。 Break Pullback とは何ですか? Break Pullback は、マーケットストラクチャー、ブレイクアウト、トレンド継続のセットアップを取引するトレーダー向けに特別に設計されたプロフェッショナルグレードの MetaTrader 5 インジケーターです。 リアルタイムで複数の通貨ペアにわたるブレイクとプルバックの形成を自動的に検出し、3層の確認を通じてすべてのシグナルをフィルタリングします: ストラクチャラルブレイクアウト検出 — チャート上の主要なブレイクレベルを特定 HTF 日足バイアス — エントリーを支配的な日足トレンド方向に合わせる 通貨強弱指数 —
メタトレンドプロ   これは、トレードにおける推測を排除し、市場が既に決定を下したポイントを示すトレンドフォローツールです。この指標は、トレンド、動向、構造が変化する重要なポイントを特定し、主要プレーヤーがポジションを取るべき価格の戻り領域を強調表示します。 単に値動きを見るだけでなく、その背後にある論理を理解できます。すべてのシグナルはローソク足が確定した後に記録され、再描画されることなくチャートに保存されるため、自信を持って状況を分析し、意思決定を行うことができます。トレード目標(利益確定)も表示されます。 この指標の有効性について完全に確信を持っていただくために、自動統計機能をご利用いただけます。 方向転換のたびに、インジケーターはストップロスレベルとそのインテリジェントな段階的移動(Move SL)も表示します。これは非常に重要です。     削減   リスク   ポジション別。 損切り/利益確定/リスクリワード 右側の内蔵パネルには、現在の世界的なトレンドの方向における市場参入ポイントが表示され、過去のデータからもこれらのシグナルが確認できます。 任意の時間枠/ツール この指
発見が困難で頻度が少ないため、分岐は最も信頼できる取引シナリオの1つです。このインジケーターは、お気に入りのオシレーターを使用して、通常の隠れた分岐点を自動的に見つけてスキャンします。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 取引が簡単 通常の隠れた発散を見つけます 多くのよく知られている発振器をサポート ブレイクアウトに基づいて取引シグナルを実装します 適切なストップロスおよび利益レベルを表示します 設定可能なオシレーターパラメーター カスタマイズ可能な色とサイズ バー単位でサイズ別に分岐をフィルタリング パフォーマンス統計を実装します 電子メール/音声/視覚アラートを実装します 幅広い市場の見通しを提供するために、異なるオシレーターを使用して、干渉なしで同じチャートにインジケーターを何度もロードできます。このインジケーターは、次のオシレーターをサポートしています。 RSI CCI MACD オスマ 確率的 勢い 素晴らしい発振器 加速器発振器 ウィリアムズパーセントレンジ 相対活力指数 特に外国為替市場では、
ARICoin is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cust
UZFX {SSS} スキャルピング・スマートシグナル MT5は、変動の激しい市場において正確かつリアルタイムのシグナルを求めるスキャルパー、デイトレーダー、スイングトレーダー向けに設計された、リペイントしない高性能な取引インジケーターです。(UZFX-LABS)によって開発されたこのインジケーターは、価格行動分析、トレンド確認、スマートフィルタリングを組み合わせることで、すべての通貨ペアおよび時間軸において、高確率の売買シグナルを生成します。 推奨* 最適な時間足:15分足以上。 {1時間足}が私のお気に入りです。そして、その成果は驚くべきものです...! 注:{ LTL 164343 }インジケーターと組み合わせることで、シグナルの勝率を高めることができます。 LTLシグナルでトレンドを判断し、SSSシグナルをエントリーシグナルとして活用してください。 このアプローチにより勝率が最大化され、誤ったシグナルの発生を防ぐことができます。 主な機能 スマートシグナル検出 – 強力なトレンド反転や継続パターンを正確に特定します。 マルチタイムフレーム・スキャルピング – すべての時間
作者のその他のプロダクト
AROS (Adaptive Robust One-Sided Smoother) is a non-repainting trend indicator designed for live trading . It plots a smooth adaptive trend line directly in the main chart window , helping traders: identify the current market trend , reduce noise and false signals during sideways markets, adapt automatically to changing volatility conditions. Unlike classic moving averages, AROS: reacts faster during strong trends , becomes more stable during choppy or ranging markets , never uses future data (f
フィルタ:
レビューなし
レビューに返信