Cipherline Confluence

CIPHER SMC Confluence 

Overview

CIPHER is a multi-engine, multi-timeframe automated trading system for MetaTrader 5 built around a confluence-scoring architecture. Rather than relying on a single strategy, it runs three independent signal-generation engines — Adaptive Support/Resistance (A2SR), Smart Money Concepts (SMC), and Liquidity — each evaluated across four separate timeframes simultaneously, and only acts when a configurable minimum number of those engines and timeframes agree on direction. It layers risk management, exposure control, correlation filtering, session/news filtering, grid-based averaging, a recovery system, and a live on-chart information panel on top of the signal core, with full trade logging to CSV. The EA is designed to run on a single symbol per chart instance but tracks correlation against a fixed basket of other majors (XAUUSD, USDJPY, EURUSD, GBPUSD) to avoid stacking correlated risk.

Master Controls

  • InpMasterEnable: global on/off switch for all trading activity. When false, the EA still initializes and can display the panel, but places no orders.
  • InpPrimaryTF: the timeframe used for the EA's own bar-close signal engines (A2SR, SMC, Liquidity) as run on the "primary" instance, separate from the four confluence timeframes.

Engine Toggles

Nine independent boolean switches let the user enable or disable each subsystem without touching code: A2SR Engine, SMC Engine, Liquidity Engine, Volatility Engine, Confluence Scoring, Smart Recovery, Smart Grid, Chart Panel, and Trade Logging. Disabling an engine removes its vote from the confluence score and skips its computation entirely, which also reduces CPU load per tick.

Risk Management

  • Position sizing: Risk-percent-based or fixed-lot. If InpFixedLot is greater than zero, every trade uses that fixed volume; otherwise lot size is derived from InpRiskPercent of current account equity divided by the monetary value of the stop-loss distance in points, using the symbol's actual tick value and tick size (not a hardcoded pip value), then normalized to the broker's volume step, minimum, and maximum.
  • Daily drawdown cap ( InpMaxDailyDrawdown ): tracked from an equity baseline that resets once a day passes, expressed as a percentage loss from that baseline.
  • Total/peak equity drawdown cap ( InpMaxEquityDrawdown ): tracked from the highest equity value ever observed during the EA's run, expressed as percentage decline from that peak.
  • Per-symbol exposure cap ( InpMaxExposurePct ): total open volume on the traded symbol, converted to a percentage of account equity, checked against a ceiling before allowing new trades.
  • Global exposure cap ( InpGlobalMaxExposure ): the same calculation but summed across every open position on the account regardless of symbol, protecting against overexposure when multiple EA instances or manual positions are active simultaneously.

Both drawdown checks and both exposure checks are enforced on every tick before any new order is considered, and any breach blocks trading for that tick without closing existing positions.

Filters

  • Spread filter ( InpMaxSpread ): current spread in points must be at or below this value or new trades are blocked.
  • Slippage filter ( InpMaxSlippage ): passed to the trade object as the maximum allowed deviation in points on order execution; also monitored after execution attempts for slippage-related error codes.
  • Correlation filter ( InpCorrelationThreshold ): computed via a rolling Pearson correlation coefficient between the traded symbol and a basket of majors (XAUUSD, USDJPY, EURUSD, GBPUSD by default), updated every tick and every 60 seconds via the timer, over a 100-bar H1 lookback window. If correlation with any basket member exceeds the threshold, new trades are suppressed to avoid doubling up on the same directional risk under a different symbol name.
  • Session filter ( InpEnableSessionFilter ): classifies the current server time into Asia, London, New York, or Off sessions based on hour-of-day boundaries (00:00–09:00 Asia, 09:00–16:00 London, 16:00–24:00 New York). The filter is currently permissive in tester mode and live mode alike, but the session classification is exposed for the panel and future restriction logic.
  • News filter ( InpEnableNewsFilter ): a placeholder hook that currently always reports no news event; it is scaffolded to be wired into an external economic calendar feed without changing the rest of the EA's logic.

Confluence Scoring System

Four independent timeframes ( InpTF1 through InpTF4 , defaulting to M5, M15, H1, H4) each get their own full set of A2SR, SMC, and Liquidity engine instances — twelve engine instances total, all initialized and torn down independently. On every new primary-timeframe bar, the confluence scorer:

  1. Polls each of the three engines on each of the four timeframes for a directional signal (+1, -1, or 0).
  2. Sums the three engine directions per timeframe to get a per-timeframe net direction.
  3. Counts how many of the four timeframes agree in the positive direction versus the negative direction.
  4. Assigns an overall direction (whichever side has more agreeing timeframes).
  5. Assigns a confluence level from 1 to 6 based on how many timeframes agree and the strength of the strongest timeframe's score: level 6 requires unanimous 4-of-4 agreement, level 5 requires 3-of-4 with a strong lead score, level 4 requires 2-of-4 with a moderate lead score, and levels 3, 2, and 1 represent progressively weaker degrees of agreement.
  6. A trade is only considered if the confluence level meets or exceeds InpConfluenceMinLevel (default 4) and the overall direction is non-zero.

Signal Engines (Detail)

A2SR Engine (Adaptive Support/Resistance): uses a 20/50-period EMA crossover on the given timeframe combined with a 14-period RSI momentum filter and a swing-high/swing-low support/resistance detector (5-bar pivot detection over a 100-bar lookback). A buy signal requires an EMA cross up, RSI not in oversold-momentum-negative territory, and price either near a detected support level or breaking out of a detected resistance level; the sell case mirrors this. Detected zones are recorded in a dedicated CZoneManager instance per engine for potential chart visualization.

SMC Engine (Smart Money Concepts): detects Break of Structure (BOS) by comparing the current bar's high/low against the prior two bars' highs/lows (5-bar lookback via CopyHigh / CopyLow ), detects Change of Character (CHOCH) via a 4-bar close-price pattern check, and computes a Premium/Discount percentage representing where current price sits within the highest-high to lowest-low range of the last 50 bars. A buy signal requires a bullish BOS, no CHOCH, and price in the "discount" zone (below 40 percent of the range); the sell case is the mirror with the "premium" zone (above 60 percent).

Liquidity Engine: currently a scaffolded stub that initializes its own zone manager and symbol/timeframe context but returns no directional signal (always 0). It's structured to be extended with liquidity-sweep and stop-hunt detection logic without requiring changes elsewhere in the codebase, since the confluence scorer already treats it as one of three equal-weighted votes.

Volatility Engine: computes both a fast (14-period) and slow (50-period) ATR, a normalized volatility ratio against a 100-sample rolling history of past volatility readings, and flags a "volatility spike" when current volatility exceeds twice the historical average. Provides ATR-based stop-loss and take-profit price calculations (default multipliers of 1.5x ATR for SL and 2x ATR for TP) used as a fallback whenever an engine doesn't supply its own SL/TP, and its spike detection feeds directly into the Safety Filter.

