Architectural Griding Expert System

  • 实用工具
  • Sina Mohammadamin Shahriari Moghadam
    Sina Mohammadamin Shahriari Moghadam
    我是一名专业的算法交易开发人员,拥有超过 7 年的金融市场经验,并在 MQL4/MQL5 上开发了 100 多个自定义智能交易系统和指标。
    我拥有 石油工程学位 和 金融 MBA,这使我在技术问题解决和金融分析方面具备扎实的基础。
    我已成功为全球客户完成 40+ 定制项目,包括:
    自动化交易系统(EA)
    自定义指标和信号工具
    风险和仓位管理工具
    策略优化和回测解决方案
    除了 MQL4/MQL5,我还使用 Python 和 Pine Script,可以在不同平台上集成交易解决方案。
  • 版本: 3.10
  • 激活: 5

Architectural Griding Expert Advisor: Advanced Grid Trading System

Overview

This Expert Advisor (EA) is a sophisticated grid-based trading system designed for MetaTrader 5 (MT5). Developed by me, this EA automates grid trading strategies with separate configurations for Buy and Sell grids, allowing traders to capitalize on market ranges, trends, and reversals. It incorporates advanced risk management, customizable grid levels, lot sizing modes, and a user-friendly graphical interface (UI) for real-time control.

This EA is ideal for experienced traders seeking a robust, multi-functional grid system. It supports range-bound trading with visual tools like draggable rectangles for defining price ranges, virtual take-profits (TP), and capital management modes to handle drawdowns. With built-in filters for spreads, slippage, news events, and trading hours, it minimizes risks while maximizing efficiency.

Key Benefits:

  • Flexible Grid Setup: Independent Buy/Sell grids with variable step multipliers for asymmetric strategies.
  • Risk Controls: Profit/Loss targets, breakeven modes, and position limits to protect capital.
  • Interactive UI: Drag-and-drop ranges, buttons for quick actions (Start, Pause, Close), and a built-in calculator for lot sizing based on max loss.
  • State Persistence: Automatically saves and loads configurations across sessions or restarts.
  • No External Dependencies: Runs natively on MT5 without needing additional DLLs or indicators.

Note: Trading involves risks. Backtest thoroughly on a demo account before live use. This EA does not guarantee profits and should be used with proper risk management.

Key Features

  • Dual Grid System: Separate Buy and Sell grids with customizable levels, steps, and multipliers. Supports below/above zero multipliers for adaptive spacing (e.g., tighter grids near entry, wider in extremes).
  • Lot Sizing Modes:
    • Constant Lot Multiplier: Multiplies lots every N steps for progressive sizing.
    • Split Levels: Different lot sizes for the first and second half of the grid (e.g., smaller lots near base, larger in extremes).
  • Position Management:
    • Max positions per level and total positions at grid extremes.
    • TP Level Offset: Sets virtual TP at an offset from the target level.
    • Positions Without TP: Configurable number of positions (e.g., the deepest ones) that run without TP for hedging or averaging.
  • Capital Management Modes:
    • None: Standard operation.
    • Close: Closes all positions immediately.
    • Pause: Stops new trades but allows existing ones to run.
    • Pause TP: Pauses TP executions for manual intervention.
    • Stop: Closes profitable positions and halts new trades.
    • Average: Closes all trades at breakeven when profit is positive or price hits a threshold.
  • Profit/Loss Targets: Global USD-based targets to close all positions on reaching profit or limiting loss (0 to disable).
  • Filters and Restrictions:
    • Spread/Slippage Limits: Separate for Buy/Sell to avoid high-volatility entries.
    • Trading Hours/Days: Restrict to specific hours (e.g., 9-17) and days (Mon-Fri).
    • News Filter: Limits trades per candle on a specified timeframe (e.g., M15) to avoid news spikes.
  • UI Elements:
    • Control Panel: Buttons for Start, Pause (with mode selector), Stop, Average, Close, Draw/Remove Ranges, Set Close Price, Show/Hide Grid Lines, and Show Calculator.
    • Info Panel: Displays broker time, floating P/L, open volume, open trades, average price, spread, and min volume.
    • Calculator Panel: Computes total potential loss for grids and suggests initial lots based on max acceptable loss.
    • Visual Tools: Draggable rectangles for Buy/Sell ranges, horizontal line for close price, and optional grid lines with labels.
  • Breakeven and Close Price: Automatically calculates breakeven price; optional close-all line for price-based exits.
  • Gap Detection: Detects and blocks levels skipped due to price gaps, unblocking them when price revisits.
  • Candle Timer: Displays time remaining for the current candle.
  • License and Security: Optional license key with expiration check via server time.
  • Performance Optimizations: Stateful REPL-like code execution, debouncing for buttons, and efficient position tracking.

Input Parameters

The EA is highly configurable through grouped inputs. All parameters are accessible via the MT5 Inputs tab.

Buy Grid Settings:

  • MagicNumberBuy: Unique identifier for Buy positions (default: 282811).
  • MaxSpreadBuy/MaxSlippageBuy: Max allowed spread/slippage in points (default: 100/10).
  • GridLevelsBuy: Number of grid levels (default: 10).
  • StepSizeBuy: Grid step in points (default: 100).
  • StepMultiplierBuy: Below|Above zero multipliers (e.g., "1|1" for uniform; default: "1|1").
  • StartingLotSizeBuy: Initial lot size (default: 0.01).
  • LotMode: Constant or Split (default: Constant).
  • LotMultiplierBuy: Multiplier for constant mode (default: 1.0).
  • LotSizeFirstHalf/LotSizeSecondHalf: For split mode (defaults: 0.01/0.02).
  • LotStepIntervalBuy: Apply multiplier every N steps (default: 1).
  • MaxPositionsPerLevelBuy: Max trades per level (default: 1).
  • MaxPositionsAtExtremeBuy: Max total trades at grid end (default: 10).
  • TPLevelOffsetBuy: TP offset from target level (default: 1).
  • NoPositionsWithoutTPBuy: Number of deepest positions without TP (default: 0).

