Looking for an Experienced MQL4/MQL5 Developer to Build a Professional Scalping Expert Advisor (EA)

指定

Looking for an Experienced MQL4/MQL5 Developer to Build a Professional Scalping Expert Advisor (EA)

I am looking for an experienced MQL4/MQL5 developer to build a professional Expert Advisor (EA) for MetaTrader 4 or MetaTrader 5 from scratch.

My goal is to develop a high-quality scalping system with strong risk management and long-term profitability potential. I am not looking for unrealistic promises or "100% winning" systems, but for a robust, well-designed trading robot that can be continuously improved and optimized.

Project Requirements

  • Development in MQL4 or MQL5.
  • Multi-symbol trading.
  • Scalping on M1–M5 timeframes.
  • Compatible with ECN/RAW spread accounts.
  • Advanced trade management:
    • Stop Loss
    • Take Profit
    • Break Even
    • Trailing Stop
    • Partial position closing
  • Advanced money management:
    • Fixed lot or risk percentage
    • Maximum daily drawdown protection
    • Maximum consecutive losing trades
    • Maximum number of open positions
  • Spread and slippage filters.
  • Trading session filter.
  • Economic news filter.
  • Fully optimizable in the MetaTrader Strategy Tester.
  • User-friendly on-chart control panel displaying all important trading information.

Preferred Features

The developer is welcome to propose the best combination of strategies and technologies, including but not limited to:

  • Price Action
  • Smart Money Concepts (SMC) / ICT concepts
  • Market Structure (BOS, CHoCH)
  • Order Blocks
  • Fair Value Gaps (FVG)
  • Trend filters (EMA, VWAP, etc.)
  • ATR-based dynamic Stop Loss and Take Profit
  • Multi-timeframe confirmation
  • Volatility and liquidity filters
  • AI-based scoring or machine learning components (if beneficial)
  • Automatic market regime detection (trend/range)
  • Dynamic position sizing based on market conditions

Important

  • The code must be clean, modular, and well documented.
  • I require the full source code (.mq4/.mq5).
  • The EA should be designed for future upgrades and additional features.
  • Please provide examples of previous projects, backtest results, or verified live performance if available.

I am looking for a long-term collaboration with a skilled developer who has real experience in building profitable automated trading systems and is able to contribute ideas that can improve the overall strategy.

If you believe you have the expertise to build a professional, reliable, and scalable trading robot, I would be happy to discuss the project with you.


応答済み