Trade Execution Priority

When confluence conditions are met, the EA searches for a concrete entry price and stop levels in a fixed priority order: A2SR signal first (if enabled and its direction matches confluence direction), then SMC signal, then Liquidity signal, and finally — if confluence level is 5 or higher but no individual engine supplied a matching directional signal — a fallback "strong confluence" market entry using ATR-based SL/TP. Whichever source wins supplies the entry price, stop-loss, take-profit, and a human-readable reason string that gets attached to the order comment and log entry.

Smart Recovery System

When enabled and not running in strategy tester mode, the recovery system monitors the drawdown from peak equity. If current drawdown falls between 5 percent and the configured InpRecoveryMaxDrawdown ceiling, and the number of recovery trades already placed is below InpRecoveryMaxTrades , it opens an additional trade sized by CalculateRecoveryLot() , which scales the base lot up by a multiplier proportional to current drawdown (capped at 3x the base lot and further capped by InpRecoveryMaxLot ). All recovery trades are tracked in an internal ticket array; a basket take-profit mechanism checks the combined floating profit of all tracked recovery trades every 60 seconds via the timer and closes the entire basket the moment combined profit turns positive.

Smart Grid System

When enabled, each executed order also registers a grid level (price, lot size, order type) in an internal array capped at InpGridMaxLevels (default 5). Grid lot sizes scale geometrically by InpGridMultiplier (default 1.5x) per level. On every tick where a position is already open, the EA checks whether price has reached any pending, unfilled grid level's trigger price and, if so, executes it. Grid level state (including the resulting order ticket) is stored and updated through dedicated accessor methods ( GetLevel , SetLevelTicket , GetLevelTicket ) rather than raw pointer access, since MQL5 does not permit pointers to plain struct types. A grid-basket take-profit calculation ( CalculateGridTP ) is also available, computing a blended average entry price across all active grid levels and deriving a combined target when the basket is underwater.

Safety Filter

A centralized gatekeeper ( CSafetyFilter ) that, outside of tester mode, runs every enabled sub-check — spread, slippage, correlation, volatility spike, and drawdown — before allowing the main tick logic to proceed to signal evaluation. Each sub-check can be independently toggled via SetChecks() . In tester mode, the safety filter is bypassed entirely ( CheckAll returns true unconditionally) to avoid interference with backtesting and strategy validation runs, while daily/equity drawdown and exposure checks (handled separately by the Risk Manager) still apply.

Logging System

Every trade entry and closed-trade event is written to an in-memory ring buffer of up to 1,000 entries ( SLogEntry records: time, symbol, entry reason, exit reason, entry price, exit price, volume, and profit) and simultaneously printed to the terminal log. Outside of tester mode, the buffer is periodically flushed to a CSV file ( Cipher_<symbol>_<magic>.csv or a custom filename) via FileOpen / FileWrite , both on a fixed interval (every 10 completed trades, checked in OnTrade ) and every 60 seconds via the timer, as well as on EA deinitialization.

On-Chart Panel

A dark-themed, live-updating panel (toggle via InpEnablePanel , positioned by SetPosition ) built from OBJ_RECTANGLE_LABEL and OBJ_LABEL chart objects. It displays: symbol, magic number, live/tester mode indicator; account equity, balance, floating profit (color-coded green/red), and open position count; current confluence level out of 6, resolved direction (BUY/SELL/NEUTRAL, color-coded), and the textual reason for the last signal; and current spread (color-coded against the max-spread filter), active trading session name, and any pending news item. The panel fully redraws its labels each update cycle rather than mutating them in place, and is destroyed cleanly on EA deinitialization along with all Cipher_ -prefixed chart objects.

Premium Features

  • Auto Settings Loader ( InpAutoSettingsLoader ): a hook, run once at initialization, intended to load symbol-specific parameter presets; currently logs a confirmation message and is structured for future preset-table integration (a SPreset structure already exists in the codebase for this purpose).
  • Equity Shock Pause ( InpAutoPauseOnEquityShock ): outside of tester mode, tracks tick-to-tick equity percentage change; if equity drops 5 percent or more in a single evaluation, trading is paused entirely until equity recovers by more than 2 percent from the paused low.
  • Smart Time Exit ( InpSmartTimeExit ) and Partial Close ( InpPartialClose , with InpTP1Ratio / InpTP2Ratio controlling the partial-close split): both parameters and their configuration values are wired through to the CPremiumFeatures class, but the underlying methods ( SmartTimeExit , PartialClose ) are currently stubbed to return false/no-op, reserved for a follow-up release that will implement staged partial closes at TP1 and time-based forced exits.

Correlation Engine

Maintains a rolling 100-sample H1 close-price history for up to ten tracked symbols (the traded symbol plus XAUUSD, USDJPY, EURUSD, GBPUSD by default), recalculates a full pairwise Pearson correlation matrix every tick and every 60 seconds via the timer, and exposes both a direct pairwise correlation lookup and an IsCorrelated() check used by the Safety Filter. The correlation check currently returns false unconditionally pending full threshold-based wiring, but the underlying matrix computation is fully live and available for the Safety Filter's CheckCorrelation to consume once that final gate is enabled.

Lifecycle Functions

OnInit() detects tester/visual mode, builds a unique magic number from a hash of the symbol name combined with the chart ID, allocates and initializes every module (with a hard failure return on any allocation failure), sets trade execution parameters (magic number, slippage deviation, fill-or-kill order filling, synchronous mode), seeds the correlation basket, and creates the panel if enabled. OnDeinit() flushes logs, destroys the panel and all EA-prefixed chart objects, and cleanly deletes every allocated module pointer in reverse dependency order. OnTick() performs the full per-tick pipeline: refresh symbol data, update equity peak, update volatility and correlation histories, check equity-shock pause, run the safety filter and exposure/session/news checks, manage any already-open position's grid levels, and on new-bar boundaries evaluate the confluence engines and execute new trades if conditions are met. OnTrade() captures closed-deal history matching the EA's magic number and logs the resulting profit/loss. OnTimer() runs a 60-tick-interval maintenance cycle covering log export, correlation matrix refresh, volatility history refresh, and recovery basket take-profit checks. OnTester() returns account profit as the optimization criterion for the Strategy Tester.


