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

MQL4 Esperti Strategy optimization

Specifiche

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.

Con risposta

1
Sviluppatore 1
Valutazioni
(176)
Progetti
291
15%
Arbitraggio
20
40% / 35%
In ritardo
16
5%
Occupato
2
Sviluppatore 2
Valutazioni
(332)
Progetti
452
52%
Arbitraggio
22
50% / 27%
In ritardo
5
1%
In elaborazione
3
Sviluppatore 3
Valutazioni
(131)
Progetti
152
22%
Arbitraggio
5
0% / 60%
In ritardo
4
3%
Occupato
4
Sviluppatore 4
Valutazioni
(10)
Progetti
25
28%
Arbitraggio
1
0% / 0%
In ritardo
1
4%
In elaborazione
5
Sviluppatore 5
Valutazioni
(22)
Progetti
28
11%
Arbitraggio
6
33% / 50%
In ritardo
4
14%
In elaborazione
6
Sviluppatore 6
Valutazioni
(2411)
Progetti
3030
66%
Arbitraggio
77
48% / 14%
In ritardo
340
11%
Gratuito
7
Sviluppatore 7
Valutazioni
(37)
Progetti
38
11%
Arbitraggio
0
In ritardo
0
Gratuito
8
Sviluppatore 8
Valutazioni
(446)
Progetti
505
33%
Arbitraggio
25
40% / 48%
In ritardo
7
1%
Caricato
9
Sviluppatore 9
Valutazioni
(4)
Progetti
5
60%
Arbitraggio
0
In ritardo
0
Gratuito
10
Sviluppatore 10
Valutazioni
(57)
Progetti
63
32%
Arbitraggio
2
0% / 0%
In ritardo
0
In elaborazione
11
Sviluppatore 11
Valutazioni
(41)
Progetti
88
14%
Arbitraggio
29
31% / 55%
In ritardo
36
41%
In elaborazione
12
Sviluppatore 12
Valutazioni
(2067)
Progetti
2626
62%
Arbitraggio
114
45% / 25%
In ritardo
418
16%
Caricato
13
Sviluppatore 13
Valutazioni
Progetti
1
0%
Arbitraggio
0
In ritardo
0
Gratuito
14
Sviluppatore 14
Valutazioni
(253)
Progetti
406
38%
Arbitraggio
84
43% / 19%
In ritardo
70
17%
In elaborazione
15
Sviluppatore 15
Valutazioni
(546)
Progetti
1327
59%
Arbitraggio
28
82% / 0%
In ritardo
10
1%
Gratuito
16
Sviluppatore 16
Valutazioni
(472)
Progetti
501
52%
Arbitraggio
10
60% / 20%
In ritardo
3
1%
Gratuito
17
Sviluppatore 17
Valutazioni
(41)
Progetti
58
55%
Arbitraggio
2
0% / 0%
In ritardo
1
2%
Gratuito
18
Sviluppatore 18
Valutazioni
(563)
Progetti
931
47%
Arbitraggio
301
59% / 25%
In ritardo
123
13%
In elaborazione
Ordini simili
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

Informazioni sul progetto

Budget
50 - 200 USD
Per lo sviluppatore
45 - 180 USD
Scadenze
da 5 a 20 giorno(i)