Develop Custom Hybrid Scalping EA (MQL4 + MQL5) for EURUSD M5

MQL5 专家

指定

I need a professional MQL4/MQL5 developer to build a custom hybrid scalping Expert Advisor for EURUSD M5, with aggressive but controlled risk, using fixed TP/SL, no martingale, no grid, and a hybrid entry engine (price action + indicators). The EA must be delivered in both MT4 (MQL4) and MT5 (MQL5) versions, with identical logic.

1. Platform & symbol
- MT4 (MQL4) and MT5 (MQL5)
- Symbol: EURUSD
- Timeframe: M5
- EA must work on ECN accounts (5-digit broker)

2. Strategy type
- Hybrid scalping EA
- Two modes:
  - Momentum mode (trend scalping)
  - Reversal mode (range scalping)
- Mode is selected automatically based on market conditions

3. External inputs

General:
- MagicNumber (int)
- Comment (string)
- EnableLongs (bool)
- EnableShorts (bool)

Risk:
- RiskMode (enum: FixedLot, RiskPercent)
- FixedLotSize (double, default: 0.02)
- RiskPerTradePercent (double, default: 2.0)
- MaxOpenTrades (int, default: 2)
- MaxDailyLossPercent (double, default: 5.0)
- MaxWeeklyDrawdownPercent (double, default: 12.0)

TP/SL:
- TP_Pips_Momentum (double, default: 3.0)
- SL_Pips_Momentum (double, default: 2.5)
- TP_Pips_Reversal (double, default: 2.0)
- SL_Pips_Reversal (double, default: 2.5)

Session filter:
- UseSessionFilter (bool, default: true)
- LondonSessionStart (time)
- LondonSessionEnd (time)
- NYSessionStart (time)
- NYSessionEnd (time)

Spread & slippage:
- MaxSpreadPoints (int, default: 10) // 1.0 pip on 5-digit
- MaxSlippagePoints (int, default: 5)

News filter (optional):
- UseNewsFilter (bool, default: true)
- NewsPauseMinutesBefore (int, default: 5)
- NewsPauseMinutesAfter (int, default: 5)

Indicators / market condition:
- EMAPeriod (int, default: 20)
- ATRPeriod (int, default: 14)
- ATRTrendThreshold (double, default: 0.0008)
- RSIPeriod (int, default: 7 or 9)
- RSIOverbought (int, default: 70)
- RSIOversold (int, default: 30)

Trade frequency:
- MaxTradesPerHour (int, default: 6)
- MinMinutesBetweenTrades (int, default: 3)

4. Indicator definitions

EMA:
- EMA = iMA(Symbol, M5, EMAPeriod, 0, MODE_EMA, PRICE_CLOSE, 0)

EMA slope:
- EMA_slope = (EMA[0] − EMA[N]) / N
- N = 3
- SlopeThreshold = 0.00003 (3 points per bar)

ATR:
- ATR = iATR(Symbol, M5, ATRPeriod, 0)
- ATRTrendThreshold = 0.0008

RSI:
- RSI = iRSI(Symbol, M5, RSIPeriod, PRICE_CLOSE, 0)

5. Candle & wick definitions

For candle index 1 (closed bar):
- BodySize = abs(Close[1] − Open[1])
- UpperWick = High[1] − max(Open[1], Close[1])
- LowerWick = min(Open[1], Close[1]) − Low[1]
- TotalRange = High[1] − Low[1]

Momentum candle:
- BodySize ≥ 0.6 × TotalRange
- For bullish: UpperWick ≤ 0.2 × TotalRange
- For bearish: LowerWick ≤ 0.2 × TotalRange

Rejection wick:
- Bullish rejection:
  - LowerWick ≥ 0.4 × TotalRange
  - BodySize ≤ 0.3 × TotalRange
  - Close[1] > Open[1]