Sell Grid Settings: Mirror of Buy settings with separate values (e.g., MagicNumberSell: 982811).

Profit/Loss Settings:

  • ProfitTarget/LossTarget: USD targets to close all (0=disabled; defaults: 0.0/0.0).

Capital Management Settings:

  • CapitalManagementMode: Default mode (None, Close, etc.; default: None).
  • BreakevenThreshold: USD threshold for Average mode (default: 0.1).

Trading Time Settings:

  • RestrictTradingHours: Enable time restrictions (default: false).
  • TradeStartHour/TradeEndHour: Trading window (defaults: 9/17).
  • TradeDays: Comma-separated days (1=Mon,5=Fri; default: "1,2,3,4,5").

News Filter Settings:

  • RestrictNewsFilter: Enable (default: false).
  • MaxTradesPerCandle: Max trades per candle (default: 2).
  • NewsCandlePeriod: Timeframe for filter (default: M15).

UI Settings:

  • RangeObjectNameBuy/Sell: Names for range rectangles (defaults: "PriceRangeBuy/Sell").
  • ClosePriceObjectName: Name for close line (default: "ClosePriceLine").
  • PanelPosition: Panel location (Default, Top Left, etc.; default: Default).
  • UseSavedPanelPosition: Load saved position (default: false).

Candle Time Settings: Customize label color, size, anchor, etc. (defaults provided).

Saving File Settings:

  • saveFile: Save settings on close (default: true).

How It Works

  1. Setup Ranges: Use the UI to draw Buy/Sell rectangles on the chart. The EA calculates grid levels from the rectangle's top/bottom (with 2-pip margin optional).
  2. Start Trading: Click "Start" to activate. The EA opens positions at grid levels when price hits them, respecting filters.
  3. Grid Logic: Positions open in the direction of the grid (Buy below base, Sell above). Lots adjust per mode. Virtual TPs trigger closes without modifying orders.
  4. TP and No-TP Handling: Most positions get TP at offset levels; deepest ones (per config) run open for recovery.
  5. Capital Modes: Activate via buttons; e.g., Average closes at breakeven if profit >0 or price near threshold.
  6. Exits: Via TP, profit/loss targets, close price line, or manual buttons. Gaps block skipped levels until revisited.
  7. Monitoring: UI updates real-time stats. Calculator helps size lots for risk (e.g., max loss of $1000 yields suggested initial lot).

Installation and Usage

  1. Download: Place the .ex5 file in MT5's Experts folder. Compile in MetaEditor.
  2. Attach to Chart: Open a chart (e.g., XAUUSD H1), attach the EA, and configure inputs.
  3. UI Interaction: Panel appears (draggable). Draw ranges, set modes, and start.
  4. Backtesting: Use MT5 Strategy Tester with historical data. Optimize parameters like steps/multipliers.
  5. Live Trading: Start on a small account. Monitor via UI and logs.

Risk Warnings and Tips

  • High Risk: Grid systems can lead to large drawdowns in trending markets. Use low leverage and small lots.
  • Broker Compatibility: Ensure low spreads and fast execution. Test on your broker's demo.
  • Optimization: Backtest with varying parameters. Avoid over-optimization.
  • Updates: Check for version updates from the developer (Telegram: @tradearchitecturegrid).
  • Support: Contact via the provided link for questions.

This EA empowers you with professional-grade grid trading—buy now and elevate your strategy! If you need custom modifications, reach out.


