Architectural Griding Expert System

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
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
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
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 は、非常に攻撃的なリスクプロファイルを持つ完全自動取引システムです。平均回帰戦略を使用し、相関性の高い3つの通貨ペア AUDCAD、AUDNZD、NZDCAD で限界ギリギリのリスクを取って取引します。 このエキスパートアドバイザーは、高いリターンを追求し、リスクの高いトレーディングシステムに内在するリスクを十分に理解している方を対象としています。特に、少額の口座で高い利益を狙いたい方に最適です。 ライブシグナル:  こちらをクリック 特典: FastWay EA を購入すると、 LittleCrazy EA を無料で 入手できます。 最小要件と推奨設定 ブローカー:低スプレッドの任意のブローカー 最低初回入金額:$200 レバレッジ:1:500 以上 口座タイプ:ヘッジ口座 時間足:M15 EAを24時間365日稼働させるために VPS の使用を推奨 セットアップ手順 ターミナルで、私の分析サーバー paveludoservice_com からの金融市場情報の受信を許可してください( スクリーンショット )。 正しい起動方法:デフォルト設定のまま
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 EA を無料で入手 (取引口座番号 2 つ)。 究極のコンボディール   ->   こちらをクリック 公開グループに参加する: ここをクリック   LIVE SIGNAL LIVE SIGNAL V2.0 UPDATE 2.0 INFO BITCOIN REAPER へようこそ!   Gold Reaper が大成功を収めた後、同じ勝利の原則を Bitcoin 市場に適用する時が来たと判断しました。そして、それは非常に有望に見えます!   私はこれまで 20 年以上にわたってトレーディング システムを開発してきましたが、私の専門分野は「断然」ブレイクアウト戦略です。 このシンプルながらも効果的な戦略は、常に最高の取引戦略の上位にランクインしており、基本的にあらゆる市場に適用できます。     特にビットコインのような変動の激しい市場では、真価を発揮します。   それで、この戦略はどのように機能するのでしょうか? ブレイクアウト戦略は、重要なサ
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
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
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
CRT Model 1
Yahia Mohamed Hassan Mohamed
5 (1)
CRT Model 1 EAは、時間ベースのレンジ分析、流動性スイープ(Liquidity Sweeps)、およびリトレースメントエントリーに焦点を当てたCRT Model 1戦略を実行するために設計された自動売買ソリューションです。 このエキスパートアドバイザー(EA)は、特定の時間範囲を定義して、高値と安値の価格参照ポイントを設定します。その後、その範囲外の価格アクションを監視し、タートルスープ(流動性スイープ)に続く反転とリトレースメントエントリーを識別します。 戦略ロジック EAは以下のロジックシーケンスに基づいて動作します: レンジ計算:レンジ開始時間とレンジ終了時間の間の価格アクションの高値(High)と安値(Low)を計算します。 Model #1 エントリーパターン: 売りセットアップ(Sell):EAは、ローソク足がCRT高値を上回って閉じるのを待ちます。その後、次のローソク足がそのレベルの下に戻って閉じるのを待ちます。価格がそのレベルに戻った(リトレースした)ときにエントリーが行われます。 買いセットアップ(Buy):EAは、ローソク足がCRT安値を下回って閉じるの
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
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 — トレンド・スキャルピングの新時代がついに到来。 もしあなたが XAUUSD、株価指数、または高速で動く通貨ペア を取引しているなら… このEAはまさにあなたのために作られています。 BoBot Scalper は改良された MACD/LWMA エンジン を搭載し、 市場参加者より早く“本物のトレンド継続シグナル”を捉えます。 反応速度は高速、リスク管理はクリーン、 さらに通貨ベースのステップ式トレーリングシステムで利益をしっかり確保します。 これはスキャルピングEAの中でも最も賢く洗練されたトレーリング手法のひとつです。 このEAは マーチンゲールを使用しません 。 グリッドも使用しません 。 無駄なエントリーもしません 。 その代わり、以下の条件が揃った時のみポジションを構築します: MACD の明確なトレンドシグナルが出たとき 価格が方向性を確認したとき あなたのエクイティが安全な追加エントリーを許すとき これにより、過度なリスクを負うことなく “トレンドに乗る積み上げ戦略(トレンドスタッキング)”の力を最大限に活かせます。 トレーダーが BoBot
Money Machine Robot (QuickQueenExpert EA) - Professional Trading System Overview Money Machine Robot is a sophisticated MetaTrader 5 Expert Advisor built around the powerful QuickQueenExpert (QQE) indicator signal system. Developed by professional trader Md. Moniruzzaman, this EA implements a proven trading strategy with advanced risk management features including martingale system, automatic stop loss calculation, and comprehensive trade management. Key Features Advanced QQE Indicator System Cu
SBR Canvas — Expert Advisor for MetaTrader 5 Overview SBR Canvas is a comprehensive, fully visual trading assistant for MetaTrader 5. It combines automated trade execution with an advanced drag-and-drop control panel built directly onto the chart canvas, giving traders real-time control over every aspect of their trading strategy without leaving the chart. Advice for all trader using this Expert Advisor - Safest amount to use this $5000 - $10000 as a starting point. Core Trading Engine Direc
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
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.
OxF1
Robertas Gumbakis
2 (1)
OxF1を購入すると、Ox7Fを無料で受け取れます – 10件の購入ごとに価格が上がります。 OxF1 は、これまでの実運用で得られた経験をもとに開発された Ox シリーズアーキテクチャの次世代進化版です。 システムは、より高度なシグナル検証と XAUUSD 向けに最適化された実行ロジックにより改良されています。 この EA は すべてのブローカー環境 で効率的に動作します。推奨タイムフレームは M15 、 M30 、 H1 です。 100$ から運用を開始できます。 ライブシグナルはこちら:  OxF1 live performance OxF1 は、構造化された自動売買と、規律あるコントロールされた市場参加を求めるトレーダーに特に適しています。 OxF1 – 次世代マーケット実行エンジン OxF1 は、支配的な市場環境の中で構造的な取引機会を特定し活用するために設計された完全自動のエキスパートアドバイザーです。 コアとなる哲学は依然としてトレンドに沿った規律ある取引参加に基づいていますが、 OxF1 はエントリー精度とシグナル検証を向上させる洗練された内部ロジックレイヤーを導
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
End Trailing Stopは、スマートな「トラップ&ブレイクアウト」ロジックを用いて市場のボラティリティを捉えるように設計された、洗練された取引アルゴリズムです。ブローカーの制限によりしばしば機能不全に陥る従来のグリッドシステムとは異なり、このEAはスマート検証エンジンを搭載しており、ストップレベルとフリーズレベルの要件を満たすように保留注文を自動調整することで、エラーゼロの執行を保証します。 市場が急騰しても暴落しても、このEAは買いストップ注文と売りストップ注文の動的なケージを設定し、勢いを捉えます。Neon Luxuryダッシュボードと組み合わせることで、アカウントの健全性、日々の利益、ドローダウンをプロフェッショナルな美観でリアルタイムに監視できます。  End Trailing Stopを選ぶ理由  スマート注文検証(エラーゼロ) 多くのEAは[無効な価格]または[無効な数量]エラーで失敗します。この問題を解決しました!EAは、注文の発注または変更前に、ブローカーが要求する正確な距離を計算します。  オニキスゴールドのラグジュアリーダッシュボード スタイリ
Pullback EMA EA で収益ポテンシャルを最大化 —— 知性と安全性を兼ね備えたトレードアルゴリズム 感情に左右されるトレードや、予測不能な相場に翻弄される日々に終止符を打ちませんか? Pullback EMA EA は、 安定性、正確性、そして資産保護 を最優先するトレーダーのために開発された、次世代の自動売買システム(EA)です。 Pullback EMA EA は単なる自動売買ソフトではありません。24時間5日間、あなたに代わって相場を監視し、リスクを最小限に抑えながら最適なエントリーチャンスを逃さず捉える、プロ仕様のトレーディングアシスタントです。 モメンタム検証による「スマート・プルバック」戦略 Pullback EMA EA は、プロの世界で最も信頼されている手法の一つである**「トレンドフォロー型押し目買い・戻り売り(プルバック)」**戦略を採用しています。 単に価格を追いかけるのではなく、極めて規律あるロジックに基づいて動作します: 主要トレンドの検知: アルゴリズムが長期トレンドを正確にスキャンし、常に大きな市場の流れに沿った取引を行います。
Hello, traders! I am Quantum SMC XAU , a highly optimized, institutional-grade Expert Advisor designed for the modern Gold trader. Built on the fusion of Smart Money Concepts (SMC) and advanced aerospace mathematics (Kalman Filter), I am engineered to be the most precise, lightweight, and lethal weapon in your trading arsenal. My specialty? GOLD (XAUUSD). My mission? Protect your capital, filter out market noise, and execute institutional-grade setups with mathematical precision. IMPORTANT! Afte
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
WHITE RABBIT - プロフェッショナル時間帯ブレイクアウトエキスパートアドバイザー 概要 White Rabbitは、長年の手動取引経験から開発されたプロフェッショナルなブレイクアウト取引エキスパートアドバイザーです。精度と柔軟性を求めるトレーダーのために設計されており、あらゆる市場とタイムフレームで高確率のブレイクアウト機会を捉えながら、リテール取引とプロップファーム口座の両方に特化した高度なリスク管理ツールを提供します。 コアブレイクアウト戦略 White Rabbitは、カスタマイズ可能な時間帯内でレンジの高値と安値を識別し、価格がこれらのレベルを決定的にブレイクした際にブレイクアウト取引を実行します。 ビジュアル取引ゾーン チャート上にブレイクアウト矩形を自動描画 各セッションの高値/安値レンジを明確に可視化 M1からH4までの任意の単一タイムフレームで動作 2つのブレイクアウト方法 矩形サイズ方法 :ストップロスとテイクプロフィットは、ブレイクアウト期間の高値-安値レンジからリスクリワード比率で計算されます 固定ポイント方法 :正確なコントロールのための従来の固定ポ
Golden US Session MT5 is based on a classic, popular breakout strategy and does not use any Martingale or Grid mechanisms. Golden US Session MT5 places a pair of buy/sell stop orders at the daily opening of the US stock exchanges. As soon as one of the stop orders is triggered and placed in the market, the stop order is deleted. If an order is closed at the stop loss, the loss is limited to $5/0.01 lot. To offset such a loss more quickly, a recovery factor can be used to increase the order size
Risk Oracle - Expert Advisor Description Risk Oracle is a sophisticated yet user-friendly Expert Advisor (EA) designed for risk management and trade execution. This utility tool is tailored to assist traders in executing orders at optimal prices while managing risk efficiently, without the need to manually calculate volumes and other parameters. By automating these critical aspects, Risk Oracle simplifies the trading process and allows traders to focus on strategy and market analysis. All Produc
Base Core
Sahil Mukhtar
5 (1)
Base Core エキスパートアドバイザー Base Coreは効率的なトレーディングのために専用に構築された次世代マルチ通貨取引ロボットです:   EURCHF,USDJPY,AUDUSD,GBPUSD,USDCAD,AUDCAD,EURUSD,GBPCHF,AUDJPY.   M15のタイムフレームで稼働し、システムは高度な相関モデルと精度の高いスキャルピング技術を統合して、高確率のトレードエントリーを提供し、一貫性を最大化します。 単一ペアシステムとは異なり、Base Coreはペアを同時に監視し、隠れた関係性と同期した価格動向を特定します。これにより、トレーダーは行動可能な機会の絶え間ない流れを得ることができ、トレード活動が増加しながらも規律あるリスク管理を維持します。 1 コピーが 198$ で利用可能です、その後の価格は 245$  入力説明:  https://www.mql5.com/en/blogs/post/765620 なぜ Base Core を選ぶべきか •   ペアスペシャリスト – EURCHF,USDJPY,AUDUSD,GBPUSD,USDCAD
Lot Master Rebate Scalper MT5 Designed for high-volume lot generation (Lot Flipping/Rebate Farming). EA Features & Strategy No Grid Strategy: The EA opens orders at specific time intervals (e.g., every 1 minute or 5 minutes). It is specifically designed to generate high trading volume. For example, if set to 1-minute intervals, the EA will open approximately 1,440 orders per day. You can increase the lot size via the Lot_Fix input setting. RSI Entry Logic: The EA uses the RSI Indicator to determ
このプロダクトを購入した人は以下も購入しています
The core idea: using the user interface, you configure the parameters the chart must meet before entering a position (or positions), choose which entry models to use, and set the rules for when trading and planning should end. Lazy Trader  handles the rest: it  takes over all the routine chart watching and execution! full description  :: 3 key videos [1] ->  [2]   ->  [3] What can it do? - Understands Larry Williams market structure - Understands swing market structure by Michael Huddleston
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
私は連星の利用に対するその商用戦略をMT5で自動化しました、そして、我々のMt5BridgeBinaryで、私はそのBinary口座に命令を送りました、そして、私は以下をリストします:簡単なもののこの方法を操作し始めてください! 専門家のアドバイザーは、頑健さテストを最適化して、認識するために、作るのが簡単です;また、テストでは、その長期の収益性(我々がその最高の戦略をBinaryに接続するためにMt5BridgeBinaryをつくった理由です)を、我々は推定することができます。 特徴: - それは、私が望んだくらい多くの戦略を使用することができます。(専門家のアドバイザー)。 - 彼は、更なるプログラムを必要としません。 - 時間枠を輸入することなく、我々のEAを囲んでください。 - それは、すべての開いた活動を視覚化することができます。 - 彼だけは、すべての命令を受けるために1つのグラフだけの中で我々のEAを実行する必要があります。 - 我々のEAが働くように、それは複雑な構成を必要としません。 入場パラメータ: - メール:電子メールは、Binaryのその報告に関するも
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  两个组合使用会到最佳效果。   
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 X Engine | Machine-led instincts Powerful MT5 chart analysis engine equipped with a sophisticated neural network algorithm. This cutting-edge technology enables traders to perform comprehensive chart analysis effortlessly on any financial chart. With its advanced capabilities, Chart Walker streamlines the trading process by providing highly accurate trading entries based on the neural network's insights. Its high-speed calculations ensure swift and efficient analysis, empowering tra
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%の値を入力して位置します(そのようなボックスは
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
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(FTMO対応エディション)v1.5 Robot4Trade.com 提供|AI強化・チャレンジ対応 概要 Advanced Forex EAは、FTMO、MyForexFundsなどのプロップファームの要件に完全対応した、次世代型の高性能・安定型アルゴリズム自動売買ツールです。 このEAは、信頼性の高い古典的インジケーター(MA、RSI、ATR)を現代的なリスク管理・資金保護と組み合わせ、日次ドローダウン監視、進化型エントリーロジック、リアルタイム統計ダッシュボードなどを搭載しています。 デモチャレンジでも、実際の資金運用でも—このEAはあなたのオールインワン自動売買ソリューションです。 ️ ストラテジーロジック 移動平均クロスオーバー(高速SMA&低速SMA) RSIフィルター:買われすぎ/売られすぎゾーンでのエントリーを回避 ATRベースのSL/TP:市場のボラティリティに自動対応 固定またはリスクベースのロットサイズ設定 ステップ距離とマルチプライヤー:価格が一定以上動いたときのみ再エントリー、ロットは段階的に増加 時間フィル
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
フィルタ:
レビューなし
レビューに返信