Vhagar

Greensight AI COMBO — xLSTM · GRU · Mamba → XGBoost | 21-TF Signal HUD

What Is It?

Greensight AI COMBO is a fully self-contained artificial intelligence indicator for MetaTrader 5. It trains three distinct deep learning sequence models — xLSTM (sLSTM), GRU, and Mamba (Diagonal SSM) — directly on live market data, then feeds their outputs into a gradient-boosted XGBoost ensemble to produce a final directional signal. This two-stage pipeline runs across all 21 native MetaTrader 5 timeframes simultaneously (M1 through MN1) and displays every signal, confidence reading, and model health metric on a single, interactive HUD overlay — no external server, no subscription feed, no black-box dependency.

There is nothing to install beyond the indicator file. Training happens automatically on attach and repeats with every new bar.

How the Two-Stage Pipeline Works

Stage 1 — Deep Learning Sequence Extraction

Three architecturally distinct sequence models are trained and run in parallel. Each model operates on two independent data tracks per timeframe: a normalised price track and a normalised log-return track, producing six raw predictions per timeframe (three models × two tracks).

xLSTM (sLSTM variant — Beck et al. 2024) The extended Long Short-Term Memory implementation replaces the standard sigmoid forget and input gates with exponential gates. A running stabiliser variable prevents numerical overflow during exponentiation, and a normaliser variable keeps the cell output bounded. This architecture has been shown to sustain gradient flow over longer sequences than classic LSTM and responds more sharply to regime changes — an important property in trending vs. ranging market transitions.

GRU (Gated Recurrent Unit) A leaner recurrent architecture with reset and update gates. The GRU trains faster per epoch, converges reliably on shorter lookback windows, and acts as a complementary "second opinion" to the xLSTM. Where xLSTM may lag on sudden reversals, GRU often captures them earlier.

Mamba (Diagonal State Space Model) A simplified diagonal SSM inspired by the structured state space literature. Rather than an explicit attention mechanism, Mamba propagates a latent state through a diagonal transition matrix, enabling efficient long-range temporal modelling at minimal computational cost. The diagonal constraint keeps training stable while preserving sensitivity to slowly evolving market regimes.

All three models are initialised with Xavier-scaled random weights, trained using a combined gradient-descent / SPSA perturbation scheme with weight clamping, and run in inference mode on the current bar to produce the Stage 1 feature vector.

Stage 2 — XGBoost Gradient-Boosted Decision Stumps

The six Stage 1 outputs are combined with two OHLC candle-structure features (the high-low range ratio and the body ratio) to form an 8-feature input vector. This vector is passed to a trained XGBoost forest of shallow decision stumps. XGBoost learns residual corrections iteratively, making it highly effective at combining heterogeneous signal sources — in this case, three DL models that each have different strengths — into a single calibrated directional prediction.

The final output of Stage 2 is a scalar between −1 and +1. Values above the configurable dead-zone threshold produce a BUY signal; values below produce a SELL; the rest register as NEUTRAL.

The HUD at a Glance

The floating HUD panel is divided into clearly labelled sections, all visible at once:

7 × 3 Signal Grid (Section A) All 21 timeframes are displayed in a compact seven-column, three-row grid. Each row shows the timeframe label, the current signal (Weak / Mid / Strong BUY or SELL, or NEUTRAL), the confidence percentage, and a DL Agreement score — the count of Stage 1 sub-models that agree with the Stage 2 final direction (shown as x/6).

Band Confidence Row The 21 timeframes are grouped into three temporal bands — SHORT (M1–M30), MID (H1–H12), and LONG (D1–MN). Each band displays its consensus direction, average confidence, and bull/bear counts at a glance.

Probability Matrix (Section B) A four-tier confluence scoring system:

Tier Condition Probability Range
Tier 1 — Maximum Confluence All three bands aligned 72 – 92 %
Tier 2 — Strong Confluence Mid band + one outer band 58 – 78 %
Tier 3 — Partial Confluence Partial agreement 48 – 65 %
Tier 4 — No Confluence Conflicted signals 30 – 50 %

The probability estimate adjusts dynamically based on average confidence across trained timeframes.

Confluence Panel (Section C) Displays the net bull/bear agreement percentage, average confidence across all trained TFs, a normalised score, and the dominant bias label (Strong Bull / Bull Bias / No Bias / Bear Bias / Strong Bear).

Model Health & Agreement (Section F) A per-model breakdown for all six Stage 1 sub-models (xLSTM-Price, GRU-Price, Mamba-Price, xLSTM-Return, GRU-Return, Mamba-Return) across all 21 trained timeframes. Columns show bull count, bear count, neutral count, average decisiveness, XGBoost agreement percentage, a health status badge (STRONG / ACTIVE / WEAK), and net bias. This section is invaluable for diagnosing which models are driving the overall signal and which are pulling in the opposite direction.

