A highly customisable martingale forex robot

MQL5 专家 C++ 外汇

工作已完成

执行时间6 天
客户反馈
Delivered the project as specified with good communication throughout the process. Would happily work with again. Five stars.
员工反馈
Nice working with him. Communicative and open-minded. Thank you!

指定

Hello!

I would like a customisable Trading robot / EA that follows a simple moving average and uses a customisable martingale system.

Specifically the user defined input variables are:

1. The number of periods used in the simple moving average (SMA)

2. The size in pips for the take profit (TP)

3. The size in pips for the stop loss (SL)

4. Whether new positions are opened converging towards or diverging away from the SMA

5. The sequence of lot sizes to be used (no more than 10 values needed)

6. Whether, in the event of the final lot size in the sequence being used and the trade still failing, to continue trading restarting the lot size sequence from the first lot size, or to cease trading until a trade would have been successful, and then restart trading using the first lot size in the sequence.


The program is to do the following:

1. The EA is to work in the timeframe of the chart the robot is attached to, and must be able to work on multiple markets at once.

2. When starting, open a new order.

3. When opening a new order, the EA compares the current price with the SMA of close prices (user input 1).

4. The EA is to then either open a buy or sell position depending on whether it is set to converge or diverge from the average (user input 4).

5. Unless the previous order was ended by its Stop loss, this new order is to use the first lot size in the given sequence (user input 5), with the EA attaching the specified TP and SL levels (user inputs 2 and 3).

6. If the Take profit is triggered then a new position is to be opened as soon as possible, as per steps 3, 4 & 5- with the lot size restarting from the first value.

7. If the Stop loss is triggered then a new position is to be opened as soon as possible, as per steps 3, 4 & 5, however the next lot size in the sequence is to be used (user input 5).

8. If the last lot size in the sequence was used and the trade was ended by its Stop loss, then depending on the setting of user input 6, the EA is to either:

a) Stop opening positions and monitor the market (trading with 0 lots as it were) and recommence once a successful trade would have gone through, or

b) Continue opening positions restarting from the first lot size in the sequence.


I would like the source code for this to be provided.


If you have any questions / require any clarification please do send me a message.



Many thanks!



反馈

