Time based Range Breakout

5

Message me if any issue or settings question. I am pleased to help!

Time-based Range Breakout EA – Version 2.00 (English Version)

1. Overview

Time-based Range Breakout EA (v2.00) is an intraday breakout strategy that defines a daily high/low zone based on a specified start time plus duration. Once the price breaks out of this zone, the EA automatically places Buy Stop / Sell Stop orders to capture potential continuation moves. In this version, multiple new calculation modes and logic have been added for Take Profit / Stop Loss (TP/SL), Trailing Stop (TSL), and Range Filter, making the strategy more adaptable to different trading preferences and market conditions.

Key Features

  1. Multiple TP/SL Calculation Methods

    • Range Factor (Range Size × Factor)

    • Distance Percent (relative to entry price)

    • Points (fixed number of points)

  2. TSL / BE with Different Bases

    • Choose Points or Percent (relative to entry price) for TSL and Break Even calculations.

  3. SL = 0 + Risk Percent

    • If you use a risk-based lot mode (non-fixed) and SL Value=0, then for Buy trades the EA treats SL as market price 0, and for Sell trades as current price × 2 for risk/lot calculation purposes.

  4. Rounding Up to an Integer

    • If TSL or BE is set in Points, any decimal values are automatically rounded to the nearest integer.

    • Likewise, when using Points in the Range Filter, the EA will round Range Filter Min/Max decimals to the nearest integer.

2. EA Parameter Explanation (Inputs)

Below are the input parameters grouped as in the code (Volume Settings, Order Settings, etc.), describing each one’s purpose and special behaviors.

2.1 +--- Volume Settings ---+

  1. Volume Mode

    • Description: Determines how the EA calculates lot size. Options:

      • Volume Fixed: A fixed lot size

      • Volume Fixed Per Account Balance: Fixed lots per account balance

      • Volume Risk By Base Balance Percent: Risk percentage using a custom Base Balance

      • Volume Risk By Account Balance Percent: Risk percentage using the current account balance

      • Volume Risk By Account Equity Percent: Risk percentage using the current account equity

  2. Fixed Lots

    • Description: Used if Volume Mode = Volume Fixed (a strictly fixed lot size).

  3. Fixed Lots Per Account Balance

    • Description: If Volume Mode = Volume Fixed Per Account Balance, defines how many lots to trade per a certain amount of account balance (e.g., 0.01 lots per $1000).

  4. Risk Percentage of Base or Account Balance

    • Description: In any “Risk Percent” mode (Volume Risk...), sets the percentage risk per trade. The EA dynamically calculates lot size based on the SL distance.

  5. Base Balance

    • Description: Used only in Volume Risk By Base Balance Percent mode to define a custom base balance for risk calculations.

2.2 +--- Order Settings ---+

  1. Order Buffer Points

    • Description: How many points (pips) to add (or subtract) from the breakout level for buy/sell stop orders. 0 = no buffer.

  2. TP Calculation Method

    • Description: The method for calculating Take Profit (TP). Options:

      • Calculation Method In Range Size x Factor: Range factor

      • Calculation Method In Distance Percent: Distance as a percent of entry price

      • Calculation Method In Points: A fixed number of points

  3. Tp Value

    • Description: The parameter value corresponding to the chosen TP Calculation Method:

      • Range Factor => e.g., 1.0 = 1 × range size

      • Distance Percent => e.g., 1.0 = ±1% of entry price

      • Points => e.g., 50 = 50 points

    • 0 = no TP.

  4. SL Calculation Method

    • Description: The method for calculating Stop Loss (SL). Same categories:

      • Calculation Method In Range Size x Factor

      • Calculation Method In Distance Percent

      • Calculation Method In Points

  5. SL Value

    • Description: The numerical value for SL, corresponding to the SL Calculation Method. 0 = no SL.

      • If the EA is using a risk-based lot mode (non-fixed) and SL Value=0, it will:

        • Buy => SL is treated as market price 0

        • Sell => SL is treated as current price × 2

      • This allows the EA to compute the risk-based lot size (though no actual SL is placed).

2.3 +--- Time Settings ---+

  1. Range Start Hour / Range Start Minute

    • Description: The hour/minute that marks the start time for observing the day’s high/low zone.

  2. Range Length Min from Start

    • Description: The duration (in minutes) for which the EA measures high/low from the start time (e.g., 90 minutes).

  3. Delete Orders Hour / Delete Orders Minute

    • Description: The hour/minute to delete any unfilled pending orders.

  4. Use Time Close

    • Description: Whether to close all positions at a specific time. If true, the following close time parameters are enabled.

  5. Time Close Hour / Time Close Minute

    • Description: The hour/minute to force-close all open positions (requires Use Time Close = true).

2.4 +--- Trailing Stop Settings ---+

Break Even (BE)

  • BE Value Type

    • Description: The metric for BE calculations:

      • Calculation Value In Points: Uses points

      • Calculation Value In Distance Percentage: A percentage of entry price

  • BE Trigger Value

    • Description: The BE activation threshold. 0 = disabled.

  • BE Buffer Value

    • Description: Once BE is triggered, how many points or percent to add for a safety buffer (e.g., 0 = none).

Trailing Stop (TSL)

  • TSL Value Type

    • Description: The metric for TSL calculations:

      • Calculation Value In Points: Uses points

      • Calculation Value In Distance Percentage: A percentage of entry price

  • TSL Trigger Value

    • Description: The threshold for activating TSL. 0 = disabled.

  • TSL Distance Value

    • Description: The initial distance of the TSL from the current price (points or percent).

  • TSL Step Value

    • Description: The step increment for TSL each time the price moves further in a favorable direction.

