Need a trading robot to execute orders based on hitting certain levels and applying stop loss and take profit points to executed trades

MQL4 Experts Strategy optimization

Specification

I want a robot that can run autonomously on an index, say US30 index whereby I can set a simple strategy.

I want to set limit orders that trigger every incremental X points.

If the market is at 39,000 I want to sell X per point at Y incremental point intervals based on the index level.

If X=1 and Y= 50 I'd expect the following to happen

P=50 and L=400

The market rises to 39,050 I sell at (X) 1 unit per point and I apply a stop of 400 points (L)  (39,450) and a take profit (P) at 50 points (39,000). 

If the market rises or falls I want the robot to place a second, third, fourth, nth trade at any higher or lower levels at the X interval (50 points)

I want a maximum (M) of 10 trades to be open at any time.

I don't want two trades to be placed at the same level.

If the market continues to rise I keep executing every 50 points but clearly the first trade will stop out at 39,450 and the second at 39,500 third at 39,550. If the market just goes up I lose 800 points.

If the market falls I don't execute anything but if I manage to place any trades at 39,050 or 39,100 and then the market falls I will take 50 points on the 39,100 trade when it falls to 39,050 and 50 point on the 39,050 trade when the market falls to 39,000.

At that stage I have no further trades in the market and i need to wait for the market to rise again to 39,050 but have taken 100 points in profit.

The strategy could be reversed to a market buy strategy if I wanted to buy every time the market fell 50 points adding the same stops and take profit points. 

I'd like the robot to work on any market but the parameters of X, Y, P, L & and M should be adjustable.

Responded

1
Developer 1
Rating
(176)
Projects
291
15%
Arbitration
20
40% / 35%
Overdue
16
5%
Busy
2
Developer 2
Rating
(332)
Projects
452
52%
Arbitration
22
50% / 27%
Overdue
5
1%
Working
3
Developer 3
Rating
(131)
Projects
152
22%
Arbitration
5
0% / 60%
Overdue
4
3%
Busy
4
Developer 4
Rating
(10)
Projects
25
28%
Arbitration
1
0% / 0%
Overdue
1
4%
Working
5
Developer 5
Rating
(22)
Projects
28
11%
Arbitration
6
33% / 50%
Overdue
4
14%
Working
6
Developer 6
Rating
(2411)
Projects
3030
66%
Arbitration
77
48% / 14%
Overdue
340
11%
Free
7
Developer 7
Rating
(37)
Projects
38
11%
Arbitration
0
Overdue
0
Free
8
Developer 8
Rating
(446)
Projects
505
33%
Arbitration
25
40% / 48%
Overdue
7
1%
Loaded
9
Developer 9
Rating
(4)
Projects
5
60%
Arbitration
0
Overdue
0
Free
10
Developer 10
Rating
(57)
Projects
63
32%
Arbitration
2
0% / 0%
Overdue
0
Working
11
Developer 11
Rating
(41)
Projects
88
14%
Arbitration
29
31% / 55%
Overdue
36
41%
Working
12
Developer 12
Rating
(2067)
Projects
2626
62%
Arbitration
114
45% / 25%
Overdue
418
16%
Loaded
13
Developer 13
Rating
Projects
1
0%
Arbitration
0
Overdue
0
Free
14
Developer 14
Rating
(253)
Projects
406
38%
Arbitration
84
43% / 19%
Overdue
70
17%
Working
15
Developer 15
Rating
(546)
Projects
1327
59%
Arbitration
28
82% / 0%
Overdue
10
1%
Free
16
Developer 16
Rating
(472)
Projects
501
52%
Arbitration
10
60% / 20%
Overdue
3
1%
Free
17
Developer 17
Rating
(41)
Projects
58
55%
Arbitration
2
0% / 0%
Overdue
1
2%
Free
18
Developer 18
Rating
(563)
Projects
931
47%
Arbitration
301
59% / 25%
Overdue
123
13%
Working
Similar orders
Job Description: We are seeking an experienced EA programmer to create an EA that utilizes SnR + Trendlines + Multi timeframe confluence Project Requirements: - Support and Resistance, Open Close levels/kissing candles/Rejection block, Support broken becomes Resistance(SbR), Resistance broken becomes Support(RbS), Quasimodo Levels, Asian Range, London Killzone, London Open, New York Killzone, New York Open
Dears, i am looking for developer to make expert advisor in forex to me and i have a strategy , i need the ea to be customize and has some options to be changeable
Hello, I need a professional programmer to help me design an EA that can be able to take trades towards a market direction with accurate prediction. This EA should be able to identify the market trend direction and take multiple trades towards the direction and also able to close the trades together when market wants to reverse at the best profit level. The input at the beginning will be for the EA to be input with a
Hello, I have EA's which were previously developed that are not running correctly and giving errors. Need an experienced MQL developer to fix all issues as well as add some new settings. Thanks
MT5 hft bot 100 - 250 USD
HELLO I AM IN NEED OF HFT TRADING BOT FOR MT5 AND BEFORE WE PROCEEDS YOU MUST SHOW ME HOW YOUR BOT WORK OR SEND ME DEMO VERSION FIRST TO CHECK OUT YOUR BOT WORKING SYSTEM
I already have a Fibonacci based indicator which give precise entry as well as take profit and stop loss levels without repainting. I want to convert this to an EA so as to enable it pick trades automatically. Pay attention to the attached Images for entry and exit description. The EA will be protected with password or any other security protocols. THE EA OUTPUT will be in MQ4 & MQ5
// Define the properties input int ShortPeriod = 12; input int LongPeriod = 26; input double LotSize = 0.1; // OnTick function is called every time there is a price update void OnTick() { double shortMA = iMA(NULL, 0, ShortPeriod, 0, MODE_SMA, PRICE_CLOSE, 0); double longMA = iMA(NULL, 0, LongPeriod, 0, MODE_SMA, PRICE_CLOSE, 0); double prevShortMA = iMA(NULL, 0, ShortPeriod, 0, MODE_SMA, PRICE_CLOSE, 1);
Necesito un bot decente para prueba de fondeo y también cuenta personal, scalp, no grid, no martingale, no practicas prohibidas, algo objetivo, confiable y rentable... 5 Min mínimos de duración por operación, algo ya hecho y bactesteado en cuenta real y de fondeo. Necesito algo agresivo, constante pero que no exponga el capital... prefiero una estrategia de smc
Profit EA 50+ USD
//+------------------------------------------------------------------+ //| SimpleEA.mq4 | //| Generated by MetaEditor | //| https://www.mql5.com/en/docs&nbsp ; | //+------------------------------------------------------------------+ #property strict // Input parameters input double LotSize = 0.1; // Lot size input int MovingAveragePeriod = 50; // MA
I am looking for a day trading bot with over 95% success ratio for gold and forex. It should use all the relevant strategies like moving averages (10, 20, 50), volume, RSI and trend into consideration and then generate buy and sell trade automatically with trailing SL and generate max profit

Project information

Budget
50 - 200 USD
For the developer
45 - 180 USD
Deadline
from 5 to 20 day(s)