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.


Prodotti consigliati
CCI Fixed Dual
Edoardo Centorame
Cos è il CCI FIXED DUAL Il CCI FIXED DUAL è un Trend Direction Filter professionale, progettato per identificare con precisione: la direzione dominante del mercato la qualità strutturale del movimento la coerenza tra trend principale e fasi di accelerazione Non è un indicatore di ingresso diretto. Non è un oscillatore classico. È uno strumento di contesto, pensato per aiutare il trader a decidere quando operare e quando NON operare, riducendo drasticamente il rumore e gli errori di interpretazio
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
Zhong Long Wu
RBreaker Gold Indicators is a short-term intraday trading strategy for gold futures that combines trend following and intraday reversal approaches. It not only captures profits during trending markets but also enables timely profit-taking and counter-trend trading during market reversals. This strategy has been ranked among the top ten most profitable trading strategies by the American magazine   Futures Truth   for 15 consecutive years. It boasts a long lifecycle and remains widely used and st
Renko System
Marco Montemari
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
Informazioni sull'indicatore Questo indicatore si basa sulle simulazioni Monte Carlo sui prezzi di chiusura di uno strumento finanziario. Per definizione, Monte Carlo è una tecnica statistica utilizzata per modellare la probabilità di diversi risultati in un processo che coinvolge numeri casuali basati su risultati osservati in precedenza. Come funziona? Questo indicatore genera diversi scenari di prezzo per un titolo modellando i cambiamenti di prezzo casuali nel tempo sulla base dei dati stor
# 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
Il livello Premium è un indicatore unico con una precisione superiore all'80% delle previsioni corrette! Questo indicatore è stato testato dai migliori Specialisti di Trading per più di due mesi! L'indicatore dell'autore che non troverai da nessun'altra parte! Dagli screenshot puoi vedere di persona la precisione di questo strumento! 1 è ottimo per il trading di opzioni binarie con un tempo di scadenza di 1 candela. 2 funziona su tutte le coppie di valute, azioni, materie prime, criptovalu
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
Flag Pattern Angelo
Brighton Mufaro Mudzingwa
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,
L'indicatore costruisce le quotazioni attuali, che possono essere confrontate con quelle storiche e su questa base fanno una previsione del movimento dei prezzi. L'indicatore ha un campo di testo per una rapida navigazione fino alla data desiderata. Opzioni: Simbolo - selezione del simbolo che visualizzerà l'indicatore; SymbolPeriod - selezione del periodo da cui l'indicatore prenderà i dati; IndicatorColor - colore dell'indicatore; HorisontalShift - spostamento delle virgolette disegnate d
"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
Pro Gold System Indicator
PEDRO JOAQUIM GONCALVES GOMES
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" - è una versione avanzata dell'indicatore frattale, uno strumento di trading molto utile! - Come sappiamo, l'indicatore MT5  Standard fractals non ha impostazioni, il che è molto scomodo per i trader. - Adjustable Fractals ha risolto questo problema, ha tutte le impostazioni necessarie: - Periodo regolabile dell'indicatore (valori consigliati: superiori a 7). - Distanza regolabile dai massimi/minimi del prezzo. - Design regolabile delle frecce frattali. - L'indicatore è do
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 — Indicatore di Tendenza Professionale con Calcolo SL/TP HAS RSI Signal è un potente strumento di trading che combina classici intramontabili con moderni algoritmi di filtraggio del rumore. L'indicatore analizza il mercato attraverso le candele Heiken Ashi Smoothed (HAS) e l'oscillatore RSI , fornendo al trader segnali di ingresso chiari durante le inversioni di tendenza o l'uscita dalle zone di ipercomprato/ipervenduto. Vantaggi Principali: Doppio Filtraggio: L'uso di Heiken Ashi
Gyroscopes mt5
Nadiya Mirosh
5 (2)
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
Chanlun
Xiaonong Yu
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,
Gli utenti di questo prodotto hanno anche acquistato
ARIPoint
Temirlan Kdyrkhan
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
Rilevatore intelligente multistrato di breakout e pullback per MetaTrader 5 "Intelligente. Semplice. Veloce!" Sei stanco di perdere entrate su breakout ad alta probabilità? Passi ore a scansionare più grafici, cercando di allineare i breakout con la direzione del trend e il momentum delle valute — solo per perdere il movimento? Break Pullback risolve tutto questo con un solo indicatore. Cos'è Break Pullback? Break Pullback è un indicatore MetaTrader 5 di livello professionale, progettato speci
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
ARICoins
Temirlan Kdyrkhan
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
TrendMaestro5
Stefano Frisetti
Attenzione alle truffe, questo indicatore e' distribuito esclusivamente su MQL5.com nota: questo indicatore e' per METATRADER5, se vuoi la versione per  METATRADER4 questo e' il link:   https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.5 TRENDMAESTRO   riconosce un nuovo TREND sul nascere, non sbaglia mai. La sicurezza di identificare un nuovo TREND non ha prezzo. DESCRIZIONE TRENDMAESTRO identifica un nuovo TREND sul nascere, questo indicatore prende in esame la volatilita' i
IVISTscalp5
Vadym Zhukovskyi
5 (6)
iVISTscalp5 — Sistema di previsione del mercato basato sul tempo iVISTscalp5 non è un indicatore tradizionale. È un sistema basato sul tempo per MetaTrader 5, che identifica quando il mercato è più probabile che si muova. ⸻ Caratteristiche  • Timing preciso  • Segnali BUY / SELL  • Potenziale medio di profitto  • Previsioni settimanali  • 120+ strumenti ⸻ Idea chiave Il mercato non si muove solo per il prezzo, ma anche per il tempo ⸻ iVISTscalp5 — Il tuo vantaggio nel tempo
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
Pantera Indicator
Temirlan Kdyrkhan
5 (1)
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.
Aiuta a determinare se questo punto è adatto per acquistare. Aiuta a determinare se questo punto è adatto per vendere. Quando tutti e quattro gli indicatori raggiungono contemporaneamente il fondo, occorre concentrarsi sulle opportunità di rimbalzo. Quando tutti e quattro gli indicatori si trovano contemporaneamente nella parte alta, occorre concentrarsi sulle opportunità di ribasso. Questo sistema è costruito sulla base di avanzate tecnologie algoritmiche cinesi e di una struttura di modellazio
ARIScalping
Temirlan Kdyrkhan
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** Triple Crox Strategy is an advanced technical indicator for MetaTrader 5 that combines multiple analysis methods to provide precise trading signals. Designed for serious traders, this indicator integrates multiple strategies based on moving averages, ATR, RSI, and cloud settings to identify market opportunities with high reliability. **Main Configuration** **Setup Types** *   **Setup Open/Close:** Based on Heikin Ash
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 – Il miglior indicatore per MT5 BigPlayerRange è considerato il miglior indicatore per Mini Indice e Mini Dollaro su MetaTrader 5. Questo strumento essenziale evidenzia le zone strategiche di azione dei grandi player, offrendo un’analisi tecnica istituzionale di altissima precisione. Come usare BigPlayerRange: Questo indicatore mostra zone di acquisto (linea verde) e di vendita (linea rossa). Quando il prezzo chiude fuori da queste aree, è probabile un movimento di tendenz
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
Filtro:
Nessuna recensione
Rispondi alla recensione