Donchian Dawn

  • インディケータ
  • Teng Fei Zhu
    Teng Fei Zhu
    2 (1)
    MQL5取引システムへの機械学習・深層学習の深い融合を専門とする。独自に300以上のEAおよびカスタムインジケーターを開発し、実運用中。ニューラルネットワーク、LSTM、Transformer、強化学習、XGBoost/LightGBMに精通。特徴量エンジニアリング、Walk-Forward、最適化、モンテカルロシミュレーション、パラメータ摂動解析、分布シフトテストを組み合わせ、オーバーフィッティングを厳格に抑制。
  • バージョン: 1.1

Donchian Dawn Breakout System

My other products: https://www.mql5.com/zh/users/bitksk/seller

1. What Problem Does It Solve

Manually identifying trend breakouts often relies on subjective judgment and lacks consistency. This indicator programmatically and visually implements the Donchian channel breakout logic, solving three core problems:

  • Signal Standardization: Automatically generates arrow signals when the price breaks through the upper or lower band of the dynamic channel, eliminating subjective guesswork.

  • Position Management Visualization: Uses colored rectangles to mark the boundaries of the current trend, making stop-loss and target levels clear at a glance.

  • Strategy Review Datafication: Automatically records the entry point, exit point, and profit/loss result of every simulated trade, and aggregates statistics on win rate and profit/loss ratio, allowing you to evaluate strategy performance without manual backtesting.

2. Who Is It For

  • Traders looking for a clearly defined, reproducible trend-following strategy

  • Technical analysis users who wish to reduce reliance on subjective judgment and use objective signals to assist decision-making

  • Traders who need to filter trade direction by trend to avoid counter-trend operations when using existing strategies

  • Users familiar with breakout strategies such as Donchian channels or the Turtle Trading rules, seeking a modern MT5 implementation

  • Users who prefer a clean chart and do not want visual clutter from loading multiple indicators simultaneously

3. Usage Scenarios

Scenario Description
Trending Market Performs best when the channel expands and the price runs consistently on one side of the channel
Breakout Confirmation Signal reliability is higher on the first breakout from the channel after consolidation
Trend Filter Combine with oscillators (RSI, Stochastic) and only trade in the direction of the trend
Multi-Timeframe Analysis Determine the major direction on H1/D1; find entry timing on M15/M30
Instrument Suitability Instruments with stronger trending characteristics (e.g., Gold, major currency pairs, indices) are more suitable

4. Parameter Explanation

Parameter Default Description
Price Heiken Ashi Close Price type used for breakout calculation. 8 options available: Close, Median, Typical, Weighted Close, and the corresponding 4 Heiken Ashi variants. The Heiken Ashi series effectively filters false breakouts
ChannelPeriod 5 Base calculation period for the channel. Smaller values produce more sensitive breakout signals but may increase false signals
MaxChannelPeriod 30 Maximum period for adaptive channel expansion. When market volatility contracts and channel width falls below MinChannelWidth , the system will progressively extend the period until the width meets the requirement or this upper limit is reached
Margin 0 Scaling factor for channel boundaries. 0 uses the original high/low; a positive value shrinks the channel inward, making breakout signals more conservative
MinChannelWidth 10 (points) Minimum allowed channel width. Falling below this value triggers the adaptive expansion mechanism, avoiding excessive invalid signals during narrow consolidations
ShowFilledBoxes true Whether to fill trend boxes. When enabled, draws semi-transparent rectangles for each trend segment after a breakout, visually showing the trend running area
ShowAnalysis true Whether to enable simulated trade analysis. When disabled, only signal arrows and channel lines remain; trade data is no longer recorded
ShowStatsComment true Whether to display the statistics panel in the corner of the chart (number of trades, win rate, profit/loss ratio)
AlertOn true Whether to enable pop-up alerts
UpTrendSound / DnTrendSound alert.wav / alert2.wav Custom sound files for up-break and down-break signals
EmailOn / PushNotificationOn false Email and mobile push notification switches, default to off

5. Risk Notes

  • Signal Lag: Breakout signals are determined based on the relationship between the candlestick closing price (or the selected price type) and the upper/lower band of the channel; therefore, signal confirmation occurs at candle close, not at the moment of breakout. In fast-moving markets, the entry price may deviate from the breakout moment.

  • False Breakouts: Any breakout strategy inevitably encounters false breakouts. When the price briefly breaks through the channel and then quickly returns, an invalid signal is generated. It is recommended to use in combination with volume or auxiliary filtering conditions.

  • Underperformance in Ranging Markets: In sideways markets without a clear trend, the channel may be repeatedly broken in both directions, potentially resulting in consecutive losses. The MinChannelWidth and adaptive period expansion mechanism partially mitigate this, but cannot completely avoid it.

  • Historical Statistics Do Not Represent the Future: The win rate and profit/loss ratio displayed on the indicator panel come from simulated backtest statistics of historical candlestick data and do not represent future live performance. Live trading involves factors such as slippage, spread, and overnight interest; the statistical results are for strategy evaluation reference only.

  • Single Indicator Risk: This indicator is based solely on price breakout logic and should not be used as a standalone trading system. It is recommended to use in combination with other analytical methods (support/resistance, volume, money management rules).

6. Unsuitable Situations

  • Scalping: Signals are confirmed at candle close and are not suitable for tick-level high-frequency operations

  • Ultra-short M1 timeframe: When the period is too short, market noise increases and the signal-to-noise ratio of channel breakouts decreases

  • Instruments with extremely low volatility: Such as certain minor altcoins or highly correlated cross-pairs, where the channel runs narrow for extended periods and effective signals are sparse

  • During major news events: In extreme volatility during events such as NFP or central bank rate decisions, prices may quickly penetrate the channel and then sharply reverse, reducing signal reliability

  • Pure reversal strategies: This indicator is a trend-following tool intended to trade with the trend and is not suitable for trading styles that seek tops and bottoms

7. Broker Requirements

  • Broker type: No special restrictions; suitable for any broker that supports the MT5 platform

  • Data quality: It is recommended to choose a broker that provides stable real-time quotes and complete historical data. Missing historical data will affect the accuracy of backtest statistics upon initial loading

  • Spread and execution: Signals are generated based on chart prices and do not include spread. In live trading, high floating spreads may cause slippage during news events; an ECN or low-spread account is recommended during major trading sessions

  • Sound/Email/Push: To use alert functions, please ensure that the MT5 terminal settings allow sound playback, email sending, and in-app push notifications

  • Platform version: Requires MT5 build 2085 or above

8. Frequently Asked Questions

Q1: The indicator shows no signals or lines after loading?
A1: Check the "DONCHIAN" button in the upper left corner of the chart and confirm it is green (enabled). Upon initial loading, a sufficient number of candlesticks may need to be completed for calculation (depending on the settings of ChannelPeriod and MaxChannelPeriod ).