Rounding to an Integer

  • If TSL Value Type = Calculation Value In Points or BE Value Type = Calculation Value In Points, any decimal input is rounded up to the nearest integer. For example: 0.01 => 1, 1.4 => 1, 1.5 => 2, 2.6 => 3, etc.

2.5 +--- Trading Frequency Settings ---+

  1. Max Long Trades Per Day

    • Description: The max number of daily Buy (long) trades allowed.

  2. Max Short Trades Per Day

    • Description: The max number of daily Sell (short) trades allowed.

  3. Max Total Trades Per Day

    • Description: The max total daily trades (long + short).

2.6 +--- Range Filter Settings ---+

  1. Use Range Filter

    • Description: Whether to enable range filtering. If true, the EA checks if the daily range is within valid bounds.

  2. Range Filter Value Type

    • Description: Whether the range size is measured in points or percent.

  3. Range Filter Minimum Value / Range Filter Maximum Value

    • Description: The min/max threshold for the day’s range. If the range is smaller than Min or larger than Max, the EA does not place orders.

    • If Range Filter Value Type = Range Filter In Points, any decimals are rounded up to the nearest integer (e.g., 0.1 => 1, 2.4 => 2, 2.5 => 3).

2.7 +--- MA Filter Settings ---+

  1. Use MA Filter

    • Description: If true, trades must pass an MA condition before entry.

  2. MA Timeframe

    • Description: The timeframe used for MA calculations (M5, M15, H1, CURRENT, etc.).

  3. MA Method

    • Description: The type of MA (SMA, EMA, SMMA, LWMA).

  4. MA Applied Price

    • Description: The price used in MA calculations (Close, Open, High, Low, etc.).

  5. MA Period

    • Description: The MA period (e.g., 50 means a 50-bar average).

2.8 +--- Other Settings ---+

  1. Magic

    • Description: A magic number used to identify the EA’s orders.

  2. Show Comments

    • Description: Whether to display EA information (status, strategy name, etc.) on the chart.

  3. Comments

    • Description: A text label shown on the chart for naming or additional remarks.

  4. Enable Drawing Range

    • Description: Whether to draw horizontal lines representing the day’s high/low range.

  5. Range Color

    • Description: The color used for drawing the range (defaults to clrYellowGreen).

  6. Show More Logging

    • Description: If true, outputs additional debug logs for troubleshooting or strategy analysis.

3. Important Notes

  1. Backtesting or Demo Testing

    • It is recommended to run tests in MT5 Strategy Tester (visual or non-visual) or on a demo account to ensure your parameter setup and strategy logic function properly before going live.

  2. Broker Server Time

    • Different brokers may operate with different server time zones. Verify that Range Start Hour/Min align with your broker’s actual server time.

  3. Risk Management

    • If using a risk-based mode (Risk Percentage), make sure your account balance/equity, leverage, and margin requirements can handle the chosen risk.

  4. Chart Timeframe

    • Typically used on M5, M15, M30, or H1 for intraday trading. You may use higher timeframes for a more extended breakout but must adjust your StopLoss and range length accordingly.

  5. Max Total Trades Per Day & Delete Orders

    • Once you reach Max Total Trades Per Day (or Max Long Trades Per Day, Max Short Trades Per Day), or once the delete-orders time has passed, no additional orders will be placed or existing pending orders may be removed.

4. FAQ

  1. Why are no orders being placed?

    • Possible reasons:

      • The time range has not started or has already ended (exceeding Range Length Min from Start).

      • The day’s range is outside Range Filter Minimum/Maximum Value.

      • The daily limit (Max Total Trades Per Day, Max Long Trades Per Day, Max Short Trades Per Day) has been reached.

      • MA Filter conditions (if enabled) are not met.

      • BE / TSL triggers have not been reached.

  2. SL Value=0 + Risk Percent, yet it still places trades?

    • To calculate lot size, the EA assumes for Buy => SL=0, for Sell => SL=entry price × 2. This is only used to compute risk-based lots, not to actually place an SL.

  3. How does TSL / BE handle decimals when set to Points?

    • The EA rounds the value to the nearest integer (e.g., 0.5 => 1, 1.5 => 2, 2.6 => 3, etc.).

  4. What if Range Filter is set to Points and I enter decimals?

    • Those decimal values for Min/Max are also rounded to the nearest integer (e.g., 0.1 => 1, 2.4 => 2, 2.5 => 3).

  5. Risk Percent lot size differs from my expectation?

    • Check the SL Calculation Method, SL Value, or potential fallback if SL=0. The EA finalizes the lot size based on the actual (or simulated) SL distance.

  6. How to speed up backtesting?

    • Disable Show Comments, Enable Drawing Range, and set Show More Logging = false to reduce chart rendering and log output.

5. Conclusion

By defining the day’s high/low based on a time-based range and offering multiple StopLoss modes (Range Factor / Distance Percent / Points) plus TSL/BE customizations, the Time-based Range Breakout EA – Version 2.00 provides flexibility for various intraday breakout scenarios. The EA also handles SL=0 under risk-based mode (Buy=0, Sell=entry×2) and rounds decimal inputs for TSL/BE/Range Filter when using Points.
It is strongly recommended to thoroughly test different parameter combinations in backtests and demo environments to identify configurations that best suit your personal trading style and market conditions.

Disclaimer
Forex, CFDs, and other leveraged products carry significant risks. Users are responsible for evaluating their financial circumstances and risk tolerance before trading. All trading decisions and associated risks lie solely with the user; the author bears no liability for any resultant losses.




Signal for this Strategy: https://www.mql5.com/en/signals/2291372


