TEXTTT ME FOR MORE INFO. I need a fully automated Expert Advisor (EA) for MetaTrader 5 based on my sniper trading strategy. The EA must be precise, professional, and disciplined — capable of operating completely on its own in a real account, respecting strict risk parameters and entry rules.
The EA must detect strong Support/Resistance zones on the H4 timeframe, refined/validated on H1. It must enter trades only with clear confirmation: either a valid rejection candle on M5 or M15 (bullish/bearish engulfing or pin bar) or a clean breakout of London session Highs or Lows with body close and no rejection.
For example, a BUY setup would be when price touches a strong support zone and shows a bullish engulfing or pin bar on M15. A SELL setup would be when price breaks the London High and confirms with a bearish candle with no rejection. If the confirmation candle is too large, the EA should wait for a retracement before entering. It must also avoid trades during major news events such as NFP or FOMC.
Risk must be tightly controlled. The EA should risk exactly 1% of the account balance per day. If only one trade is taken, it should use the full 1%. If multiple trades are taken, the 1% should be divided equally between them. Lot size must be calculated dynamically based on the real SL, not using fixed lots.
SL should normally be set at the previous wick, but if the wick is too big, the EA must use smart logic to reduce excessive risk. TP must follow a Risk-to-Reward ratio between 1:2 and 1:4. The EA must include a trailing stop that moves SL to break-even at 1:2 RR and allows the trade to run to 1:3 or 1:4 if possible.
The EA must operate Monday to Friday only. It must automatically close all trades every Friday at 4:30 p.m. broker/server time. No trades should remain open over the weekend. Preferably it should trade during the New York session, but it can trade at other times if the logic is met.
The EA should understand and react to rejection behavior, even if the zone has only a single clear rejection. It should also handle breakouts using volume and RR logic. If price breaks and closes above the London High with no rejection, a continuation BUY can be valid. Similarly, if it breaks below the London Low and confirms, it can take a SELL.
Visually, the EA should mark support zones in blue and resistance zones in red. It should display on the chart: Entry, SL, TP, live RR, daily PnL, active zones, and trade status. A control panel should be included with options to modify Risk %, RR target, trailing toggle, and news filter on/off.
The EA must send push notifications or email alerts when a trade is taken.
It must be developed for MetaTrader 5 using MQL5, with clean, well-commented source code (.mq5), no DLLs, and error-free compilation.
The primary symbol is XAUUSD, though the logic may also be compatible with ND100m (NAS100) or others.
Maximum daily risk must be capped at 1%, and total drawdown must not exceed 8%. If those limits are reached, the EA should automatically stop trading for the rest of the day.
I want this EA to reflect a sniper-style, high-precision strategy that focuses on consistency and smart trade selection. The goal is to achieve consistent monthly growth (ideally +15–20%) with strict discipline. Only apply if you are confident you can deliver a professional, fully working EA.
Ordini simili
i need some tradingview strategy that i want to use as a tester, i have something that i am working on currently and i need someone that can provide me with tradingview strategies that doesn't have a win rate, the one with 1:1 RR it need to have low win rate like 10% or 5% profitability, i am not paying $30 for,i dont have up to that for this cause i only want to use it as a test, if anyone have any to send me please
hello i need help building a ea bot for mt5 and i have started on claude but i will need someone if a incredible experience to make my ideas come to live. please contact so we can schedule a quick call and i can share anything that concerns you for the task
I am looking for someone with real experience developing strategies, indicators, or trading tools for Quantower . The strategy itself is relatively simple. The main issue is that I need to use some of Quantower's functions and API capabilities to program the strategy, but there is limited documentation available for some of the functionality, and I do not have enough time to fully understand the API and implement
I am looking for an experienced MQL5 developer who can BOTH research trading strategies and develop a commercial-quality MetaTrader 5 Expert Advisor. This is NOT simply a coding job. The developer is free to choose the trading logic, indicators, entry method, exit method, timeframe architecture and strategy type. I do not require the EA to copy or resemble any existing commercial EA. My priority is: ROBUST LONG-TERM
I DO NOT need any programming or strategy development. I already have a working NinjaTrader 8 automated strategy based on a 3/5 EMA crossover. I need you to run my existing strategy through NinjaTrader Strategy Analyzer/Optimizer, test the existing adjustable parameters, and find robust settings with the best profit factor and lowest reasonable drawdown. I will provide the existing NinjaScript ZIP. I do not want the
I am looking to acquire an EXISTING and PROVEN MetaTrader 5 Expert Advisor. I am NOT looking for someone to develop a random new strategy from scratch. The objective is to find a robust EA with an existing track record, verify its performance and robustness, and purchase the MQL5 source code together with clearly defined commercial rights. MAIN REQUIREMENTS The EA should meet most or all of the following
Looking to acquire an existing, proven EA. Not looking for new strategy development. REQUIREMENTS — non-negotiable: Minimum 12 months verified LIVE history (Myfxbook or MQL5 Signals, real money — not demo, not backtest) Hard stop loss on EVERY trade, set at order placement NO martingale, NO grid, NO averaging into losers, NO lot multiplication after a loss Max historical drawdown under 30% Minimum 5 trades per
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
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
//———————————————————————————————————————————————————————————————————— 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 () {