1
开发者 1
等级
(14)
项目
19
11%
仲裁
1
0% / 100%
逾期
5
26%
空闲
2
开发者 2
等级
(41)
项目
160
45%
仲裁
16
13% / 50%
逾期
48
30%
空闲
3
开发者 3
等级
(2)
项目
2
100%
仲裁
0
逾期
0
空闲
4
开发者 4
等级
(23)
项目
45
20%
仲裁
25
28% / 48%
逾期
12
27%
空闲
5
开发者 5
等级
(57)
项目
72
22%
仲裁
13
46% / 15%
逾期
5
7%
空闲
6
开发者 6
等级
(2673)
项目
3410
68%
仲裁
77
48% / 14%
逾期
342
10%
工作中
发布者: 1 代码
7
开发者 7
等级
(361)
项目
644
26%
仲裁
92
72% / 14%
逾期
12
2%
工作中
发布者: 1 代码
8
开发者 8
等级
(1)
项目
0
0%
仲裁
1
0% / 100%
逾期
0
空闲
9
开发者 9
等级
项目
0
0%
仲裁
1
0% / 100%
逾期
0
工作中
10
开发者 10
等级
(15)
项目
23
9%
仲裁
7
29% / 57%
逾期
2
9%
空闲
11
开发者 11
等级
(568)
项目
641
41%
仲裁
25
48% / 36%
逾期
46
7%
工作中
12
开发者 12
等级
(298)
项目
478
40%
仲裁
105
40% / 24%
逾期
82
17%
已载入
发布者: 2 代码
13
开发者 13
等级
(772)
项目
1039
44%
仲裁
50
8% / 50%
逾期
116
11%
空闲
14
开发者 14
等级
(87)
项目
114
26%
仲裁
7
29% / 57%
逾期
5
4%
空闲
15
开发者 15
等级
项目
0
0%
仲裁
0
逾期
0
空闲
16
开发者 16
等级
(69)
项目
146
34%
仲裁
13
8% / 62%
逾期
26
18%
空闲
发布者: 6 代码
17
开发者 17
等级
(7)
项目
8
63%
仲裁
1
0% / 100%
逾期
1
13%
空闲
相似订单
I'm looking for a swing trading EA that takes 1-3 trades / week, holds these positions from a few days up to about 1.5 weeks. Symbol : any Strategy : any Timeframe : any Platform : MT4 only The catch : you would need to come up with the STRATEGY AND do the CODING The must have's : c onstant monthly returns, low drawdown I will backtest the trial version of your .ex4 file for 20+ years with 99.9% tick data accuracy
I'm a ninja trader day trader and I have worked with a company called Legendary Trader and use their indicated and automated strategies to trade. I rencenly have been playing with a free indicator I was able to download that uses CCI & ATR calculations to define the market being in an up or down trend. I have found in reviewing historical data that taking a trade when the signal flips from bull to bear sentiment or
PROJECT OVERVIEW I need a production-grade, modular Expert Advisor for MetaTrader 5 built to institutional coding standards. This is not a simple indicator-crossover bot. The system must be object-oriented, fully commented, and structured so individual modules can be replaced or disabled without breaking the build. Broker: IC Markets Raw. Primary symbol: XAUUSD. Secondary validation: EURUSD, GBPUSD, USDJPY, AUDUSD
Flummox 0.1 30+ USD
//@version=5 strategy("Vol10 Triple Confluence M15", overlay=true, margin_long=100, margin_short=100) // === INPUTS === emaLen = input.int(200, "EMA Trend") rsiLen = input.int(14, "RSI Length") bbLen = input.int(14, "Bands Length") rsiOversold = input.float(25, "RSI Buy Zone") rsiOverbought = input.float(77.38, "RSI Sell Zone") // === INDICATORS === emaTrend = ta.ema(close, emaLen) ema1 = ta.ema(close, bbLen) ema2 =
Access and confidentiality restrictions: You will receive only a separately named copy of the Commander . Existing trading EAs, presets, account credentials, Telegram credentials and proprietary entry/exit code will not be shared. The Commander intelligence must be developed using: Defined signal/input interfaces Anonymized historical logs and replay data Mock EA signals and test harnesses Documented authority and
need an EA or indicator done , based on any strategy but with the following specific risk management parameters ; were i am able to do at least 2RR(standard reward-risk ratio for every trade) , fair win rate that is at leat 50% , EA should be able to generate at least 2 trades and above per week , favourable sharpe ratio . total drawdown of not more than 8% any given month and not over 3% any given day , would
I need an MQL5 trading robot for Forex. It should open and close trades based on my strategy rules. Please include money management, stop loss, take profit, and lot size settings. The EA should be stable, easy to edit, and tested before delivery. I will share the exact entry and exit rules with the developer
I need a professional programmer who can code this top tier professional synthetic index EA structure perfectly to my laptop extra perfectly payment after successful job very urgent needed here in Nigeria at onitsha Here is my contact you can message me on my WhatsApp 09121052987/ direct call 09038568050
Hello, I am looking for an experienced MQL5 developer to develop a professional and reliable Expert Advisor (EA) for MetaTrader 5. The EA will be based on a custom automated Forex trading strategy that I have developed and tested. The detailed trading logic and proprietary rules will be provided privately to the selected developer. General requirements: • Development in MQL5 for MetaTrader 5. • The EA will initially
I would like you to create, or if you already have one: purchase a profitable martingale OR grid EA from you that NEVER blows up the account. REQUIREMENTS Platform : only MT4 Pair : any Timeframe : any Strategy : any Profitability : 10% / month, every month. Not an "average", but: every month. Lots : dynamic (as the account grows, so do the lot sizes) THE PROCESS Send me a trial version of the .ex4 file. I will

项目信息

预算
30 - 50 USD
截止日期
 1  7 天