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.


Produtos recomendados
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)
O LittleCrazy EA é um sistema de negociação totalmente automatizado com um perfil de risco extremamente agressivo. Ele opera no limite do risco possível usando uma estratégia de reversão à média em três pares correlacionados: AUDCAD, AUDNZD e NZDCAD . Este Expert Advisor foi desenvolvido para quem busca oportunidades de alto retorno e entende os riscos envolvidos em sistemas agressivos. É especialmente indicado para depósitos pequenos e contas em que o usuário esteja preparado para rebaixament
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)
PROMOÇÃO DE LANÇAMENTO: Apenas um número muito limitado de cópias estará disponível pelo preço atual! Preço final: 999$ NOVO (a partir de US$ 349) --> GANHE 1 EA GRÁTIS (para 2 números de conta comercial). Oferta combinada definitiva     ->     clique aqui JUNTE-SE AO GRUPO PÚBLICO:   Clique aqui   LIVE SIGNAL LIVE SIGNAL V2.0 UPDATE 2.0 INFO Bem-vindo ao BITCOIN REAPER!   Depois do tremendo sucesso do Gold Reaper, decidi que era hora de aplicar os mesmos princípios vencedores ao mercado de Bi
Kingsley
Benjamin Junior Nkoa Nkoa
EA 100% automated for XAUUSD – Captures NY impulse with dynamic trailing. 4years backtest, Total Net Profit ≈ 222%, DD Max ≈ 7%, WR ≈ 51%, PF ≈ 2. Profitability, discipline and emotional control. Most traders lose money. Not because of bad analysis, they mostly lose because they fail to follow their own plan. Smart traders limit the impact of their emotions on their results. You too can improve your results by letting Kingsley handle analysis, entries, and trade management. What Kingsley EA do
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
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
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)
O CRT Model 1 EA é uma solução de negociação automatizada projetada para executar a estratégia CRT Model 1, que foca na análise de intervalo baseada em tempo, varreduras de liquidez (liquidity sweeps) e entradas de retração. Este Expert Advisor (EA) define um intervalo de tempo específico para estabelecer pontos de referência de preço alto e baixo. Em seguida, ele monitora a ação do preço fora desse intervalo para identificar o "Turtle Soup" (Varredura de Liquidez) seguido por uma reversão e uma
M15 Day Trader Pro
Pierre Francois Smith
M15 Cycle Manager , a smart trading assistant designed to catch market "exhaustion" points and turn them into profit opportunities. The precision of  this tool helps you trade smarter, not harder. Core Advantages: Dual-Time-frame Precision Safety-First Approach Hands-Free Recovery Smart Exit Strategy Key Features: The Trading Window Real-Time Dashboard Automated Friday Cleanup Instant Notifications Dual-Target Profit Forex multi-Currency Pair Orientation  Recommended Startup Amounts: Conservati
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 — A Nova Era do Scalping de Tendência Chegou. Se você opera XAUUSD , índices ou pares de alta velocidade… este EA foi feito para você. O BoBot Scalper utiliza um motor refinado MACD/LWMA para detectar verdadeiras entradas de continuação de tendência antes da maioria . Ele reage rápido, gerencia o risco com precisão e protege o lucro usando um sistema de trailing em moeda baseado em etapas — um dos métodos mais inteligentes que você encontrará em um EA de scalping. Ele NÃO usa marti
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
Nova RSI Trader — Momentum & Structure Precision System View the Nova Live Signal Performance Now available as a fully managed signal  — trades executed in real time under the same disciplined framework and risk management that powers the EA. Note: The price will increase by $10 for every 10 sales, ensuring early adopters get the best value. Nova RSI Trader automates the Relative Strength Index (RSI) — one of the most widely respected momentum indicators in trading. By combining overbought/ove
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.
OxF1
Robertas Gumbakis
Compre OxF1 e receba Ox7F gratuitamente – O preço aumenta a cada 10 compras. OxF1 representa a próxima evolução da arquitetura da série Ox, construída com base na experiência obtida em implementações reais anteriores. O sistema foi refinado com uma validação de sinais aprimorada e uma lógica de execução otimizada, projetada especificamente para XAUUSD . O EA funciona de forma eficiente em todos os ambientes de corretoras . Os timeframes recomendados são M15 , M30 e H1 . Você pode começar com um
TrendFusion X
Daniel Mandachi
TrendFusion X is a fully automated trading solution designed for traders who value precision, discipline, and structured decision-making. It combines a trend scoring model with multi-timeframe analysis and confirmation logic to ensure trades are executed only under technically favorable conditions. Built for modern trading environments, TrendFusion X adapts to changing market behavior and focuses on quality setups rather than volume. Core Features Trend Strength Scoring System Filters out weak
O End Trailing Stop é um algoritmo de negociação sofisticado, concebido para captar a volatilidade do mercado utilizando uma lógica inteligente de "Armadilha e Ruptura". Ao contrário dos sistemas de grelha tradicionais, que falham frequentemente devido às limitações da corretora, este EA apresenta um Motor de Validação Inteligente que ajusta automaticamente as ordens pendentes para cumprir os requisitos de Nível de Stop e Nível de Congelação, garantindo uma execução sem erros. Independentement
Xauron
Roberto Liguoro
5 (3)
XAURON – Expert Advisor for XAU/USD XAURON is an automated trading Expert Advisor developed for XAU/USD (Gold) , designed around a structured breakout strategy with integrated risk and trade management rules. The EA continuously monitors market conditions and executes trades only when predefined technical criteria are met , ensuring a controlled and consistent operational behavior. IMPORTANT:  After purchase, please contact me via private message to receive the installation manual, optimized set
Version: 2.52 |  Timeframe: H1 | Optimized for: XAUUSD & BTCUSD IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 1. Executive Summary HedgeReset EA is an automated Expert Advisor for MetaTrader 5 built around a market-neutral hedging strategy. It opens simultaneous Buy and Sell positions of equal lot size, then manages them through ATR-based dynamic stops, session-aware trade filtering, and a profit-cycle reset mechani
The White Rabbit
Kevin Craig E Gittins
WHITE RABBIT - Assessor Especialista Profissional de Rompimento de Intervalo de Tempo Visão Geral White Rabbit é um assessor especialista profissional de negociação de rompimento desenvolvido a partir de anos de experiência em negociação manual. Projetado para traders que exigem precisão e flexibilidade, ele captura oportunidades de rompimento de alta probabilidade em qualquer mercado e período de tempo, ao mesmo tempo que fornece ferramentas avançadas de gestão de risco especificamente adaptada
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 Consultor Especializado Base Core é um robô de trading multi-moeda de próxima geração, construído exclusivamente para negociar de forma eficiente:   EURCHF,USDJPY,AUDUSD,GBPUSD,USDCAD,AUDCAD,EURUSD,GBPCHF,AUDJPY.   Operando no timeframe M15, o sistema integra modelagem de correlação avançada com técnicas de scalping de precisão para oferecer entradas de negociação de alta probabilidade e maximizar a consistência. Diferente de sistemas de pares únicos, o Base Core monitora pares simult
STfusionPRO
Alejandro Bordes De Santa Ana
STFusion Pro " The perfect fusion of strategies to maximize your trading ." www.stfusionpro.com 2. Overview STFusionPro v3.0 - Premium Multi-Strategy System KEY FEATURES: 10+ INTEGRATED STRATEGIES Gap Trading Stochastic/RSI Reversal Breakout Diario Chart Patterns (H&S, Double Roof/Floor) Moving Average Pullback Daily Supports/Resistances Momentum with Confirmation Mean Reversal with Bollinger Bands ADVANCED RISK MANAGEMENT Dynamic volatility-based risk adjustment (ATR) Daily and per-posit
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
Os compradores deste produto também adquirem
HINN Lazy Trader
ALGOFLOW OÜ
5 (2)
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 takes over all the routine chart watching and execution.  Lazy Trader  handles the rest. full description  :: 3 key videos [1] ->  [2]   ->  [3] What can it do? - Understands Larry Williams market structure - Understands swing market structure by Michael Hu
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
FiboPlusWaves MT5
Sergey Malysh
5 (1)
Uma série de produtos sob marca FiboPlusWave Um sistema comercial pronto baseado nas  ondas de Elliott e níveis de Fibonacci . Simples e de fácil acesso. Exibição de marcação das ondas de Elliott (opção geral ou alternativa) em um gráfico. Construção dos níveis horizontais, linhas de apoio e resistência, canal. Sobreposição dos níveis de Fibonacci para as ondas 1, 3, 5, A Sistema de alerta (no ecrã, E-Mail, Push notificações).    Particularidade s : sem se aprofundar na teoria das ondas de Ellio
Mt5BridgeBinary
Leandro Sanchez Marino
Automatizei as suas estratégias comerciais para o uso do binário em MT5 e com o nosso Mt5BridgeBinary enviei as ordens à sua conta Binária e inclino-me: comece a fazer funcionar este caminho do fácil! Os aconselhadores peritos são fáceis formar, otimizar e realizar testes de robustez; também no teste podemos projetar a sua rentabilidade de longo prazo, por isso criamos Mt5BridgeBinary para unir as suas estratégias melhores ao Binário. Características: - Pode usar tantas estratégias como desej
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
Salvando dados do livro de pedidos. Utilitário de repetição de dados: https://www.mql5.com/pt/market/product/71640 Biblioteca para uso no testador de estratégia: https://www.mql5.com/pt/market/product/81409 Talvez, então, apareça uma biblioteca para utilizar os dados salvos no testador de estratégia, dependendo do interesse neste desenvolvimento. Agora, há desenvolvimentos desse tipo usando memória compartilhada, quando apenas uma cópia dos dados está na RAM. Isso não apenas resolve o problema
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 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 é um bot único que é projetado especificamente para aqueles que têm problemas com psicologia, para aqueles que têm problemas com psicologia. Quem não para e não tem lucros, acabando por perder os seus depósitos. Mas com o nosso bot, todos esses problemas serão resolvidos!  Com FxStrike999_SPT_bot você alcançará um novo nível de negociação, onde seu depósito crescerá constantemente  e você vai parar de se preocupar com suas posições, o próprio bot vai definir um s
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
News Trapper EA MT5
Noha Mohamed Fathy Younes Badr
Hi, all.  News trapper EA It is an expert for trading news very safe expert  Automated Trading on the news of the economic calendar. It shows stable trading during last 10  years. EA doesn't use dangerous technologies like martingale, grid. The Expert is very simple to use. how to install it and set files       read the blog        after purchase contact me to add you to VIP channel   The program contains flexible settings for trading on the news of the economic calendar. It cannot be checked in
Centage
Chukwuemeka Kingsley Anyanwu
Centage: Your Smart Trading Bot for Risk Management. Unlike typical trading bots, Centage prioritizes risk management by incorporating an essential feature: it closes all open trades when your account balance reaches a predefined threshold. This feature makes Centage ideal for traders who want to maintain a disciplined approach and avoid emotional decision-making.  Let Centage be your reliable partner in the world of trading, while safeguarding your investments with smart balance-based exits. Ce
Algorithmic Trading Panel
Harifidy Razafindranaivo
A - Genesis: Redefining Trading Efficiency and Precision Genesis is a cutting-edge trading panel crafted to empower traders with unmatched precision and versatility. Featuring two graphical modes : the Main Window Graph offers a comprehensive view of the market's dynamics,  while the Sub Window Graph provides a focused analysis of specific indicators and patterns. This dual-mode visualization enables traders to switch seamlessly between a macro and micro perspective of the market, ensuring they
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
Mais do autor
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
Filtro:
Sem comentários
Responder ao comentário