- Bearish rejection:
  - UpperWick ≥ 0.4 × TotalRange
  - BodySize ≤ 0.3 × TotalRange
  - Close[1] < Open[1]

6. Market mode logic

Momentum mode = TRUE if:
- abs(EMA_slope) > SlopeThreshold
- ATR > ATRTrendThreshold
- BodySize[1] > average BodySize of last 10 bars

Reversal mode = TRUE if:
- abs(EMA_slope) ≤ SlopeThreshold
- ATR ≤ ATRTrendThreshold
- Price crosses EMA at least 3 times in last 10 bars

If both true → Momentum mode has priority.
If neither true → no trading.

7. Common filters before any entry

All must pass:
- Spread ≤ MaxSpreadPoints
- Slippage ≤ MaxSlippagePoints
- Open trades with this MagicNumber < MaxOpenTrades
- Daily loss < MaxDailyLossPercent
- Weekly drawdown < MaxWeeklyDrawdownPercent
- Trades in last 60 minutes < MaxTradesPerHour
- Minutes since last trade ≥ MinMinutesBetweenTrades
- If UseSessionFilter: time within London or NY session
- If UseNewsFilter: not within news pause window

If any fails → skip entry.

8. Momentum mode entries

Long:
- Close[1] > EMA[1]
- EMA_slope > SlopeThreshold
- ATR > ATRTrendThreshold
- RSI > 50
- Candle[1] is bullish momentum candle
- High[1] > High[2]

Short:
- Close[1] < EMA[1]
- EMA_slope < −SlopeThreshold
- ATR > ATRTrendThreshold
- RSI < 50
- Candle[1] is bearish momentum candle
- Low[1] < Low[2]

Order parameters:
- TP = TP_Pips_Momentum
- SL = SL_Pips_Momentum

Stacking:
- Allow up to MaxOpenTrades total
- Only open additional trades in same direction if last closed trade was profit and Momentum mode still active.

9. Reversal mode entries

Long:
- abs(EMA_slope) ≤ SlopeThreshold
- ATR ≤ ATRTrendThreshold
- RSI < RSIOversold
- Candle[1] is bullish rejection wick
- Low[1] < Low[2]

Short:
- abs(EMA_slope) ≤ SlopeThreshold
- ATR ≤ ATRTrendThreshold
- RSI > RSIOverbought
- Candle[1] is bearish rejection wick
- High[1] > High[2]

Order parameters:
- TP = TP_Pips_Reversal
- SL = SL_Pips_Reversal

No stacking in reversal mode.

10. Exit logic

- Fixed TP and SL only.
- No trailing stop, no breakeven, no partial close.
- No martingale, no grid, no averaging down.

11. Risk & protection

Lot sizing:
- If FixedLot → use FixedLotSize.
- If RiskPercent → calculate lot based on SL distance and RiskPerTradePercent.

Daily loss:
- If daily closed P/L ≤ −MaxDailyLossPercent of equity → block new trades until next day.

Weekly drawdown:
- Track weekly equity peak.
- If equity ≤ peak × (1 − MaxWeeklyDrawdownPercent/100) → block new trades until next week.

12. Other requirements

- EA must correctly handle restarts (recognize open trades by MagicNumber).
- Clean, commented code.
- Same logic in MQL4 and MQL5.
- Basic logging of each trade (mode, direction, indicators at entry, TP/SL, spread).

Deliverables:
- .mq4 + .ex4
- .mq5 + .ex5
- Brief description of inputs and how to attach EA
- Confirmation that logic matches spec.

反馈