Q2: The trend box (rectangle) appears very wide and takes up too much chart time. What should I do?
A2: This is normal. Within a trend segment, the box extends from the breakout point until the next candle, as long as the trend persists. When a new trend emerges, the current box will be truncated by the box of the next signal, ending the previous trend.

Q3: Why do signal arrows sometimes appear without corresponding trend boxes?
A3: When ShowFilledBoxes is set to false, all boxes will not be drawn. If set to true, ensure sufficient candle data and that no accidental deletion has occurred; toggling the master switch off and back on will force recalculation and redraw all objects.

Q4: The simulated trade statistics show "Too few trades"?
A4: This message appears when the analysis function is enabled ( ShowAnalysis is true) but there are few breakout events in the chart history. Switching to a longer timeframe (such as H4 or D1) and loading more historical data can effectively increase the statistical sample.

Q5: How do I change the Heiken Ashi price type?
A5: Adjust the Price parameter in the indicator parameter panel. Options 4-7 correspond to the four Heiken Ashi variants. The indicator will recalculate all historical signals after switching.

Q6: Will the signal become less responsive after adaptive channel expansion?
A6: Yes, this is a double-edged sword. After expansion, the channel widens, and a breakout requires a larger price movement, which reduces false signals but lowers sensitivity. You can balance this by adjusting MinChannelWidth according to the volatility characteristics of the instrument.

Q7: Can multiple copies of the indicator with different timeframes be loaded on the same chart?
A7: Yes. Each copy has an independent UniqueName prefix and will not interfere with others. It is recommended to assign different color configurations to copies of different timeframes for easy distinction.

Q8: The chart becomes laggy after loading?
A8: The initial calculation may consume some resources when processing a large amount of historical candlesticks. It is recommended to set a reasonable limit for "Max bars in chart" in the options (e.g., 5000-10000 bars), or disable ShowAnalysis to keep only the basic signal functions.

Updates & Feedback

This indicator is under continuous maintenance. If you encounter any issues or have feature suggestions, please feel free to contact via private message.


