指定
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
評価
プロジェクト
549
40%
仲裁
30
57%
/
3%
期限切れ
57
10%
暇
パブリッシュした人: 11 codes
2
評価
プロジェクト
314
28%
仲裁
34
26%
/
65%
期限切れ
10
3%
仕事中
3
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
4
評価
プロジェクト
3
0%
仲裁
2
50%
/
0%
期限切れ
0
暇
パブリッシュした人: 4 codes
5
評価
プロジェクト
53
49%
仲裁
6
83%
/
0%
期限切れ
0
仕事中
6
評価
プロジェクト
2
50%
仲裁
0
期限切れ
0
暇
7
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
8
評価
プロジェクト
2912
63%
仲裁
122
44%
/
25%
期限切れ
429
15%
仕事中
9
評価
プロジェクト
5
0%
仲裁
2
50%
/
50%
期限切れ
2
40%
暇
10
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
11
評価
プロジェクト
1
100%
仲裁
3
0%
/
100%
期限切れ
0
暇
12
評価
プロジェクト
5
20%
仲裁
1
0%
/
0%
期限切れ
1
20%
仕事中
13
評価
プロジェクト
699
34%
仲裁
34
68%
/
9%
期限切れ
22
3%
仕事中
14
評価
プロジェクト
475
40%
仲裁
105
40%
/
24%
期限切れ
80
17%
多忙
パブリッシュした人: 2 codes
15
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
16
評価
プロジェクト
16
13%
仲裁
4
50%
/
25%
期限切れ
4
25%
仕事中
17
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
18
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
19
評価
プロジェクト
33
61%
仲裁
1
100%
/
0%
期限切れ
1
3%
暇
パブリッシュした人: 5 codes
20
評価
プロジェクト
3363
68%
仲裁
77
48%
/
14%
期限切れ
342
10%
暇
パブリッシュした人: 1 code
21
評価
プロジェクト
46
28%
仲裁
14
21%
/
64%
期限切れ
1
2%
取り込み中
22
評価
プロジェクト
429
54%
仲裁
20
55%
/
15%
期限切れ
29
7%
仕事中
23
評価
プロジェクト
262
30%
仲裁
0
期限切れ
3
1%
暇
パブリッシュした人: 2 codes
24
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
25
評価
プロジェクト
7
0%
仲裁
2
0%
/
50%
期限切れ
1
14%
仕事中
26
評価
プロジェクト
557
35%
仲裁
79
32%
/
43%
期限切れ
202
36%
暇
27
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
28
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
29
評価
プロジェクト
2
0%
仲裁
2
0%
/
100%
期限切れ
0
仕事中
30
評価
プロジェクト
552
49%
仲裁
57
40%
/
37%
期限切れ
227
41%
仕事中
31
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
32
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
33
評価
プロジェクト
119
24%
仲裁
21
29%
/
52%
期限切れ
8
7%
暇
34
評価
プロジェクト
642
33%
仲裁
41
41%
/
46%
期限切れ
11
2%
多忙
35
評価
プロジェクト
14
43%
仲裁
0
期限切れ
3
21%
暇
類似した注文
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
A gold + bitcoin extremely high lot HFT
30 - 200 USD
I have recently used an ea that was absolutely perfect however, I have since found it was not a safe source. I use IC Markets raw spread ECN accounts and the bot I would like is a gold + btc trader (other forex are also fine) that trades extremely high lots, whilst trading extremely high frequency. I am happy to take a bot that already exists if this has an account I can view read only for true results
Mlondi traders
30+ USD
//@version=5 strategy("Simple SMC Bot", overlay=true) // Detect highs/lows hh = ta.highest(high, 10) ll = ta.lowest(low, 10) // Break of structure bullishBOS = close > hh[1] bearishBOS = close < ll[1] // Entry logic if bullishBOS strategy.entry("Buy", strategy.long) if bearishBOS strategy.entry("Sell", strategy.short) // Stop loss & take profit strategy.exit("Exit Buy", from_entry="Buy", loss=50, profit=100)
I am interested in purchasing a highly profitable Expert Advisor (EA in MQL4 / MQL5) with a focus on achieving a high Profit Factor and Recovery Factor while maintaining a low Drawdown. I require an EA that not only performs well in backtesting but also has a verifiable track record of success in live trading. Key Criteria: Profitability Metrics: The EA should demonstrate a high Profit Factor and Recovery Factor
I'm not here to waste somebody time also mine should not be wasted provide if you got what I want real profitable high frequency EA Send the backteing results picture then demo EA test on demo account for at least two days
Requirement Specification: Market Structure: Identify Trend on 1H/30M using BOS and CHOCH. Entry Logic: Wait for 50% Fibonacci Retracement into an Order Block (OB) or Fair Value Gap (FVG). Execution: On 5M/15M timeframe, execute trade only if a confirmation pattern forms at the zone. Patterns Required: Bullish/Bearish Engulfing, Morning/Evening Star, Inverse Bullish/Bearish Engulfing (Liquidity Sweeps), and Bearish
I am looking for a scalping EA based on daily VWAP for intraday trading. initiate buy when above VWAP and initiate sell below VWAP. it should have proper risk to reward
プロジェクト情報
予算
200 - 400 USD
締め切り
最低 1 最高 7 日
依頼者
出された注文1
裁定取引数0