Recensioni 1
matze1974
192
matze1974 2025.08.12 10:39 
 

Exactly what I was looking for! Perfect for me! I'm already testing it. The first results are very promising! Thank you for this EA! Keep it up.

Prodotti consigliati
Cari Trader, Vi saluto. Sono   Smart Sentinel . Non sono un indovino, né un avventuriero. Sono   l'architetto dell'ordine   per il vostro capitale in mercati caotici,   l'incarnazione definitiva   della vostra disciplina di trading. In un mondo che vi insegna ad "attaccare", io aderisco a una filosofia diversa:   Il vero cuore della redditività a lungo termine non è catturare ogni fluttuazione, ma evitare permanentemente quell'unico, devastante drawdown. Pertanto, non sono un semplice "strumento
Double Dragon (DD) A Trading System Built for Survival — Not Fantasy Live Signals (Full Transparency) DD is traded live with real signals: • DD Standard: https://www.mql5.com/en/signals/2352548 • DD Aggressive: https://www.mql5.com/en/signals/2352547 You are welcome to monitor real performance before or after purchase. Recommended Trading Conditions Symbol: AUDNZD only Timeframe: M5 Suggested Deposit: USD 1,000 Aggressive Setup: USD 500 Leverage: 1:200 or higher Account Type: Hedging Broker
Moving Average EA Plus   is a fully automated Expert Advisor that takes the trading of Moving Average to a whole new level.  Moving Average EA Plus  can either open one buy trade when MA turns up (blue color MA) or one sell trade when MA turns down (red color MA) or can open a new same direction trade on every new candle, as long as the slope direction of the Moving Average remains unchanged. A series of unique settings make this EA extremely versatile. This EA comes with provided set files for
Hunting Cat Scalper is a fully automated trading robot on mainly USDJPY. It well identifies potential breakout levels in certain price patterns and then trades along with the breakouts.  A FREE copy of Superdog Pro is gifted along with the purchase of Hunting Cat Scalper. Contact me for further details and conditions. Current Price: $349 --> (Next price $449)   Live signal: Set C (with trailing stop):  https://www.mql5.com/en/signals/2231094 Main Features Identifies breakout levels in price pat
is a fully automatic Forex trading Expert Advisor. The robot can run on any instrument, but the results are better with EURUSD on the H1 timeframe.  If you are a long-term investor looking at yearly profits with high Sharpe-ratio then Money magnet is a good option. Please check the comment part to share your settings with others and enjoy the latest optimal settings uploaded by other users.  Expert Advisor Advantages High Sharpe-ratio The EA does not use such systems as martingale, hedging,  gr
Title : Surefire Hedging Expert Advisor for MT5 Description : Introducing the Surefire Hedging Expert Advisor (EA) for   MetaTrader   5, a sophisticated algorithm designed to minimize risk and maximize profits in the Forex market. This EA is perfect for traders who seek a reliable, robust, and user-friendly solution to enhance their trading experience. Key Features : Advanced Surefire Hedging Strategy : The EA employs a proven Surefire Hedging strategy, which involves opening multiple trades in
LionKing
Dragan Drenjanin
Lion King EA v13 – Consulente esperto avanzato con rete neurale per MetaTrader 5 Lion King EA   è un sistema di trading automatizzato potente e flessibile per MetaTrader 5, ottimizzato specificamente per   XAUUSD (oro) sul timeframe H1   . La versione 13 introduce un importante aggiornamento: una   rete neurale   completamente integrata che integra l'intelligenza adattiva nel collaudato core algoritmico, offrendo ai trader una scelta e un controllo senza precedenti. Tre potenti modalità di tradi
Intersection EA
Kalinka Capital OU
Intersection EA is a fully automated software (trading robot), executing trading orders on the currency market in accordance with the algorithm and unique trading settings for each currency pair. Intersection EA is perfectly suitable for beginner traders as well as for professionals who got solid experience in trading on financial markets. Traders and programmers of Kalinka Capital OU company, worked hard developing the Intersection EA forex robot, starting from the year 2011. Initially, this s
Assistant FVG EA is a fully automated system for traders who use FVGs for their trading. This system is at your side as a professional assistant to provide faster and more accurate trading. Just adjust it to your needs and it will do the work. Public channel :  https://www.mql5.com/en/channels/mqlexp Note : If you have any problems running it, please message me. This is only intended as an assistant, not a comprehensive trading system. Benefits : It supports   SL,   TP and Trailing Stop Timer
JiaXu AMSG ( AMSG_ATR ) is an Expert Advisor for automated trading.  It calculates trading signals based on moving averages, swing highs and lows, and the Average True Range (ATR).  The EA uses a grid approach and ATR-based trailing stops to manage open positions. Features include: - Adaptive calculation of market swings. - Dynamic adjustment of stop-loss levels using ATR. - Lot size calculation according to a fixed risk percentage per trade. - Configurable grid levels for trade management. -
Okay, here is the amended version of your description for "Prism Divergence PRO MT5." This version has been revised to be fully compliant with the MQL5 marketplace rules. The changes are primarily focused on removing all special characters and emojis while preserving your well-structured content. Amended Product Description Prism Divergence PRO MT5 - Professional Multi-Strategy Trading System Revolutionary 15-Strategy RSI Divergence EA with Marketplace Validation Prism Divergence PRO MT5 is a s
Gold Engine Pro
VALU VENTURES LTD
Gold Engine Signal - Advanced Multi-Timeframe Trading System Gold Engine Signal is a sophisticated Expert Advisor designed specifically for trading gold (XAUUSD) and other financial instruments using advanced confluence-based signal detection. This EA combines multiple technical indicators across different timeframes to identify high-probability trading opportunities with superior risk-to-reward ratios. Key Features: Multi-Timeframe Analysis:   The system analyzes market conditions across three
Unified MultiindicatorReader EA
Abraham Apotierioluwa Apesinola
# UNIFIED MULTI-INDICATOR READER EA ## The Ultimate Indicator Aggregator for MetaTrader 5 ### Stop Coding. Start Trading. **Turn Any Indicator into a Profitable Trading System in Seconds.** Are you tired of staring at multiple charts, trying to interpret conflicting signals from your favorite indicators? Do you have a killer trading strategy that requires confirmation from three different tools, but you can't manually execute it fast enough? Introducing the **Unified Multi-Indicator Reader
WakaWakaWay
Kam Yuk Wong
WakaWakaWay EA   is a fully automated “pullback” trading system. It is especially effective in trading on the “pullback” currency pairs  AUDNZD. The system uses the main patterns of the Forex market in trading – the return of the price after a sharp movement in any direction. The drawdown is small with very good return. Hope you can enjoy using it.  Timeframe: M15 Currency Pair  : AUDNZD
Nova Gold X
Hicham Chergui
2.5 (32)
Nota importante: Per garantire la massima trasparenza, sto fornendo l'accesso al conto investitore reale collegato a questo EA, consentendoti di monitorare le sue prestazioni dal vivo senza manipolazioni. In soli 5 giorni, l'intero capitale iniziale è stato completamente prelevato, e da allora l'EA ha negoziato esclusivamente con fondi di profitto, senza alcuna esposizione al saldo originale. Il prezzo attuale di $199 è un'offerta di lancio limitata, e sarà aumentato dopo la vendita di 10 copie
FVG Pattern Breakout - Fair Value Gap Breakout EA Professional Forex Trading Expert Advisor for MetaTrader 5 Description The Fair Value Gap Breakout EA is an advanced algorithmic trading system that identifies and trades Fair Value Gaps (FVGs) formed during the Asian trading session. This sophisticated EA combines institutional trading concepts with precise market structure analysis to capture high-probability trading opportunities. Key Features Fair Value Gap Detection Automatically identifies
Introduzione all'EA Moving Average NOTA - Dopo aver acquistato The Moving Average EA, inviami un messaggio privato per ricevere gratuitamente il mio utilitario TradeWatch EA! L'EA Moving Average è uno strumento di trading flessibile progettato specificamente per indici sintetici, pur funzionando efficacemente anche con il forex e altre classi di asset. A differenza di molti EA che si basano su impostazioni fisse delle medie mobili, questo EA consente agli utenti di personalizzare completamente i
GoldenEagle
Chantal Thys
GoldenEagle – Smart Trend Trading EA GoldenEagle is a powerful and intelligent Expert Advisor designed to trade trending markets with precision and consistency. Built for MetaTrader 5, this EA combines Moving Average crossovers, RSI filters, and volatility detection (ATR) to identify high-probability trading opportunities. Key Features: Trend-Based Logic – Trades only in strong, confirmed market trends RSI Filtering – Avoids overbought/oversold traps ATR Volatility Filter – Detects
ScalpingDestroyer
Emanuele Giulivi
Expert Advisor completamente automatizzato per operatività intraday su logiche di breakout e trend. Include strumenti di gestione del rischio e controlli sugli orari di esecuzione. Funzionamento Generazione dei segnali su breakout/trend secondo i parametri impostati. Finestra oraria per abilitare/pausare l’operatività. Filtro notizie per sospendere l’esecuzione in prossimità di eventi economici. Stop Loss e Take Profit configurabili (valori fissi o percentuali). Trailing stop e break-even opzio
Trend Alpha
Levi Dane Benjamin
5 (1)
Trend Alpha is an automated Expert Advisor from the DaneTrades EA portfolio. It is built around a rules-based trend-following breakout approach using price action, with additional price-action filters designed to help qualify setups. The EA is multi-currency and commonly used on trend-driven instruments such as JPY pairs, NAS100, SP500, XAUUSD, and BTCUSD. It is designed for minimal configuration and a straightforward setup process. Trend Alpha can be used alongside other systems that trade dif
PipFinite EA Breakout EDGE MT5
Karlo Wilson Vendiola
5 (3)
The Official Automated Version of the Reliable Indicator PipFinite Breakout EDGE EA Breakout EDGE takes the signal of PipFinite Breakout EDGE indicator and manages the trade for you. Because of numerous financial instruments to consider, many traders want the signals to be fully automated. The EA will make sure all your trades are executed from entry to exit. Saving you time and effort while maximizing your profits. The Edge of Automation Effortless price action trading is now possible acros
SAFE Robot new
Petros Shatakhtsyan
SAFE Robot new   is a fully automatic robot that has the level of a professional trader. Since the robot has a low-drawdown trading mode, it can be used in PROP companies to complete challenge stages. "SAFE Robot new" underwent detailed optimization using a specialized neural network utility. This work resulted in the creation of universal reference points, as well as neuron weights for operation across different brokerage firms and trading accounts. The robot underwent extensive testing on thes
Forex Bacteria
Kaloyan Ivanov
Forex Bacteria Expert Advisor per MetaTrader 5 Forex Bacteria è un Expert Advisor (EA) automatizzato progettato per MetaTrader 5. Così come i batteri benefici coesistono simbioticamente con noi in natura, ci sforziamo di coesistere in modo armonioso e simbiotico con i mercati. È un EA plug-and-play in cui è necessario solo impostare le preferenze di gestione del rischio e scegliere i giorni della settimana in cui si desidera operare. Principalmente focalizzato e ottimizzato negli ultimi 12 anni,
ayar (XAUUSD, M1, Minimum Mevduat: 1.000 $)  aşağıdaki sinyal güvenilir aracı (IC piyasaları) MQL5 Singal https://www.mql5.com/en/signals/2315194 Formula One EA Formula One EA rappresenta un sistema di trading automatizzato all'avanguardia specificamente progettato per il trading dell'oro (XAUUSD), sfruttando sofisticate strategie ad alta frequenza ottimizzate per il timeframe di un minuto. Questo sistema avanzato è stato meticolosamente progettato per capitalizzare i rapidi movimenti di merc
Prism Scalper
VALU VENTURES LTD
Prism Scalper Basic v16.0 Prism Scalper Basic v16.0 is a sophisticated MetaTrader Expert Advisor designed for high-frequency scalping across multiple markets, including Forex, Gold, and Cryptocurrency. This trading system employs a proven mean reversion strategy to maximize profit potential while maintaining strict risk management protocols. Key Features Single Strategy Focus:   Specialized mean reversion system for clear and consistent performance. Multi-Asset Optimization:   Automatically ada
FREE
Golden Reversal
Adriana Nicole Tapia Flores
Strumento che automatizza i trade, gestisce i segnali manualmente e include un pannello moderno che trova automaticamente SL/TP per te. Launch price : 175 USD Il prezzo di Golden Reversal EA aumenterà a fasi fino a 300 USD man mano che vengono raggiunte tappe di vendita. Current price: 175 USD Next stage: 200 USD Final target price: 300 USD Se prevedi un uso medio/lungo termine, acquista nelle prime fasi. Golden Reversal EA è uno strumento professionale MT5 che combina: Segnali basati s
Attenzione trader di Platino! XPTUSD Trend Protected EA non apre trade a caso. Entra solo quando la tendenza è reale e confermata dal mercato. Evita rumore e overtrading che distruggono i conti. Gestione del rischio adattiva: riduce l’esposizione dopo perdite e sfrutta le serie vincenti. Ogni trade è indipendente, senza martingala, grid o hedging. Trailing stop progressivo che protegge i profitti senza fermare la tendenza. Si adatta automaticamente alle sessioni di Londra, New York e sessioni i
CMFX GOLD — Tactical Intelligence for the XAUUSD Battlefield Precision. Patience. Power. CMFX GOLD isn’t just another Expert Advisor — it’s a tactical swing-trading algorithm engineered to dominate Gold (XAUUSD) with discipline, precision, and capital protection. Support For any doubts, queries, or setup assistance, please contact me via MQL5 private message . I respond to every message personally and assist with installation, optimization, and guidance. ----------------------------------
DoubleOB EA
Tomas Dario Fernandez Guzman
DoubleOB è un EA automatizzato progettato per il trading di EUR/USD M5. Utilizza blocchi di ordini, uscite dinamiche e trailing stop con una gestione avanzata del rischio. Ideale per uno scalping sicuro e coerente. Compatibile con ottimizzazione e VPS. Ottimizzato per EUR/USD (M5) Parametri altamente personalizzabili Rilevamento di blocchi di ordini e FVG Gestione dinamica di TP/SL con punti pivot Trail Stop automatico e Break Even Filtraggio delle sessioni orarie Gestione del rischio giornal
FREE
Mosnter XAU
Ignacio Agustin Mene Franco
MONSTER XAU — Expert Advisor for XAUUSD M15 Developed by: Worldinversor 2026 Version: 1.0 | Pair: XAUUSD | Timeframe: M15 Minimum Recommended Capital: $1,000 USD What is Monster XAU? Monster XAU is a high-precision algorithmic Expert Advisor (EA) designed exclusively for trading Gold (XAUUSD) on the 15-minute timeframe. It combines advanced technical analysis with institutional market structure detection to identify high-probability entries, filtering out market noise through a triple con
Gli utenti di questo prodotto hanno anche acquistato
Quantum Queen MT5
Bogdan Ion Puscasu
4.97 (484)
Ciao, trader! Sono   Quantum Queen   , il fiore all'occhiello dell'intero ecosistema Quantum e l'Expert Advisor più quotata e venduta nella storia di MQL5. Con una comprovata esperienza di oltre 20 mesi di trading live, mi sono guadagnata il posto di Regina indiscussa di XAUUSD. La mia specialità? L'ORO. La mia missione? Fornire risultati di trading coerenti, precisi e intelligenti, ancora e ancora. IMPORTANT! After the purchase please send me a private message to receive the installation manua
Quantum Valkyrie
Bogdan Ion Puscasu
4.85 (120)
Quantum Valkyrie - Precisione.Disciplina.Esecuzione Scontato       prezzo.   Il prezzo aumenterà di $ 50 ogni 10 acquisti. Segnale in diretta:   CLICCA QUI   Canale pubblico MQL5 di Quantum Valkyrie:   CLICCA QUI ***Acquista Quantum Valkyrie MT5 e potresti ottenere Quantum Emperor o Quantum Baron gratis!*** Chiedi in privato per maggiori dettagli! IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions.      Salve, comm
Akali
Yahia Mohamed Hassan Mohamed
4.89 (37)
LIVE SIGNAL: Clicca qui per vedere le prestazioni dal vivo IMPORTANTE: LEGGI PRIMA LA GUIDA È fondamentale leggere la guida alla configurazione prima di utilizzare questo EA per comprendere i requisiti del broker, le modalità della strategia e l'approccio intelligente. Clicca qui per leggere la Guida Ufficiale Akali EA Panoramica Akali EA è un Expert Advisor di scalping ad alta precisione progettato specificamente per l'Oro (XAUUSD). Utilizza un algoritmo di trailing stop estremamente stretto pe
AI Gold Trading MT5
Ho Tuan Thang
4.62 (34)
VUOI GLI STESSI RISULTATI DEL MIO SEGNALE LIVE?   Utilizza gli stessi broker che uso io:   IC MARKETS  &  I C TRADING .  A differenza del mercato azionario centralizzato, il Forex non ha un unico flusso di prezzi unificato.  Ogni broker attinge liquidità da fornitori diversi, creando flussi di dati unici. Altri broker possono raggiungere solo una performance di trading equivalente al 60-80%.     SEGNALE LIVE IC MARKETS:  https://www.mql5.com/en/signals/2344271       Canale Forex EA Trading su MQ
AI Gold Scalp Pro
Ho Tuan Thang
4.29 (7)
VUOI GLI STESSI RISULTATI DEL MIO SEGNALE LIVE?   Usa esattamente gli stessi broker che uso io:   IC MARKETS  &  I C TRADING .  A differenza del mercato azionario centralizzato, il Forex non ha un unico feed di prezzi unificato.  Ogni broker si procura liquidità da diversi fornitori, creando flussi di dati unici. Altri broker possono raggiungere solo prestazioni di trading equivalenti al 60-80%. SEGNALE LIVE Canale di Trading Forex EA su MQL5:  Unisciti al mio canale MQL5 per ricevere le mie ul
Quantum King EA
Bogdan Ion Puscasu
4.97 (149)
Quantum King EA: potenza intelligente, raffinata per ogni trader IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. Prezzo di lancio speciale Segnale in diretta:       CLICCA QUI Versione MT4:   CLICCA QUI Canale Quantum King:       Clicca qui ***Acquista Quantum King MT5 e potresti ottenere Quantum StarMan gratis!*** Chiedi in privato per maggiori dettagli! Gestisci   le tue attività di trading con precisione
Ultimate Breakout System
Profalgo Limited
5 (30)
IMPORTANTE   : Questo pacchetto sarà venduto al prezzo corrente solo per un numero molto limitato di copie.    Il prezzo salirà a 1499$ molto velocemente    +100 strategie incluse   e altre in arrivo! BONUS   : A partire da un prezzo di 999$ --> scegli   gratuitamente 5    dei miei altri EA!  TUTTI I FILE IMPOSTATI GUIDA COMPLETA ALLA CONFIGURAZIONE E ALL'OTTIMIZZAZIONE GUIDA VIDEO SEGNALI LIVE RECENSIONE (terza parte) Benvenuti al SISTEMA DEFINITIVO DI BREAKOUT! Sono lieto di presentare l'Ul
Goldwave EA MT5
Shengzu Zhong
4.65 (26)
Conto di trading reale   LIVE SIGNAL (IC MARKETS):  https://www.mql5.com/en/signals/2339082 Questo EA utilizza esattamente la stessa logica di trading e le stesse regole di esecuzione del segnale di trading live verificato mostrato su MQL5.Quando viene utilizzato con le impostazioni consigliate e ottimizzate, e con un broker ECN / RAW spread affidabile (ad esempio IC Markets o EC Markets) , il comportamento di trading live di questo EA è progettato per allinearsi strettamente alla struttura del
Agera
Anton Kondratev
5 (2)
AGERA   è un EA aperto completamente automatizzato e multiforme per l'identificazione delle vulnerabilità nel mercato dell'ORO! Not        Grid       , Not        Martingale    ,    Not      "   AI"         , Not      "   Neural Network" ,    Not      "   Machine Learning"    ,     Not     "ChatGPT"   ,     Not       Unrealistically Perfect Backtests  AGERA    Community :       www.mql5.com/en/messages/01e0964ee3a9dc01 Vantage Real :    https://www.mql5.com/en/signals/2363787 Tickmill Real :    
Gold House MT5
Chen Jia Qi
5 (24)
Gold House — Gold Swing Breakout Trading System Launch Promotion — Limited to 100 Copies Only 100 copies will be sold at the early-bird price. After 100 copies, the price jumps directly to $999 . Price also increases by $50 every 24 hours during this period. 93   copies sold — only 7 remaining. Lock in the lowest price before it's gone. Live signal: https://www.mql5.com/en/signals/2359124 Stay updated — join our MQL5 channel for product updates and trading tips. After opening the link, click th
The Gold Reaper MT5
Profalgo Limited
4.51 (90)
PUNTELLO AZIENDA PRONTO!   (   scarica SETFILE   ) WARNING : Sono rimaste solo poche copie al prezzo attuale! Prezzo finale: 990$ Ottieni 1 EA gratis (per 2 account commerciali) -> contattami dopo l'acquisto Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal Benvenuti al Mietitore d'Oro! Basato sul Goldtrade Pro di grande successo, questo EA è stato progettato per funzionare su più intervalli di tempo contemporaneamente e ha la possibilità di impostare la frequ
Aot
Thi Ngoc Tram Le
4.86 (98)
AOT Expert Advisor Multi-Valuta con Analisi del Sentiment AI Strategia di ritorno alla media multi-coppia per la diversificazione del portafoglio su coppie di valute correlate. Testa AOT per la prima volta?     Inizia con le   impostazioni di dimensione lotto fisso , Dimensione lotto fisso 0.01 | Posizione singola per coppia | Funzioni avanzate disattivate. Logica di trading pura   per comprendere il comportamento del sistema. Segnale con storico verificato Dettaglio Nome File di Impostazione De
Full Throttle DMX
Stanislav Tomilov
5 (1)
Full Throttle DMX - Strategia reale,  Risultati reali   Full Throttle DMX è un consulente esperto di trading multivaluta progettato per operare con le coppie di valute EURUSD, AUDUSD, NZDUSD, EURGBP e AUDNZD. Il sistema si basa su un approccio di trading classico, utilizzando indicatori tecnici noti e una logica di mercato comprovata. L'EA contiene 10 strategie indipendenti, ciascuna progettata per identificare diverse condizioni e opportunità di mercato. A differenza di molti moderni sistemi au
AI Gold Sniper MT5
Ho Tuan Thang
4.4 (58)
Optimize your trading environment: To get the best results matching the live signal, it is highly recommended to use a reliable True ECN broker with low latency and tight spreads. Because Forex liquidity varies, choosing a robust broker ensures the algorithm can execute trades with maximum precision. LIVE SIGNAL & COMMUNITY Live Performance (More than 7 months):  View AI Gold Sniper Live Signal Forex EA Trading Channel:  Join my community of over 15,000 members for the latest updates and support
Nano Machine
William Brandon Autry
5 (7)
Nano Machine GPT Version 2 (Generation 2) – Intelligenza Persistente di Pullback Abbiamo avviato questo cambiamento alla fine del 2024 con Mean Machine, uno dei primissimi sistemi a portare una vera IA di frontiera nel trading retail forex dal vivo. Nano Machine GPT Version 2 è la prossima evoluzione in questa linea. La maggior parte degli strumenti di IA risponde una volta e dimentica tutto. Nano Machine GPT Version 2 no. Ricorda ogni setup di pullback analizzato, ogni ingresso eseguito, ogni
Syna
William Brandon Autry
5 (24)
Syna 5 – Intelligenza Persistente. Memoria Reale. Intelligenza di Trading Universale. La maggior parte degli strumenti di IA risponde una volta e dimentica tutto. Ti lasciano a ricominciare da zero ancora e ancora. Syna 5 no. Ricorda ogni conversazione, ogni trade analizzato, perché ha agito, perché è rimasto in disparte e come il mercato ha reagito successivamente. Contesto completo in ogni sessione. Intelligenza cumulativa che si rafforza ad ogni trade. Questo non è l'ennesimo EA con funzioni
Mad Turtle
Gennady Sergienko
4.54 (87)
Simbolo XAUUSD (Oro / Dollaro USA) Periodo (intervallo di tempo) H1-M15 (qualsiasi) Supporto per operazioni singole SÌ Deposito minimo 500 USD (o equivalente in un’altra valuta) Compatibile con tutti i broker SÌ (supporta quotazioni a 2 o 3 cifre, qualsiasi valuta del conto, simbolo o fuso orario GMT) Funziona senza configurazione SÌ Se sei interessato al machine learning, iscriviti al canale: Iscriviti! Caratteristiche principali del progetto Mad Turtle: Vero apprendimento automatico Questo
Karat Killer
BLODSALGO LIMITED
4.68 (28)
Pura Intelligenza sull'Oro. Validato Fino al Nucleo. Karat Killer   non è l'ennesimo EA sull'oro con indicatori riciclati e backtest gonfiati — è un   sistema di machine learning di nuova generazione   costruito esclusivamente per XAUUSD, validato con metodologia di grado istituzionale e progettato per trader che apprezzano la sostanza rispetto allo spettacolo. LAUNCH PROMOTION - LIMITED TIME OFFER   Price increases every 24 hours at 10:30 AM Cyprus time.   Secure the lowest price today before t
HTTP ea
Yury Orlov
5 (10)
How To Trade Pro (HTTP) EA — un consulente di trading professionale per negoziare qualsiasi asset senza martingala o griglie dall'autore con oltre 25 anni di esperienza. La maggior parte dei consulenti top lavora con l'oro in crescita. Appaiono brillanti nei test... finché l'oro sale. Ma cosa succede quando il trend si esaurisce? Chi proteggerà il tuo deposito? HTTP EA non crede nella crescita eterna — si adatta al mercato mutevole e è progettato per diversificare ampiamente il tuo portafoglio d
GoldBaron XauUsd EA MT5
Mikhail Sergeev
4.2 (5)
"GoldBaron" è un robot di trading completamente automatico. Progettato per il commercio dell'oro (XAUUSD). Per 5 mesi di trading su un conto reale, l'esperto è stato in grado di guadagnare 1400% di profitto. Ogni mese, l'esperto ha guadagnato oltre il 60%. Basta impostare un esperto di trading sul grafico orario (H1) di XAUUSD e vedere il potere di prevedere i prezzi futuri dell'oro. Per un inizio aggressivo, sono sufficienti $ 200. Deposito consigliato da $ 500. Assicurati di utilizzare conti c
Gold Neuron
Vasiliy Strukov
5 (3)
Gold Neuron Sistema di trading multistrategia avanzato per XAUUSD Nota bene: abilita "Tutte le strategie" nelle impostazioni, poiché l'EA analizzerà il mercato per individuare la strategia migliore nelle condizioni attuali! Saldo minimo consigliato: $200 per 0,01 lotti Esempio: 0,02 lotti per un saldo di $400, ecc. Gold Neuron EA è un Expert Advisor professionale multi-strategia progettato specificamente per il trading sull'oro (XAUUSD) sul timeframe M15. Il sistema integra 10 strategie di tradi
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
5 (8)
Meno trade. Trade migliori. La costanza prima di tutto. • Segnale in Tempo Reale Modalità 1 Twister Pro EA è un Expert Advisor di scalping ad alta precisione sviluppato esclusivamente per XAUUSD (Oro) sul timeframe M15. Opera meno — ma quando opera, lo fa con uno scopo preciso. Ogni ingresso passa attraverso 5 livelli indipendenti di validazione prima che venga piazzato un singolo ordine, garantendo un tasso di precisione estremamente elevato con il SET predefinito. DUE MODALITÀ: Mode 1 (cons
XIRO Robot MT5
MQL TOOLS SL
5 (16)
XIRO Robot is a professional trading system created to operate on two of the most popular and liquid instruments on the market:  GBPUSD, XAUUSD and BTCUSD . We combined two proven and well tested systems, enhanced them with multiple new improvements, optimizations and additional protective mechanisms, and integrated everything into one advanced and unified solution. As a result of this development process, XIRO Robot was created. Robot was designed for traders who are looking for a reliable and
Golden Hen EA
Taner Altinsoy
4.5 (56)
Panoramica Golden Hen EA è un Expert Advisor progettato specificamente per XAUUSD (Oro). Funziona combinando nove strategie di trading indipendenti, ognuna innescata da diverse condizioni di mercato e intervalli temporali (M5, M30, H2, H4, H6, H12, W1). L'EA è progettato per gestire automaticamente i suoi ingressi e i filtri. La logica principale dell'EA si concentra sull'identificazione di segnali specifici. Golden Hen EA non utilizza tecniche grid, martingala o di mediazione (averaging) . Tut
Gold Trade Pro MT5
Profalgo Limited
4.28 (36)
Promo lancio! Sono rimaste solo poche copie a 449$! Prossimo prezzo: 599$ Prezzo finale: 999$ Ottieni 1 EA gratis (per 2 account commerciali) -> contattami dopo l'acquisto Ultimate Combo Deal   ->   click here Live signal:   https://www.mql5.com/en/signals/2084890 Live Signal high risk :  https://www.mql5.com/en/signals/2242498 Live Signal Set Prop Firm Set File JOIN PUBLIC GROUP:   Click here Parameter overview Gold Trade Pro si unisce al club degli EA che commerciano oro, ma con una gran
The Gold Phantom
Profalgo Limited
4.38 (21)
PROP FIRM PRONTO! -->   SCARICA TUTTI I FILE DEL SET AVVERTIMENTO: Ne sono rimaste solo poche copie al prezzo attuale! Prezzo finale: 990$ NOVITÀ (a partire da soli 399$)   : scegli 1 EA gratis! (limitato a 2 numeri di account commerciali, uno qualsiasi dei miei EA tranne UBS) Offerta Combo Definitiva     ->     clicca qui UNISCITI AL GRUPPO PUBBLICO:   Clicca qui   Segnale in diretta Segnale in diretta 2 !! IL FANTASMA D'ORO È ARRIVATO !! Dopo l'enorme successo di The Gold Reaper, sono estr
Bitcoin Scalping MT5
Lo Thi Mai Loan
5 (5)
[ IMPORTANT ] REAL CLIENT FEEDBACK :  https://www.mql5.com/en/market/product/127498/comments#comment_58814415 [ IMPORTANT ]  UPDATED (1 YEAR PERFORMANCE):  https://www.mql5.com/en/market/product/127498/comments#comment_59233853 Presentazione di Bitcoin Scalping MT4/MT5 – L'EA intelligente per il trading di criptovalute PROMOZIONE DI LANCIO: Solo 3 copie rimaste al prezzo attuale! Prezzo finale: 3999.99 $ BONUS - ACQUISTA BITCOIN SCALPING A VITA E OBTIENI GRATUITAMENTE EA AI VEGA BOT (2 conti)
Zeno
Anton Kondratev
5 (2)
ZENO EA   è un EA aperto multivaluta, flessibile, completamente automatizzato e multiforme per l'identificazione delle vulnerabilità nel mercato dell'ORO! Not    Grid   , Not    Martingale  ,  Not    " AI"     , Not    " Neural Network" ,  Not    " Machine Learning"  ,   Not   "ChatGPT" ,   Not   Unrealistically Perfect Backtests  Signal Live +51 Weeks :  https://www.mql5.com/en/signals/2350001 Default   Settings for One Сhart   XAUUSD or GOLD H1 ZENO Guide Segnali Rimborso del broker senza com
Aura Ultimate EA
Stanislav Tomilov
4.81 (104)
Aura Ultimate: l'apice del trading tramite reti neurali e il percorso verso la libertà finanziaria. Aura Ultimate rappresenta il prossimo passo evolutivo nella famiglia Aura: una sintesi di architettura AI all'avanguardia, intelligenza adattabile al mercato e precisione basata sul controllo del rischio. Basata sul DNA collaudato di Aura Black Edition e Aura Neuron, si spinge oltre, fondendo i loro punti di forza in un unico ecosistema multi-strategia unificato, introducendo al contempo un live
Prizmal Logic
Vladimir Lekhovitser
5 (1)
Segnale di trading in tempo reale Monitoraggio pubblico in tempo reale dell’attività di trading: https://www.mql5.com/it/signals/2353471 Informazioni ufficiali Profilo del venditore Canale ufficiale Manuale utente Istruzioni di configurazione e utilizzo: Apri manuale utente Questo Expert Advisor si basa su una strategia di trading guidata da regole. La strategia è orientata a identificare condizioni di mercato specifiche, anziché mantenere una presenza costante sul mercato. Il sistema
Filtro:
matze1974
192
matze1974 2025.08.12 10:39 
 

Exactly what I was looking for! Perfect for me! I'm already testing it. The first results are very promising! Thank you for this EA! Keep it up.

Rispondi alla recensione