おすすめのプロダクト
1. Overview The Scalping PullBack Signal indicator is a powerful technical analysis tool designed to help traders identify scalping opportunities based on potential pullback and reversal signals. This tool is particularly useful on lower timeframes (below 15 minutes) but can also be applied on higher timeframes for longer-term trades. This indicator integrates several key analytical components, providing a comprehensive view of trends and potential entry/exit points, helping you make quick and e
FREE
Calmer chart context, kept practical Northstar Flow Candles MT5 is a chart-window indicator that presents Heikin Ashi candles with a five-state trend context. It is designed for traders who want a quieter view of price while keeping the native chart available as an optional reference. Visual-only indicator: Northstar Flow Candles MT5 does not place trades and does not send popup, push, or email notifications. What appears on the chart Five candle states: strong bullish, bullish, balanced, bearis
FREE
The Bull DCA DowJones Signal – Premium Trend & Swing Indicator (WinWiFi Robot Series) Overview: Unlock the full potential of Index trading with the latest innovation from the WinWiFi Robot Series . "The Bull DCA DowJones Signal" is a precision-engineered indicator designed to conquer global Indices, Energy, and Forex markets. Optimized for the H4 Timeframe , this tool filters out market noise and delivers clear, actionable signals for Trend Following, Breakouts, and Pullbacks. Key Features & S
FREE
PROMETHEUS TECHNICAN VERSION Free | By THE SONS A gift from The Sons — no strings, no trial, no expiry. Every trader deserves access to professional-grade market intelligence. That belief is why Prometheus Technical Version exists, and why it costs nothing. Consider it our handshake to the trading community. What You're Getting This is not a simplified tool dressed up as a gift. Prometheus Technican Version is a fully built, institutional-quality technical analysis indicator running a dual-model
FREE
How it works –   Base-departure detection — algorithmically finds consolidation bases (overlapping range with compressed volatility) followed by displacement departures. Patterns: Drop-Base-Rally, Rally-Base-Drop, Rally-Base-Rally, Drop-Base-Drop — detected structurally, not by candle names. –   Strength score (0–100) — from departure velocity, time-at-base, freshness (each revisit decays the score), higher-timeframe confluence and origin volume. –   Lifecycle — Fresh, Tested (decaying), Broken
FREE
SPECIAL LAUNCH OFFER: $30 (1-Month Rent) Limited time offer to build our community and gather feedback! AmbM GOLD Institutional Scalper A high-precision M5 algorithm for XAUUSD (Gold) , engineered to trade exclusively at Institutional Liquidity Levels ($5/$10 psychological marks). PERFORMANCE DATA (BUY ONLY) • Win Rate: 87.09%. • Safe Growth: +$4,113 profit on $10k (13.75% Max Drawdown). • Extreme Stress Test: Successfully generated +$22,997 in a 5-year stress test (2020-2026), proving
Full Description Overview Drawdown Controller Calculator Indicator is an advanced professional risk-management tool for MetaTrader 5 , specially designed for traders who use multiple running trades, pending orders, grid systems, and martingale strategies . This indicator allows you to see the future drawdown in advance — not only for currently running trades, but also for all pending orders combined , assuming they get triggered step by step. Instead of guessing or hoping, you will know ex
FREE
SUPERTREND; It is a trend following indicator based on the SuperTrend ATR created by Olivier Seban. It can be used to detect changes in trend direction and locate stops. When the price falls below the indicator curve, it turns red and indicates a downtrend. Conversely, when the price moves above the curve, the indicator turns green, indicating an uptrend. Like other indicators, it works well on SuperTrend when used in conjunction with other indicators such as MACD, parabolik SAR, Bollinger Band
FREE
VFI Quantum
Nikita Berdnikov
5 (1)
Introducing VFI (Volume Flow Indicator) – a trading indicator that analyzes the relationship between volume and price movement to identify key trading opportunities. The indicator displays the strength and direction of volume flow, providing clear signals about potential entry and exit points. Signals are formed based on zero line crossovers, crossovers between the VFI line and its exponential moving average (EMA), and when the indicator exits overbought and oversold zones. Attention! This stra
FREE
Volume Proxy A synthetic order flow indicator for CFD traders on XAUUSD, NAS100, and US30. --- What It Does CFD and synthetic markets on MetaTrader 5 do not provide real volume data. The standard tick volume that most traders rely on only counts price updates — it reveals nothing about the actual buying and selling pressure behind a move. This leaves retail traders unable to distinguish genuine institutional activity from ordinary market noise. Volume Proxy addresses this directly. It synthesi
FREE
Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
FREE
Pivot Points Indicator – a fast, reliable, and fully customizable pivot detection for MetaTrader 5. This indicator uses MetaTrader’s native iHighest and iLowest functions to identify pivot highs and lows by scanning for the highest and lowest prices within a user-defined window of bars. A pivot is confirmed only when the current bar is the absolute maximum or minimum within the selected range, ensuring accurate and timely signals based on robust built-in logic. Key Features No Repainting : Onc
FREE
Master Weis
Leonel Alberto Jose Quintana
Master Waves for MetaTrader 5 説明 Master Waves は、価格の動きに応じて出来高を波として整理する MetaTrader 5 用テクニカルインジケーターです。 インジケーターは各ローソク足の方向を分析し、価格が同じ方向に動いている間は出来高を累積します。方向が変化すると、新しい波の計算を開始します。 波は独立したインジケーターウィンドウにヒストグラムとして表示されます。上昇方向と下降方向の波は異なる色で表示され、視覚的に確認できます。 波の分析 現在の波の出来高は、過去の波の平均出来高と比較されます。この比較により、分析対象の価格履歴における各動きの相対的な強さを確認できます。 インジケーターは利用可能な Tick Volume を使用します。必要な場合は、銘柄から提供される Volume を代わりに使用します。 Score と State Master Waves は、現在の波の出来高と過去の波の平均値との関係に基づき、マイナス 100 からプラス 100 の範囲で Score を内部計算します。 正の値は上昇方向の動きを表し、負の値は下降方向
FREE
RSI abcd
Francisco Gomes Da Silva
4.33 (3)
RSI ABCDパターンファインダー:テクニカル戦略 1. インジケーターの仕組み 古典的RSI と ABCD調和パターン の自動検出を組み合わせたものです。 主要コンポーネント 標準RSI (調整可能な期間) 高値・安値マーカー (矢印) ABCDパターン (緑/赤の線) 過買(70)・過売(30)フィルター 2. MT5設定 period = 14 ; // RSI期間 size = 4 ; // 最大パターンサイズ OverBought = 70 ; // 過買水準 OverSold = 30 ; // 過売水準 Filter = USE_FILTER_ YES ; // 確認フィルター 3. 取引戦略 3.1. 買いエントリー(強気ABCD) 条件: RSIが以下を形成: 谷( A )→ 山( B )→ より高い谷( C ) D が過売域(30)より上だが C より下 確認:A-B-C-Dを結ぶ緑色の線 目標: TP1: B-Cの61.8% TP2: B-Cの100% ストップロス: D より下 3.2. 売りエントリー(弱気ABCD) 条件: RSIが以下を形成: 山( A
FREE
Follow The Line MT5
Oliver Gideon Amofa Appiah
4.6 (35)
This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL. (you can change the colors). It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more powerful and reliable signals. Get them here: https://www.m
FREE
MTF Isolator EMA
Jake Jesus Herrera Turizo
Características Principales 1. Medía Móvil Multi-Timeframe (MTF) con Estabilidad Temporal EMA Macro ( InpMATimeframe ): Permite proyectar y visualizar en el gráfico actual una Media Móvil Exponencial (EMA) calculada desde una temporalidad superior (por defecto en gráfico diario PERIOD_D1 ). Independencia de Temporalidad: Mantiene los cálculos exactos y fijos del periodo que se requiera (la temporalidad macro seleccionada) sin que estos se modifiquen, distorsionen o recalibren indebidamente al
FREE
Spike Catch Pro 22:03 release updates Advanced engine for searching trade entries in all Boom and Crash pairs (300,500 and 1000) Programmed strategies improvements Mx_Spikes (to combine Mxd,Mxc and Mxe), Tx_Spikes,   RegularSpikes,   Litho_System,   Dx_System,   Md_System,   MaCross,   Omx_Entry(OP),  Atx1_Spikes(OP),   Oxc_Retracement (AT),M_PullBack(AT) we have added an arrow on strategy identification, this will help also in the visual manual backtesting of the included strategies and see ho
FREE
Best SAR MT5
Ashkan Hazegh Nikrou
4.33 (3)
説明 :  外国為替市場(PSAR)で専門的で人気のあるインジケーターの1つに基づいた新しい無料インジケーターをご紹介します。このインジケーターは元のパラボリックSARインジケーターの新しい変更です。プロSARインジケーターでは、ドットと価格チャートのクロスオーバーを見ることができます。クロスオーバーはシグナルではありませんが、動きの終わりの可能性について話します。新しい青いドットで購入を開始し、最初の青いドットの1 atr前にストップロスを配置し、最後にドットが価格チャートを横切るとすぐに終了できます。 売買シグナルを開く方法は? 最初の青い点によるオープンバイトレードと最初の赤いドットによるオープンセルトレード 正しいストップロスはどこにありますか? 安全なストップロスは最初のドットにある可能性があります(最初の青いドットの買いの場合と最初の赤い点の売りの場合) 正しいテイクプロフィットはどこにありますか? テイクプロフィットはストップロス距離とRRに基づいて調整できるので、私の提案は2 RRで、ストップロスの2倍です。 利益を上げているのにtpを達成できなかった場合
FREE
FX Clock
Abderrahmane Benali
FXClock – Professional Clock Indicator for Traders Please leave a 5 star rating if you like this free tool! Thank you so much :) The FXClock indicator is a practical and simple tool that displays time directly on your trading platform, allowing you to track multiple key pieces of information at the same time. It is specially designed to help traders synchronize their trading with market hours and global sessions. Key Features: Displays the broker server time with precision. Displays your local c
FREE
MACD Enhanced
Nikita Berdnikov
4 (4)
Introducing the MACD  Enhanced – an advanced MACD (Moving Average Convergence Divergence) indicator that provides traders with extended capabilities for trend and momentum analysis in financial markets. The indicator uses the difference between the fast and slow exponential moving averages to determine momentum, direction, and strength of the trend, creating clear visual signals for potential entry and exit points. Attention! To achieve the best results, it is recommended to adapt the indicator
FREE
Value Chart Candlesticks
Flavio Javier Jarabeck
4.57 (14)
The idea of a Value Chart indicator was presented in the very good book I read back in 2020 , " Dynamic Trading Indicators: Winning with Value Charts and Price Action Profile ", from the authors Mark Helweg and David Stendahl. The idea is simple and the result is pure genius: Present candlestick Price analysis in a detrended way! HOW TO READ THIS INDICATOR Look for Overbought and Oversold levels. Of course, you will need to test the settings a lot to find the "correct" one for your approach. It
FREE
Visual Wave Indicator
AL MOOSAWI ABDULLAH JAFFER BAQER
Visual Waves Indicator: Ride the Trend with Clarity Unlock a smarter way to trade with the Visual Waves Indicator, a sophisticated tool designed to provide clearer, more reliable trend signals on the MetaTrader 4 platform. Are you tired of the false signals and market noise generated by traditional moving averages? The Visual Waves Indicator is your solution. It moves beyond basic calculations to offer a truly adaptive analysis of market momentum, helping you identify trading opportunities with
Fimathe PCM Indicador
Cristiano Rodrigo Olegini
5 (1)
Velas Forex FIMATHE PCM Indicator(無料) Velas Forex FIMATHE PCM Indicator は、市場をシンプルかつ迅速、そして分かりやすく分析できるように設計された無料のインジケーターです。 明確な視覚シグナルによって市場状況を把握しやすくし、トレーダーがより自信を持って取引判断を行えるようサポートします。 XAUUSD の最良結果: 時間足: 5分足(5M) MT5サーバー時間: 02:00 リスク管理: Take Profitを1回達成したら: 取引を停止し、翌日まで待機します。 Stop Lossを2回達成したら: 取引を停止し、翌日まで待機します。 主な特徴 シンプルで直感的なインターフェース インストールと設定が簡単 MetaTrader 5で利用可能なすべての金融商品に対応 複数の時間足で使用可能 初心者から上級者まで幅広いトレーダーに最適 プラットフォームのリソース消費を最小限に抑えた軽量設計 無料 本インジケーターは、MQL5コミュニティ向けに 100%無料 で提供されています。 お役に立ちましたら、ぜひ評価とレビュ
FREE
トレンド,トレンド指標,モメンタム,オシレーター,ヒストグラム,トレンド強度,マーケットフロー,トレンド確認,強気,弱気,テクニカル分析 Trend Flow Oscillatorは、市場のフローとモメンタムを分析するためのインジケーターであり、価格の動きの強さと方向性を明確かつシンプルに、そして迅速に視覚的に把握できるよう設計されています。 特にM5タイムフレームで効果的であり、この時間足ではフローの変化がより頻繁に発生します。 機能 買いと売りの圧力の変化および継続を識別 価格変動の加速と減速を表示 トレンド方向へのエントリーの確認をサポート フローを独立したヒストグラムで表示し、視認性を向上 方向性モメンタムオシレーターとして機能 対象ユーザー 裁量トレーダー スキャルパーおよびデイトレーダー(特にM5) 自動シグナルではなくフローの確認を重視するトレーダー トレンドおよび押し目・戻りを狙うトレーダー シンプルで明確なインジケーターを好むユーザー 使用方法 推奨タイムフレーム:M5 ヒストグラムの解釈: プラスのバーは買い圧力の増加を示す マイナスのバーは売り圧力の増加を示す
FREE
The RSI with Moving Averages indicator combines the classic Relative Strength Index with customizable moving averages, offering deeper insights into market momentum and trend direction. By smoothing the RSI curve with short- and long-term averages, traders can better distinguish true reversals from noise. This tool highlights overbought and oversold levels, reveals divergences between price and momentum, and confirms entry or exit points with enhanced accuracy. Its adjustable parameters allow tr
FREE
LT Super Trend
BacktestPro LLC
4.89 (19)
スーパートレンド指標は、トレーダーが市場のトレンドの方向や潜在的なエントリーと出口のポイントを特定するために使用する人気のあるテクニカル分析ツールです。価格の動きとボラティリティに基づいてシグナルを提供するトレンド追従型の指標です。 スーパートレンド指標には、上昇トレンドを示すライン(通常は緑色で表示)と下降トレンドを示すライン(通常は赤色で表示)の2つがあります。トレンドの方向に応じて、ラインは価格チャートの上または下にプロットされます。 スーパートレンド指標を効果的に使用するためには、次の手順に従ってください: 1. トレンドの方向を特定する:スーパートレンドラインを確認して、市場が上昇トレンドか下降トレンドかを判断します。緑色のラインは上昇トレンドを示し、赤色のラインは下降トレンドを示します。 2. エントリーシグナル:スーパートレンドラインの色が変わった場合、トレンドの反転の可能性を示すエントリーの検討を行います。例えば、スーパートレンドラインが赤から緑に変わった場合、下降トレンドから上昇トレンドへの変化を示し、購入の機会を示しています。 3. エグジットシグナル:
FREE
VolumeBasedColorsBars — Free Powerful Volume Analysis for All Traders Unlock the hidden story behind every price bar! VolumeBasedColorsBars is a professional-grade, 100% FREE indicator that colorizes your chart candles based on real, adaptive volume analysis. Instantly spot surges in market activity, identify exhaustion, and catch the moves that matter. This indicator gives you:    • Dynamic color-coded bars for instant volume context    • Adaptive thresholds based on historical, session-awar
FREE
Plus BB Color
Leonel Alberto Jose Quintana
Plus BB Color Plus BB Color は、ボリンジャーバンドと動的な指数移動平均線を基にした構造の中で、価格の位置を読み取りやすくするために開発された MetaTrader 5 用の視覚的インジケーターです。 このインジケーターは、上部バンド、下部バンド、色分けされた中央ライン、および価格の潜在的な極値を示す視覚的なマークを組み合わせ、価格の拡大、乖離、そして値動きの勢いが弱まる可能性のあるポイントを確認するのに役立ちます。 主な機能 設定可能な期間と偏差に基づいて計算される上部バンドと下部バンド。 調整可能な期間を使用した EMA ベースの中央ライン。 EMA のバンド基準値に対する位置に応じた中央ラインの色の自動変更。 上部バンドより上にあるローカル極値の検出。 下部バンドより下にあるローカル極値の検出。 過度な乖離や過熱の可能性がある領域を示す視覚的な矢印。 MetaTrader 5 のメインチャートとの互換性。 システムで使用される Replay/Tester 環境への対応。 視覚的な解釈 中央ラインは、EMA とバンドの基準値との関係に応じて色が変化します。
FREE
The one minute chart has a bug, but the one-day chart can still be used after deleting the bug and reloading the indicators, This indicator can be used to determine how far the indicator goes up to place an order to buy, how far it goes down to place an order to sell, and not placing an order until it reaches this distance, which is considered oscillation, open an account gift index
FREE
Babel Assistant
Iurii Bazhanov
4.33 (9)
Babel assistant 1 MT5ネッティングロボット「Babel_assistant_1」は、ZigZagインジケーターを使用してM1、M5、M15、H1、H4、D1、W1の時間足全体でフィボナッチレベルを生成し、買いトレンドと売りトレンドの強さを計算します。指定されたトレンドレベル4.925を超えると、「Lot for open a position」の設定を使用してポジションをオープンします。その後、Babelは特定のフィボナッチレベルに指値注文(または逆指値注文)を配置し、指定されたストップロス(Stop Loss)およびテイクプロフィット(Take Profit)のラインを設定します。画面には、ポジション、トレード、トレンドの現在の結果が表示されます。 0.02ロット以上の手動でのポジション追加は、ロボットによって独自の保留注文のトリガーとして認識されます。0.01ロットの保留注文または成行注文は、執行時に単にポジション量を変更します。 免責事項: 以下の資料は、情報提供および教育目的のみを目的としています。外国為替市場向けの自動取引プログラムである本製品「Babel
FREE
このプロダクトを購入した人は以下も購入しています
この製品は 2026 年の市場向けに更新され、最新の MT5 ビルドに最適化されています。 価格更新のお知らせ: Smart Trend Trading System は現在 $99 で提供されています。 次の 30 件の購入 後、価格は $199 に上がります。 特別オファー: Smart Trend Trading System を購入後、私にプライベートメッセージを送ることで、 Smart Universal EA を無料 で受け取り、Smart Trend のシグナルを自動売買に変えることができます。 Smart Trend Trading System は、リペイントなし、再描画なし、遅延なしの完全なトレーディングシステムです。よりクリーンなシグナル、より明確なトレンド方向、そしてより整理された取引方法を求めるトレーダー向けに作られています。 Learn Smart Trend Trading System Everything you need to learn, install, and use the product is available here: Online
Trend Sniper X
Sarvarbek Abduvoxobov
4.88 (32)
Trend Sniper X は、トレードの方向性と潜在的な反転ポイントを明確かつ正確に特定するのに役立つ、MetaTrader 5 用のマルチタイムフレーム・トレンドフォロー指標です。 MT4用: https://www.mql5.com/en/market/product/193245 価格情報: 現在の価格はプロモーション価格であり、今後のアップデートや新機能のリリースに伴い変更される場合があります。 ボーナス特典: このインジケーター用の無料自動売買アシスタントEAを入手するには、購入後に an 著者(開発者)へメッセージをお送りください。 Code2Profit チャンネル マルチタイムフレーム分析で相場をマスターしよう! Trend Sniper X で勝率を最大化する方法:重要なルールとセッションのコツ 技術仕様 プラットフォーム MetaTrader 5 インジケータータイプ マルチタイムフレーム・トレンドインジケーター 操作タイムフレーム あらゆるチャートタイムフレームに対応。個別に選択可能な上位タイムフレーム (M1–MN1) を搭載 主要銘柄 FX、ゴールド (X
まず正直に言いましょう。 どんなインジケーターも、それ単体であなたを利益化させることはできません。もしそう言う人がいるなら、それは夢を売っているだけです。完璧な売買シグナル(矢印)を表示するインジケーターは、いくらでも“完璧に見せる”ことができます。正しい過去の区間を拡大して、勝ちトレードだけを切り取ればいいだけです。私たちはそれをしません。 SMC Intraday Formula はツールです。 市場構造を読み取り、最も高い確率の価格ゾーンを特定し、今この瞬間のスマートマネーの痕跡をシンプルな言葉で正確に示します。最終判断はあなたが行います。トレードを実行するのもあなたです。しかし今は「希望」ではなく「精度」でエントリーできます。 私たちはこのインジケーターを、ゴールド(XAUUSD)および主要FX通貨ペアで約3年間、日々のスキャルピングに使用してきました。M1、M5、M15、M30の主要ツールです。これは未来を予測しようとするのではなく、今まさに形成されている高確率セットアップを示し、その理由を説明します。 他のすべてのインジケーターと何が違うのか? ほとんどのトレーディングイ
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
SuperScalp Pro
Van Minh Nguyen
4.63 (32)
SuperScalp Pro - Professional Multi-Layer Confluence Scalping System SuperScalp Proは、クラシックなSupertrendに複数のインテリジェントな確認フィルターを追加した、高度なスキャルピングインジケーターです。より高い確率が期待できるBuy/Sellの取引機会を特定し、ダマシのシグナルを大幅に減らすことをサポートします。 明確なBuyとSellの矢印がチャート上に直接表示され、ATRに基づくStop LossとTake Profitのレベルがリアルタイムで自動計算されます。 購入後、設定方法や推奨設定についてのサポートが必要な場合は、私にご連絡ください。 SuperScalp Pro Auto Traderを使用して、シグナルを簡単に自動化できます: [Auto Trader] 推奨設定ファイルをダウンロード: [Set File] 完全なドキュメントは製品ブログでご覧いただけます: [User Guide] 最新情報を受け取るには公式チャンネルに参加してください: [Official Channel]
Welcome to ENTRY IN THE ZONE AND SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool based on Smart Money Concepts (SMC), designed to analyze market structure, price direction, and key trading zones. It supports both Single-Timeframe Analysis and Multi-Timeframe Analysis, providing a clearer view of the overall market structure across multiple timeframes, with real-time BUY / SELL signals that do not repaint. It is designed to help filter trading opp
Zoryk Gold
Reda El Koutbane
5 (7)
割引は 24 時間後に終了します — 次の価格は$ 69 ZORYK — MetaTrader 5専用 XAUUSDシグナル・トレードプランニングシステム このような経験はありませんか。 ゴールドを分析し、エントリーを待ち、ようやくポジションを持った直後に価格が逆方向へ動く。 早すぎる決済をしてしまったり、Stop Lossを動かしたり、数秒迷っている間にチャンスを逃したりする。 その後、相場は自分が最初に予想していた方向へ進み、目標へ到達する。 問題は常に方向判断ではありません。 本当の問題は、明確な計画がなかったことです。 どこでエントリーすべきか。 どこでトレードの前提が無効になるのか。 近い利益を確保すべきか、より大きな値動きを待つべきか。 現在のsetupが本当に強いのか、それとも無理にトレードを探しているだけなのか。 ゴールドは非常に速く動きます。 正しい分析でも、明確なプランがなければ数秒で悪い判断に変わることがあります。 ZORYKは、その問題を解決するために開発されました。 ZORYKとは ZORYKは、MetaTrader 5とXAU
GoldenX Entryは、MT5向けのインジケーターであり、適応型Smart Entry Trendアルゴリズム、シグナルスコアリングシステム、マーケットレジーム検出機能、およびボラティリティフィルターを備えています。各シグナルには、計算されたエントリーレベル、3つのテイクプロフィット(TP1、TP2、TP3)、およびストップロスレベルが含まれます。本インジケーターは、異なる市場環境に適応するために設計された複数の分析レイヤー上に構築されており、マルチレイヤー分析システムと内蔵オプティマイザーおよび統計トラッキングシステムを組み合わせています。リスク・リワード(RR)指標および過去のトレード履歴に基づく定量分析を提供します。 使い始めは簡単です — 選択した時間足でオプティマイザーを実行し、そのままチャート上でインジケーターを使用します。 コア機能 GoldenX Entryは、シグナルエンジンとトレード管理機能、そして過去統計トラッキングを1つのチャートに統合しています: - 内蔵オプティマイザー: オプティマイザーはチャート上でワンクリックで実行できます。200通りのパラメー
Reversion King Indicator
Eugen-alexandru Zibileanu
5 (7)
新たな王者が登場 - インジケーター + 注文管理表示(TP1 + TP2 + TP3)+ オプションのTelegramシグナル送信機能付き(無料) (完全なトレード&シグナルシステム) ゴールド向け最高のEA: Gold Slayer このインジケーターには、高度な戦略、カスタマイズ可能な注文管理システム、そしてエンベロープ拡張を組み合わせた平均回帰システムが搭載されています。さらに、RSIなど複数のインテリジェントな確認フィルターによって、高確率の反転エントリーをBUY・SELLシグナルとして検出します。 単にトレードを学ぶだけでなく、複数ポジションを効果的に管理し、過去に利益を出しているオープンポジションで損失トレードをカバーする方法も学べます。 M5向けに構築・最適化されており、流動性が高くシグナルの精度が安定しているBTCUSDとXAUUSDで優れたパフォーマンスを発揮します。 このインジケーターは、ATRを基に自動計算されたエントリー、ストップロス、テイクプロフィットレベルを備えた明確なLong・Shortシグナルを提供するため、リスク管理が最初から組み込まれています。 マ
UNIX Scalper — Gold Scalping Indicator for MetaTrader 5 UNIX Scalper is a focused Gold scalping indicator designed primarily for XAUUSD on M1, M2, M3, M5, M10 and M15. It gives the trader a clear BUY, SELL or WAIT decision together with the complete trade plan: Entry, Stop Loss, TP1 and TP2 . The concept is simple: wait for the signal, follow the levels, move the Stop Loss to Break Even after TP1, and trade with discipline. Learn UNIX Scalper Everything you need to learn and use the product is
Gann Made Easy   は、ミスター・ギャンの理論を使用した取引の最良の原則に基づいた、プロフェッショナルで使いやすい外国為替取引システムです。 W・D・ガン。このインジケーターは、ストップロスとテイクプロフィットレベルを含む正確な買いと売りのシグナルを提供します。 PUSH通知を利用して外出先でも取引可能です。 ご購入後、取引方法の説明と優れた追加インジケーターを無料で入手するには、私にご連絡ください! おそらく、ギャンの取引手法についてはすでに何度も聞いたことがあるでしょう。通常、ギャンの理論は初心者のトレーダーだけでなく、すでにある程度の取引経験がある人にとっても非常に複雑なものです。なぜなら、ギャンの取引手法は理論的にはそれほど簡単に適用できるものではないからです。私はその知識を磨き、最良の原則を私の外国為替インジケーターに組み込むために数年を費やしました。 このインジケーターは非常に簡単に適用できます。必要なのは、それをチャートに添付し、簡単な取引推奨事項に従うだけです。このインジケーターは常に市場分析の仕事を行い、取引の機会を探します。適切なエントリーポイントを検
UZFX {SSS} スキャルピング・スマートシグナル v5.0 MT5は、変動の激しい市場において正確かつリアルタイムのシグナルを求めるスキャルパー、デイトレーダー、スイングトレーダー向けに設計された、リペイントのない高性能な取引インジケーターです。(UZFX-LABS)によって開発されたこのインジケーターは、価格行動分析、トレンド確認、スマートフィルタリングを組み合わせることで、すべての通貨ペアおよび時間枠において、高確率の売買シグナル、警告シグナル、トレンド継続の機会を生成します。 トレードの判断に迷うのはもうやめましょう。明確さ、正確さ、そして規律ある市場執行を求めるトレーダーのために設計された、体系的なシグナルシステムに従い始めましょう。 間違いなく、MQL5で入手可能な最高のインジケーターの一つです。絶対に見逃さないでください!!「スマートなトレーダーのためのスマートシグナル」 最新バージョン5.0がリリースされました。価格は予告なく最大499.99ドルまで値上がりする可能性がありますので、チャンスを逃さないようお早めにお求めください!! 購入を決める前に!無料トライアル
Gold Entry Sniper – ゴールドスキャルピング&スイングトレード用プロフェッショナル多時間足ATRダッシュボード Gold Entry Sniper は、XAUUSDや他の銘柄向けに正確な 売買シグナル を提供する、MetaTrader 5用の高度なインジケーターです。 ATRトレーリングストップロジック と 多時間足分析ダッシュボード を搭載し、スキャルピングからスイングトレードまで対応します。 主な特徴と利点 多時間足シグナル分析 – M1、M5、M15 のトレンドを同時表示。 ATRベースのトレーリングストップ – ボラティリティに応じて動的に調整。 プロ仕様のチャートダッシュボード – シグナル状況、ATRレベル、回帰線、売買方向を表示。 明確な売買マーカー – 自動矢印とテキストラベル。 エグジットアラートとトレード管理 – 利益確定のための自動検出。 完全カスタマイズ可能 – パネル位置、色、フォント、ATR/回帰設定を調整可能。 ゴールド(XAUUSD)に最適化 – M1〜M15のスキャルピングに最適、FXや指数、暗号資産にも対応。 Gold Entry
この製品は 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.   &   User Manual PDF . 価格行動、強さ、モメンタム、マルチタイムフレーム方向、高度なフィルターを分析し、トレーダーがノイズを減らし、弱いセットアップを避け、より構造化された取引判断を行えるようにします。 このイ
伝説が帰ってきました:Entry Points Pro 10。 MQL5 Marketのトップ3に3年間入り続けた伝説的インジケーターの再始動です。 2つのバージョンで合計589件の高評価レビュー、毎日数千人のトレーダーが実際のトレードに使用し、デモのダウンロードは31,000件以上   MT4+MT5 。 私はこの5年間に寄せられたレビューをすべて読み、約束を並べる代わりに、その答えをバージョン10に組み込みました。1999年から相場に携わり、 誠実さ、自らの評判、そして顧客を大切にする 作者による製品です。 Entry Points Proのエントリーシグナルは、リペイント(再描画)を一切行いません。 そして今回初めて、これは作者の言葉ではなく検証可能な事実になりました。確定シグナルはローソク足の終値確定後にのみ表示され、自動テストで リペイントはゼロ と確認されています(EURUSD、XAUUSD、BTCUSDで2,486,568回の不変条件チェック、違反0件)。検証方法は公開されており、ストラテジーテスターでご自身で再現できます。 ご購入後は、必ずすぐにダイレクトメッセージでご
ATSTRONG PRO:市場構造&ブレイクアウトインジケーター ブレイクアウト検出エンジン | 5つの動的TPターゲット | ライブダッシュボードパネル | リペイントなし 導入価格 現在の価格: $59 — 10回の販売ごとに価格が$10上昇します。 ATSTRONG PRO は、MetaTrader 5 用に設計された高度なブレイクアウトおよび機関投資家向け市場構造インジケーターです。 高確率のスイングピボットを検出し、クラスター化されたサポートとレジスタンスの蓄積ゾーンを特定し、 リアルタイムで構造の破壊(BOS)と性質の変化(CHoCH)のシグナルを発します。 このインジケーターは、ダイナミックなストップロスと5つの個別のテイクプロフィットレベル(TP1〜TP5)をチャート上に自動的に直接描画します。 リスクリワード予測ボックス、星付けされたシグナル品質の評価、およびリアルタイムのオンチャートパフォーマンス分析ダッシュボードを備えています。 取引に関する注意: これは手動取引および市場分析用のインジケーターです。ローソク足の確定時に明確な視覚的シグナル、レベル、アラー
M1 SNIPER は使いやすいトレーディングインジケーターシステムです。M1時間足向けに設計された矢印インジケーターです。M1時間足でのスキャルピングのためのスタンドアロンシステムとして、また既存のトレーディングシステムの一部としても使用できます。このトレーディングシステムはM1時間足での取引に特化して設計されていますが、他の時間足でも使用できます。元々、この手法はXAUUSDとBTCUSDの取引用に設計しましたが、他の市場においても役立つと考えています。 インジケーターのシグナルは、トレンドの方向と逆方向に取引できます。インジケーターのシグナルを利用して両方向に取引するのに役立つ特別な取引テクニックをご紹介します。この手法は、特別な動的なサポートとレジスタンスの価格帯を利用することに基づいています。 ご購入後、M1 SNIPER矢印インジケーターをすぐにダウンロードできます。さらに、M1 SNIPERツールのすべてのユーザーに、以下のスクリーンショットに表示されているApollo Dynamic SRインジケーターを無料で提供しています。この2つのインジケーターを組み合わせることで
[User Manual]   ,   [Online Course]   ,   [PDF]  And [DEMO] Axiom Matrix は、MetaTrader 5 用のプロフェッショナルなマルチシンボル・マルチタイムフレーム市場スキャナー兼意思決定ダッシュボードです。 Market Watch をスキャンし、複数の時間足を分析し、複数のエビデンスエンジンを読み取り、最も強いチャンスを比較し、1つのクリーンなマトリックスダッシュボード内で最適な BUY、SELL、WAIT、またはブロック状態を表示します。 私が Axiom Matrix を作った理由は、市場スキャンという重い作業を代わりに行ってくれる1つのツールが欲しかったからです。 RSI だけを確認したくありませんでした。 次に MACD だけ。 次に移動平均線。 次に出来高。 次にボラティリティ。 次にサポートとレジスタンス。 そして、1つのトレードアイデアを作るためだけに、銘柄と時間足を手動で切り替えることもしたくありませんでした。 私は、市場をスキャンし、エビデンスを比較し、最良のチャンスをランク付けし、今最も強い
通貨強さウィザードは、取引を成功させるためのオールインワン ソリューションを提供する非常に強力な指標です。このインジケーターは、複数の時間枠のすべての通貨のデータを使用して、このまたはその外国為替ペアのパワーを計算します。このデータは、使いやすい通貨インデックスと通貨パワーラインの形式で表され、特定の通貨のパワーを確認するために使用できます。 必要なのは、取引したいチャートにインジケーターを接続することだけです。インジケーターは、取引する通貨の実際の強さを示します。このインジケーターは、トレンドに合わせて取引するときに有利に利用できる売買高の圧力の極値も示します。このインジケーターには、フィボナッチに基づく可能なターゲットも表示されます。 このインジケーターは、PUSH 通知を含むあらゆるタイプのアラートを提供します。 購入後ご連絡下さい。私の取引のヒントをあなたと共有し、素晴らしいボーナスインジケーターを無料で提供します! 幸せで有益な取引をお祈りします。
GEM Signal Pro GEM Signal Pro は、MetaTrader 5 向けのトレンドフォロー型インジケーターです。より明確なシグナル、より整理されたトレードセットアップ、そして実用的なリスク管理をチャート上で確認したいトレーダーのために設計されています。 単純な矢印だけを表示するのではなく、GEM Signal Pro はトレード全体の考え方を、より見やすく分かりやすい形で表示します。条件が確認されると、インジケーターはエントリー価格、ストップロス、利確目標をチャート上に表示し、トレードセットアップをより効率的に確認できるようにします。 動作の仕組み このインジケーターは、まず内部ロジックに基づいて有効なシードシグナルを検出します。 確認条件が満たされると、GEM Signal Pro はチャート上に完全なセットアップを表示します。これにより、トレーダーはトレード構造をより明確に把握し、手作業による分析を減らすことができます。 チャート上のトレードレベル 確認済みシグナルに対して、GEM Signal Pro は以下を表示できます。 エントリー価格 ストップロス テ
FiboSniper Pro – Multi-Filter Fibonacci System with Auto SL/TP and Control Panel FiboSniper Proは、動的なFibonacci Envelopesと複数の確認フィルターを組み合わせ、選別されたBuyおよびSellシグナルを生成するテクニカルインジケーターです。FibonacciレベルはMoving AverageとATRを基に計算され、その後ADX、EMA、RSI、ATR、Volume、Time、Candle構造によってフィルタリングされます。インジケーターは、ATRに基づく自動Stop LossおよびTake Profitレベルをチャート上に直接表示し、さらに迅速な調整が可能なインタラクティブControl Panelを提供します。 購入後、推奨設定ファイルと詳細な使用方法については、私にご連絡ください。 Auto Trader Xを使用してFiboSniper Proのシグナルを自動化できます: [Auto Trader X] User GuideとSet Files: [Click her
Scalper Vault は、スキャルピングを成功させるために必要なすべてを提供するプロフェッショナルなスキャルピング システムです。このインジケーターは、外国為替およびバイナリー オプションのトレーダーが使用できる完全な取引システムです。推奨される時間枠は M5 です。 システムは、トレンドの方向に正確な矢印シグナルを提供します。また、トップとボトムのシグナルとギャン マーケット レベルも提供します。 インジケーターは、プッシュ通知を含むすべてのタイプのアラートを提供します。 インジケータの購入後にご連絡ください。私の個人的な取引の推奨事項と素晴らしいボーナス指標を無料で共有します! 幸せで有益な取引をお祈りします!
Crystal Quantum Pro
Muhammad Jawad Shabir
5 (3)
CRYSTAL QUANTUM PRO Institutional Signal & Trade Intelligence for MetaTrader 5 Final Price: 199 USD ----> Price goes up 10 USD after every 10 sales. Limited launch slots available, act fast. Most indicators give you an arrow and leave you alone. A naked arrow is a gamble. Winning consistently requires CONFLUENCE , a clear STOP and TARGET , and honest PROOF that the system works. Crystal Quantum Pro delivers all three in one clean, no-repaint package. Crystal Quantum Pro is a complete decision sy
BlueDigitsFx エコシステム公式アクセス 公式 BlueDigitsFx エコシステムを通じて、インフラのアップデート、ワークフローリソース、製品リリース、エコシステムへのアクセスを入手できます。 Telegram エコシステム ウェブサイト BlueDigitsFx Precision Order Flow MT5 — MetaTrader 5 向け完全オーダーフロー分析スイート バリューエリア、Point of Control、オークションコンテキスト、構造化された意思決定サポートを組み合わせた、本格的な MT5 トレーダー向けのプロフェッショナルなセッションベース市場構造フレームワーク。 バリューの所在を特定する VAH、POC、VAL を自動的に監視する London と New York のセッション構造を理解する 構造化された市場コンテキストで意思決定の疲労を軽減する MetaTrader 5 トレーダー向けに特別設計 開発者からのメッセージ Precision Order Flow を開発したのは、MetaTrader 5 内でセッション構造をより明確に読み
この製品は 2026 年の市場向けに更新され、最新の MT5 ビルドに最適化されています。 価格更新のお知らせ: Smart Price Action Concepts は現在 $200 で提供されています。 次の 30 件の購入 後、価格は $299 に上がります。 特別オファー: 購入後、私にプライベートメッセージを送ることで、 無料ボーナス + ギフト を受け取ることができます。 まず、このトレーディングツールはリペイントなし、再描画なし、遅延なしのインジケーターであり、プロフェッショナルな取引に最適であることを強調しておきます。 [Online course] ,   [User Manual]  ,  [How to Install]  ,   [PDF] Smart Price Action Concepts Indicator は、初心者から経験豊富なトレーダーまで使える非常に強力なツールです。20 種類以上の便利なインジケーターを 1 つにまとめ、Inner Circle Trader Analysis や Smart Money Concepts Trading S
CRT Candle Range Theory HTF MT5.   Ultimate CRT Indicator: Advanced ICT Concepts and Malaysian SnR Trading System Master the Market Maker's Footprints with the Most Advanced Candle Range Theory Indicator Unlock the true power of  Smart Money Concepts (SMC)  and trade precisely like the institutions with the  Ultimate CRT Indicator . Built exclusively for serious traders, this indicator automates the highly effective  Candle Range Theory (CRT) , a core pillar of  ICT Concepts (Inner Circle Trader
このインジケーターを購入された方には、以下の特典を 無料 で提供しています: 各トレードを自動で管理し、ストップロスとテイクプロフィットを設定し、戦略ルールに基づいてポジションを決済する補助ツール 「Bomber Utility」 様々な銘柄に合わせたインジケーターの設定ファイル(セットファイル) 「最小リスク」、「バランスリスク」、「待機戦略」 の3つのモードで使用できる Bomber Utility 用の設定ファイル このトレーディング戦略をすぐに導入・設定・開始できる ステップバイステップのビデオマニュアル ご注意: 上記の特典を受け取るには、MQL5のプライベートメッセージシステムを通じて販売者にご連絡ください。 オリジナルのカスタムインジケーター 「Divergence Bomber(ダイバージェンス・ボンバー)」 をご紹介します。これは、MACDのダイバージェンス(乖離)戦略に基づいた 「オールインワン」型のトレーディングシステム です。 このテクニカルインジケーターの主な目的は、価格とMACDインジケーターの間に発生するダイバージェンスを検出 し、将来の価格の動きを示
Smc Pro ToolKit
Talal N Z Aljarusha
5 (12)
SMC PRO TOOLKIT — SMART MONEY ANALYSIS & STRUCTURED TRADE PLANNING SMC Pro ToolKit is a professional Smart Money Concepts analysis workspace for MetaTrader 5. It combines market structure, multi-timeframe analysis, institutional price zones, setup evaluation, confirmation tools, volume context, alerts, and risk planning inside one organized chart environment. One workspace. Multiple layers of confirmation. One structured trading plan. OPEN COMPLETE USER GUIDE MULTI-CONDITION SETUP ENGINE At
Power Candles V3 - 自己最適化型強弱インジケーター Power Candles V3は 、通貨や銘柄の強さを、適用されたすべてのチャート上で実行可能なトレードプランに変換します。単にローソク足を色分けするだけでなく、バックグラウンドでリアルタイムの自動最適化を実行し、目の前の銘柄に対して最適なストップロス、テイクプロフィット、およびシグナルの閾値を提示します。ワンクリックで実取引に適用でき、エントリーポイント、ストップロス、テイクプロフィットのラインが正確な価格位置にチャート上に表示され、方向性を示すアラートがリアルタイムで発動します。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨事項を入手し、  https://stein.investments でコミュニティに参加しましょう クローズしたバーごとに3,000回以上のトレードシミュレーション。9つの強さの状態。2つの戦略を並行してテスト。勝率の高い設定をワンクリックで適用。 なぜこれが必要なのか ほとんどの強
FX Power: 通貨の強弱を分析して、より賢い取引を実現 概要 FX Power は主要通貨と金の実際の強弱をあらゆる市場状況で理解するための必須ツールです。強い通貨を買い、弱い通貨を売ることで、 FX Power は取引の意思決定を簡素化し、高い確率の取引機会を見出します。トレンドを追従する場合でも、極端なデルタ値を使用して反転を予測する場合でも、このツールはあなたの取引スタイルに完全に適応します。ただ取引するだけではなく、 FX Power で賢く取引をしましょう。 1. なぜ FX Power がトレーダーにとって非常に有益なのか 通貨と金のリアルタイム強弱分析 • FX Power は主要通貨と金の相対的な強弱を計算し、マーケットダイナミクスに関する明確な洞察を提供します。 • どの資産がリードしているか、または後れを取っているかを監視して、取引するペアを賢く選びましょう。 マルチタイムフレームの包括的なビュー • 短期、中期、長期のタイムフレームで通貨と金の強弱を追跡し、マーケットトレンドに基づいて取引戦略を調整できます。 • スキャルピングからスイングトレード
作者のその他のプロダクト
Quantum Channel Pro は、価格トレンド、反転ポイント、市場ノイズを高精度で識別するための革新的なマルチチャネルボラティリティ分析ツールです。適応型標準偏差チャネル技術を採用し、3つの価格帯(内側、中間、外側)を動的に描画することで、トレーダーが市場の状態を視覚的に把握し、高確率な取引機会を捉えることを可能にします。 主な特徴 3段階スマートチャネル 内側チャネル(緑色) : 1σ変動幅、「通常波動ゾーン」を示す 中間チャネル(橙色) : 2σ変動幅、「潜在的反転ゾーン」を示す 外側チャネル(赤色) : 3σ変動幅、「過買い・過売り警戒ゾーン」を示す リアルタイム確率統計 独自の「ゾーン分析システム」が各チャネル内での価格出現頻度を自動計算し、以下を表示: 内側チャネル確率(平常市場) 中/外側チャネル確率(トレンド加速期) 外側チャネル突破確率(極端な反転シグナル) 適応型マーケットノイズフィルタリング 動的に調整される標準偏差計算により、通貨ペア、株式、暗号資産など異なる資産の変動特性に自動適応し、偽信号を削減。 マルチタイムフレーム対応 デフォルト設定(2
FREE
Predator 8 AI AI Predicts Next 8 Candles Trend Continuation Probability My other products: https://www.mql5.com/en/users/bitksk/seller _______________________________________________________________________________________ Core Features Real-time output of next 8 candles up/down/sideways probability per bar Built-in Lasso+Attention deep learning model (fully embedded, no internet, no coding required) Zero repaint – historical signals never flicker Supports all markets: Forex, Gold, Crypto, Indi
FREE
Range Box Breaker — Universal Range Breakout EA for All Instruments New strategy launch: first 5 buyers can purchase at 50. N e x t p h a s e p r i c e : 50. N e x tp ha se p r i ce : 100. Timeframe: M5 Recommended Instruments: EURJPY, EURUSD, FRA40, GER40, XAUUSD 1. What Problem Does It Solve Most breakout EAs face three dilemmas: overfitting to a single instrument, parameters quickly failing in live trading, and users discovering the EA loses money when switched to another symbol. Range Box
フィルタ:
レビューなし
レビューに返信