推荐产品
Waka Waka EA MT5
Valeriia Mishchenko
4.13 (40)
8+ years of live track record with +12,000% account growth: Live performance MT 4 version can be found here Waka Waka is the advanced grid system which already works on real accounts for years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make profit Supported cu
TC42 Fibo Bot EA
Burcuhan Bayulken
TC42 Fibo Bot EA TC42 Fibo Bot EA 是一套先进的算法交易系统,将 Fibonacci 回撤与扩展逻辑、波浪结构、市场自适应、风险控制、交易时段过滤以及自动化交易管理结合在一起。 该 Expert Advisor 超越了传统“一个信号,一个订单”的交易方式。它首先分析市场形成的推动浪,然后根据所选 Fibonacci 水平评估交易机会。入场、止损、止盈、风险以及开仓后的交易管理流程,均通过系统化规则执行。 TC42 Fibo Bot EA 专为使用 Fibonacci 策略、希望更有结构地跟踪波浪长度和回撤水平,并希望自动化其风险控制流程中重要部分的交易者而开发。 完成购买后,请通过私信联系我,以获取 User Guide 和设置说明。 核心策略逻辑 机器人会测量市场中的推动浪,并检查这些波浪是否符合已定义的最小和最大 tick 范围。当检测到有效波浪时,系统会计算 Fibonacci 水平,并根据所选交易模式创建入场计划。 系统可以使用手动选择的 Fibonacci 水平运行;同时也可以使用 Auto 和 Algo 模式,根据市场行为提供更动态的交易
GoldWay EA
Oleksandr Myrhorodskyi
GoldWay EA  is a trending Expert Advisor for various instruments . The EA does not use either martingale or grid. It has an automatic increase in lot size, the size of which can be adjusted in the EA settings. By default, three orders are opened at once with different take profits. When the first take profit is reached, the remaining open positions are transferred to breakeven, when the second take profit is reached, the remaining third order is transferred to the first take profit. That ensures
Golden Pickaxe MT5
Valeriia Mishchenko
3.56 (9)
EA has high-performance live track records of different set files: Live performance MT 4 version can be found here Golden Pickaxe is a mean-reversion grid trading system that uses machine learning technology to place high-profit potential trades on the Gold market. It uses real market inefficiencies to its advantage to have an edge over the market. The EA has 5 predefined set files, which are essentially 5 different trading systems on gold . You may choose the default option (XAU Risky) or have
NFX Crash 500 Bot V9
Jacobus Petrus Taylor
The NFX Crash 500 Bot, is an advanced Synthetics Trading bot! It is a tried and tested EA based on a proprietary trading strategy specifically designed and optimised for the Crash 500 Index . We have paired this with a custom multilayer neural network that constantly scans previous and present market conditions using over 120 different data points and can make fine adjustments to find better entries. It uses Technical Analysis, Statistical Data Analysis, and custom indicators to open trades. LIN
Seasonal Pattern Trader
Dominik Patrick Doser
Disclaimer : Keep in mind that seasonal patterns are not always reliable. Therefore, thoughtful risk management is crucial to minimize losses.  Seasonal patterns in the financial world are like a well-guarded secret that successful investors use to their advantage. These patterns are recurring price movements that occur during specific periods or around special events. Additionally, there are also intraday patterns that repeat. For example, Uncle Ted from Forex Family suggests examining previou
/   ********** **********   ********** **********   ********** **********   ********** **********   ********** **********   / 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
LittleCrazy MT5
PAVEL UDOVICHENKO
4.82 (11)
LittleCrazy EA 是一款全自动交易系统,具有极其激进的风险策略。它使用均值回归策略,在三对高度相关的货币对上进行交易: AUDCAD、AUDNZD 和 NZDCAD 。 本交易机器人适合追求高收益并理解激进交易风险的用户。特别适合小额账户和用户愿意承担深度回撤以换取潜在高回报的情况。 实时信号: 点击这里 赠品活动: 购买 FastWay EA 即可免费获得 LittleCrazy EA 。 最低要求与建议 经纪商:低点差的任何经纪商 最低初始入金:$200 杠杆:1:500 或更高 账户类型:对冲账户 时间周期:M15 建议使用 VPS 保持 EA 24/7 运行 安装说明 在终端中添加对我的分析服务器 paveludoservice_com 的访问权限( 截图 )。 正确运行方式:使用默认设置在任意一个图表上运行 EA( 截图 )。 另一种方式:清空设置中的符号列表,在 AUDCAD、AUDNZD 和 NZDCAD 三个图表上运行 EA( 截图 )。 错误方式 :保留默认设置并同时在 3 个图表上运行 EA( 截图 )。 收益与风险(基于回测) 预期年化收益:1
Gold XIII
Malik Korrich
Gold XIII EA is an advanced breakout trading system developed exclusively for XAUUSD (Gold) . The EA identifies key breakout opportunities, places intelligent pending orders around important price levels, and manages trades automatically using a dynamic profit-protection and trailing stop system. Designed for traders seeking a disciplined and fully automated approach to Gold trading, Gold XII EA combines multiple independent breakout strategies working simultaneously to capture market momentum w
Oneiroi
Oleksandr Powchan
5 (1)
Oneiroi trades hard oversold and overbought conditions. On M15 you can achieve a very high hitrate. The system does not trade a lot because meeting the three conditions is quite hard. It will work on any pair and any broker but some are better than others. The EA will work also on small accounts but i would highly recomend to use a 100kcent account. Our Goal is to help you be way more profitable and way more stress free, so you can enjoy the things that are important to you and your family.
The Bitcoin Reaper
Profalgo Limited
3.71 (34)
推出促销: 按当前价格仅提供数量极少的副本! 最终价格:999美元 新品(349 美元起)-->免费获得 1 个(适用于 2 个交易账户号码)。 终极组合优惠   ->   点击此处 加入公共群组: 点击此处   LIVE SIGNAL LIVE SIGNAL V2.0 UPDATE 2.0 INFO 欢迎来到比特币收割者!   在黄金收割者取得巨大成功之后,我决定是时候将同样的成功原则应用到比特币市场了,而且,它看起来很有希望!   我开发交易系统已有二十多年了,到目前为止,我的专长是突破策略。 这种简单有效的策略一直以来都位居最佳交易策略之列,并且几乎适用于任何市场。     对于像比特币这样波动剧烈的市场来说,它更是锦上添花!   那么该策略如何发挥作用? 突破策略将交易突破重要支撑位和阻力位的走势。     该策略将为每笔交易设置止损、止盈和各种追踪止损功能。 对于比特币收割者,我在 H1 时间范围内实现了这一点,这使得它交易频繁,但仍然非常有效。   此外,我还确保了 EA 能够自动适应比特币未来的价格变化。     所以,如果比特币交易价格在 10 万左右、1 万左右或
Controller VPU
Andriy Sydoruk
The Controller VPU bot is a trending bot that works by levels. The work is carried out using the levels that are formed by the price itself and which are fixed by the VPU Levels indicator. Based on these levels, the algorithm generates an entry signal. Thus, a fairly reliable forecasting system is obtained. The example in the screenshots shows optimization in one year and optimistic forecasting for the next few years. If resources allow, then it is better to carry out optimization at checkpoi
Aegis Kalman Trend
Amanda Vitoria De Paula Pereira
Aegis Kalman Trend is a raw automated trading engine built specifically to extract real momentum from XAUUSD without chasing market noise or taking dummy entries, most retail expert advisors use slow moving averages that cruzam atrasadas and wipe your balance during choppy sessions but this chassi uses a dual-matrix Kalman filter to track the true institutional price line with zero phase-lag, the core algorithm runs an adaptive noise engine that calculates volatility on the fly, it adjusts the f
Megatrons
Vitalii Zakharuk
The key problem of scalping is the difficulty in separating false signals from those giving the opportunity to work. The interesting thing is that for filtering, many resort to using many intricate and completely unnecessary algorithms, which only lead to the complexity of the system. In fact, the answer lies on the surface and is to seek and find only price impulses, and not pay attention to empty market movements. The Megatrons Expert Advisor implements a scalping strategy based on several t
Fvg In Fvg
Claudiu-georgian Zavera
FVG In FVG EA — From Learn to Earn. The most-watched imbalance on any chart, taken where you have not seen it before: a Fair Value Gap confirmed inside a Fair Value Gap. A GAP EVERYONE WATCHES. AN EXECUTION NO ONE ELSE HAS. The EA detects the Fair Value Gap — the 3-candle imbalance — on a higher timeframe, then requires a second FVG, formed inside the first, on the timeframes you choose. Only an overlap above your threshold validates the zone: Most Powerful Overlap FVG Zones — rigorously selec
Hatori Flying Nimbus is a professional MetaTrader 5 Expert Advisor built around the classic Ichimoku Kinko Hyo methodology. It identifies trend direction using Price vs. Cloud , confirms momentum with Tenkan/Kijun alignment , validates bias with Future Cloud Color , and strengthens signal quality with Chikou confirmation . To support real trading and marketplace validation, it also includes automatic risk-based lot sizing , margin protection, and a clean on-chart dashboard panel with a Close All
SuperTrend AI Clustering EA
Michael Prescott Burney
SuperTrend AI Clustering 自动聚类趋势跟随智能交易系统(MetaTrader 5) SuperTrend AI Clustering 是一款用于 MetaTrader 5 的自适应趋势跟随智能交易系统,旨在根据不断变化的市场环境自动调整自身参数。系统并非只使用单一固定的 SuperTrend 倍数,而是同时评估多个倍数因子,衡量其近期表现,通过 K-Means 聚类算法将其分组,并选择当前表现最优的一组因子。这样就形成了一个动态的 SuperTrend 模型,可以在不同波动率阶段和市场结构下自我适应,而无需频繁手动重新配置。 该系统适合希望采用自动化趋势跟随方式,并且重视自适应能力、结构化风险控制以及透明图表信息展示的交易者。它可用于外汇交易品种、贵金属、指数、加密货币、商品及其他在 MetaTrader 5 中可交易的品种。智能交易系统兼容多种周期,从短周期的日内交易到长周期的波段和中长期趋势交易均可应用。 核心交易理念 该智能交易系统的逻辑基础是 SuperTrend 指标,它使用基于 ATR 的波动通道来识别市场的多头和空头阶段。较低的倍数因子会形成更紧的
CRT Model 1
Yahia Mohamed
5 (1)
CRT Model 1 EA 是一款自动交易解决方案,旨在执行 CRT Model 1 策略,该策略专注于基于时间的区间分析、流动性扫荡(Liquidity Sweeps)和回调入场。 该智能交易系统(EA)定义特定的时间范围以建立高价和低价参考点。然后,它监控该范围之外的价格行为,以识别海龟汤(Turtle Soup/流动性扫荡),随后进行反转和回调入场。 策略逻辑 该 EA 基于以下逻辑顺序运行: 区间计算:计算“区间开始小时”和“区间结束小时”之间的价格行为的最高价(High)和最低价(Low)。 Model #1 入场模式: 做空设置:EA 等待一根蜡烛收盘价高于 CRT 高点。然后等待随后的蜡烛收盘价回到该水平之下。当价格回调至该水平时,执行入场。 做多设置:EA 等待一根蜡烛收盘价低于 CRT 低点。然后等待随后的蜡烛收盘价回到该水平之上。当价格回调至该水平时,执行入场。 重要提示 要交易凌晨 5 点(纽约时间)的 4 小时蜡烛区间,请将该时间转换为您的经纪商服务器时间(例如,IC Markets 为 12:00)。然后加上 4 小时作为蜡烛持续时间。设置:CRT Rang
Derivonit EA
Lungile Mpofu
Derivonit EA  is fully automated Expert Advisor for trading Boom 1000 Index  offered by Deriv formerly known as Binary Dotcom. The EA uses more than seven strategies to open trades and close. It is based on CCI, STOCHASTICH, BANDS, ALLIGATOR and ENVELOPES for opening trades and then uses ATR, ADX, Accelerator Oscillator and RSI for closing trades. The EA will automatically open trades and close on Take Profit. Lot size and number of trades can be also changed depending on account balance you hav
Gold Smiley Master
Bojan Jokanovic
5 (1)
This EA does not have update every week like some scam programs do, to hide the loss trade. Also, they use grid tactics which soon or laiter will burn your account, there is no such thing here! The tactics are set, the robot is doing his thing...the sky is the limit. So sit, watch, enjoy and beSmiley :) This robot is the result of really big work and analysis, it took me 5 years to come to these results. All I'm asking for is a 5 star(no less!) and positive comment when you see the results. Than
Bobot Scalper Gold
Richard Tolentino
BoBot Scalper —— 趋势剥头皮的新纪元已经到来。 如果你交易 XAUUSD、指数 或 高速波动的货币对 —— 这个 EA 就是为你打造的。 BoBot Scalper 采用增强版 MACD/LWMA 引擎 ,能够比大众更早捕捉真正的趋势延续信号。 它反应迅速,风险控制干净利落,并通过 阶梯式货币追踪止损 来锁定利润——这是剥头皮 EA 中最聪明、最稳定的方式之一。 它 不使用马丁策略 。 它 不使用网格策略 。 它 不会乱发交易单 。 相反,它只会在以下条件成立时开仓: 出现清晰的 MACD 趋势信号 价格确认方向 你的资金条件允许安全加仓 这让你能够享受趋势加仓的优势,而不会让账户过度暴露风险。 为什么交易者喜欢 BoBot Scalper :  强势入场,反应极快 设置简单,逻辑清晰 支持 M1 —— 天然为剥头皮而生 超安全,严格遵循账户权益规则 轻量、流畅、稳定 如果你想要的是 聪明、纪律严明的剥头皮 EA ,而不是赌徒式系统—— BoBot Scalper 正是为你准备的。
Money Machine Robot(QuickQueenExpert EA)—— 专业交易系统 概述 Money Machine Robot 是一款基于强大的 QuickQueenExpert(QQE)指标信号系统构建的、用于 MetaTrader 5 的专业智能交易系统(EA)。该 EA 由专业交易员 Md. Moniruzzaman 开发,它实施了一套经过验证的交易策略,并具备先进的风险管理功能,包括马丁格尔系统、自动止损计算和全面的交易管理。 主要特点 先进的 QQE 指标系统 可定制的 QQE 参数 实时信号检测 专有算法 智能资金管理 马丁格尔系统 风险控制 手数控制 专业风险保护 双重止损选项 自动 SL 计算 止盈系统 反向信号平仓 实时监控 可视化信息面板 交易统计 信号可视化
Swingy3
Bashier Awny Husein Ismail Alhafy
Swingy3: The Institutional Pivot & Swing Execution Engine Swingy3 is an algorithmic trading system designed for MetaTrader 5, focusing on high-conviction price action swings and institutional-grade risk management. Unlike standard retail indicators, Swingy3 analyzes market structure through dynamic pivot points and multi-timeframe confluence to identify entries where momentum and exhaustion align. The Strategy The core of Swingy3 is its advanced Pivot Analysis engine. It detects institutional "S
VNB SS650 3.0 Live Signal Reference:  https://www.mql5.com/en/signals/2326210 Introduction System of 8 Condition Sets (DK1-DK8): Incorporates dozens of smart filtering layers to maintain accurate daily trading setups. The bot identifies trends on higher timeframes (H1, H4) and then zooms into lower timeframes (M5, M15) to pinpoint entries. This ensures highly optimized, trend-following entry points. Dynamic RSI & Multi-Timeframe Algorithm: Instead of relying on fixed 30/70 thresholds, the bot a
EA Gold Liquidity is an Expert Advisor for MetaTrader 5 designed for XAUUSD trading on the M5 timeframe . The EA uses price zone filtering, dynamic ATR adaptation, and automated trade management to support a structured trading approach on Gold. Features Designed for   XAUUSD Optimized for   M5 Price zone filtering Dynamic ATR-based market adaptation Automatic pending order management Break-even and trailing stop functions Session-based trading control Verified Live Performance A verified live tr
GoldenRatioX
Serhii Sharlai
GoldenRatioX — Gold Scalping, Refined to Perfection GoldenRatioX is a powerful and intuitive platform for high-speed gold trading, designed specifically for scalpers and active traders who operate on the edge of seconds and aim to squeeze the maximum out of every price movement. After the purchase, please make sure to contact me to receive the settings.  Why gold? Gold is more than just an asset. It’s a highly liquid, volatile instrument with well-defined levels — a perfect match for scalping.
Click Average EA
Jan Isaac Rodriguez Castro
Click Average EA – Smart Position Averaging for MT5  Simplify Your Trading Strategy with one-click position averaging! This expert advisor automatically calculates the weighted average price of your open positions and adjusts Take Profit levels dynamically—saving you time and maximizing efficiency. Key Features:  One-Click Averaging – Instantly balance multiple positions with a single button.  Weighted Price Calculation – Precise averaging based on volume for accurate TP placement.  Magic Numb
Quant Gold HFT Expert Advisor for XAUUSD on M15 timeframe. Main Features: ATR-based trailing stop and breakeven Daily Pivot levels filter Entry cooldown system Blocked hours during high volatility periods No martingale, no grid Backtest Results (Pepperstone, real tick data): 2 Years: Profit Factor 1.22, Max Drawdown 9.4% 1 Year: Profit Factor 1.27, Max Drawdown 9.2% 4 Months: Profit Factor 1.36 $500 account run on 0.01 lot The EA was tested on different time periods with stable results. Importa
End Trailing Stop
Endra Setiyanto
End Trailing Stop 是一款精密的交易算法,旨在利用智能的“陷阱与突破”逻辑捕捉市场波动。与经常因经纪商限制而失效的传统网格系统不同,这款 EA 配备了智能验证引擎,可自动调整挂单以符合止损位和冻结位的要求,从而确保零错误执行。 无论市场暴涨暴跌,这款 EA 都会动态设置买入止损和卖出止损订单,以捕捉市场动能。配合炫酷的霓虹灯仪表盘,您可以实时监控账户健康状况、每日盈利和回撤,尽享专业美感。  为什么选择 End Trailing Stop?  智能订单验证(零错误) 许多 EA 会因“无效价格”或“无效成交量”错误而失败。我们解决了这个问题!EA 会在下单或修改订单前,计算经纪商要求的精确距离。  玛瑙金炫酷仪表盘 尽享交易乐趣。信息面板以高对比度的霓虹/金色主题显示余额、净值、每日盈利、回撤百分比和信号状态。  动态钳形策略 在当前价格的上方和下方设置挂单。它利用灵敏的追踪止损来捕捉价格波动并锁定利润。  自动点差调整 内置缓冲机制,可应对点差扩大,防止挂单被虚假触发。  盈利锁定机制 一旦交易盈利,追踪止损将立即生效,以保护您的收益免受市场
Loss Recovery Trader MT5
Michalis Phylactou
5 (4)
Attempts to recover losing trades. If a trade moves in the wrong direction, the Zone Recovery algorithm begins. An alternating series of Buy and Sell trades at two specific levels take place, with two Exit Points above and beyond these levels. Once either of the two exit points is reached, all trades close with a combined profit or break even.  To use  1) Place the EA on a chart and select how the first trade will open (Manual/Via EA strategy/Use EA panel/External EA) 2) Configure your recovery
该产品的买家也购买
EA price is reduced to 50% discount for limited time period. Check EA performance  https://www.mql5.com/en/signals/2376164?source=Site +Profile+Seller Spot vs Future Arbitrage EA for MT5 Spot vs Future Arbitrage EA is an automated Expert Advisor designed for MetaTrader 5 that operates using price differences between Gold spot and Gold futures instruments. The strategy opens positions on both instruments simultaneously to take advantage of temporary differences between spot and futures prices.
Mt5BridgeBinary
Leandro Sanchez Marino
我自动其商业策略的使用二进制 MT5 和我们 Mt5BridgeBinary 我发送的命令其二进制账户和我名单: 开始使用这种方式容易! 专家顾问也容易形成、优化和实现抗寒试验; 还在测试中我们可以预测其长期盈利能力,所以我们创造了 Mt5BridgeBinary 连接其最佳战略二进制文件。 特点: 它可以使用很多战略如我所愿。 (专家顾问)。 他不需要额外的程序。 随函附上我方- EA 没有导入的时限。 它可以想象所有的公开行动。 他只需要执行我们 EA 只在一个图形采取所有的订单。 -它不需要复杂的配置,以使我们的就业工作。 输入参数: 电子邮件: 有关其电子邮件帐户的二进制文件。 -标记: 代码访问它生成的二进制来操作。 -数量操作: 该合同价值。 位置警报: 会启用/禁用警报作业时开放。 -小组菲尔斯滕: 它显示所有打开的行动。 注: -期限的合同: 请参阅《资产指数来了解这笔总额中,最小和最大期限的合同。 - Volatile 性质指标不能在德国、法国、西班牙、新加坡、澳大利亚、意大利和卢森堡。
FiboPlusWaves MT5
Sergey Malysh
5 (1)
FiboPlusWave Series products Ready-made trading system based on Elliott waves and Fibonacci retracement levels . It is simple and affordable. Display of the marking of Elliott waves (main or alternative option) on the chart. Construction of horizontal levels, support and resistance lines, a channel. Superposition of Fibonacci levels on waves 1, 3, 5, A Alert system (on-screen, E-Mail, Push notifications).    Features: without delving into the Elliott wave theory, you can immediately open one of
Xrade EA
Yao Maxime Kayi
Xrade EA is an expert advisor as technical indicator. For short period trade it's the best for next previsions of the trend of the market. +--------------------------------------------------------------------------------------- Very Important Our robot(data anylizer) does'nt take a trade procedure. If using only our robot you must take positions by yoursels +--------------------------------------------------------------------------------------- The technical indiator provide for a given sma
PROMOTION!! $499 until 1 Mar. After that, EA will be $1,050 Developed and tested for over 3 years, this is one of the safest EAs on the planet for trading the New York Open. Trading could never be easier.  Trade On NASDAQ US30 (Dow Jones Industrial Average) S&P 500  What Does The EA do? The EA will open a Buy Stop Order and a Sell Stop Order(With SL and TP) on either side of the market just a few seconds before the NY Open.  As soon as 1 of the 2 trades is triggered, the EA automatically delete
Saving data from the order book. Data replay utility: https://www.mql5.com/en/market/product/71640 Library for use in the strategy tester: https://www.mql5.com/en/market/product/81409 Perhaps, then a library will appear for using the saved data in the strategy tester, depending on the interest in this development. Now there are developments of this kind using shared memory, when only one copy of the data is in RAM. This not only solves the memory issue, but gives faster initialization on each
Gold instrument scanner is the chart pattern scanner to detect the triangle pattern, falling wedge pattern, rising wedge pattern, channel pattern and so on. Gold instrument scanner uses highly sophisticated pattern detection algorithm. However, we have designed it in the easy to use and intuitive manner. Advanced Price Pattern Scanner will show all the patterns in your chart in the most efficient format for your trading. You do not have to do tedious manual pattern detection any more. Plus you
Gold Wire Trader MT5 trades using the RSI Indicator. It offers many customizable RSI trading scenarios and flexible position management settings, plus many useful features like customizable trading sessions, a martingale and inverse martingale mode. The EA implements the following entry strategies, that can be enabled or disabled at will: Trade when the RSI Indicator is oversold or overbought Trade when the RSI comes back from an oversold or overbought condition Four different trading behavio
Gold trend scanner MT5 a multi symbol multi timeframe dashboard that monitors and analyzes Average True Range indicator value in up to 28 symbols and 9 timeframes  in 3 modes :  It shows the ATR indicator value in all pairs and timeframes and signals when the ATR value reaches a maximum or minimum in a given duration. Short term ATR/Long term ATR ratio: It shows ratio of 2 ATRs with different periods. It's useful in detecting short term volatility and explosive moves. ATR Value/Spread ratio: S
Attention: this is a multicurrency EA, which trades by several pairs from one chart!  Therefore, in order to avoid duplicate trades, it is necessary to attach EA only to one chart, ---> all trading in all pairs is conducted only from one chart! we can trade simultaneously in three different pairs, as by default (EURUSD + GBPUSD + AUDUSD), which take into account the correlation when entering the market for all three; we can trade only EURUSD (or any currency pair) and at the same time take into
A triangular arbitrage strategy exploits inefficiencies between three related currency pairs, placing offsetting transactions which cancel each other for a net profit when the inefficiency is resolved. A deal involves three trades, exchanging the initial currency for a second, the second currency for a third, and the third currency for the initial. With the third trade, the arbitrageur locks in a zero-risk profit from the discrepancy that exists when the market cross exchange rate is not aligned
Golden Route home MT5 calculates the average prices of BUY (LONG) and SELL (SHORT) open positions, taking into account the size of open positions, commissions and swaps. The indicator builds the average line of LONG open positions, after crossing which, from the bottom up, the total profit for all LONG positions for the current instrument becomes greater than 0. The indicator builds the average line of SHORT open positions, after crossing which, from top to bottom, the total profit for all SH
Do you want an EA with small stoploss? Do you want an EA that is just in and out of market? Gold looks at several MT5 It is ONLY buying when the market opens and with a window of 10 minutes or less. It uses pre-market price so be sure your broker has that.   This strategies (yes, it is 2 different strategies that can be used with 3 different charts) have tight stoplosses and a takeprofit that often will be reached within seconds! The strategies are well proven. I have used them manually for
Bionic Forex
Pablo Maruk Jaguanharo Carvalho Pinheiro
Bionic Forex - Humans and Robots for profit. Patience is the key. The strategies are based on: - Tendency - Momentum + High Volatility - Dawn Scalper + Support Resistence. Again, patience is the key. No bot is flawless, sometimes it will work seamlessly, sometimes it simply won't.  it's up to you manage its risk and make it a great friend to trade automatically with fantastic strategies. Best regards, Good luck., Pablo Maruk.
基于Goodtrade/GoodX 券商推出的黄金双仓对冲套利的交易模型/策略/系统,在日常的操作遇到的问题: 1、B账户跟随A账户即刻下单。 2:A账户 下单后  B账户 自动抄写止损止盈。 3:A账户平仓B账户同时平仓。 4:B账户平仓A账户也平仓。 5:不利点差下拒绝下单。 6:增加有利点值因子。 通过解决以上问题,改变了熬夜、手工出错、长期盯盘、紧张、恐慌、担心、睡眠不足、饮食不规律、精力不足等问题 目前解决这些问题后,有效提升了工作效率和盈利比例,由原来月10%盈利率提升到月45%的最佳盈利率。 原来的一名交易员只能管理操作两组账户,通过此EA提高到操作管理高达16组交易账户,或许你可以超越我们的记录,期待你的经验交流。 此EA分为: GoodtradeGoodX Tradercropy A       GoodtradeGoodX Tradercropy B     是一个组合EA,假设您购买的额  GoodtradeGoodX Tradercropy   A  必须同时购买 GoodtradeGoodX Tradercropy   B  两个组合使用会到最佳效果。   
FTMO Sniper 7
Vyacheslav Izvarin
Dedicated for FTMO and other Prop Firms Challenges 2020-2024 Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Best results on GOLD and US100  Use any Time Frame Close all deals and Auto-trading  before  US HIGH NEWS, reopen 2 minutes after Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday Recommended time to trade 09:00-21:00 GMT+3 For Prop Firms MUST use special  Protector  https://www.mql5.com/en/market/product/94362 --------------------
Introducing TEAB Builder - The Ultimate MT5 Expert Advisor for Profoundly Profitable and Customizable Trading!     Are you ready to take your trading to the next level? Meet TEAB Builder, an advanced MT5 Expert Advisor designed to provide unparalleled flexibility, high-profit potential, and an array of powerful features to enhance your trading experience. With TEAB Builder, you can effortlessly trade with any indicator signal, allowing you to capitalize on a wide range of trading strategies.  
Chart Walker Analysis Engine
Dushshantha Rajkumar Jayaraman
Chart Walker Analysis Engine | Machine-led instincts Recommended Time Frames M30, H1 TRADING INTEGRITY: CHART WALKER NEVER REPAINTS ITS SIGNALS. What you see is EXACTLY what you get. Unlike standard indicators that alter past data to look profitable, the Chart Walker Analysis Engine locks its signals into market history the exact millisecond a candle closes.  ONCE PRINTED, IT STAYS FOREVER.  No vanishing Signals. No shifted entries. No historical manipulation. Every buy and sell alert remains
The Wall Street Player (Master version). This EA tailored as a Discipline, Money and Risk Management tool is a powerful Trade Station utility designed for Forex, Cryptos, Commodities, Shares, Deriv synthetic pairs and any CFDs Market. It is designed to fit your strategy as a winner, and take your Edge of the market to the NEXT-LEVEL. The only thing to do is to get It on your chart and appreciate the possibilities and chart management abilities it has to offer for realizing that discipline and a
FxStrike999_SPT_bot  prop helper 者,独机器人也,专为有心理学者与有心者设之。 孰不止损,孰不利,终丧存款。 然有吾机器人,将有所决!  有FxStrike999_SPT_bot,君将及新,存款将稳步增长  君将不复忧君头寸,机器人身置止损分定利 (3個獲利回吐級別,能夠為每個級別設置固定百分比), 它還會在突然反轉的情況下拖網您的止損,以便 盡可能多地保存您的利潤:)此外,只需按一下,您就可以關閉所有虧損交易或所有盈利交易, 甚至一鍵完成所有交易。控制面板顯示所有最必要的功能,可以一鍵關閉所需的百分比 通過在框中輸入 1 到 100% 之間的值來定位(有 3 個這樣的框,您可以在每個框中輸入您的固定百分比。願你安好。維護機器人開發團隊!
The Wall Street Player (Ultimatum version). This EA tailored as a Discipline, Money and Risk Management tool is a powerful Trade Station utility designed for Forex, Cryptos, Commodities, Shares, Deriv synthetic pairs and any CFDs Market. It is designed to fit your strategy as a winner, and take your Edge of the market to the NEXT-LEVEL. The only thing to do is to get It on your chart and appreciate the possibilities and chart management abilities it has to offer for realizing that discipline and
Adam FTMO MT5
Vyacheslav Izvarin
5 (2)
ADAM EA Special Version for FTMO Please use ShowInfo= false for backtesting ! Our 1st EA created using ChatGPT technology Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Tested on EURUSD and GBPUSD only  Use 15MIN Time Frame Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday For Prop Firms MUST use special Protector  https://www.mql5.com/en/market/product/94362 --------------------------------------------------------------------------------
Sabira Reactive
Gounteni Dambe Tchimbiandja
IMPORTANT NOTE THIS EA IS NOT FULLY AUTOMATED, IT ONLY TAKES POSITIONS IN ZONES YOU DEFINE IT ASSISTS YOU. SO YOU NEED TO WATCH THE CHART CLOSELY THE MAIN POINT OF THIS EA IS TO FORCE THE TRADER TO RESPECT ENTRY RULES <<CONFIRMATION IS THE KEY>>. SO THE TRADER WILL ONLY LOOK FOR ZONES THE EA WILL LOOK FOR CONFIRMATION CANDLES AND ENTER IF A CONFIRMATION IS FOUND FOR EXAMPLE: If price is in a Bullish zone. Rule, look for buys. If Bullish Candlestick Pattern  or any other bullish candle pattern s
I present to your attention a powerful utility for predicting the future movement of an asset based on W.D. Ganna’s law of vibration. This utility analyzes the selected market model and provides codes for future possible market movement patterns. If you enter the selected code into the appropriate box, you will receive a forecast of the potential market movement. The utility has the ability to display several potential forecast models. The forecast is not yet tied to time and price and gives th
GT Trade Manager
Alexander Martin Koenig
This Utility is designed for price action strategies, trading flags and retests, such as Guerrilla Trading and similar strategies It allows to: place pending orders for retests (on the Retest line or x PIPs away from the retest line) place orders for flag formations calculate lotsizes based on account size, currency pair and risk percentage split trades and place multiple trades if lot size exceeds max lot size given by broker manage trades with a trailing SL/TP behind the most recent highs/lows
Dear traders and investors! We present to you the MT5 Optimization Booster – an innovative product that will revolutionize your optimization experience on MetaTrader 5! The MT5 Optimization Booster is based on the innovative Quantum Swap Protocol (QSP) algorithm – a unique proprietary optimization strategy that forms the core of the product and elevates the process of finding optimal solutions to a new level. After the purchase , be sure to contact me . The product is designed to enhance the ca
Copiador MT5
Luciana Andrea Maggiori
Copiador – La Mejor Herramienta para Copiar Operaciones en MetaTrader 4 Este no es un simple copiador de operaciones que   únicamente   permite copiar transacciones de forma local entre diferentes cuentas de MetaTrader 4 en cualquier dirección y cantidad. ¡Por supuesto que lo hace!   ¡Pero Copiador hace mucho más!     Descubre sus características y beneficios a continuación FUNCIONALIDADES DESTACADAS:   Copiado entre brokers diferentes : Puedes copiar operaciones desde una cuenta e
GOLD robot4trade
Vyacheslav Izvarin
GOLD robot4trade(FTMO 版)v1.5 由 Robot4Trade.com 提供|AI 智能增强|挑战账户全力支持 产品简介 Advanced Forex EA 是一款新一代外汇自动交易系统,专为高性能、稳定性和完全兼容 FTMO、MyForexFunds 等 prop firm 要求而设计。 本 EA 结合了经典可靠的技术指标(如 MA、RSI、ATR)与现代风险控制与资金保护功能,包括每日回撤限制、智能入场逻辑,以及实时数据显示面板,帮助用户随时掌握交易状态。 无论是挑战账户、模拟测试还是实盘资金管理,这款工具都能为您提供一体化的自动交易解决方案。 ️ 策略逻辑 均线交叉入场(快速与慢速 SMA) RSI 滤波:避免在超买/超卖区间入场 基于 ATR 的止损/止盈,动态适应市场波动 固定或按风险比例控制交易手数 阶梯再入逻辑:当价格远离时才加仓,且逐步增加手数 时间过滤器:仅在设定交易时间内执行操作 每日最大亏损保护:防止过度交易,保障挑战账户通过率 可选跟踪止损:基于 ATR 波动设定追踪距离 图表面板:实时显示资金、回撤、持仓等重要信息
RexCatch EA is designed to recognize all forms of boxes or rectangles with the specified color which will later be used for order execution, both buy and sell in the form of Supply and demand. This EA is also able to read indicators installed on the chart that display box or rectangle shapes, such as the Supply Demand indicator or boxes and rectangles that are made manually by giving them the color as specified in the EA setting. Can only open 1 order and will reopen the order when the active o
️   Ex-Calibur   EA is Professional Trading Robot with Inside Bar Strategy.   Key Features:   Powerful Inside Bar Strategy - Automatic Inside Bar pattern detection for precise entry points - Colored indicator box visualization for easier analysis - Automated entry system with pending orders to capture breakouts   Advanced Risk Management - Flexible Trailing Stop system to secure profits - Automatic Break Even to protect capital - Adaptive Stop Loss and Take Profit based on market vol
作者的更多信息
Nebula Trading Manager
Sina Mohammadamin Shahriari Moghadam
This expert advisor named   TradeManager   provides a manual trading management panel in MetaTrader 5 that allows precise control over open positions. It is designed for traders who want dynamic management of Stop Loss (SL), Take Profit (TP), Break Even (BE), and Partial Close functionality. Key Features: Dynamic Trade Management : Manually set or drag-and-drop SL, TP, and BE levels. Supports partial closing at different profit levels (1:1, 1:1.5, 1:2). Automated Drawing : Automatically draw
筛选:
无评论
回复评论