Hello developers, I need to update an existing grid EA from Forex Factory and reprogram it with more benefits.
New Requirements :
MT4 version
EA’s new name : New Grid EA
- 4 and 5 digits auto
- Must be able to trade two EA’s in one chart with two different Magic numbers
- If any open active order in session was closed manually from any other device ( mobile phone, etc., ), EA will close whole session
immediately ( all open orders and pending orders - connected to own Magic number ).
- Spread and slippage protection , settings
- ECN / none ECN brokers compatible
- Must be able to trade Gold and Silver also.
- Magic number
- Increment ( same logic like old EA )
- Levels ( same logic like old EA ) setting
- Money management true/false ( same logic like old EA ).
- Risk ratio setting ( same logic like old EA )
- Place grid now true/ false setting
- Place grid X minutes from now true/false setting , minutes setting ( up to 4320 minutes).
- Close all now true/ false setting ( EA will close all open orders and pending orders, or just pending orders if there is no
open active orders for own Magic number ). Also requesting TWO CLICKS logic BUTTON in chart window CLOSE ALL NOW (
two clicks for safety reasons. ( Both will work independently - in EA’s setting and in chart window).
- Money Loss Stop Out EA setting ( EA will close all open orders and pending orders in whole session for own Magic number).
- Continue trading when previous session was ended setting true/false, make a pause for X minutes - setting ( if set to “0”
zero, EA will continue immediately.
- in current code remove Take profit line in chart and Stop loss line in chart
- new basic lot entry in EA setting will be 0.01 lot
- Max lots allowed for session - setting ( account protection )
- moving Breakeven line in chart ( Must be calculated with Swap and commissions ) with Magic number above line on the right side of the chart
window with arrow symbol up or down showing profit direction. Colours options.
- Take profit in money - true/ false setting ( EA will not place any TP in to the chart, but simply will just close all active
orders and pending orders in whole session . Take profit must be calculated with swap and commissions ) Setting for TP must be in format (
example ) 13.26, 0.76, 455.67 , TP logic is working even if Trailing Stop loss wasn’t set yet.
- Trailing Stop Loss Plus BE pips true/false setting
- Activate Trailing Stop Loss if market price is X pips away from BE in profit , pips, setting and Set Trailing Stop Loss X pips from BE level in
profit , pips ,setting . Of course when Trailing Stop Loss got hit by market, EA will close whole session ( all open active orders and
pending orders ).
Both codes requested.
Thank you.
Pedidos semelhantes
Project Description I am looking for an experienced MQL5/MT5 Expert Advisor developer to develop an automated trading EA for XAUUSD on the M3 timeframe , running on an Exness account . The EA will automate a manual strategy based on SNR/GAP zones , using two setup types: Price Rejection Price Correction The EA should identify valid BUY/SELL setups around predefined SNR/GAP areas, apply configurable RSI, SMA, EMA and
I need an MT5 Expert Advisor for XAUUSD (Gold) running on an Exness account. STRATEGY LOGIC The exact entry and exit rules will be provided in writing before development starts. Please quote for a single rule-based strategy with clearly separated logic, so the rules can be adjusted later without rewriting the whole EA. RISK MANAGEMENT (this is the priority of the project) - Risk per trade as a percentage of account
Modification of Trade_Panel_7 7.05 Objective . I have this utility “Trade_Panel_7 7.05” with which I open and close positions. Please refer to attached “Trade Panel Modification.jpg”. It shows an input parameter “Volume Step”. This parameter has the initial value of 0.02 as shown. This feature needs to be amended. Present Status . Value of lot size is increased by this “Volume Step”. I have built a whole series of
Hello Traders, Have a trading strategy or idea you want to automate? I specialize exclusively in MQL5 development, helping traders turn their concepts into professional trading solutions. Custom Expert Advisors — automate your strategy and reduce manual execution Custom Indicators — transform your market ideas into powerful trading tools Fix & Debug — identify errors and get your existing code working properly
please share: Strategy description — entry/exit rules, indicators used, timeframe(s), and instrument(s) (a written explanation, screenshots, or an existing indicator/EA to reference all work) Risk management rules — position sizing method (fixed lot / % risk), stop loss / take profit logic, max drawdown or daily loss limits, and whether martingale/grid/hedging is involved Broker & account details — broker name
I need a unique grid trading system for XAUUSD that combines entry, controlled two-sided grid expansion, DCA (Dollar Cost Averaging) basket profit control, hedging. Unlike traditional grid EAs that only trade against price, this unique grid system should dynamically build positions in both directions based on market movement, allowing flexible adaptation to changing conditions ie the grid needs to dynamically move
I need an experienced MQL5 developer to create a fully automated MT5 Expert Advisor called Ayoub Gold EA , focused exclusively on XAUUSD (Gold) . Main requirements: Platform: MT5 / MQL5. Fully automated BUY and SELL trading on XAUUSD. Must support broker suffixes such as XAUUSD, XAUUSD.f and XAUUSDm. Trading strategy based mainly on Range Breakout with trend confirmation. EMA, ADX and ATR filters. London/New York
I need a custom MetaTrader 5 indicator designed specifically for XAUUSD gold trading. The indicator should identify potential buy and sell opportunities, display clear entry and exit signals on the chart, provide alerts, and help identify market trends and possible reversals
Looking for an experienced Sierra Chart ACSIL/C++ developer to customize an existing footprint chart. I need 3 things: 7-Day ATR – calculate and display a configurable 7-day ATR. Custom Footprint – modify my existing footprint chart to match my preferred layout/data display. Automatic LVN – detect and plot Low Volume Nodes automatically based on volume distribution. I already have a working footprint chart, so no
//———————————————————————————————————————————————————————————————————— struct S_MCAV { double matureSum; double totalSum; double value; void Init () { matureSum = 0.0; totalSum = 0.0; value = 0.5; } void AddContext (int ctx) { totalSum += 1.0; if (ctx == 1) matureSum += 1.0; } void ApplyDecay (double rate) { matureSum *= rate; totalSum *= rate; } void Update () {