1
開発者 1
評価
(109)
プロジェクト
180
25%
仲裁
24
17% / 75%
期限切れ
16
9%
2
開発者 2
評価
(1)
プロジェクト
1
0%
仲裁
0
期限切れ
0
3
開発者 3
評価
(1)
プロジェクト
1
0%
仲裁
0
期限切れ
0
パブリッシュした人: 5 codes
4
開発者 4
評価
(12)
プロジェクト
17
35%
仲裁
5
40% / 20%
期限切れ
1
6%
取り込み中
パブリッシュした人: 6 articles, 35 codes
5
開発者 5
評価
(392)
プロジェクト
505
23%
仲裁
60
57% / 25%
期限切れ
59
12%
6
開発者 6
評価
(106)
プロジェクト
129
25%
仲裁
24
29% / 54%
期限切れ
8
6%
7
開発者 7
評価
(15)
プロジェクト
21
24%
仲裁
3
33% / 67%
期限切れ
3
14%
8
開発者 8
評価
(2339)
プロジェクト
2943
63%
仲裁
124
44% / 26%
期限切れ
429
15%
仕事中
9
開発者 9
評価
(5)
プロジェクト
5
0%
仲裁
5
0% / 40%
期限切れ
0
10
開発者 10
評価
(463)
プロジェクト
807
49%
仲裁
73
19% / 52%
期限切れ
141
17%
仕事中
11
開発者 11
評価
(13)
プロジェクト
22
41%
仲裁
8
0% / 50%
期限切れ
3
14%
12
開発者 12
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
13
開発者 13
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
仕事中
パブリッシュした人: 1 code
14
開発者 14
評価
(454)
プロジェクト
720
34%
仲裁
35
71% / 9%
期限切れ
22
3%
15
開発者 15
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
16
開発者 16
評価
(121)
プロジェクト
134
66%
仲裁
36
25% / 56%
期限切れ
22
16%
パブリッシュした人: 10 codes
17
開発者 17
評価
(44)
プロジェクト
51
59%
仲裁
2
100% / 0%
期限切れ
1
2%
仕事中
パブリッシュした人: 5 codes
18
開発者 18
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
19
開発者 19
評価
(62)
プロジェクト
90
29%
仲裁
24
13% / 58%
期限切れ
7
8%
仕事中
20
開発者 20
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
類似した注文
JazzDaBot 30+ USD
""" Wick Reversal Strategy — core logic ===================================== Rules (as specified): - Timeframe: 15-minute candles - Entry: candle wick >= WICK_MULTIPLIER x body -> signal candle - long lower wick -> enter LONG at next candle's open - long upper wick -> enter SHORT at next candle's open - Exit: an opposite-direction wick candle forms while in a position - Stop-loss: just beyond the signal candle's
void OnTick() { // Check if we already have an open trade if(OrdersTotal() == 0) { // Get the value of a 14-period Moving Average double ma = iMA(Symbol(), 0, 14, 0, MODE_SMA, PRICE_CLOSE, 0); // Basic Condition: If current close price moves above the MA, buy if(Close[0] > ma) { int ticket = OrderSend(Symbol(), OP_BUY, 0.1, Ask, 3, 0, 0, "My First Bot", 0, 0, clrGreen); } } }
Recently I have backtested more than 100 EAs and I have come to a conclusion that in the long-term all of them produce catastrophic results. I used 99.9% data quality and whenever possible decades of data. In the short-term almost all of them can have nice gains. But there is hardly any EA that could survive even just 3-5 years, let alone decades ! This got me thinking: if almost all EAs are unfit for long-term
I am looking for an experienced MQL5 developer to convert a TradingView indicator into an MT5 indicator. The objective is to recreate the TradingView indicator in MQL5 so that it produces the same calculations, plots, values, and signals as closely as possible. Requirements: Convert the TradingView Pine Script into an MT5 indicator (.mq5). Ensure the MT5 version matches the TradingView version as accurately as
Hello, I want a simple bot for NinjaTrader8. I need a bot that operates automatically on Nasdaq (NQ/MNQ). Requirements: open buys and sells following a simple trend strategy, configurable stop loss and take profit, risk per trade of 1 to 2% of capital, if it loses 3% in a day, stop trading until the next day. Compatible with backtesting, delivery of the source code and the working bot in NinjaTrader 8. My initial
a { text-decoration: none; color: #464feb; } tr th, tr td { border: 1px solid #e6e6e6; } tr th { background-color: #f5f5f5; } Project Overview I am looking for an experienced algorithmic trading developer to build a professional Expert Advisor (EA) for MetaTrader 5 and/or cTrader. The objective is to create a robust automated trading system focused exclusively on XAUUSD (Gold) . This project is intended for serious
Hello, I am planning to automate my own Gold (XAUUSD) scalping strategy using xCustomEA. Before purchasing xCustomEA and hiring a developer, I would like to know: Whether my strategy can be implemented in xCustomEA. Whether any custom MQL5 coding is required. The estimated cost. The estimated development time. I already have a detailed strategy document and will provide it after the initial discussion. The strategy
Project: GoldScalpBot (already published: https://www.mql5.com/en/code/75652 ) I need an experienced MT5 developer to improve my existing Expert Advisor and its local app bridge. Current stack: - MT5 EA (MQL5) for XAUUSD scalping (EMA/momentum/breakout, ATR SL/TP, London/NY sessions, win-based lot scale, daily loss stop) - Local Node.js HTTP bridge (heartbeat + command queue) for a React Native mobile app
Project Overview I am looking for an experienced MetaTrader 5 (MT5) Expert Advisor developer to build a professional, production-quality automated trading system from a detailed Software Requirements Specification (SRS). The strategy is based on a custom implementation of the MACD indicator combined with advanced trade management and a proprietary basket/grid recovery methodology. The complete strategy and
I NEED ONE MILLON TESTED STATERGIES YOUR DUTY IS TO RUN ONE MILLION DIFFERENT SCENARIOS AND FIND ME AN ALPHA AND TESTED ON OVER ALL TYPES OF ASSESTS SO THATS IT THERE IS ANYONE WHO CAN ABLE TO DO THIS JOBB

プロジェクト情報

予算
100 - 300 USD
VAT(付加価値税) (23%): 23 - 69 USD
合計: 123 - 369 USD
開発者用
90 - 270 USD
締め切り
最高 30 日

依頼者

出された注文1
裁定取引数0