1
开发者 1
等级
(393)
项目
549
40%
仲裁
30
57% / 3%
逾期
57
10%
空闲
发布者: 11 代码
2
开发者 2
等级
(251)
项目
314
28%
仲裁
34
26% / 65%
逾期
10
3%
工作中
3
开发者 3
等级
项目
0
0%
仲裁
0
逾期
0
空闲
4
开发者 4
等级
(1)
项目
3
0%
仲裁
2
50% / 0%
逾期
0
空闲
发布者: 4 代码
5
开发者 5
等级
(43)
项目
53
49%
仲裁
6
83% / 0%
逾期
0
工作中
6
开发者 6
等级
(2)
项目
2
50%
仲裁
0
逾期
0
空闲
7
开发者 7
等级
项目
0
0%
仲裁
0
逾期
0
空闲
8
开发者 8
等级
(2313)
项目
2912
63%
仲裁
122
44% / 25%
逾期
429
15%
工作中
9
开发者 9
等级
(6)
项目
5
0%
仲裁
2
50% / 50%
逾期
2
40%
空闲
10
开发者 10
等级
项目
0
0%
仲裁
0
逾期
0
空闲
11
开发者 11
等级
(3)
项目
1
100%
仲裁
3
0% / 100%
逾期
0
空闲
12
开发者 12
等级
(3)
项目
5
20%
仲裁
1
0% / 0%
逾期
1
20%
工作中
13
开发者 13
等级
(443)
项目
700
34%
仲裁
34
71% / 9%
逾期
22
3%
空闲
14
开发者 14
等级
(296)
项目
475
40%
仲裁
105
40% / 24%
逾期
80
17%
繁忙
发布者: 2 代码
15
开发者 15
等级
项目
0
0%
仲裁
0
逾期
0
空闲
16
开发者 16
等级
(12)
项目
16
13%
仲裁
4
50% / 25%
逾期
4
25%
工作中
17
开发者 17
等级
项目
0
0%
仲裁
0
逾期
0
空闲
18
开发者 18
等级
项目
0
0%
仲裁
0
逾期
0
空闲
19
开发者 19
等级
(32)
项目
33
61%
仲裁
1
100% / 0%
逾期
1
3%
空闲
发布者: 5 代码
20
开发者 20
等级
(2647)
项目
3364
68%
仲裁
77
48% / 14%
逾期
342
10%
空闲
发布者: 1 代码
21
开发者 21
等级
(39)
项目
46
28%
仲裁
14
21% / 64%
逾期
1
2%
已载入
22
开发者 22
等级
(357)
项目
429
54%
仲裁
20
55% / 15%
逾期
29
7%
工作中
23
开发者 23
等级
(255)
项目
262
30%
仲裁
0
逾期
3
1%
空闲
发布者: 2 代码
24
开发者 24
等级
项目
0
0%
仲裁
0
逾期
0
空闲
25
开发者 25
等级
(6)
项目
7
0%
仲裁
2
0% / 50%
逾期
1
14%
工作中
26
开发者 26
等级
(311)
项目
557
35%
仲裁
79
32% / 43%
逾期
202
36%
工作中
27
开发者 27
等级
项目
0
0%
仲裁
0
逾期
0
空闲
28
开发者 28
等级
项目
0
0%
仲裁
0
逾期
0
空闲
29
开发者 29
等级
(1)
项目
2
0%
仲裁
2
0% / 100%
逾期
0
工作中
30
开发者 30
等级
(270)
项目
552
49%
仲裁
57
40% / 37%
逾期
227
41%
工作中
31
开发者 31
等级
项目
0
0%
仲裁
0
逾期
0
空闲
32
开发者 32
等级
项目
0
0%
仲裁
0
逾期
0
空闲
33
开发者 33
等级
(98)
项目
119
24%
仲裁
21
29% / 52%
逾期
8
7%
空闲
34
开发者 34
等级
(556)
项目
643
33%
仲裁
41
41% / 46%
逾期
11
2%
繁忙
35
开发者 35
等级
(10)
项目
14
43%
仲裁
0
逾期
3
21%
空闲
36
开发者 36
等级
(8)
项目
12
0%
仲裁
23
0% / 78%
逾期
4
33%
空闲
37
开发者 37
等级
(3)
项目
3
0%
仲裁
0
逾期
0
空闲
38
开发者 38
等级
项目
0
0%
仲裁
0
逾期
0
空闲
39
开发者 39
等级
(32)
项目
35
34%
仲裁
5
0% / 80%
逾期
0
工作中
发布者: 2 代码
40
开发者 40
等级
项目
0
0%
仲裁
0
逾期
0
空闲
相似订单
Hello i need an EA automated using Supply & Demand + Shooting Star/Hammer Bot: Timeframes: H1 main, M5/M15 for entry Indicators: ATR(14 ≥0.80), Supply/Demand zones, Candlestick patterns Short Entry: 1. Price enters supply zone 2. Shooting star forms (small body, long upper wick ≥2× body) 3. ATR ≥0.80 4. Sell below shooting star low Stop Loss: above upper wick Take Profit: next support zone or 1:2 R:R Trailing Stop
HFT Directional Grid Scalper (Simple, Training Project) Overview We are looking for a developer to create a high-frequency grid scalper with a simple, deterministic logic. This is not a complex bot — the goal is to have a clean implementation for training, testing, and educational purposes. The bot should: Continually open trades in one direction only (BUY or SELL) Use ATR-based grid spacing Maintain a fixed lot size
Looking to buy an EA which is good, profitable and takes many trades, good for IB broker comissions, Any strategy or martingale is fine, send me a demo license file, I will backtest and purchase immediately if my team like it
Hi, Before ordering, I want to verify the quality of your ICT/SMC logic. Do you have an existing indicator or strategy (your own work) that I can test on TradingView? If yes, please provide: 1. A demo (invite-only script or video) 2. Proof it is NON-repainting (explained clearly) 3. Live or replay demonstration (not static screenshots) Specifically I want to see: * Clean swing structure (no consecutive highs/lows) *
Indicator 125+ USD
Hi guys looking for a buy sell indicator not necessarily for trading solely based on it but more for getting an indication of market dynamic and direction. If you believe you have or have a good strategy or idea for such an indicator drop a message. I will want to test it before making deposit as this is such an open order woth so many options. Waiting to hear from you. Flexible with price
Looking to work woth manualtraders who have a proved existing strategy. To be clear, this is not a request to develop or design a new strategy. If you already trading and have strategy that is proven, consistent, and production-ready, with at least 6 months of history performance I’m open to reviewing it immediately. Please apply only if you meet all the requirements below. Submissions without a proper introduction
Scalping EA 30+ USD
Hello, I am looking for an Expert Advisor (EA) that focuses on account preservation and consistent growth , rather than aggressive or risky strategies. My requirements are: Target: at least ~1% weekly return Strategy: low-risk, controlled drawdown Must NOT use martingale or grid systems that can blow the account Prefer quality trades over quantity like 100–200 trades per day Consistency is more important than high
Looking for a good EA 2000 - 5000 USD
Hello coders ,I am looking for a good already established MT5 EA ,that doesnt blow account, with maximum 10 percent drowdown,I need to backtest by myself,after that i select the developer
Hello i need bot 30 - 100 USD
I need a trading bot (Expert Advisor) that can send alerts to mobile, Telegram, and the MT5 desktop platform. The bot should work as a market scanner for all symbols available in my MetaTrader 5 Market Watch. It must analyze multiple indicators and convert their signals into a point-based scoring system, then send alerts based on those scores. Requirements: Send notifications to: Mobile (push notifications) Telegram
Project Overview ​I am looking for a high-level Algorithmic Trader / Developer to build a sophisticated, fully automated scalping system for the Nasdaq-100 Future (NQ) . The system must integrate institutional order flow logic with market structure analysis. ​The core logic must be written in Python , acting as a central hub that bridges ATAS (as the primary data source for Order Flow) and MetaTrader 5 (as the

项目信息

预算
200 - 400 USD
截止日期
 1  7 天

客户

所下订单1
仲裁计数0