Whale RSI and SMA

This Expert Advisor is a reversal-style system that combines a 50-centered RSI extreme filter with a 200 SMA proximity rule. It evaluates signals only on a new bar of the selected timeframe and uses closed-bar data (shift=1) to reduce noise and avoid “in-bar” flicker.

How the Strategy Works

On every new candle (for InpTF ), the EA follows this logic:

  1. Compute RSI thresholds around 50
    A single parameter creates both buy/sell levels:

    • BuyLevel = 50 − InpRSIThresholdDist

    • SellLevel = 50 + InpRSIThresholdDist
      Example: Dist = 20 → BuyLevel = 30, SellLevel = 70

  2. Require price to be near the 200 SMA
    The distance between the last closed candle’s close and the SMA must be within a maximum range:

    • Distance (points) = abs(close1 − sma1) / _Point

    • Must be ≤ InpMaxDistPoints
      If the distance is also ≤ InpAggroDistPoints, the trade is considered Aggressive and uses a tighter SL buffer.

  3. Optional confirmation filters

    • EMA Trend Filter (optional)
      If enabled:

      • Longs require close1 > ema1

      • Shorts require close1 < ema1

    • Volume Filter (optional)
      If enabled, the last closed bar’s tick volume must be at least:

      • avg_tick_volume(lookback) * InpVolMultiplier

  4. One-position rule (per symbol + magic)
    If there is already an open position on the same symbol with the same InpMagic , the EA will not open a new one.

  5. Stop/Target calculation + broker rule normalization

    • SL is set using last closed bar’s high/low plus a buffer.

    • TP is either Risk/Reward based or Bollinger Middle based (with fallback).

    • SL/TP are then adjusted to comply with StopsLevel / FreezeLevel / Spread plus InpExtraStopBufferPts .

Entry Rules

BUY (Long) Conditions

A Buy is triggered when all are true:

  • RSI(shift=1) < BuyLevel

  • abs(close1 − sma1) in points ≤ InpMaxDistPoints

  • If EMA filter is enabled: close1 > ema1

Stop-Loss (SL)

  • SL = low1 − SL_Buffer(points)

Take-Profit (TP)

  • If InpUseRRTP = true :

    • risk = entry − SL

    • TP = entry + risk * InpRR

  • Else (BB middle mode):

    • TP = BB_Middle

    • If BB_Middle is not valid (≤ entry), it falls back to RR TP.

SELL (Short) Conditions

A Sell is triggered when all are true:

  • RSI(shift=1) > SellLevel

  • close1 < sma1 (explicit in the code)

  • (sma1 − close1) in points ≤ InpMaxDistPoints

  • If EMA filter is enabled: close1 < ema1

Stop-Loss (SL)

  • SL = high1 + SL_Buffer(points)

Take-Profit (TP)

  • If InpUseRRTP = true :

    • risk = SL − entry

    • TP = entry − risk * InpRR

  • Else (BB middle mode):

    • TP = BB_Middle

    • If BB_Middle is not valid (≥ entry), it falls back to RR TP.

Input Parameters (All Variables Explained)

Timeframe / Core Indicators

  • InpTF: Signal timeframe used for all calculations (default: M5).

  • InpRSIPeriod: RSI period (default: 14).

  • InpSMAPeriod: SMA period (default: 200).

RSI Threshold Logic (Centered at 50)

  • InpRSIThresholdDist: Distance from 50 to define extremes.

    • BuyLevel = 50 − dist

    • SellLevel = 50 + dist
      Notes: The EA clamps the value into [0, 50] .

SMA Distance + Aggressive vs Cautious SL Buffer

  • InpMaxDistPoints: Maximum allowed distance from SMA (points).

  • InpAggroDistPoints: If distance is within this tighter band, trade is Aggressive.

  • InpSLBufferAggroPts: SL buffer (points) used in Aggressive mode.

  • InpSLBufferCautPts: SL buffer (points) used in Cautious mode.

Optional EMA Trend Filter

  • InpUseEMAFilter: Enable/disable EMA trend filter.

  • InpEMAPeriod: EMA period (default: 50).

Optional Volume Filter (Tick Volume)

  • InpUseVolumeFilter: Enable/disable tick volume confirmation.

  • InpVolLookback: Bars used to compute average tick volume (closed bars).

  • InpVolMultiplier: Required multiplier vs average (e.g., 1.2 = 20% above average).

Take-Profit Mode

  • InpUseRRTP:

    • true → Risk/Reward TP

    • false → Bollinger middle TP (fallback to RR if invalid)

  • InpRR: Risk/Reward ratio (default: 2.0).

  • InpBBPeriod: Bollinger Bands period (default: 20).

  • InpBBDeviation: Bollinger deviation (default: 2.0).

Trading / Execution / Safety

  • InpLots: Requested lot size (normalized to symbol min/max/step).

  • InpSlippagePoints: Max slippage (points).

  • InpMagic: Magic number to track EA positions.

  • InpExtraStopBufferPts: Extra safety buffer (points) added to broker minimum stop distance.
    The EA effectively enforces:
    min_stop_distance = max(StopsLevel, FreezeLevel) + Spread(points) + InpExtraStopBufferPts

