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 FIXE
CosmiCLab SMC FIBO CosmiCLab SMC FIBO — это профессиональный торговый индикатор, основанный на концепциях Smart Money Concepts (SMC), анализе структуры рынка и уровнях Fibonacci. Индикатор автоматически определяет свинги рынка и строит уровни Fibonacci по последнему импульсному движению. Также индикатор определяет ключевые изменения структуры рынка: BOS — Break Of Structure CHOCH — Change Of Character Дополнительно отображаются сигнальные стрелки BUY / SELL при пробое структуры. Индикатор подход
RBreaker Gold Indicators — это краткосрочная внутридневная торговая стратегия для фьючерсов на золото, которая сочетает в себе два подхода: трендовое следование и внутридневные развороты. Она позволяет не только получать прибыль при трендовом движении, но и своевременно фиксировать прибыль при развороте рынка, открывая позиции в новом направлении. Данная стратегия на протяжении 15 лет подряд входила в десятку самых прибыльных торговых стратегий по версии американского журнала Futures Truth. Она
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
Premium level - это уникальный индикатор с точностью правильных прогнозов  более 80%!  Данный индикатор тестировался более двух месяцев лучшими Специалистами в области Трейдинга!  Индикатор авторский такого вы больше не где не найдете!  По скриншотах можете сами увидеть точностью данного инструмента!  1 отлично подходит для торговли бинарными опционами со временем экспирации на 1 свечу. 2 работает на всех валютных парах, акциях, сырье, криптовалютах Инструкция: Как только появляется красная стре
Price Magnet — Индикатор зон плотности цены и уровней притяжения Price Magnet — это профессиональный аналитический инструмент, который определяет ключевые уровни поддержки и сопротивления на основе статистической плотности распределения цены (Price Density). Индикатор анализирует заданный исторический период и находит ценовые значения, на которых рынок находился дольше всего. Эти зоны выступают в роли «магнитов» — они притягивают цену или служат фундаментом для разворота. В отличие от стандартны
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,
Индикатор строит текущие котировки, которые можно сравнить с историческими и на этом основании сделать прогноз ценового движения. Индикатор имеет текстовое поле для быстрой навигации к нужной дате. Параметры : Symbol - выбор символа, который будет отображать индикатор; SymbolPeriod - выбор периода, с которого индикатор будет брать данные; IndicatorColor - цвет индикатора; Inverse - true переворачивает котировки, false - исходный вид; Далее идут настройки текстового поля, в которое можно ввес
"Impulses and Corrections 5" создан для того, чтобы помочь трейдерам ориентироваться в рыночной ситуации. Индикатор показывает мультитаймфреймовые восходящие и нисходящие импульсы ценовых движений. Эти импульсы служат основой для определения "Базы" , состоящей из зон "Коррекции" ценовых движений, а также имеет "Потенциальные" зоны для возможных сценариев движения цены. Восходящие и нисходящие импульсы определяются на основе модифицированной формулы индикатора "Фракталы" Билла Вильямса. Последни
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
"Adjustable Fractals" - это расширенная версия индикатора фракталов, очень полезный инструмент для торговли! - Как мы знаем, стандартный индикатор fractals MT5 вообще не имеет настроек - это очень неудобно для трейдеров. - Adjustable Fractals решил эту проблему - в нем есть все необходимые настройки: - Настраиваемый период индикатора (рекомендуемые значения - выше 7). - Настраиваемое расстояние от максимумов/минимумов цены. - Настраиваемый дизайн фрактальных стрелок. - Индикатор имеет встроенны
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 и осциллятора RSI, предоставляя трейдеру четкие сигналы на вход в моменты разворота тренда или выхода из зон перекупленности/перепроданности. Основные преимущества: Двойная фильтрация: Использование Heiken Ashi Smoothed позволяет искл
Профессиональный эксперт форекс   Gyroscope (для пар EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY)  ализирующий рынок при помощи индекса волн эллиота. Волновая теория Эллиотта — интерпретация процессов на финансовых рынках через систему визуальных моделей (волн) на ценовых графиках.  Автор теории Ральф Эллиотт выделил восемь вариантов чередующихся волн (из них пять по тренду и три против тренда). Движение цен на рынках принимает форму пяти волн
##   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, предназначенный для торговли по тренду, успешно используется практически на всех рынках. Данный индикатор уникален во многих отношениях, однако его главное преимущество заключается в предоставлении трейдерам множества ориентиров, позволяющих составить более глубокое и полное представление о движении цены. Эта глубина анализа и исключительная наглядность индикатора позволяет трейдерам быстро увидеть торговые возможности и выделить среди них наиболее перспективные. Пр
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,
С этим продуктом покупают
ARIBot 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
Умный многослойный детектор пробоя и отката для MetaTrader 5 «Умно. Просто. Быстро!» Устали упускать точки входа с высокой вероятностью пробоя? Тратите часы на просмотр нескольких графиков, пытаясь совместить пробои с направлением тренда и динамикой валют — и всё равно упускаете движение? Break Pullback решает всё это с помощью одного индикатора. Что такое Break Pullback? Break Pullback — это профессиональный индикатор MetaTrader 5, созданный специально для трейдеров, торгующих по структуре ры
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
Assembler
Darko Licardo
5 (1)
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 — это не обычный индикатор.  Это система прогнозирования по времени (timing) для MetaTrader 5, которая показывает, когда рынок с наибольшей вероятностью будет двигаться. В чем отличие? Вместо анализа только цены, индикатор работает с:  • временными циклами  • рыночными ритмами  • повторяющимися временными закономерностями Возможности  • точные временные зоны (timing)  • прогноз BUY / SELL  • расчет среднего потенциал
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.
Помогает определить, подходит ли эта точка для покупки. Помогает определить, подходит ли эта точка для продажи. Когда все четыре индикатора одновременно находятся внизу, следует обратить особое внимание на возможности отскока. Когда все четыре индикатора одновременно находятся наверху, следует обратить особое внимание на возможности снижения. Эта система создана на основе передовых китайских алгоритмических технологий и высокоуровневой системы математического моделирования. Я в основном использ
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» Описание продукта Red and Green Light — это профессиональный индикатор торговых сигналов, основанный на многоступенчатом сглаживающем алгоритме T3. Он объединяет визуальную систему «светофора», интеллектуальное распознавание сигналов, оповещения о рисках и многоуровневую систему уведомлений. Независимо от того, являетесь ли вы ручным трейдером или разработчиком советников (EA), этот индикатор поможет вам точнее улавливать р
Big Player Range
Thalles Nascimento De Carvalho
5 (3)
BigPlayerRange — Лучший Индикатор для РТС и USD/RUB | MetaTrader 5 Откройте для себя BigPlayerRange — лучший индикатор для РТС, USD/RUB и других активов в терминале MetaTrader 5. Этот профессиональный инструмент выделяет ключевые зоны активности крупных игроков и предоставляет точный институциональный анализ движения цены. Как Работает Индикатор: BigPlayerRange отображает две горизонтальные области, построенные на основе анализа объема: Зелёная зона — область, где покупатели защищают цен
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 - МТФ индикатор для трендовой торговли с панелью индикации для МТ5 !!! - Подробное описание на русском языке под видео (на Youtube) - !!! Хотя сигналы индикатора VTrende Pro можно использовать, как сигналы полноценной торговой системы, рекомендуется применять их в связке с ТС Билла Вильямса. VTrende Pro - это расширенная версия индикатора VTrende . Отличие Pro версии от VTrende: - Временные зоны - Сигнал V - сигнал 1-2 волн Основная задача индикатора - определить точки изменения н
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
Робот с видео приложен во вкладке "Обсуждение" , он работает одним ордером и только по сигналам для оценки эффективности индикатора. Pan PrizMA CD Phase является опцией, построенной на базе индикатора Pan PrizMA . Подробнее . Усреднение полиномом второй-четвертой степени повышает гладкость линий, добавляет инерцию и соответственно ритмичность. Экстраполяция функцией синусоиды около константы позволяет регулировать запаздывание или опережение. Значение фазы - параметра состояния волны (близко по
Классификатор силы тренда. Показания на истории не меняет. Изменяется классификация только незакрытого бара. По идее подобен полной системе ASCTrend, сигнальный модуль которой, точнее его аппроксимация в несколько "урезанном" виде, есть в свободном доступе, а также в терминале как сигнальный индикатор SilverTrend . Точной копией системы ASCTrend не является. Работает на всех инструментах и всех временных диапазонах. Индикатор использует несколько некоррелируемых между собой алгоритмов для класси
FFx Universal Strength Meter PRO - это больше, чем простой измеритель силы. Вместо того, чтобы ограничивать расчет ценой, его значения могут быть основаны на любом из 19 встроенных режимов измерения силы + 9 таймфреймов. С FFx USM вы сможете задавать любой период для любой комбинации таймфреймов. Например, вы можете установить панель на последние 10 свечей на M15-H1-H4… Полная гибкость! Простая интерпретация... Это дает отличное представление о том, какие валюты слабые и сильные, поэтому вы смож
Индикатор FFx Universal MTF Alerter показывает все тайфреймы (от M1 до месячного) на одном графике, отображая статус выбранного индикатора на каждом из них. 9 индикаторов (MACD-RSI-Stochastic-MA-ADX-Ichimoku-Candles-CCI-PSAR). Каждый из них можно несколько раз применять на одном графике с различными настройками. Простая интерпретация. Сделки на покупку подтверждаются, когда большинство таймфреймов показывается зеленым цветом. А сделки на продажу подтверждаются, когда большинство таймфреймов пока
FFx Watcher PRO - панель для отображения на одном графике текущего направления стандартных индикаторов (до 15 одновременно) на нескольких таймфреймах (до 21). Панель работает в двух режимах: Режим Watcher: Мульти-индикаторный Пользователь может выбрать до 15 индикаторов для отображения Пользователь может выбрать до 21 таймфрейма для отображения Режим Watcher: Мультивалютный Пользователь может выбрать любое количество символов Пользователь может выбрать до 21 таймфрейма для отображения В этом реж
Индикатор FFx Patterns Alerter дает торговые рекомендации по входу в рынок, по уровням TP 1, TP 2 и SL на основе любого из выбранных паттернов (PinBar, Engulfing, InsideBar, OutsideBar) Предлагаются следующие варианты: Для работы с несколькими парами можно запускать несколько экземпляров индикатора на одном графике. Рекомендации по входу - количество пипсов, которые будут добавлены после пробоя для входа в рынок 3 различных варианта расчета SL - по пипсам, с использованием множителя ATR или по м
Версия для MetaTrader 4 доступна здесь : https://www.mql5.com/ru/market/product/24881 FFx Basket Scanner ищет до пяти индикаторов среди 16 доступных на всех парах и таймфреймах. Таким образом вы можете ясно увидеть торговли по каким валютам следует избегать, а на каких сосредоточить внимание. Когда валюта переходит в экстремальную зону (например, 20/80%), вы можете торговать всей корзиной с большей уверенностью. Другая область применения индикатора – определение сильных и слабых валют для поиск
Версия для MetaTrader 4 доступна здесь: https://www.mql5.com/ru/market/product/25793 FFx Pivot SR Suite PRO - это полный набор инструментов для построения уровней поддержки и сопротивления. Поддержка и сопротивление - самые используемые уровни во всех видах торговли. Их можно использовать для поиска разворотов тренда, установки уровней тейк-профита и стоп-лосса и т.д. Индикатор можно полностью настроить непосредственно с графика Выбор из 4 периодов для расчетов: 4-часовой, дневной, недельный и
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
Фильтр:
Нет отзывов
Ответ на отзыв