Рекомендуем также
1 цена за 3 стратегии Сигнал в реальном времени:   QL Drive   |   QL Steady          Сет-файлы Что такое Quant Lattice (Квант Латтис) Quant Lattice (Квант Латтис) — это полностью автоматический торговый советник (Expert Advisor), который торгует одной валютной парой: AUDCAD. Он поставляется с двумя разными стратегиями — Steady (Стеди) и Drive (Драйв).  Вы устанавливаете его один раз, выбираете стратегию, настраиваете управление капиталом — и он торгует без вашего вмешательства. Почему AUDCAD?
提供专业的EA编程服务,推出特色仪表盘EA编程,将您的交易策略自动化,可视化,一个图表管理多个交易货币对,详情查看: http://www.ex4gzs.com   Providing quick Developments and Conversion of MT4/MT5 EAs, Indicators, Scripts, and Tools. If you are looking for an Dashboard EA to turn your trading strategy into auto trading algo and to manage multi trades in one chart with visualizing tool, come and visit http://www.ex4gzs.com/en for more details. 如果产品有任何问题或者您需要在此产品上添加功能,请联系我 Contact/message me if you encounter any issue using the product or need extra feat
A dual-core neural EA that trades gold and INDEXES OR FX with discipline PLUG AND PLAY NO COMPLICATED MANUAL . Trained Brain Upgrades — included with your purchase Black Eagle ships ready to learn on any instrument. On request, I also provide it pre-trained : the EA can be upgraded with a brain built from my own live trading on XAUUSD (Gold) and NDX/US100 — thousands of accumulated training samples, a calibrated trade filter, and trusted status from the very first bar. No cold-start phase, no wa
Советник   Inside Expert Advisor  торгует на откат после сильного движения . Торговая стратегия Советник выставляет отложенные ордера, которые тянутся за ценой, чтобы поймать откат против тренда. Пара EURUSD, ТФ М15. Первый ордер выставляется по следующим правилам: Если свеча бычья на текущем таймфрейме выставляется отложенный ордер на продажу; Если свеча медвежья   на  текущем  таймфрейме , выставляется отложенный  ордер на покупку; Ордер тянется за ценой до его срабатывания . Открытые позиции
提供专业的EA编程服务,推出特色仪表盘EA编程,将您的交易策略自动化,可视化,一个图表管理多个交易货币对,详情查看: http://www.ex4gzs.com   Providing quick Developments and Conversion of MT4/MT5 EAs, Indicators, Scripts, and Tools. If you are looking for an Dashboard EA to turn your trading strategy into auto trading algo and to manage multi trades in one chart with visualizing tool, come and visit http://www.ex4gzs.com/en for more details. 如果产品有任何问题或者您需要在此产品上添加功能,请联系我 Contact/message me if you encounter any issue using the product or need extra feat
I am selling my own Expert Advisor called Hedge Grid v1 Polish , designed for automated trading. The EA combines scalping with a grid system while also using protective mechanisms intended to reduce risk and protect the account from excessive drawdown. Main features: avoids market consolidation and weak trading conditions, automatic risk management, account protection and margin level monitoring, fast scalping entries, a grid system with controlled position adding, a recovery mechanism for losi
Честная правда о трейдинге: ни одно преимущество не длится вечно, потому что рынки постоянно меняются. Nexus Nine не претендует на обратное. Вместо погони за единственным сигналом "святого грааля" советник ищет множество мелких краткоживущих преимуществ и диверсифицирует риск между ними, чтобы портфель в целом оставался прибыльным даже когда отдельные сетапы перестают работать. Что делает Nexus Nine Pro одновременно мониторит до девяти основных валютных пар и ищет краткосрочные сетапы возврата к
XAU ATHENA MOMENTUM SUPREMACY  Multi-Timeframe Momentum Scalper (No Grid / No Martingale) XAU Athena Momentum Supremacy  is an elite, institutional-grade Expert Advisor engineered exclusively for the XAUUSD (Gold) market. Named after Athena, the Greek Goddess of Wisdom and Strategic Warfare, this system executes precision-timed entries by detecting Multi-Timeframe Momentum Confluence on the H1 chart. Unlike dangerous Grid or Martingale systems, Athena fires a single surgical strike per signal
GoldMaster EA
Cristian-silvian Olteanu
GoldMaster EA для торговли XAU/USD на MetaTrader 5 GoldMaster EA — это полностью автоматизированный инструмент для торговли XAU/USD (золото) на платформе MetaTrader 5. Он предназначен для трейдеров, предпочитающих простой подход и желающих исследовать автоматическую торговлю без сложных настроек. Особенности: Автоматическая торговля: Советник самостоятельно выполняет все операции. Преднастроенная установка: Ручная настройка не требуется, что делает использование удобным. Оптимизация для неболь
TKS GOLDEN BOT – XAUUSD Expert Advisor (M5) TKS GOLDEN BOT is a high-performance automated trading robot designed for XAUUSD (Gold) on MT5 . It combines price action with advanced technical filters to deliver precise entries and strong risk management. ️ How it works Main timeframe: M5 Trend filter: M15 (MA50) Signals: 2 consecutive candles + RSI + MA20 Filters: ATR, volume, structure, news Trade Management Split entry (2-step position) Dynamic Stop Loss based on ATR Partial Take Profit +
Zenith Aquarius Booster A Refined Strategy Engine for BTCUSD Most Expert Advisors on the market fall into one of two traps: they are either over-optimised to historical data and fail in live conditions, or they rely on grid and martingale recovery logic that averages deeper into losing positions. Zenith Aquarius Booster takes a different approach. Instead of offering dozens of loosely tested combinations across many symbols, Aquarius Booster is specifically engineered for BTCUSD — a market known
Mango Scalper
Mahmoud M A Alkhatib
Mango Scalper  is a fully automated scalping robot that uses a very Good and Smart breakout strategy, advanced money management and probabilistic analysis. Most effective in the price consolidation stages that occupy the bulk of the market time. Proven itself on real accounts with an excellent risk-to-reward ratio. Does not need forced optimization, which is the main factor of its reliability and guarantee of stable profit in the future. S uitable for both beginners and experienced traders.  
Make grid trading safe again | Built by a grid trader >> for grid traders.     Walkthrough Video  <==   Get Grid Rescue up and running in 5 minutes   This is MT5 version, click  here  for  BlueSwift GridRescue MT4     (settings and logics are same in both versions)   BlueSwift Grid Rescue   MT5    is a risk management   utility  MT5 EA  (used together with other grid trading experts) that can help you trade aggressive grid / averaging / martingale systems with manageable drawdown, therefore
/   ********** **********   ********** **********   ********** **********   ********** **********   ********** **********   / Big Sales for Easter! Price is reduced > 50 % already! Grasp the chance and Enjoy it!  /   ********** **********   ********** **********   ********** **********   ********** **********   ********** **********   / This is a powerful EA that support single order strategy, martingale strategy, multiple timeframes strategy, etc with lots of useful indicators and self defined
Project Indirect Lock is the hybrid algorithm of Arbitrage, Grid and Hedging. Simple way to describe is Lock USD by using GBPUSD and EURUSD. It is almost all time parallel direction. This way, we can reduce a lot of drawdown if we compare to original Grid and Hedging. P.S. Please note that !!EVERY INVESTMENT ALWAYSE HAVE RISK!! !!USE WISELY WITH YOUR OWN RISK!!
Project Name: AurumPulse Pro Subtitle: Precision EMA Momentum Engine  AurumPulse Pro is a high-frequency trend-following Expert Advisor (EA) engineered for the volatile movements of the precious metals market. By utilizing the interaction between a fast-reacting momentum average and a structural slow average, it identifies shifts in market sentiment with surgical precision. Core Logic & Mechanics Dual-Layer Confirmation: Executes a Buy order when the Fast EMA crosses above the Slow EMA and a Sel
EA Builder PRO
Arthur Hatchiguian
4.56 (9)
EA Builder - это инструмент, позволяющий создать свой собственный алгоритм и адаптировать его к своему стилю торговли. Классическая торговля, сетка, мартингейл, комбинация индикаторов с вашими личными настройками, независимые ордера или DCA, видимые или невидимые TP/SL, трейлинг-стоп, система покрытия убытков, система безубыточности, торговые часы, автоматический размер позиции и многое другое... В конструкторе советников есть все необходимое для создания вашего идеального советника. Существует
EA DESCRIPTION Buy Drop Point EA is a BUY-ONLY Expert Advisor based on price drop measured in points. The EA will open a BUY position every time the price drops a specified number of points, and it can open multiple positions within the same timeframe candle as long as the drop condition is met. Recommended long positive swap pairs The pairs below are pairs at FBS: AUDCHF AUDJPY CADCHF CADJPY CHFJPY EURCHF EURJPY GBPCHF GBPJPY NZDCHF NZDJPY USDCHF USDCHF USDJPY For other brokers, the condition
Gold Prophet
Raphael Schwietering
Gold Prophet — это полностью автоматизированный советник, разработанный для торговли XAUUSD (золото) на таймфрейме H1. Стратегия прошла всестороннее тестирование на протяжении 18 лет, охватывая множество рыночных циклов, периоды высокой волатильности и меняющиеся условия ликвидности, демонстрируя долгосрочную стабильность и надежность. Все сделки исполняются с заранее определенными уровнями Stop Loss и Take Profit, что обеспечивает дисциплинированное и контролируемое управление рисками. Советн
"The Easiest 3 EMA Technique + Grid Scalping (High WinRate)" describes a specific strategy in the realm of financial trading, with a focus on simplicity and effectiveness. Let's break down the key components: 1. **3 EMA Technique**: EMA stands for Exponential Moving Average, a type of moving average that places a greater weight and significance on the most recent data points. The '3 EMA' likely refers to a technique that uses three different EMAs with varying time frames to identify potential
FREE
Dear traders: We are a senior algorithm trading development team from China. Today, we are pleased to introduce a new intelligent trading algorithm, named bullx intelligent trading system. Different from other trading systems, bullx intelligent trading system will be specially adjusted and updated separately for a single foreign exchange variety. After long-term testing and verification, the parameter configuration of the system is relatively simple, The trading signal is relatively stable. You
StarFox
Juan Antonio Alvarenga Galindo
Визуальный гид: 4 уровня интеллектуальной защиты STARFOX  1. Введение в концепцию защиты на основе волатильности (ATR) В высокоточном алгоритмическом трейдинге фиксированные дистанции — кратчайший путь к устареванию. Рынок не статичен; его «дыхание» меняется ежедневно. Поэтому STARFOX использует ATR (Average True Range) в качестве фундаментальной единицы измерения для развертывания оборонительных щитов. ATR позволяет системе идентифицировать расширение цены относительно недавней волатильности.
XAU Swing Pro H4
Fernando Medina Villanueva
XAU Swing Pro H4 Обзор стратегии XAU Swing Pro H4 — это полностью автоматизированный эксперт, разработанный исключительно для свинг-трейдинга золотом (XAUUSD) на таймфрейме H4. Данная стратегия предназначена для захвата более крупных рыночных движений, ориентируясь на устойчивые тренды и значительные колебания в течение нескольких дней. Разработка и тестирование на надежность Советник был разработан с использованием более 20 лет исторических тиковых данных, что обеспечивает прочную статисти
Полностью автоматическая торговля.  Робот распознает статистические паттерны рынка, дающие наибольший профит. Без мартингейла и других рискованных стратегий. Все сделки защищены стоп-лоссом . Stat Pattern  — это полностью автоматический торговый робот для терминала MetaTrader 5, который использует статистические закономерности рынка. Эти закономерности найдены в результате многолетних научных исследований. Робот мультивалютный и оптимизирован для одновременной торговли на инструментах Golg, Nasd
️ IMPORTANT — READ BEFORE PURCHASE Botralix is designed exclusively for the H1 timeframe on XAUUSD (Gold) . This is not a limitation — it is the foundation of its edge. The entire strategy was built, tested, and refined specifically around H1 price structure on Gold. Using any other timeframe or pair will not deliver the same results. One chart. One timeframe. Uncompromising discipline. Discounted price. The price will increase by $50 with every 10 purchases. Launch Special: $349 (first 5 buyer
Оптимизирован для EURUSD Запускать на М5 Внутридневная торговля. разработан для работы с движениями цены на TimeFrame Н1 (торговля даже в отсутствие глобальной тенденции цены). Анализирует 2 или 3 TimeFrame-а. На каждом TF ЕА анализирует взаимоположение цены и средних скользящих MovingAvarage (МА) (одна или две на каждом TF). Алгоритм работы показан на скриншоте Сеты в комментах Преимущества хорошо оптимизируется для любого инструмента в любой момент рынка Возможность гибкой настройки конкретн
HighRider
Javier Antonio Gomez Miranda
EA Revolution - Smart Buy and Hold This EA is built for those who believe in the Buy and Hold strategy but want to take it to the next level. Instead of holding positions open for days or weeks, this system buys and sells daily, avoiding the risks of market gaps , eliminating swap costs, and improving risk management. The goal is simple: stick to the traditional investment philosophy but with a more dynamic and efficient strategy that adapts to the market day by day. It’s perfect for traders loo
Советник находит расхождения в двух коррелирующих валютных парах и торгует в сторону их обратного схождения. Рабочий таймфрейм: M30 Входные параметры MagicNumber - идентификационный номер на советника; OrdersComment - комментарий к ордеру, при пустом значении автоматический; Lots - размер лота; DepoPer001Lot - автоматический расчет лота (указывается баланс на единицу 0.01 лота) (при 0 используется значение лота из параметра Lots); TimeFrame - рабочий период; Symbol #2 - коррелирующая валюта; Sy
Stop chasing the market and start flowing with it. Trend Flow EA MT5   is designed for traders who want a clean, logical approach to the markets without staring at charts all day. No Martingale, no Grid, no risky averaging. Timeframe:  H1 (1 Hour)  is the sweet spot. It ignores the noise. It only opens a trade when the price "reloads" and confirms it is ready to continue the trend.
С этим продуктом покупают
Quantum Titan MT5
Bogdan Ion Puscasu
4.67 (12)
Quantum Titan, предоставляя возможности торговли институционального уровня в экосистеме Quantum, устанавливает новый стандарт точности, дисциплины и доказанной эффективности на реальном рынке. Разработанный для трейдеров, которые ожидают большего от советника GOLD Expert Advisor, Titan представляет собой следующий этап развития квантовых торговых технологий. Количество доступных лицензий строго ограничено — всего 1000 пожизненных лицензий по всему миру. После того, как все 1000 экземпляров буд
Iron Stops
Fajar Dicky Firmansyah
4.8 (25)
100K Real Signal:  https://www.mql5.com/en/signals/2386516 Без уловок. Без пустых обещаний. Iron Stops ориентирован на трейдеров, сосредоточенных на одном важном аспекте: последовательности . Независимо от того, работаете вы над проп-испытанием или управляете средствами клиентов, этот советник работает в установленных рамках и обеспечивает надежные результаты. Позиции закрываются в течение 36 часов. Запустите его на одном графике: Просто примените его к XAUUSD с использованием временного инте
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (39)
Легенда продолжается. Королева эволюционирует. Добро пожаловать в Quantum Queen X — новое поколение легендарной торговой системы GOLD, основанной на проверенном успехе Quantum Queen. Quantum Queen X построена на том же проверенном движке, что и Quantum Queen, и представляет собой новый мощный пользовательский режим, который позволяет трейдерам выбирать, какие именно стратегии включать или отключать. Каждая стратегия была индивидуально проверена, доработана и оптимизирована для обеспечения еще лу
The Gold Reaper MT5
Profalgo Limited
4.48 (105)
ГОТОВНОСТЬ К ИСПОЛЬЗОВАНИЮ ПРОПОРЦИИ! (   скачать SETFILE   ) ПРЕДУПРЕЖДЕНИЕ: Осталось всего несколько экземпляров по текущей цене! Окончательная цена: 990$ Получите 1 советника бесплатно (на 3 торговых аккаунта) -> свяжитесь со мной после покупки Выгодное комплексное предложение     ->     нажмите здесь ПРИСОЕДИНИТЬСЯ К ОБЩЕСТВЕННОЙ ГРУППЕ:   Нажмите здесь   Сигнал в реальном времени Сигнал клиента Обзоры YouTube ПОСЛЕДНЕЕ РУКОВОДСТВО Добро пожаловать в «Золотого Жнеца»! Созданный на основе
ВАЖНЫЙ   : Данный комплект будет продаваться по текущей цене в очень ограниченном количестве экземпляров.    Цена скоро поднимется до 1999 долларов!   Включено более 300 стратегий   , и в будущем их станет еще больше! БОНУС   :   выберите   5    других моих советников бесплатно!   ВСЕ ФАЙЛЫ КОМПЛЕКТАЦИИ + ПОЛНОЕ РУКОВОДСТВО ПО НАСТРОЙКЕ И ОПТИМИЗАЦИИ ВИДЕОРУКОВОДСТВО СИГНАЛЫ В РЕАЛЬНОМ ВРЕМЕНИ ОБЗОР (от стороннего источника) НОВИНКА - 44 СТРАТЕГИИ: СИГНАЛ В РЕАЛЬНОМ ВРЕМЕНИ Добро пожаловать
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
ThunderGold Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.64 (11)
ThunderGold Scalper ThunderGold Scalper — это торговый советник, разработанный для автоматической торговли золотом на платформе MetaTrader 5. Советник предназначен для XAUUSD и GOLD на таймфрейме M15. Он использует собственный многофакторный алгоритм принятия решений для определения подходящих торговых возможностей и автоматического управления позициями. Система анализирует рыночную структуру, направление тренда, качество свечей, объем, импульс и условия исполнения. Советник ожидает подходящих
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.43 (136)
Меньше сделок. Лучшие сделки. Стабильность прежде всего. • Живой сигнал Режим 1   Живой сигнал Режим 2 Twister Pro EA — это высокоточный скальпинговый советник, разработанный исключительно для XAUUSD (Золото) на таймфрейме M15. Торгует реже — но каждая сделка имеет смысл. Каждый вход проходит через 5 независимых уровней проверки перед открытием ордера, что обеспечивает чрезвычайно высокую точность на стандартной конфигурации. ДВА РЕЖИМА: • Режим 1 (рекомендуется) — Очень высокая точность, ма
Quantum King EA
Bogdan Ion Puscasu
4.96 (215)
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 бесплатно!*** За подробностями обращайтесь в личном сообщении! Управляйте   своей торговлей точно и
Gold Snap
Chen Jia Qi
4.5 (18)
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 копии по текущей цене. Скоро цена будет повышена до $1199. Важно: После покупки, пожалуйста, свяжитесь с нами через личные сообщения, чтобы получить руководство пользователя, рекомендуемые настройки, примечания по использованию и поддержку обновлений. h
Cortex IDX
Vladimir Mametov
5 (2)
Это полностью автоматический советник для MetaTrader 5, разработанный специально для торговли индексом US30. Его торговая логика построена с учётом особенностей фондовых индексов: сильных направленных движений, внутридневных откатов и периодов повышенной волатильности. Советник автоматизирует торговлю в условиях, где особенно важны скорость исполнения, дисциплина и эффективное управление открытыми позициями. Основной акцент системы сделан на дисциплинированном сопровождении сделок, быстрой реакц
Quantum Athena X
Bogdan Ion Puscasu
5 (4)
Более интеллектуальное управление. Повышенная точность. Добро пожаловать в Quantum Athena X — торговую систему для сфокусированной торговли золотом нового поколения, которая развивает точность, эффективность и дисциплинированность исполнения Quantum Athena. Quantum Athena X построена на том же оптимизированном базовом движке и использует те же 6 тщательно отобранных стратегий, что и Quantum Athena. Каждая стратегия была индивидуально доработана и оптимизирована для текущих рыночных условий GO
ОБНОВЛЕНИЕ: Следующая цена: 599 долларов, окончательная цена: 999 долларов. Если вы цените честность и реальную торговую систему, разработанную для реальной торговли, а не просто идеально выглядящую линейную модель, которая может в итоге привести к обвалу вашего счета, то это может быть для вас. Без мартингейла / Без сетки Сигнал в режиме реального времени (22 месяц) +300% Рост живой активности [Текущий сигнал]    |    [Результаты FTMO]    |    [Основной портфель]  |    [Руководство по тестиро
Goldwave EA MT5
Shengzu Zhong
4.53 (74)
Реальный торговый счёт   LIVE SIGNAL (IC MARKETS): https://www.mql5.com/en/signals/2339082 Данный EA использует абсолютно ту же торговую логику и те же правила исполнения, что и верифицированный сигнал реальной торговли, представленный на MQL5.При использовании рекомендованных и оптимизированных настроек, а также при работе с надёжным ECN / RAW-spread брокером (например, IC Markets или TMGM) , поведение EA в реальной торговле спроектировано таким образом, чтобы максимально соответствовать струк
Pulse Engine
Jimmy Peter Eriksson
4.08 (37)
ОБНОВЛЕНИЕ - ОСТАЛОСЬ ВСЕГО НЕСКОЛЬКО ЭКЗЕМПЛЯРОВ ПО ТЕКУЩЕЙ ЦЕНЕ! Главная цель этой системы — долговременная работа в режиме реального времени без использования каких-либо рискованных мартингейлов или сеток.  ОЧЕНЬ ОГРАНИЧЕННОЕ КОЛИЧЕСТВО ЭКЗЕМПЛЯРОВ ПО ТЕКУЩЕЙ ЦЕНЕ Окончательная цена: 1499 долларов США [Сигнал в реальном времени]    |    [Результаты тестирования]    |    [Руководство по настройке]    |    [Результаты FTMO] Другой подход к торговле Торговая система Pulse Engine не использует н
Создан для доминирования на рынке золота. Официальная информация Профиль продавца Официальный канал Руководство пользователя LIMITED PRICE — $400 Aura Gold Pro Edition сейчас доступен всего за $400, но с 1 сентября цена вырастет до $999. После 1 сентября цена станет более чем в два раза выше. Не ждите повышения цены — успейте приобрести свою копию сейчас за $400. Торговый сигнал в реальном времени  Roboforex   https://www.mql5.com/en/signals/2366593 FPMarkets   https://www.mql5.com/en/signals/23
Quantum Emperor MT5
Bogdan Ion Puscasu
4.85 (505)
Представляем       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   бесплатно!*** За подробностями обращайтесь в личном сообщении Подтвержденный сигнал:   нажмите здесь В
XG Gold Robot MT5
MQL TOOLS SL
4.34 (113)
The XG Gold Robot MT5 is specially designed for Gold. We decided to include this EA in our offering after extensive testing . XG Gold Robot and works perfectly with the XAUUSD, GOLD, XAUEUR pairs. XG Gold Robot has been created for all traders who like to Trade in Gold and includes additional a function that displays weekly Gold levels with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on Price Action, Cycle S
Launch Offer:   Grab Gold Naural Core and bundle it with   XAU Momentum   and get 2 free EAs of your choice from my entire MQL5 store. DM me for details. Learn how I personally manage risk when using grid systems:  https://www.mql5.com/en/blogs/post/767250 Read the user guide to any TickStack grid system:  https://www.mql5.com/en/blogs/post/767232 Gold Neural Core — Hyper-Scalping Grid System for XAUUSD Gold Neural Core is a high-frequency grid trading system engineered specifically for gold (X
Nexorion Initium Novum EA
Valentina Zhuchkova
4.04 (25)
NEXORION: Initium Novum — Детерминированная логика и алгоритмический синтез NEXORION — это аналитический комплекс институционального уровня, базирующийся на строгих математических алгоритмах обработки ликвидности. В основу проекта заложена концепция прозрачности вычислений: советник преобразует хаотичные котировки в структурированные геометрические зоны, визуализируя процесс принятия решений непосредственно на торговом графике. Мониторинг в реальном времени https://www.mql5.com/en/signals/237840
AETHERION ZENITH AI EA Эволюция точной автоматической торговли золотом Публичный live-сигнал для мониторинга в реальном времени: https://www.mql5.com/ru/signals/2381671 Ограниченное стартовое предложение Первые 7 копий доступны всего за $259 . После продажи этих копий цена сразу увеличится на $100 — до $359 . Это вступительное предложение предназначено для трейдеров, которые хотят присоединиться к Aetherion Zenith AI EA на самом раннем этапе и наблюдать за развитием системы через публичный live-
SomaGold
Andrii Soma
5 (10)
SomaGold — мультистратегийный пробойный советник для MetaTrader 5, созданный исключительно для золота (XAUUSD). Один график, один советник, 32 независимые стратегии, работающие вместе как единый диверсифицированный портфель. Живой сигнал. Это мой первый опубликованный советник на MQL5. Чтобы сделать его доступным на старте, я использую прозрачную модель поэтапного роста цены: Стартовая цена: 100 USD Цена увеличивается на 100 USD за каждые 10 проданных копий Ранние покупатели фиксируют самую низк
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the  biggest Banks  (positions are sent from our database t
Scalper speed with sniper entries. Built for Gold. Summer sale - 399 USD only instead of 499 USD until end of August. Tired of all the fake EAs that eventually disappear? Most authors just create another EA when it fails - I wanted to do it differently. Wave Rider is my personal project built out of passion - honest, transparent EA without any fake AI or manipulated back-test that's been continuously updated for more than 6 months, that I am using myself from very first day. Check the Live signa
Chiroptera
Rob Josephus Maria Janssen
4.57 (49)
Prop Firm Ready! Chiroptera is a non-martingale, non-grid, multi-currency Expert Advisor that operates in the quiet hours of the night. It uses single-placed trades (of all 28 pairs!) with tactically placed Take Profits and Stop Losses, that are continuously adjusted to maximize gains and minimize losses. It keeps track of past and upcoming news reports to ensure impacts are minimized and carefully measures real-time volatility to prevent impacts due to unpredictable geo-political disturbances c
Byrdi
William Brandon Autry
5 (20)
BYRDI - Сеть ИИ, которая торгует как единое целое Большинство советников видят один терминал. BYRDI видит всю сеть. Сделка, открытая на одном счёте, может изменить риск каждого другого вашего счёта. BYRDI объединяет отдельные терминалы MetaTrader 5 в одну согласованную mesh-сеть. Каждый узел может сохранять свой счёт, брокера, рынки, модель ИИ, стратегию и настройки риска, оставаясь при этом осведомлённым о системе в целом. BYRDI может распределять возможности, контролировать экспозицию и обесп
Two lines, always circling — 21 and 49. Most of the time they say nothing. Then they cross, and the system stops waiting. It closes what it was holding, opens what the cross demands, and sets its stop and target without asking twice. Risk is sized off the account itself, not fixed guesses — one bad calculation and it simply declines to trade at all. No indecision, no averaging in. Every new bar gets exactly one verdict. Built for any symbol, any timeframe. Fast against slow — the rest is ari
[ 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 Представляем Bitcoin Scalping MT4/MT5 – умного советника для криптотрейдинга ПРОМОЦИЯ ПРИ ЗАПУСКЕ: Осталось всего 3 копии по текущей цене! Итоговая цена: $3999.99 БОНУС - ПРИОБРЕТИТЕ ЛИЦЕНЗИЮ НА ПОСТОЯННЫЙ ДОСТУП К BITCOIN SCALPING И ПОЛУЧИТЕ БЕСПЛАТНОЕ ПО ALGO ТРЕЙДИНГ
Boring Pips MT5
Thi Thu Ha Hoang
4.77 (53)
Вы когда-нибудь задавались вопросом, почему большинство советников-экспертов неэффективны в реальной торговле, несмотря на их идеальные результаты на исторических данных? Самый вероятный ответ - overfitting. Многие советники создаются для "обучения" и идеальной адаптации к доступным историческим данным, но они не могут предсказать будущее из-за недостатка обобщаемости в построенной модели. Некоторые разработчики просто не знают о существовании overfitting, или они знают, но не имеют способа пр
Другие продукты этого автора
EMA Sniper Pro — Triple EMA Crossover Expert Advisor with RR Trailing Stop and Drawdown Protection EMA Sniper Pro is a professional-grade Expert Advisor built entirely on Exponential Moving Average crossovers and candle close confirmation. The strategy is transparent, rule-based, and free of complex indicators, neural networks, or martingale mechanics. Every trade decision follows a strict logical sequence that can be audited, backtested, and understood without ambiguity. The goal is to capture
ICT SILVER BULLET Pro   is a professional-grade MetaTrader 5 indicator built around the Inner Circle Trader (ICT) methodology. It is designed for traders who operate within institutional frameworks and need precision timing tools overlaid directly on their charts. The indicator maps the three major trading sessions — London, New York, and Asian — as shaded kill zone boxes on the chart, each with its own high, low, and midpoint levels drawn as dotted reference lines. These levels update in real
FREE
Omega Zones Pro - Indicator Description Overview Omega Zones Pro is a professional Support and Resistance indicator that automatically detects and displays price zones on your chart. It helps traders identify key levels where price is likely to react. How It Works The indicator analyzes historical price data to find swing highs and swing lows. It then groups nearby price levels into zones and rates their strength based on how many times price has reacted to them. Key Features Automatic Zone Dete
FREE
ICT Oracle PRO is a professional-grade Expert Advisor built on authentic Inner Circle Trader concepts. Unlike many EAs that claim to use ICT but rely on simple moving average crossovers or forced synthetic signals, this EA implements genuine ICT detection logic including Fair Value Gaps with three-candle gap validation, Order Blocks identified as the last candle before an impulsive move, Breaker Blocks that form when price breaks through an Order Block, and proper market structure analysis with
Candle Dominance Index (CDI) is a sub-window histogram indicator for MetaTrader 4 that reveals the true conviction behind every candle — not just direction, but how hard bulls or bears dominated the full price range. Most traders look at candle color and size. CDI goes deeper. It measures the ratio of the candle body to the total wick range, giving you an instant read on whether the move was decisive or weak. A tall green bar means bulls closed near the high — genuine strength. A tall red bar me
TrendGate RSI Signal is a precision multi-timeframe indicator that combines a Daily trend filter with H1 RSI momentum crossovers to deliver clean, high-probability trade signals — without repainting. Key Features: Daily Trend Filter : Uses EMA(50) on the Daily timeframe to establish a clear bullish or bearish market bias H1 RSI Crossover Entries : Detects RSI(14) crosses above 35 (buy) or below 65 (sell) on confirmed, closed H1 candles only Trend-Aligned Signals Only : Automatically filters out
BreakEdge US30 is a fully automated breakout scalping Expert Advisor engineered specifically for the US30 (Dow Jones) index. It captures the high-momentum price expansion that follows the New York session open by placing a buy stop and sell stop bracket above and below the current price, then manages the winning trade automatically while cancelling the losing side. STRATEGY At the start of each session window, BreakEdge places a dual pending order bracket — a buy stop above the ask and a sell
GoldSwing Structure Trader is a professional multi-timeframe Expert Advisor specifically developed for trading XAUUSD (Gold) using institutional-grade market structure analysis. This EA implements a disciplined swing trading approach that identifies trend direction on the Daily timeframe, executes trades on the H4 timeframe, and uses the H1 timeframe strictly for entry confirmation. The core trading logic is built around accurate detection of market structure including Higher Highs, Higher Low
Account Lens is a professional-grade account monitoring indicator for MetaTrader 4 that transforms the way traders stay informed about their account health during live sessions. Instead of squinting at the tiny account toolbar at the bottom of your terminal or switching windows mid-trade to check your numbers, Account Lens opens a fully independent, dedicated popup chart window that expands to fill your screen and displays your six most critical account metrics in giant, ultra-readable text — Ba
H4 Gold Fortress EA is a fully automated Expert Advisor built exclusively for XAUUSD on MetaTrader 4. It combines a clean H4 candle breakout strategy with a structured martingale recovery system and a hard equity protection layer, giving the EA both offensive entry logic and a defined risk boundary — something most martingale EAs on the market lack entirely. How the Strategy Works At the close of every H4 candle, the EA locks in the high and low of that completed candle. When live price breaks a
ICT Liquidity Zones Pro – FVG, PDH/PDL, Session & Smart Money Levels Product Overview ICT Liquidity Zones Pro is a professional-grade trading indicator for MetaTrader 5 that implements institutional trading concepts derived from the Inner Circle Trader (ICT) methodology. This tool provides traders with a comprehensive suite of liquidity detection, fair value gap analysis, session mapping, and market structure tools typically used by institutional traders. Key Features Supply and Demand Zones The
What Makes This Indicator Different Most support and resistance indicators only look at one timeframe. Price breaks a level on M15, you get an alert. But on H4, that same level might be mid-range - not significant at all. MTF Liquidity Radar solves this by analyzing fractals from M15, H1, H4, and D1 simultaneously. When multiple timeframes agree on a price level, you get a high-probability zone. When they don't, you ignore it. The Problem This Solves You have likely experienced this: price break
SMReaction Zones is a professional support and resistance zone detector for MetaTrader 5. The indicator automatically identifies high-probability supply and demand zones by scanning for swing highs and swing lows across the current timeframe and up to three higher timeframes simultaneously. Each zone is scored by the number of price touches, timeframe origin, and whether a liquidity sweep has occurred at that level. Zone width is dynamic, calculated using the Average True Range so that zones
Apex Liquidity Trader is an institutional-grade Expert Advisor for MetaTrader 5, built around Smart Money Concepts and ICT methodology. It replaces simplistic indicator-based entries with a multi-layer confluence engine that only triggers trades when market structure, liquidity, session timing, and price location all align simultaneously. CORE DETECTION ENGINE The EA scans price action for the full suite of institutional market structure events. It identifies Break of Structure on both sides, de
Apex Reversal Suite Pro is a professional-grade MT5 indicator built for retail and semi-institutional traders who demand more than simple buy/sell arrows. It combines 15 layered analytical modules into a single, clean chart overlay — delivering high-probability reversal signals backed by multi-timeframe confluence, Smart Money Concepts, and dynamic ATR-based risk management. Who is this for? Swing traders, day traders, and prop firm challenge traders operating on Forex pairs, Gold, and indices.
Midas Grid EA — Intelligent Cost-Averaging Grid System for XAUUSD Midas Grid EA is a fully automated Expert Advisor built exclusively for XAUUSD (Gold) on MetaTrader 5. It combines a triple-confirmation entry filter with an ATR-dynamic grid structure to deploy capital only when market conditions justify it, and exit cleanly when they no longer do. Most grid EAs open positions indiscriminately. Midas Grid EA does not. Before deploying a new cycle, the system evaluates three independent technical
ProTradeLib - Professional MQL5 Trading Library Complete Developer Toolkit for MetaTrader 5 ProTradeLib is a production-ready, single-file MQL5 include library designed for professional developers building Expert Advisors and trading systems. With seven integrated modules, it provides all the essential building blocks needed to create robust, feature-rich trading applications. Key Features 1. Risk Manager Calculate lot sizes based on account balance percentage, fixed USD risk, or fixed lots Enfo
SmartStructureLib — Smart Money Concepts Engine for MQL5 Developers SmartStructureLib is a professional-grade MQL5 library that gives developers a complete Smart Money Concepts calculation engine they can embed directly into any Expert Advisor or indicator. Instead of building SMC detection logic from scratch, you include one file and call clean, readable methods that handle all the heavy lifting behind the scenes. The library is built around seven focused modules. The Structure Engine detects B
ObjectChain MT5 — Manual Trade Chain Execution Panel What It Does ObjectChain MT5 is a chart-based trade execution panel for MetaTrader 5 that lets you plan, sequence, and submit multiple pending orders as a single chain — all controlled by draggable horizontal lines directly on the chart. You draw your entries, stop losses, and take profits visually. The EA reads the lines, calculates position sizes automatically from your risk percentage, and waits for price to trigger each level before placi
Smart Bounce Sentinel  Smart Bounce Sentinel is a multi-confirmation reversal alert indicator for MetaTrader 5. It does not place, modify, or close trades. It continuously scans the market across three timeframes and notifies you the moment a high-probability bounce setup forms, so you stay in full control of every entry. How it works Smart Bounce Sentinel only triggers an alert when all six layers of confirmation align at the same time: RSI (14) on M15 at or below your threshold (default 30) —
RiskPilot Calculator is a sophisticated, professional-grade position sizing solution engineered for serious traders who demand precision, speed, and uncompromising risk management in their trading operations. This advanced Expert Advisor for MetaTrader 5 transforms the complex mathematics of position sizing into an elegant, intuitive interface that eliminates guesswork and emotional decision-making from every trade you execute. By automatically calculating optimal lot sizes based on your account
FridayGap Trader  FridayGap Trader is a professional-grade MetaTrader 5 indicator engineered specifically to detect, measure, and visualize the price gap that forms between the Friday closing price and the Monday opening price on any forex or CFD instrument. These weekend gaps are among the most consistently exploitable recurring patterns in financial markets, driven by news events, geopolitical developments, and institutional repositioning that occur while retail markets are closed. FridayGap T
CorrelFusion - Multi-Symbol Correlation Matrix & Rolling Heatmap Overview CorrelFusion is a professional correlation analysis tool for MetaTrader 5 that displays a live correlation matrix for up to 10 symbols simultaneously. It features a unique rolling heatmap that visualizes how correlations evolve over time, helping traders identify diversification opportunities, hedge relationships, and market regime shifts at a glance. Key Features Live Correlation Matrix Displays Pearson correlation coeffi
Trend Apex Pro MT5 — Product Description Trend Apex Pro MT5 is a fully automated Expert Advisor for MetaTrader 5 built on a three-layer Exponential Moving Average system combined with dynamic ATR-based risk management, intelligent trade lifecycle control, and a comprehensive suite of daily risk protection tools. It is designed for traders who want a disciplined, rules-based system that entries only when the market structure confirms direction across multiple confluence factors — and exits with
TopDown Price Action EA is a fully automated multi-timeframe Expert Advisor for MetaTrader 5, built around the same top-down analytical framework used by professional price action traders. Rather than relying on lagging indicators or arbitrary signals, the EA reads raw market structure across two timeframes simultaneously — establishing a high-timeframe directional bias on H1 or M30, then dropping to M15 or M5 to execute with precision. Every trade begins with a question: where is the market try
SMC Pro Trader is a fully automated Expert Advisor built on the institutional trading methodology known as Smart Money Concepts, designed to identify and trade alongside the footprints left by banks and large institutional players in the forex and commodity markets. The strategy operates across multiple timeframes simultaneously, beginning with a top-down analysis on the Daily and H4 charts where it reads the position of price relative to the 200 Exponential Moving Average to establish the highe
GoldApex Multi-Horizon Scalper is a precision-engineered Expert Advisor designed exclusively for XAU/USD, combining a top-down multi-timeframe confluence framework with a dynamic breakout-and-pullback entry model. The system reads macro directional bias from the 4-hour and 1-hour timeframes using dual EMA alignment, then descends to the 15-minute chart to map active support and resistance boundaries. Entry is reserved for confirmed breakouts of those boundaries followed by a controlled retest on
Gold Sniper Breakout EA — XAUUSD 1-Minute Session Scalper for MT5 Overview Gold Sniper Breakout is a fully automated Expert Advisor engineered exclusively for XAUUSD (Gold) on the MetaTrader 5 platform. Built around a precision 1-minute candle breakout methodology, it hunts high-probability momentum moves during the most liquid sessions of the trading day — then exits with surgical timing before the market can reverse. No indicators. No lagging signals. Pure price action. How It Works At the ope
Kairos Signal Confirmed M15 Entry Indicator for XAUUSD Overview Kairos Signal is a precision-engineered MT5 indicator built exclusively for XAUUSD trading on the M15 timeframe. The name comes from the ancient Greek concept of Kairos — the opportune moment, the perfect window of action. That philosophy is the foundation of this tool: it does not react to noise, it does not fire during uncertainty, and it never changes its mind after a decision is made. Every signal is locked to the close of a co
Session Inversion EA is a fully automated Expert Advisor for MetaTrader 5 that trades a structured, rule-based strategy combining session range analysis with Inverted Fair Value Gap (iFVG) entry logic. The strategy is drawn directly from Smart Money Concepts and ICT methodology and executes without any manual intervention from chart setup to trade close. How the Strategy Works The EA tracks four configurable trading sessions across the day using UTC-based time detection, which means session time
Фильтр:
Нет отзывов
Ответ на отзыв