Notable Operational Behavior

  • Runs only once per new bar on InpTF (no tick-by-tick entries).

  • Uses closed-bar signals ( shift=1 ) for RSI/MA/candle values.

  • One open position at a time per symbol and InpMagic .

  • Broker-rule compliant stops: SL/TP are adjusted to meet minimum distances; if not possible, the trade is skipped.

  • Trade comments label entries as Aggro or Caut depending on SMA distance.


Рекомендуем также
Fractal Trend Master — один из самых мощных и сложных советников на рынке, разработанный для защиты капитала трейдеров при максимизации возможностей для получения прибыли. Базирующийся на знаменитой методологии Билла Вильямса , этот EA использует три важнейших инструмента технического анализа: индикатор Alligator , фракталы и Gator Oscillator , создавая прочную и точную структуру для идентификации и следования рыночным трендам. Этот EA был разработан с акцентом на управление рисками и сохранени
Little Swinger    (Best choice for passive income lovers) Developed by RobotechTrading   key features: Financial Freedom Back testing results will match with real live trading results Proper TP and SL Controlled Risk Highly Optimized settings Running on our Real Live Accounts Little Risk, Little Drawdown, Little Stress, Little BUT stable income, just set and forget. Strategy: Not Indicator based No Martingale  No Grid  No Repaint strategy Safe and Secure calculation of Live data and than take
Exclusive EA for FOREX HEDGE account The EA (FuzzyLogicTrendEA) is based on fuzzy logic strategies based on the analysis of a set of 5 indicators and filters. Each indicator and filter has a weight in the calculation and, when the fuzzy logic result reaches the value defined in the EA parameter, a negotiation is opened seeking a pre-defined gain. As additional functions it is possible to define maximum spread, stop loss and so on . Recommended Symbol: EURUSD, AUDUSD, GBPUSD, NZDUSD, USDCAD, AUD
Aurum Gold Pro
Mainara Mello Da Silva
1 (1)
Aurum Gold Pro Automated Trading System for Gold (XAUUSD) Aurum Gold Pro is an automated trading system developed for trading Gold (XAUUSD). The system uses technical filters designed to identify market trend conditions and volatility levels before opening positions. The strategy operates on the H1 timeframe and is designed to participate in trending market environments while applying structured risk management rules. Main Features • Designed for XAUUSD • Timeframe: H1 • One trade at a time • A
FREE
Viking Alpha DAX Ivar Edition
Valdeci Carlos Dos Passos Albuquerque
Viking Alpha DAX — Germany 40 Expert Advisor for MetaTrader 5 LAUNCH PROMO Only 10 copies at launch price. Price increases with each sale. Launch price: $297 Next price: $497 Final price: $997 Live Performance: FX Blue — Vikingtradingbots What Makes Viking Alpha DAX Different Most DAX robots fail for one simple reason: they treat the Germany 40 like a forex pair. It isn't. The DAX has a heartbeat — a specific rhythm tied to the Frankfurt Stock Exchange opening, the European session structure, an
Представляем вам Moving Average Strategy EA MT5, мощное автоматизированное торговое решение, разработанное для трейдеров, стремящихся использовать пересечения скользящих средних для повышения своей торговой эффективности. Этот экспертный советник идеально подходит как для новичков, так и для опытных трейдеров, желающих оптимизировать свой торговый процесс и эффективно использовать рыночные тренды. С помощью своих сложных алгоритмов Moving Average Strategy EA MT5 обеспечивает точные точки входа и
Stormer RSI 2
Ricardo Rodrigues Lucca
This strategy was learned from Stormer to be used on B3. Basically, 15 minutes before closing the market, it will check RSI and decided if it will open an position. This strategy do not define a stop loss. If the take profit reach the entry price it will close at market the position. The same happens if the maximal number of days is reached. It is created to brazilian people, so all configuration are in portuguese. Sorry Activations allowed have been set to 50.
Оптимизирован для EURUSD Запускать на М5 Внутридневная торговля. разработан для работы с движениями цены на TimeFrame Н1 (торговля даже в отсутствие глобальной тенденции цены). Анализирует 2 или 3 TimeFrame-а. На каждом TF ЕА анализирует взаимоположение цены и средних скользящих MovingAvarage (МА) (одна или две на каждом TF). Алгоритм работы показан на скриншоте Сеты в комментах Преимущества хорошо оптимизируется для любого инструмента в любой момент рынка Возможность гибкой настройки конкретн
HMA Scalper Pro EA
Vladimir Shumikhin
5 (2)
HMA Scalper Pro EA — Автоматический советник для торговли по индикатору Hull Moving Average (HMA) на MetaTrader 5 КРАТКОЕ ОПИСАНИЕ HMA Scalper Pro EA — это профессиональный торговый робот (Expert Advisor) для MetaTrader 5, работающий по направлению скользящей средней Hull (Hull Moving Average, HMA). Индикатор HMA определяет текущее направление тренда, а советник открывает сделки в его сторону, дополняя вход управлением капиталом Smart Risk, адаптивной сеточной торговлей, трейлинг-стопом, безубыт
Hamster Scalping mt5
Ramil Minniakhmetov
4.71 (241)
Hamster Scalping - полностью автоматический торговый советник. Стратегия ночной скальпинг. В качестве входов используется индикатор RSI и фильтр по ATR. Для работы советника требуется хеджинговый тип счета. ВАЖНО! Свяжитесь со мной сразу после покупки, чтобы получить инструкции и бонус! Мониторинг реальной работы, а также другие мои разработки можно посмотреть тут: https://www.mql5.com/ru/users/mechanic/seller Общие рекомендации Минимальный депозит 100 долларов, используйте ECN счета с минимальн
The EA strategy : it is provided wirh built-in indicator based on Japanese Candles arrangements in order to determine the signals and has different inputs for Short and Long positions in order to improve its precision; You should purchase this EA because : it has been tested for a long time;  its indicator was deeply improved and optimized; the program is bugs free;  it is safe because its efficience is about 70% of assertiveness;  it is provided with Trailing Stop Loss technology; it has bad t
Aegis DAX Scalper EA is a MetaTrader 5 Expert Advisor designed for short-term trading on GER40/DAX40. The system combines a M5 trend filter with M1 pullback entries, RSI confirmation, candle structure analysis, spread filtering, volatility filtering and automated trade management. The EA does not use grid, martingale or recovery basket logic. Each trade is opened with a real stop loss and managed through break-even and trailing stop rules. Version 1.01 includes improved compatibility with di
Bobot AI is a sophisticated automated forex trading program that utilizes advanced algorithms to analyze market data and make predictions about future price movements. Our system is designed to quickly identify patterns and trends in the market, allowing you to make informed trading decisions. With automatic trade execution and a risk management strategy in place, Bobot AI empowers you to trade with confidence and ease Our focus is on helping traders make better-informed decisions and providing
Советник Stacking King – точная мощь, простота управления Описание: Советник Stacking King – это мощный торговый инструмент, позволяющий мгновенно открывать несколько сделок одним кликом или автоматически стекировать сделки каждую минуту в течение заданного времени – прямо в вашем активном терминале MT5. Независимо от того, скальпируете ли вы, торгуете по тренду или торгуете на пробоях, этот советник даёт вам полный контроль с минимальными усилиями. Создан для реальных трейдеров, работающих на
Classic SNR EA Эксперт для MetaTrader 5 | Мульти-символьная торговля по уровням Support & Resistance с трендовой логикой Обзор Classic SNR Breakout EA - это профессиональный торговый робот, который определяет структурные уровни поддержки и сопротивления (Support & Resistance) с использованием дневных точек разворота и совершает сделки на основе ценового действия часового таймфрейма (H1) относительно этих уровней. EA применяет   двойную логику : на восходящем тренде продает при отбое (закрытии H1
Matrix Arrow EA MT5
Juvenille Emperor Limited
5 (7)
Matrix Arrow EA MT5  - уникальный советник, который может торговать по сигналам  MT5 индикатора Matrix Arrow  с помощью торговой панели на графике, вручную или на 100% автоматически.  Индикатор Matrix Arrow MT5  будет определять текущую тенденцию на ранних этапах, собирая информацию и данные от до 10 стандартных индикаторов, а именно: Индекс среднего направленного движения (ADX), Индекс товарного канала (CCI), Классические свечи Heiken Ashi, Скользящая средняя, Дивергенция схождения скользящих
Super Bollinger EA is an exclusive expert advisor that uses Bollinger Bands as indicator. It´s possible to configure the EA to trade as a low frequency or high frequency one - Scalping expert advisor. A Stochastic Oscillator filter is implemented to have some specific trades on Bollinger Bands. Takeprofit and Stoploss are calculated according to Bollinger Bands width or even with fixed TP and SL ( in points ). A trail and trade out system can also be configured and optimized. A number of orders
Magic EA MT5
Kyra Nickaline Watson-gordon
Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA w
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT5 version, click  here  for  Blue CARA MT4  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic   R esponsive   A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhaps the most popul
Ai Sniper Scalping is an automated Expert Advisor for MetaTrader 5 designed for short-term trading on M1 to M5 timeframes. The strategy combines three classic indicators: - EMA crossover (Fast EMA 9 and Slow EMA 21) to define trend direction - RSI filter to avoid weak momentum - MACD confirmation for entry timing Risk management is based on a fixed amount in USD. Stop Loss and Take Profit are calculated dynamically using the ATR indicator. Key features: - Real risk calculation including spre
ExtremeX
Noelle Chua Mei Ping
This algorithm thrives on extreme conditions of volatility.  It will evaluate the condition prior to market close, enter a position and exit when market swings to extreme levels in your favour.  The algorithm does not deploy any technical indicators, just simple mathematical calculations.  This works very well on non directional markets especially FOREX in the short term which are very choppy.  You can test out on other asset classes as well.  20 year backtest done to validate the rule.
Gold Crowd Density Flip
Murtadha Majid Jeyad Al-Khuzaie
Gold Crowd Density Flip Expert Advisor is a powerful, market-ready trading system designed exclusively for XAUUSD (Gold) on the 15-minute timeframe. Built with precision logic and advanced filters, this EA is engineered to capture explosive breakout opportunities during periods of market compression, while maintaining strict risk management and professional-grade trade execution. Gold is one of the most volatile and liquid instruments in the financial markets, and trading it successfully requi
FREE
SPECIAL LAUNCH OFFER: $30 (1-Month Rent) Limited time offer to build our community and gather feedback! AmbM GOLD Institutional Scalper A high-precision M5 algorithm for XAUUSD (Gold) , engineered to trade exclusively at Institutional Liquidity Levels ($5/$10 psychological marks). PERFORMANCE DATA (BUY ONLY) • Win Rate: 87.09%. • Safe Growth: +$4,113 profit on $10k (13.75% Max Drawdown). • Extreme Stress Test: Successfully generated +$22,997 in a 5-year stress test (2020-2026), proving
EA Alpha Expert
Jonatas Da Silva Cruz
Eu tentei muitas coisas na negociação forex no passado e aprendi muito nos últimos 3,5 anos. Tentei   varias  ferramentas para negociação manual e nao tive muito sucesso. Sempre fui fascinado com o mercado forex, . A integração dos dados de volume é uma característica única e aumenta muito a qualidade das decisões comerciais do Expert Advisor. E sim, você tem que lembrar que os resultados do backtest não são os mesmos que resultados ao vivo. Mas aqui eles estão muito próximos. agora o único Exp
[Title: Tomgoodcar Cleopatra – Grid Averaging & Risk Management System] Introduction Tomgoodcar Cleopatra is an automated trading tool designed for systematic order management. It utilizes a structured grid-averaging strategy combined with a proprietary trend-filtering technique to identify market opportunities. This EA is built for traders who prioritize systematic discipline, structured risk management, and capital preservation over manual intervention. Operational Logic Macro Trend Identifica
Investopedia FIVE
Joseph Anthony Aya-ay Yutig
Советник Investopedia FIVE EA основан на этой статье: https://www.investopedia.com/articles/forex/08/five-minute-momo.asp ТОРГОВЫЕ УСЛОВИЯ - Ищите валютную пару, торгующуюся ниже EMA X-периода, а MACD находится на отрицательной территории. - Подождите, пока цена пересечет EMA X-периода, затем убедитесь, что MACD либо находится в процессе перехода от отрицательного к положительному, либо перешел на положительную территорию в течение пяти баров. - Открывайте длинные позиции на X пунктов выше
Exp5 The xCustomEA for MT5
Vladislav Andruschenko
4.27 (11)
The xCustomEA для MetaTrader 5 — универсальный торговый советник для работы с пользовательскими индикаторами Постройте собственную торговую систему на базе практически любого пользовательского индикатора. The xCustomEA для MetaTrader 5 — это универсальный Expert Advisor, который получает сигналы от ваших пользовательских индикаторов и автоматически исполняет сделки по заданной логике. Вы указываете имя индикатора, сигнальные буферы и ключевые параметры, а советник использует эти данные для автом
Intraday News
Thomas Bradley Butler
Приготовьтесь революционизировать свой торговый опыт с помощью советника Intraday News для платформы MT5! Этот передовой инструмент специально разработан для торговли новостями и позволяет вам извлечь выгоду из таких важных событий, как отчет о занятости в несельскохозяйственном секторе (NFP). Вы никогда не пропустите ни одной детали на валютном и фондовом рынках. Настройте свою торговую стратегию с помощью настраиваемых входных данных для лотов, времени торговли, движения цен и множителей март
Error EA
Dragan Drenjanin
Error EA Introducing Error EA: Your Advanced Forex Trading Companion for MT5 Error EA is a cutting-edge Expert Advisor (EA) designed for the MetaTrader 5 (MT5) platform, crafted to elevate your forex trading experience. This sophisticated tool empowers traders with unparalleled flexibility, precision, and automation in trading currency pairs. Capable of operating across a wide range of timeframes, Error EA adapts seamlessly to various trading styles, making it an ideal companion for both novice
RoyalTrade Pro
Milton Giovanny Jaramillo Herrera
RoyalProfit EA Pro - Automated London/New York Breakout System Leverage the strategy used by institutional traders: Identify key levels during the London session and execute precise breakouts when New York opens. 100% automated. What Does This EA Do? RoyalProfit EA Pro implements a proven institutional strategy: during the London trading session, the EA automatically marks the maximum and minimum price range levels. When New Y
С этим продуктом покупают
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (17)
Легенда продолжается. Королева эволюционирует. Добро пожаловать в Quantum Queen X — новое поколение легендарной торговой системы GOLD, основанной на проверенном успехе Quantum Queen. Quantum Queen X построена на том же проверенном движке, что и Quantum Queen, и представляет собой новый мощный пользовательский режим, который позволяет трейдерам выбирать, какие именно стратегии включать или отключать. Каждая стратегия была индивидуально проверена, доработана и оптимизирована для обеспечения еще лу
Lizard
Marco Scherer
4.49 (35)
ЧТО ТАКОЕ LIZARD? Lizard - это полностью автоматический советник (Expert Advisor), разработанный исключительно для XAUUSD (золото) на MetaTrader 5. Он использует мультистратегическую систему пробоя на основе свингов, которая определяет ключевые структурные уровни на графике и размещает отложенные стоп-ордера в точно рассчитанных точках входа. Без мартингейла. Без сетки. Без усреднения. Каждая сделка имеет заданный Stop Loss и Take Profit и активно управляется многоуровневой системой выхода, авто
Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
The Gold Reaper MT5
Profalgo Limited
4.46 (102)
ГОТОВНОСТЬ К ИСПОЛЬЗОВАНИЮ ПРОПОРЦИИ! (   скачать SETFILE   ) ПРЕДУПРЕЖДЕНИЕ: Осталось всего несколько экземпляров по текущей цене! Окончательная цена: 990$ Получите 1 советника бесплатно (на 3 торговых аккаунта) -> свяжитесь со мной после покупки Выгодное комплексное предложение     ->     нажмите здесь ПРИСОЕДИНИТЬСЯ К ОБЩЕСТВЕННОЙ ГРУППЕ:   Нажмите здесь   Сигнал в реальном времени Сигнал клиента Обзоры YouTube ПОСЛЕДНЕЕ РУКОВОДСТВО Добро пожаловать в «Золотого Жнеца»! Созданный на основе
Adaptive Gold Scalper Important Pre-notice: This strategy requires a long period of practical verification, and favorable trading returns cannot be guaranteed in the short run. Traders must select brokers with ultra-low order latency, minimal slippage and zero/low stop level requirement; poor broker conditions will lead to disastrous trading results. I have over 14 years of professional trading experience. With proper brokerage conditions and sufficient running time, this fully automated scalpi
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.41 (126)
Меньше сделок. Лучшие сделки. Стабильность прежде всего. • Живой сигнал Режим 1   Живой сигнал Режим 2 Twister Pro EA — это высокоточный скальпинговый советник, разработанный исключительно для XAUUSD (Золото) на таймфрейме M15. Торгует реже — но каждая сделка имеет смысл. Каждый вход проходит через 5 независимых уровней проверки перед открытием ордера, что обеспечивает чрезвычайно высокую точность на стандартной конфигурации. ДВА РЕЖИМА: • Режим 1 (рекомендуется) — Очень высокая точность, ма
ВАЖНЫЙ   : Этот пакет будет продаваться по текущей цене только в очень ограниченном количестве экземпляров.    Цена очень быстро вырастет до 1999$    Включено более 100 стратегий   , и их будет еще больше! БОНУС   : При цене 1499$ или выше — выберите  5     моих других советника бесплатно!  ВСЕ ФАЙЛЫ НАБОРА ПОЛНОЕ РУКОВОДСТВО ПО НАСТРОЙКЕ И ОПТИМИЗАЦИИ ВИДЕО РУКОВОДСТВО ЖИВЫЕ СИГНАЛЫ ОБЗОР (третья сторона) NEW - VERSION 5.0 - ONECHARTSETUP NEW - 30-STRATEGIES LIVE SIGNAL Добро пожаловать в И
Smart Gold Hunter
Barbaros Bulent Kortarla
5 (20)
Smart Gold Hunter — это Expert Advisor для торговли XAUUSD / Gold на MetaTrader 5. Он создан для трейдеров, которые предпочитают советник по золоту без сетки, без мартингейла, с реальными Stop Loss и Take Profit, а также с контролируемым управлением риском. Вы можете проверить live-сигналы перед покупкой: Live Signal - IC Markets: https://www.mql5.com/en/signals/2365400?source=Site +Signals+My Live Signal - Ultima Markets: https://www.mql5.com/en/signals/2376242?source=Site +Signals+My Smart Go
Quantum King EA
Bogdan Ion Puscasu
4.96 (211)
Quantum King EA — интеллектуальная мощь, усовершенствованная для каждого трейдера IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. Специальная цена запуска Живой сигнал:       КЛИКНИТЕ СЮДА Версия MT4:   ЩЕЛКНИТЕ ЗДЕСЬ Канал Quantum King:       Кликните сюда ***Купите Quantum King MT5 и получите Quantum StarMan бесплатно!*** За подробностями обращайтесь в личном сообщении! Управляйте   своей торговлей точно и
Quantum iGold MT5
Yassine Mouhssine
5 (14)
Quantum iGold MT5 — Продвинутая система ИИ-трейдинга (XAUUSD) Quantum iGold MT5 — это полностью автоматизированная торговая система, созданная с использованием передовых технологий искусственного интеллекта. Она использует гибридную нейронную архитектуру, объединяющую модели LSTM и Transformer для анализа поведения цены на XAUUSD. Такая структура позволяет системе выявлять рыночные паттерны, адаптироваться к изменениям волатильности и генерировать технически точные торговые сигналы в реальном вр
Gold Snap
Chen Jia Qi
4.47 (17)
Gold Snap — система быстрого захвата прибыли на золоте Живой сигнал: https://www.mql5.com/en/signals/2362714 Живой сигнал 2: https://www.mql5.com/en/signals/2372603 Реальный сигнал v2.0: https://www.mql5.com/en/signals/2379945 Осталось только 3 копии по текущей цене. Скоро цена будет повышена до $999. Важно: После покупки, пожалуйста, свяжитесь с нами через личные сообщения, чтобы получить руководство пользователя, рекомендуемые настройки, примечания по использованию и поддержку обновлений. ht
Mavrik Scalper
Vladimir Lekhovitser
4.5 (2)
Торговый сигнал в реальном времени Публичный мониторинг торговой активности в режиме реального времени: https://www.mql5.com/ru/signals/2378119 Официальная информация Профиль продавца Официальный канал Руководство пользователя Инструкции по установке и использованию: Открыть руководство пользователя Mavrik Scalper представляет новое поколение торговых советников, разработанных на основе архитектуры нейронной сети Hybrid Attention. В отличие от традиционных алгоритмических стратегий, к
Logan MT5
Thierry Ouellet
5 (9)
LIMITED TIME OFFER AT 249$ Price will go up at  499$ on July 31st! Logan MT5 isn't your typical Gold Grid EA that blindly opens trade after trade, consuming your margin and putting your capital at unnecessary risk. Instead, it patiently waits for high-probability entry opportunities and uses an intelligent recovery system that combines ATR-based grid spacing with dynamic lot progression . This allows it to withstand adverse market movements that would wipe out most conventional grid EAs—includ
Goldwave EA MT5
Shengzu Zhong
4.73 (71)
Реальный торговый счёт   LIVE SIGNAL (IC MARKETS): https://www.mql5.com/en/signals/2339082 Данный EA использует абсолютно ту же торговую логику и те же правила исполнения, что и верифицированный сигнал реальной торговли, представленный на MQL5.При использовании рекомендованных и оптимизированных настроек, а также при работе с надёжным ECN / RAW-spread брокером (например, IC Markets или TMGM) , поведение EA в реальной торговле спроектировано таким образом, чтобы максимально соответствовать струк
Nexorion Initium Novum EA
Valentina Zhuchkova
4.89 (18)
NEXORION: Initium Novum — Детерминированная логика и алгоритмический синтез NEXORION — это аналитический комплекс институционального уровня, базирующийся на строгих математических алгоритмах обработки ликвидности. В основу проекта заложена концепция прозрачности вычислений: советник преобразует хаотичные котировки в структурированные геометрические зоны, визуализируя процесс принятия решений непосредственно на торговом графике. Мониторинг в реальном времени https://www.mql5.com/es/signals/237233
Zerqon EA
Vladimir Lekhovitser
3.18 (28)
Торговый сигнал в реальном времени Публичный мониторинг торговой активности в режиме реального времени: https://www.mql5.com/ru/signals/2372719 Официальная информация Профиль продавца Официальный канал Руководство пользователя Инструкции по установке и использованию: Открыть руководство пользователя Zerqon EA — это адаптивный экспертный советник, разработанный специально для торговли XAUUSD. Стратегия основана на модели нейронной сети Deep LSTM, интегрированной через ONNX, что позволяе
AXIO Gold EA
Shengzu Zhong
4.6 (10)
AXIO GOLD EA MT5 Ссылка на реальный торговый сигнал MQL5 https://www.mql5.com/en/signals/2378982?source=Site+Signals+My AXIO GOLD EA MT5 — это автоматическая торговая система, разработанная специально для торговли золотом XAUUSD на платформе MetaTrader 5. Этот советник использует ту же логику и те же правила исполнения, что и проверенный реальный сигнал, представленный на MQL5. При использовании рекомендованных оптимизированных настроек у надежного брокера с ECN/RAW-спредом, например TMGM , пове
Quantum Athena X
Bogdan Ion Puscasu
5 (1)
Более интеллектуальное управление. Повышенная точность. Добро пожаловать в Quantum Athena X — торговую систему для сфокусированной торговли золотом нового поколения, которая развивает точность, эффективность и дисциплинированность исполнения Quantum Athena. Quantum Athena X построена на том же оптимизированном базовом движке и использует те же 6 тщательно отобранных стратегий, что и Quantum Athena. Каждая стратегия была индивидуально доработана и оптимизирована для текущих рыночных условий GO
Quantum Emperor MT5
Bogdan Ion Puscasu
4.86 (507)
Представляем       Quantum Emperor EA   , новаторский советник MQL5, который меняет ваш подход к торговле престижной парой GBPUSD! Разработан командой опытных трейдеров с опытом торговли более 13 лет. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Купите Quantum Emperor EA и вы можете получить  Quantum StarMan   бесплатно!*** За подробностями обращайтесь в личном сообщении Подтвержденный сигнал:   нажмите здесь В
Fantastic 4 Four-in-One Trading System Introduction Fantastic 4 is an automated trading EA integrating four mutually independent quantitative trading logics targeting XAUUSD. After long-term research, iterative optimization, historical backtesting and live market verification, each built-in strategy has exclusive entry rules, independent order management and customized risk control modules. All strategies run separately without mutual interference. The combination of four strategies with low cor
Pulse Engine
Jimmy Peter Eriksson
3.94 (34)
ОБНОВЛЕНИЕ - ОСТАЛОСЬ ВСЕГО НЕСКОЛЬКО ЭКЗЕМПЛЯРОВ ПО ТЕКУЩЕЙ ЦЕНЕ! Главная цель этой системы — долговременная работа в режиме реального времени без использования каких-либо рискованных мартингейлов или сеток.  ОЧЕНЬ ОГРАНИЧЕННОЕ КОЛИЧЕСТВО ЭКЗЕМПЛЯРОВ ПО ТЕКУЩЕЙ ЦЕНЕ Окончательная цена: 1499 долларов США [Сигнал в реальном времени]    |    [Результаты тестирования]    |    [Руководство по настройке]    |    [Результаты FTMO] Другой подход к торговле Торговая система Pulse Engine не использует н
SomaOil
Andrii Soma
5 (2)
SomaOil — мультистратегийный пробойный советник для MetaTrader 5, созданный исключительно для сырой нефти WTI (XTIUSD). Один график, один советник, 20 независимых стратегий, работающих вместе как единый диверсифицированный портфель. Живой сигнал. Чтобы сделать его доступным на старте, я использую прозрачную модель поэтапного роста цены: Стартовая цена: 100 USD (48 часов) Начиная с понедельника цена увеличивается на 100 USD за каждые 10 проданных копий Цена повышается не чаще одного раза в день,
Gold Neural Core — Hyper-Scalping Grid System for XAUUSD Limited-Time Offer: Buy Gold Neural Core, Get Any Other EA Free — For Life For a limited time, every purchase of Gold Neural Core includes a lifetime license to any other EA in my MQL5 Market lineup — your choice, no strings attached. Learn how I personally manage risk when using grid systems:  https://www.mql5.com/en/blogs/post/767250 Join my open group for questions related to any of my products:  https://www.mql5.com/en/messages/014beab
Cortex Aurex
Vladimir Mametov
4.56 (9)
Это полностью автоматический советник (Expert Advisor) для MetaTrader 5, разработанный специально для торговли золотом (XAUUSD). Его торговая логика построена с учетом особенностей рынка золота: высокой волатильности, резких ценовых движений и быстрых разворотов. Советник автоматизирует торговлю в условиях, где особенно важны скорость реакции, дисциплина и точное управление позициями. Основное внимание уделено грамотному сопровождению сделок, быстрому реагированию на изменения рынка и контролиру
SixtyNine EA
Farzad Saadatinia
4 (4)
SixtyNine EA – Экспертный советник для торговли золотом на MetaTrader 5, оснащённый 6 интегрированными стратегическими слоями, предустановленным Stop Loss в каждой сделке и чистой торговой структурой без Martingale, Recovery-систем и Grid-торговли. Публичный Live Signal: старт $500, фиксированный 0.02 лота, рост 500%+, более 20 недель работы Публичный Live Signal является главным доказательством работы SixtyNine EA . Счёт был запущен с балансом $500 , использовался фиксированный размер лота 0.0
Smart Gold Impulse
Barbaros Bulent Kortarla
3.63 (16)
Smart Gold Impulse теперь доступен на этапе специального раннего запуска. Это советник (EA), который я сейчас использую с впечатляющими результатами на своем реальном сигнальном счете в Ultima Markets. Вы можете проверить текущую доходность в результатах живых сигналов Ultima, где Smart Gold Impulse уже продемонстрировал очень сильный потенциал в реальных рыночных условиях. Тот же сет-файл (set file), который используется на моем реальном счете в Ultima, будет предоставлен исключительно поку''
Gold House MT5
Chen Jia Qi
4.53 (59)
Gold House — Система торговли на пробоях свинг-структуры золота Один советник. Три торговых режима. Выберите тот, который подходит именно вам. Без сетки. Без мартингейла. Цена будет увеличиваться на 50 долларов после каждых 10 покупок. Окончательная запланированная цена: 1 999 долларов. Торговые сигналы в реальном времени: Режим Profit Priority: https://www.mql5.com/en/signals/2359124 Режим BE Priority:  https://www.mql5.com/en/signals/2372604 Адаптивный режим:   https://www.mql5.com/en/sign
Impulse MT5
Simon Reeves
5 (13)
Are you ready to power up your Gold trading? Impulse by Starpoint Trading — A six-strategy gold EA that waits for the perfect shot. Come chat with us in our public MQL5 channel!  https://www.mql5.com/en/channels/starpoint Impulse v2.00 is here! The biggest update in Impulse's history has arrived. Version 2.00 takes everything that made Impulse a disciplined, patient Gold trading system and elevates it across the board: A brand-new sixth strategy — Conviction Momentum joins the squad, hunting de
Scalper speed with sniper entries. Built for Gold. Tired of all the fake EAs? Wave Rider  is honest, transparent EA without any fake AI or manipulated back-test that's being continuously developed $499  until Signal reaches 150% - then 599 USD Check the Live signal  or Manual  or  Broker performance Version 5.0 upgrade notice: Close all Wave Rider positions before updating. Strategy Magic Numbers and several input names changed. Review your settings and save a new preset because older sets or t
Bypass Generator
Connor Michael Woodson
4.5 (4)
Bypass Generator — это детерминированная скальпинговая система для XAUUSD, основанная на алгоритмах институционального уровня. Текущий сигнал: НАЖМИТЕ ЗДЕСЬ Это не типичный советник (EA), который бездумно открывает сделку за сделкой, уничтожая вашу маржу и подвергая депозит ненужному риску. Каждая точка входа проходит через 16 независимых уровней проверки перед открытием единственной позиции. Здесь нет сеток, и каждая сделка имеет виртуальные Take Profit и Stop Loss. Кривая результатов бэктеста
Другие продукты этого автора
AVWAP Retest Pro Market EA is an adaptive trading robot built around Anchored VWAP retest, breakout, and continuation logic. The Expert Advisor calculates Anchored VWAP internally and uses price interaction around this dynamic level to identify structured trading opportunities. The system combines Anchored VWAP logic with EMA trend confirmation, optional Heikin Ashi filtering, ATR-based risk control, break-even, trailing stop, and multiple trade management protections. It is designed with a vali
FREE
Overview Anti-Spoofing Strategy (v1.0) is a live-market Expert Advisor designed to detect and counter high-frequency DOM (Depth of Market) spoofing manipulations in ECN/STP environments. The system monitors real-time Level-2 order book changes via MarketBookGet() and identifies large fake orders that appear and vanish within milliseconds — a hallmark of spoofing. Once such manipulations are detected, the algorithm opens a counter trade in the opposite direction of the spoof, anticipating the tru
FREE
This EA looks for a divergence signal, which occurs when the price of a financial instrument moves in the opposite direction of the RSI indicator. This divergence can signal that the current trend is losing momentum and a reversal is likely. The EA identifies two types of divergence: Bullish (Positive) Divergence : This occurs when the price makes a new lower low , but the RSI indicator fails to confirm this by making a higher low . This discrepancy suggests that bearish momentum is weakening, a
FREE
Overview This Expert Advisor (EA) targets high-probability, short-term scalping opportunities by analyzing minute-based market activity (tick momentum), indecision boxes , and breakout/momentum behavior —optionally aligned with trend and session filters. Version 2.0 replaces second-based TPS with a minute (M1) window model that’s Open Prices Only compatible and more stable to optimize. Additional entry modes ( Breakout Close and Retest Entry ) help capture moves that classic momentum filters ma
FREE
Concept. Flash ORR is a fast-reaction scalping EA that hunts false breakouts at important swing levels. When price spikes through a recent swing high/low but fails to close with strength (long wick, weak body), the move is considered rejected . If the very next candle prints strong opposite momentum , the EA enters against the spike: Up-spike + weak close → followed by a bearish momentum bar → SELL Down-spike + weak close → followed by a bullish momentum bar → BUY Entries are placed at the open
FREE
This EA looks for a two-layer momentum/liquidity breakout : Divergence detection (trigger): TPS (ticks-per-second / bar tick_volume ) must be high vs. its recent average ( TPS_Multiplier ), while Volatility (bar high–low) must be low vs. its recent average ( Volatility_Multiplier ). This combo flags “ flow in a quiet range ” → a likely near-term breakout. Direction & filter: If the signal bar is green ( close > open ) → consider BUY ; if red → SELL . Optional MA trend filter ( Use_TrendFilter )
FREE
ATR Squeeze Fade EA: Low Volatility Mean Reversion Strategy The ATR Squeeze Fade is a specialized scalping Expert Advisor designed to exploit rapid price spikes that occur after extended periods of low market volatility. Instead of following the direction of the spike, the EA trades against it, applying the principle of mean reversion . With advanced entry filters and strict risk management, it focuses on high-probability reversal setups. How the Strategy Works The strategy is based on the assu
This Expert Advisor (EA) generates trading signals by combining popular technical indicators such as   Chandelier Exit (CE) ,   RSI ,   WaveTrend , and   Heikin Ashi . The strategy opens positions based on the confirmation of specific indicator filters and closes an existing position when the color of the Heikin Ashi candlestick changes. This is interpreted as a signal that the trend may be reversing. The main purpose of this EA is to find more reliable entry points by filtering signals from var
Overview Trade Whale Supply & Demand EA   is a fully automated trading system built on   supply and demand zones, liquidity sweeps, and market structure shifts . It detects institutional footprints and high-probability trading zones, aiming for precise entries with tight stop-loss and optimized risk/reward. Works on Forex, Gold ( XAUUSD ) and Indices. Designed for   sharp entries ,   low-risk SL placement , and   dynamic profit targets . Strategy Logic The EA combines: Supply & Demand Zo
This Expert Advisor (EA) is designed to automate trading based on Fibonacci retracement levels that form after strong price movements. The main objective of the EA is to identify entry points during pullbacks within a trend. It executes trades based on a predefined risk-to-reward ratio, entering the market when the price action is confirmed by specific candlestick patterns. How the EA Works The EA automatically performs the following steps on every new bar: Trend and Volatility Detection : First
Trade Whale – Tick Compression Breakout (v1.0) is a short-term breakout scalper that filters setups via ATR-based compression . After price coils in a tight band on your chosen timeframe (e.g., H1), it opens a position when the previous candle’s high/low is broken . Risk is anchored by SL = ATR × multiplier , while TP is an R-multiple of that stop distance (e.g., 2.0R). Position size can be percent-risk or fixed lot , and is margin-clamped to broker limits for safety. A timeout can auto-close p
O verview Trend Band Strategy (v1.0) is a hybrid trend-following and mean-reversion Expert Advisor that blends Fibonacci-scaled Bollinger Bands with Parabolic SAR confirmation. It identifies stretched price moves toward the extreme Fibonacci bands, waits for a reversal signal aligned with the SAR trend switch, and opens counter-trend trades aiming for reversion toward equilibrium. The algorithm runs entirely on bar-close logic for stability and includes dynamic risk-based lot sizing, margin veri
Фильтр:
Нет отзывов
Ответ на отзыв