Model Validity Tracker Displays per-band training timestamps, the computed validity window (derived from training bar count and average TF duration), time remaining before the model is considered stale, and a FRESH / AGING / STALE status badge. Tells you exactly when a retrain is due.

Footer / Bull-Bear Bar A single-line overall bias summary with a proportional visual bar showing the bull/bear balance across all 21 timeframes.

Alert System

Alerts fire in three distinct scenarios:

  • Tier 1 All-Band Alignment — all three temporal bands vote the same direction with confidence above the threshold.
  • Bias Threshold — net bull/bear bias reaches or exceeds the configured minimum with mid-band confirmation.
  • Bias Flip — the dominant direction reverses from the previous bar's reading.

Alerts display in the MT5 alert window. Optional push notifications send the signal to your mobile device via the MT5 push system. A configurable cooldown prevents duplicate alerts within a defined number of bars.

HUD Controls

The panel is fully interactive without reloading the indicator:

  • [─] Minimise — collapses the HUD to the header bar only, keeping your chart clean.
  • [↔] Move Mode — enables drag-to-reposition using left-click or the arrow buttons (◄ ► ▲ ▼).
  • [+] / [−] Scale — scales the entire HUD from 0.5× to 2.0× in 0.1× increments to suit any monitor resolution.

Input Parameters

Stage 1: DL Model Weights Configure the contribution weight of each model (xLSTM, GRU, Mamba) and the relative weighting between the price track and the log-return track.

xLSTM / GRU Settings

  • Lookback sequence length (bars)
  • Hidden units per cell (up to 12)
  • Training bars per timeframe
  • Training epochs
  • Learning rate
  • Signal dead-zone threshold

Mamba Settings

  • Training epochs
  • Learning rate

Stage 2: XGBoost

  • Number of boosting trees (up to 10)
  • Learning rate (shrinkage)
  • Stage 2 training sample size

Alerts

  • Enable / disable alerts
  • Enable / disable push notifications
  • Minimum confidence threshold to fire
  • Minimum net bias to fire
  • Alert cooldown (bars)

HUD

  • Initial X and Y position
  • Scale multiplier
  • Auto-refresh on new bar toggle

Appearance Full colour customisation for every element: background, border, header, sub-header, muted text, bull colour, bear colour, neutral colour, exceed colour, and gold accent. All colours accept standard MT5 colour inputs.

Practical Usage Notes

  • On first attach the indicator trains all 21 timeframe models sequentially. Training time depends on the Training Bars and Epochs settings; the default configuration typically completes in under two minutes on a modern machine.
  • The HUD updates on every new bar when Auto-Refresh is enabled. Inference is lightweight; only the forward pass runs on each bar — full retraining requires a manual indicator reload.
  • Tier 1 signals (all three bands aligned) represent the highest-quality setups. Consider these carefully; they are infrequent by design.
  • The Model Health section can help you tune weights: if one model consistently shows WEAK status (low XGB agreement) you may reduce its Stage 1 weight in the inputs.
  • The Model Validity tracker gives you a data-driven signal of when the trained weights are becoming stale relative to current market conditions. Reload the indicator to retrain when a band shows STALE.
  • Use the scale control to make the HUD readable on 4K monitors without sacrificing chart space on smaller screens.

Technical Specifications

Property Value
Platform MetaTrader 5
Indicator type Chart overlay (no extra window)
Timeframes covered All 21 (M1 – MN1)
Stage 1 models xLSTM (sLSTM), GRU, Mamba — 6 sub-models total
Stage 2 model XGBoost gradient-boosted stumps
Features to Stage 2 8 (6 DL outputs + 2 OHLC candle ratios)
Max hidden units 12
Max XGBoost trees 10
External dependencies None
Server / cloud required No
Indicator buffers 0 (display only)

Greensight AI COMBO is a technical analysis tool. All signals are probabilistic in nature. Past model agreement does not guarantee future accuracy. Always apply independent risk management.


おすすめのプロダクト
CCI FIXED DUALとは何か CCI FIXED DUALは、プロフェッショナル向けのTrend Direction Filterであり、次の要素を正確に識別するために設計されています。 市場の支配的な方向 値動きの構造的な質 メイントレンドと加速局面との一貫性 これは直接的なエントリー指標ではありません。 これはクラシックなオシレーターではありません。 これはコンテキストツールであり、トレーダーがいつ取引すべきか、そしていつ取引すべきでないかを判断するのを助け、市場のノイズと解釈ミスを大幅に減らすために設計されています。 CCI FIXED DUALの基本哲学 CCI FIXED DUALが基づいている原則はシンプルですが非常に強力です。 シグナルは、市場構造と一貫している場合にのみ価値を持ちます。 この理由から、このインジケーターは 単一の値を使用しません 価格に衝動的に反応しません 無理に反転ポイントを探しません その代わりに、次の要素に基づいて階層的なトレンドの読みを構築します。 Typical Price上のCCI 異なる速度のLWMA移動平均 短期 中期 長期の動的
CosmiCLab SMC FIBO CosmiCLab SMC FIBO is a professional trading indicator designed for traders who use Smart Money Concepts (SMC), market structure analysis and Fibonacci retracement levels. The indicator automatically detects market swings and builds Fibonacci levels based on the latest impulse movement. It also identifies market structure changes such as BOS (Break of Structure) and CHOCH (Change of Character), helping traders understand the current market direction. CosmiCLab SMC FIBO also pr
RBreaker Gold Indicatorsは、金先物の短期日内取引戦略であり、トレンドフォローと日内反転の2つの取引手法を組み合わせたものです。トレンド相場での利益を捉えるだけでなく、相場が反転した際には迅速に利確し、その流れに沿ってポジションを反転させることができます。 この戦略は、アメリカの雑誌『Futures Truth』において、15年連続で最も収益性の高い取引戦略トップ10に選ばれた実績を持ち、非常に長いライフサイクルを誇り、現在も国内外で広く使用・研究されています。 本インディケーターは、2026年の金先物の値動きに対応し、14日間のATR指標に基づいて、ブレイクアウト係数A、観察係数B、リバーサル係数Rをより合理的な値で定義しています。非常に優れたインディケーターであり、安定的な年間収益を実現しています。ぜひおすすめします〜
This indicator can be considered as a trading system. It offers a different view to see the currency pair: full timeless indicator, can be used for manual trading or for automatized trading with some expert advisor. When the price reaches a threshold a new block is created according to the set mode. The indicator beside the Renko bars, shows also 3 moving averages. Features renko mode median renko custom median renko 3 moving averages wicks datetime indicator for each block custom notification
MercariaPattern1-2-3 відстежує рух ціни, знаходить трьоххвильові структури 1-2-3 та підсвічує момент, коли сценарій підтверджується пробоєм ключового рівня. MercariaPattern1-2-3 tracks price movement, detects three-leg 1-2-3 structures and highlights the moment when the scenario is confirmed by a key level breakout. Індикатор збирає локальні свінги в компактну фігуру 0–1–2–3 , чекає підтвердженого пробою та будує стрілку входу з готовими рівнями SL/TP. The indicator combines local swings into a
インジケーターについて このインジケーターは、金融商品の終値に対するモンテカルロシミュレーションに基づいています。モンテカルロ法とは、以前の観測結果に基づくランダムな数値を使用して、さまざまな結果の確率をモデル化するための統計的手法です。 どのように機能しますか? このインジケーターは、歴史的データに基づき、時間の経過とともにランダムに価格が変動する複数の価格シナリオを生成します。各シミュレーション試行は、 終値 の変動を考慮するためのランダム変数を使用し、与えられた期間における将来の市場変動を効果的に模倣します。 モンテカルロシミュレーションの利点 - モンテカルロシミュレーションは、複数の将来のシナリオに対して戦略をテストすることで、さまざまなトレード戦略のリスクを分析するのに役立ちます。 - 稀な極端なイベント(テールリスク)を含むさまざまな市場状況で戦略のパフォーマンスを把握することができます。 - 単一の予測に依存するのではなく、モンテカルロ法は関連する確率を伴う潜在的な結果の範囲を提供します。これにより、利益や損失の可能性を理解するのに役立ちます。 モンテカルロ法は、
# DRAWDOWN INDICATOR V4.0 - The Essential Tool to Master Your Trading ## Transform Your Trading with a Complete Real-Time Performance Overview In the demanding world of Forex and CFD trading, **knowing your real-time performance** isn't a luxury—it's an **absolute necessity**. The **Drawdown Indicator V4.0** is much more than a simple indicator: it's your **professional dashboard** that gives you a clear, precise, and instant view of your trading account status. --- ## Why This Indicator
プレミアムレベルは、正しい予測の精度が80%を超える独自の指標です。 この指標は、最高のトレーディングスペシャリストによって2か月以上テストされています。 あなたが他のどこにも見つけられない作者の指標! スクリーンショットから、このツールの正確さを自分で確認できます。 1は、1キャンドルの有効期限を持つバイナリーオプションの取引に最適です。 2はすべての通貨ペア、株式、商品、暗号通貨で機能します 手順: 赤い矢印が表示されたらすぐにダウントレードを開き、青い矢印が表示されたら閉じます。青い矢印の後に開くこともできます。 試してテストしてください!推奨設定はデフォルトです! 日足チャートで最高の精度を示します! インディケータは、2600 Pipsの収益性に対して、約10Pipsという非常に小さなマージンを使用します。
Price Magnet — Price Density and Attraction Levels Indicator Price Magnet is a professional analytical tool designed to identify key support and resistance levels based on statistical Price Density. The indicator analyzes a specified historical period and detects price levels where the market spent the most time. These zones act as “magnets,” attracting price action or forming a structural base for potential reversals. Unlike traditional Volume Profile tools, Price Magnet focuses on price-time d
Elite Harmony Signals Pro Panoramica Elite Harmony Signals è un indicatore sofisticato di analisi tecnica che visualizza rettangoli dinamici che forniscono zone di trading chiare e segnali di conferma per decisioni migliorate. Caratteristiche Principali Zone Rettangolo Dinamiche Estensione in Tempo Reale : I rettangoli si estendono automaticamente all'azione corrente del prezzo Chiusura Intelligente : I rettangoli si chiudono solo quando appaiono segnali opposti Conferma Visiva : Zone di trading
Brandon Angelo Flag Pattern — how it works This indicator automatically detects classic bull and bear flag chart patterns in real time. The detection happens in three stages for each bar. First it looks for a flagpole — a sharp, strong directional move over a configurable number of bars ( FlagpoleBars , default 5) that must exceed a minimum percentage size ( FlagpoleMinPct ). For a bullish flag the pole must close net higher than it opened; for a bearish flag, net lower. Second it identifies th
STRICTLY FOR BOOM INDEX ONLY!!!!! Here I bring the Maximum Trend Arrows OT1.0 MT5 indicator. This indicator is made up of a combination of different trend indicators for entries and exits, for entries an orange arrow will paint on the chart below the current market and a red flag for closing of trades and it produces buy arrows only. When the orange arrow appears, it will appear along with it's sound to notify you. The 1H timeframe is recommended, don't use it anywhere else than on the 1H timefr
SMC Buy Sell Indicator SMC Buy Sell Indicator is a price action-based trading tool designed to identify market structure using Smart Money Concepts. It focuses on detecting meaningful swing points, structural breaks, and confirmation signals directly from chart data. The indicator operates using closed candle data and does not rely on future bars. All calculations are performed on confirmed price action, which helps maintain consistent and stable signals. Key Features Market Structure Detection
Introducing "X Marks the Spot" – Your Ultimate MetaTrader 5 Indicator for Perfect Trades! Are you tired of the guesswork in trading? Ready to take your MetaTrader 5 experience to a whole new level? Look no further – "X Marks the Spot" is here to revolutionize your trading strategy! What is "X Marks the Spot"? "X Marks the Spot" is not just another indicator – it's your personal trading compass that works seamlessly on all timeframes . Whether you're a beginner or an experienced trader,
インディケータは現在のクオートを作成し、これを過去のものと比較して、これに基づいて価格変動予測を行います。インジケータには、目的の日付にすばやく移動するためのテキスト フィールドがあります。 オプション: シンボル - インジケーターが表示するシンボルの選択; SymbolPeriod - 指標がデータを取る期間の選択; IndicatorColor - インジケータの色; HorisontalShift - 指定されたバー数だけインディケータによって描画されたクオートのシフト; Inverse - true は引用符を逆にします。false - 元のビュー。 ChartVerticalShiftStep - チャートを垂直方向にシフトします (キーボードの上下矢印)。 次は日付を入力できるテキストフィールドの設定で、「Enter」を押すとすぐにジャンプできます。
"Impulses and Corrections 5" is created to help traders navigate the market situation. The indicator shows multi-time frame upward and downward "Impulses" of price movements. These impulses are the basis for determining the "Base" , which is composed of zones of corrections of price movements, as well as "Potential" zones for possible scenarios of price movement. Up and down impulses are determined based on a modified formula of Bill Williams' "Fractals" indicator. The last impulse is always "U
ADVANCED FUNCTIONALITIES: Trend Score (0-100) with visual bar Intelligent signals with adjustable strength (1-10) Risk management with automatic TP/SL Audible and visual alerts Price zones with smooth filling Multi-indicator analysis (RSI, ATR, BB, EMAs) DESIGN FEATURES Modern Visual: Smooth and well-spaced lines (EMA with 2-3px width) Vibrant and professional colors (Sky Blue, Orange, Gold) Modern arrows (code 233/234) for buy/sell signals Configurable dark/light theme Adjustable transparency f
「調整可能なフラクタル」はフラクタル インジケーターの高度なバージョンで、非常に便利なトレーディング ツールです。 - ご存知のとおり、標準フラクタル MT5  インジケーターには設定がまったくありません。これはトレーダーにとって非常に不便です。 - 調整可能なフラクタルは、この問題を解決しました。必要な設定がすべて揃っています。 - インジケーターの調整可能な期間 (推奨値 - 7 以上)。 - 価格の高値/安値からの距離を調整可能。 - フラクタル矢印のデザインを調整可能。 - インジケーターにはモバイルおよび PC アラートが組み込まれています。 高品質のトレーディングロボットとインジケーターをご覧になるにはここをクリックしてください! これは、この MQL5 Web サイトでのみ提供されるオリジナル製品です。
Chỉ báo này sẽ thông báo cho bạn nếu cấu hình xu hướng thành công. Tín hiệu theo xu hướng không nên được tăng theo, nhưng tín hiệu mua ở mức giá thấp theo mô hình giao dịch thông thường của bạn, hoặc tín hiệu bán ở mức giá tốt, là một lựa chọn rất tốt. Hãy thiết lập nó trên khung thời gian lớn hơn và theo dõi các khung thời gian nhỏ hơn, bám sát các xu hướng chính. Tôi thường thiết lập ba khung thời gian gần nhau nhất và không bao giờ đi ngược tín hiệu của INdicator này. INdicator   này không có
HAS RSI Signal — SL/TP自動計算機能付き プロフェッショナル・トレンドインジケーター HAS RSI Signal は、信頼性の高いクラシックな手法と最新のノイズ除去アルゴリズムを融合させた強力なトレーディングツールです。 平均足スムーズド(Heiken Ashi Smoothed) と RSI を組み合わせることで、トレンドの転換点や買われすぎ・売られすぎ圏からの脱出タイミングを正確に捉え、明確なエントリーシグナルを提示します。 主な特徴: 二重のフィルタリング: 平均足スムーズドで市場の「ノイズ」を除去し、RSIで勢い(モメンタム)の強さを確認します。 損切り・利確ラインの自動計算: 単にシグナルを出すだけでなく、ボラティリティ( ATR )に基づいた最適なストップロス(SL) と テイクプロフィット(TP)を自動で算出します。 視覚的な分かりやすさ: シグナルはチャート上にカラーキャンドルとして表示されるため、一目でトレンドを把握でき、取引画面をスッキリと保てます。 充実の通知機能: アラート、音声、スマートフォンへのプッシュ通知機能を搭載。チャンスを逃すこと
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 mov
##   ONLY GOLD ##   Тiльки Золото ## **Mercaria Professional Trading Zones - Complete Guide** ## **Mercaria Professional Trading Zones - Повний посібник** ### **How Mercaria Zones Work / Як працюють зони Mercaria** **English:** Mercaria Zones is an advanced trading indicator that identifies high-probability support and resistance areas using ZigZag extremes combined with mathematical zone calculations. The indicator works on multiple timeframes simultaneously, providing a comprehensive view
All about time and price by ICT. This indicator provides a comprehensive view of ICT killzones, Silver Bullet times, and ICT Macros, enhancing your trading experience.  In those time windows price either seeks liquidity or imbalances and you often find the most energetic price moves and turning points. Features: Automatic Adaptation: The ICT killzones intelligently adapt to the specific chart you are using. For Forex charts, it follows the ICT Forex times: In EST timezone: Session: Asia: 20h00-0
The  SuperTrend Advance Trading  is a widely-used technical indicator based on  SuperTrend Strategy + Price Action + EMA . How it works: -  Buy/Sell Signals  can be generated when the trend reverses, the conditions of Price action, TrendLine and EMA are met. - After the  Signal  appears, be patient and wait until the candle closes, at that time place the order as soon as possible. You may have time to review your entry, consider whether it is a good entry or not. - Carefully review the entry, up
New Product Description for MadoCryptoXPro --- MadoCryptoXPro — The Smartest Crypto Warrior ️ Battle-tested on BTC & ETH. Built for real-time chaos. --- MadoCryptoXPro isn’t just another technical bot. It’s a battlefield machine designed to handle the madness of BTCUSD and ETHUSD with surgical precision. Whether the market is flat, trending, or just plain psycho — it stays focused, adapts fast, and protects your capital like a vault guard on Red Bull. --- Core Features: Smart
The ChanLun or Chan theory is one of the most popular trading theories in China. But it seems like that it has little influence in western countries. Actually, the Chan Theory is based on a sophisticated mathematical model. The basic idea ChanLun is to simplify the bar chart by its model. With the help of ChanLun, a trader can analyze and predict the trend of future goods, stocks. In ChanLun, there are several basic elements called fractals, strokes, line segments and pivots . A trader should pa
Supertrend   indicator uses a combination of a moving average and average true range to detect the trend of a trading instrument. Supertrend indicator for MetaTrader 5 easily shows the trend as a line following the price. You can use the second my indicator: You will see 3 supertrends and EMA 200 lines on the screen. Working with my product : https://www.mql5.com/en/market/product/80692
Gioteen Volatility Index (GVI) - your ultimate solution to overcoming market unpredictability and maximizing trading opportunities. This revolutionary indicator helps you in lowering your losing trades due to choppy market movements. The GVI is designed to measure market volatility, providing you with valuable insights to identify the most favorable trading prospects. Its intuitive interface consists of a dynamic red line representing the volatility index, accompanied by blue line that indicate
Ichimoku Kinko Hyo is a purpose-built trend trading charting system that has been successfully used in nearly every tradable market. It is unique in many ways, but its primary strength is its use of multiple data points to give the trader a deeper, more comprehensive view into price action. This deeper view, and the fact that Ichimoku is a very visual system, enables the trader to quickly discern and filter "at a glance" the low-probability trading setups from those of higher probability. This i
The Optimized MACD Divergence indicator is a powerful tool designed to identify potential trading opportunities by detecting divergences between price action and the MACD indicator. It combines classic divergence analysis with candlestick pattern recognition and volume filtering to provide more accurate and reliable signals. How it Works The indicator operates on the following principles: MACD Calculation:   It calculates the MACD indicator using user-defined parameters for fast EMA, slow EMA,
このプロダクトを購入した人は以下も購入しています
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
MetaTrader 5 向けスマート多層ブレイクアウト&プルバック検出器 「スマート・シンプル・ファスト!」 高確率のブレイクアウトエントリーを見逃すことにうんざりしていませんか? 複数のチャートを何時間もスキャンし、ブレイクアウトをトレンド方向と通貨のモメンタムに合わせようとして、それでも動きを逃してしまうことはありませんか? Break Pullback は、1つのインジケーターでそのすべてを解決します。 Break Pullback とは何ですか? Break Pullback は、マーケットストラクチャー、ブレイクアウト、トレンド継続のセットアップを取引するトレーダー向けに特別に設計されたプロフェッショナルグレードの MetaTrader 5 インジケーターです。 リアルタイムで複数の通貨ペアにわたるブレイクとプルバックの形成を自動的に検出し、3層の確認を通じてすべてのシグナルをフィルタリングします: ストラクチャラルブレイクアウト検出 — チャート上の主要なブレイクレベルを特定 HTF 日足バイアス — エントリーを支配的な日足トレンド方向に合わせる 通貨強弱指数 —
OmniSync Projection
Antonio-alin Teculescu
5 (1)
Chronos Fractal Engine is an innovative price projection indicator for MetaTrader 5, designed to transform your technical analysis by intelligently identifying and projecting historical price patterns. Built upon an advanced correlation algorithm and the fractal principles of the market, this powerful tool visualizes potential future price movements, giving you a unique edge in your trading decisions. What is Chronos Fractal Engine? At its core, the Chronos Fractal Engine employs a sophisticat
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
AriX
Temirlan Kdyrkhan
1 (4)
AriX Indicator for MT5 A powerful trend-following and signal-evaluation tool AriX 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 with real-time stat
Introducing Assembler:  The best value for money,  Designed for advanced traders and professionals, yet accessible for ambitious beginners ready to elevate their trading game. Great for ICT, SMC, TREND and breakout traders . Combining advanced analytics, a sleek graphical interface, and highly customizable features, Assembler empowers you to trade with precision, clarity, and confidence. Key Features of Assembler 1. Dynamic Graphical User Interface (GUI): A fully draggable, customizable interf
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.5 TRENDMAESTRO recognizes a new TREND from the start, 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 da
IVISTscalp5
Vadym Zhukovskyi
5 (6)
iVISTscalp5 — 時間ベースの市場予測システム iVISTscalp5は一般的なインジケーターではありません。 MetaTrader 5向けの時間ベースの予測システムであり、 市場がいつ動く可能性が高いかを特定します。 ⸻ 特徴  • 正確なタイミング  • BUY / SELL予測  • 平均利益の可能性  • 週間予測  • 120以上の金融商品 ⸻ コンセプト 市場は価格だけでなく時間によっても動く ⸻ iVISTscalp5 — 時間による優位性 iVISTscalp5インジケーターをご紹介します。このインジケーターは、トレーディングにおいて独自でありながら効果的です。時間データに基づくこのインジケーターは、多年にわたる経験と金融市場の深い分析の結果です。iVISTscalp5インジケーターは、手動トレーディングにとって優れたツールです。便利さ、簡単さ、可視化 - すべての複雑さが内部に隠されています。私たちは、iVISTscalp5インジケーターの設定と使用を最大限に簡素化しました。このインジケーターは、MT5ターミナルにあるすべての金融商品
ZIVA Signal Intelligence
Hassan Abdullah Hassan Al Balushi
ZIVA Signal Intelligence An Adaptive, Modular Market Intelligence System ZIVA Signal Intelligence is not positioned as a conventional trading indicator. It is a fully integrated, proprietary market intelligence system engineered to deliver structured, high-precision interpretation of price behavior within a controlled analytical environment. Developed through an independent architectural approach, ZIVA does not rely on, derive from, or replicate existing indicators. It represents a standalone
SunSignal ML — AI Gold Signals with Multi-Timeframe Confluence SunSignal ML is an advanced AI-powered signal indicator purpose-built for XAUUSD gold trading. It combines a proprietary adaptive trend algorithm with six machine learning models trained on confirmed price pivots to produce high-confidence entry signals with multi-timeframe validation. The indicator runs efficiently on M1, M5 and M15 timeframes and is designed for traders who want precision entries guided by data rather than guesswor
A tool for on-chart strategy backtesting and performance analysis. A utility for developing, debugging, and testing custom trading ideas and indicator functions. An indicator designed to quickly test trading concepts and visualize the effectiveness of different input parameters. An all-in-one sandbox for testing everything from simple crossovers to complex, multi-condition trading systems.
この位置が買いに適しているかどうかの判断をサポートします。 この位置が売りに適しているかどうかの判断をサポートします。 4つの指標が同時に底に達した場合は、反発のチャンスに注目してください。 4つの指標が同時に天井付近にある場合は、下落のチャンスに注目してください。 本システムは、中国の先進的なアルゴリズム技術と高度な数学モデリング体系に基づいて構築されています。 私は主に XAUUSD M5 でこの指標を使用しており、この時間足が最も良い結果を示します。 この指標のアルゴリズムと数式は非常に複雑なため、テスト時に動作が遅くなる場合があります。テストでは、リペイントの有無と遅れの有無を確認してください。正式版では実際の使用時により安定します。 この指標システムはリペイントせず、未来データも使用しません。ご購入前にご自身でテストしてご確認いただけます。 この指標には完全にカスタマイズ可能なアラートシステムが搭載されており、以下のリンクからご確認いただけます。 正式に使用する前に、完全な使用説明を十分にお読みください。 ご不明な点がございましたら、どうぞお早めにご連絡ください。できるだけ早
ARIScalp 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 Cus
*** ### **Triple Crox Strategy - Professional Trading System** **Overview** The Triple Crox Strategy is an advanced technical indicator for MetaTrader 5, designed for serious traders. It synthesizes multiple analysis methodologies—including moving averages, Average True Range (ATR), Relative Strength Index (RSI), and cloud configurations—to generate highly reliable and precise trading signals. **Core Configuration** **Setup Types** *   **Setup Open/Close:** Utilizes Heikin Ashi can
Red and Green Light – Intelligent Trading Signal Indicator Product Overview Red and Green Light is a professional trading signal indicator based on the multi-stage T3 smoothing algorithm. It integrates a visual traffic light system, intelligent signal recognition, risk alerts, and multiple notification features. Whether you're a manual trader or an Expert Advisor (EA) developer, this indicator helps you capture market opportunities with greater precision and effectively avoid the risks of
Big Player Range
Thalles Nascimento De Carvalho
5 (3)
BigPlayerRange — MT5向け最強インジケーター BigPlayerRange は、MetaTrader 5 で日経ミニやドル先物などの取引において、 最も効果的なインジケーター と評価されています。大口投資家(機関投資家)の行動を可視化し、高精度なテクニカル分析を可能にします。 どのように機能するのか? BigPlayerRangeは、買い圧力ゾーン(緑ライン)と売り圧力ゾーン(赤ライン)を描画し、価格がその範囲を超えるとトレンド方向への動きを示唆します。 緑のライン上で終値: 買いの勢いが強く、上昇トレンドの可能性。 赤のライン下で終値: 売り圧力が優勢で、下落が予想される。 範囲内での価格: レンジ相場でブレイクを待つ段階。 主なメリット: 機関投資家ゾーンの検出: 大口のエントリーポイントを視覚化。 自動ターゲット計算: 利確ポイントを戦略的に設定。 プルバックの可能性分析: リスク管理に役立つ情報提供。 推奨の使い方: Imbalance DOM Pro と併用してゾーンブレイクを確認。 SwingVolum
Jita Indicator Pro MT5 | All Timeframes Professional Trend Agreement System – Premium Edition ($500) What Is Jita Indicator Pro? Jita Indicator Pro is a structured trend-confirmation system designed for serious traders who value precision, alignment, and controlled signal behavior. It combines: Advanced band-based trend direction logic ATR-driven structural trigger engine Dual-confirmation agreement system Locked history update design This indicator prints signals only when multiple conditions
VTrende Pro
Andrii Diachenko
5 (1)
VTrende Pro - MTF indicator for trend trading with a display panel for MT5 *** Videos can be translated into any language using subtitles (video language - Russian) Although the signals of the VTrende Pro indicator can be used as signals of a full-fledged trading system, it is recommended to use them in conjunction with the Bill Williams TS. VTrende Pro is an extended version of the VTrende indicator. Difference between Pro version and VTrende: - Time zones - Signal V - signal 1-2 waves -    S
Recommended TimeFrame >= H1. 100% Non Repainted at any moment.  Use it carefully, only with Trend Direction. Trading Usage: 2 Variants: as Range System or as BreakOut System (Both Only With Trend Direction)::: (Always use StopLoss for minimise Risk); [1] as Range System: (Recommended) in UP TREND:  - BUY in Blue Line , then if price goes down by 50 points (on H1) open Second BUY.   Close in any Profit you wish: TrailingStop(45 points) or Close when Price touches upper Gold Line. in DOWN TREND
MATADOR GOLD — XAUUSD M5 ( TimeFrame M5 ) Scalp Signals for MT5 Strategy Tester Visualization Video https://youtu.be/_cWbbyg2RSs Not every move deserves a signal. MATADOR GOLD was built for traders who prefer selective, structured, high-quality decision support over noisy, hyperactive signal tools. Designed specifically for Gold (XAUUSD / GOLD) on M5 , MATADOR helps you read short-term momentum with more discipline by combining trend logic, market-condition filters, momentum timing, spread pro
This is an advanced indicator used with success rate.Unlock the secrets of trading Boom and Crash spikes with our powerful MT5 indicator! This spike detection tool provides accurate buy and sell signals, trade alerts, and High success rate entries. Perfect for scalping, day trading, and swing trading. Get the best Boom and Crash strategy with our Deriv Boom and Crash spike indicator. Indicator does not redraw or repaint. Recommendation · Use a Virtual Private Server (VPS) for 24/7 alerts on mob
The Expert Advisor and the video are attached in the Discussion tab . The robot applies only one order and strictly follows the signals to evaluate the indicator efficiency. Pan PrizMA CD Phase is an option based on the Pan PrizMA indicator. Details (in Russian). Averaging by a quadric-quartic polynomial increases the smoothness of lines, adds momentum and rhythm. Extrapolation by the sinusoid function near a constant allows adjusting the delay or lead of signals. The value of the phase - wave s
Классификатор силы тренда. Показания на истории не меняет. Изменяется классификация только незакрытого бара. По идее подобен полной системе ASCTrend, сигнальный модуль которой, точнее его аппроксимация в несколько "урезанном" виде, есть в свободном доступе, а также в терминале как сигнальный индикатор SilverTrend . Точной копией системы ASCTrend не является. Работает на всех инструментах и всех временных диапазонах. Индикатор использует несколько некоррелируемых между собой алгоритмов для класси
FFx Universal Strength Meter PRO is more than a basic strength meter. Instead of limiting the calculation to price, it can be based on any of the 19 integrated strength modes + 9 timeframes. With the FFx USM, you are able to define any period for any combination of timeframes. For example, you can set the dashboard for the last 10 candles for M15-H1-H4… Full flexibility! Very easy to interpret... It gives a great idea about which currency is weak and which is strong, so you can find the best pai
The FFx Universal MTF alerter shows on a single chart all the timeframes (M1 to Monthly) with their own status for the chosen indicator. 9 indicators mode (MACD-RSI-Stochastic-MA-ADX-Ichimoku-Candles-CCI-PSAR). Each can be applied multiple times on the same chart with different settings. Very easy to interpret. Confirm your BUY entries when most of the timeframes are showing green color. And confirm your SELL entries when most of the timeframes are showing red color. 2 Alert Options : input to s
The FFx Watcher PRO is a dashboard displaying on a single chart the current direction of up to 15 standard indicators and up to 21 timeframes. It has 2 different modes: Watcher mode: Multi Indicators User is able to select up to 15 indicators to be displayed User is able to select up to 21 timeframes to be displayed Watcher mode: Multi Pairs User is able to select any number of pairs/symbols User is able to select up to 21 timeframes to be displayed This mode uses one of the standard indicators
FFx Patterns Alerter gives trade suggestions with Entry, Target 1, Target 2 and StopLoss .... for any of the selected patterns (PinBar, Engulfing, InsideBar, OutsideBar) Below are the different options available: Multiple instances can be applied on the same chart to monitor different patterns Entry suggestion - pips to be added over the break for the entry 3 different options to calculate the SL - by pips, by ATR multiplier or at the pattern High/Low 3 different options to calculate the 2 TPs -
MetaTrader 4 version available here : https://www.mql5.com/en/market/product/24881 FFx Basket Scanner is a global tool scanning all pairs and all timeframes over up to five indicators among the 16 available. You will clearly see which currencies to avoid trading and which ones to focus on. Once a currency goes into an extreme zone (e.g. 20/80%), you can trade the whole basket with great confidence. Another way to use it is to look at two currencies (weak vs strong) to find the best single pairs
MetaTrader 4 version available here: https://www.mql5.com/en/market/product/25793 FFx Pivot SR Suite PRO is a complete suite for support and resistance levels. Support and Resistance are the most used levels in all kinds of trading. Can be used to find reversal trend, to set targets and stop, etc. The indicator is fully flexible directly from the chart 4 periods to choose for the calculation: 4Hours, Daily, Weekly and Monthly 4 formulas to choose for the calculation: Classic, Camarilla, Fibonac
ClassicSBA
Umri Azkia Zulkarnaen
this indicator very simple and easy if you understand and agree with setup and rule basic teknical sba you can cek in link : please cek my youtube channel for detail chanel : an for detail info  contact me  basicly setup buy (long) for this indicator is Magenta- blue and green candle or magenta - green  and green candlestik and for setup sell (short) is Black - yellow - and red candle or black - red  and red candlestik
フィルタ:
レビューなし
レビューに返信