Only experienced developer - Develop a MT5 (Focus on the closing position sections)

MQL5 Asesores Expertos

Trabajo finalizado

Plazo de ejecución 70 días

Tarea técnica

Develop a MT5 EA, place pending orders and take profit.

 

Only experienced MT5 developer, if you think it’s a five minutes job, do not apply the job, i want something more than a five minute jobs.

 

By accepting the job, you are agreed to give the original source code, as I will need further polish and improvement on the EA, so it’s not making sense everything I need improvement, i need to restart from zero, so by accepting the job, you must agree to give the source code.
 

EA name: PENDING ORDERS LOOP

 

Trading with RSI trend, pending orders are placed beyond the RSI upper and lower bound.

 

Functions need to include

1.  Place pending order (Buy Stop / Sell Stop / Buy Limit / Sell Limit)

(1)  Placing pending order in x distance

(2)  Each pending order is placed at x step

(3)  Each pending order is x lots

(4)  Each pending order is placed with x coefficient

(5)  Place x pending order in sequence (i.e. x Grids)


2.  Delete pending order (Buy Stop / Sell Stop / Buy Limit / Sell Limit)


3.  Take profit

(1)  Closing at total profit / loss for Separate BUY and Sell or both buy and sell positions (i.e. Net positions).

(2)  Close positions for x profit/ x profit p

(3)  Trailing stop for x profit/ x profit p

(4)  Enable virtual stop loss / take profit for a separate / general position.

(5)  Closing positions with VIRTUAL stop loss / take profit, or ACTUAL SL / TP.

  Virtual SL / TP, means NOT ACTUALLY having modified SL / TP for existing positions, will execute when positions reach the set SL / TP.

1)  So trailing stops can be applied.

  Actual SL / TP, means ACTUALLY modify SL / TP for existing positions, system will AUTOMATICALLY EXECUTE when positions reach the set SL / TP.

1)  As for slow execution speed and more than one positions (saying a large number of positions, 100-200 positions), sometimes not all positions can be executed. So the EA needs to set SL / TP to insure all positions are executed.

  Virtual SL / TP and actual SL / TP are MUTUALLY EXCLUSIVE .



4.  Trading strategy steps

(1)  Tracking RSI trend.

  Beyond the set RSI upper and lower bound, for example, once RSI is beyond upper bound (i.e. 70), or lower bound (i.e. 40), EA will proceed to place pending orders.

(2)  Place orders

  Place pending orders ( 1 or more pending order types ) in x distance, at x step, x lot, with x coefficient, x Grids.

  Each set of pending order is executed in order, and each set is delayed by x seconds (in case of slow execution speeds, and orders are not fully executed)

  Option to turn on / off for pending orders type (Buy Stop / Sell Stop / Buy Limit / Sell Limit).

  Inputs need to have 4 sets, separately for Buy Stop / Sell Stop / Buy Limit / Sell Limit.

  User inputs

1)  On or off for pending order type (Buy Stop / Sell Stop / Buy Limit / Sell Limit )

2)  x distance

3)  x step

4)  x lot

5)  x coefficient

6)  x Grids

7)  Pending order set is delayed by x seconds

  Example

1)  Distance, means point from the current price. 

2)  Step, mean s  points from position to position. 

3)  Grid, mean s  number of pending order

4)  Coefficient,  means  multiple of each position.

  Example 1:

  EURUSD current price (p0): 1.08500

1)  Lot 0.01, Distance 50, step 100, coefficient 2, grid 50

2)  Pending order, i . e .  buy limit

3)  First  buy limit pending order, is placed at 1.08 55 0 ( 1.085 0 0+50points )  

a.  Distance 50 point from current price (p0), 1.08550 is p1, 

b.  Second pending order, is placed at 1.08 6 50  (  100 point from p1 )

c.  1.08 7 50, so on.

4)  Coefficient 2, means, first pending order, 0.01 lot, second pending order, 0.02 lot, third pending order, 0.04, 0.08, so on

5)  Grid 50, means total of 50 pending order, first pending order, 1.08 5 50, 1.08 6 50, 1.08 7 50 … .. last pending order is, 1.08 5 50 + 50*0.00050

(3)  CLP - Work with the close function for total profit or loss

  Close separately buy / sell / both buy and sell positions (i.e. net positions)

  For every x seconds, adjust virtual or actual SL / TP to the desired profit in x dollar or in x profit p.

1)  For actual SL / TP, need to consider that in case for the last a few orders can not be set to the SL / TP, once execution is taken place, most positions are closed, the remaining positions need to be closed immediately, EVEN WITH A TOTAL LOSS.

2)  And for virtual SL / TP, need to ensure the EA can close a large number of positions in extreme case (i.e. 100-200 positions). Sometimes, for a large number of positions, with slow execution speed or computer, only some positions are closed, not all positions are closed as requested. So for virtual SL / TP, once CLP is activated, ALL POSITIONS NEED TO CLOSE EVEN WITH A TOTAL LOSS.

  Safe guard

1)  If existing net positions, exceed NEGATIVE x dollars, AUTOMATICALLY LOCK POSITIONS AND DELETE ALL PENDING ORDERS , so that net position is zero (i.e. buy positions are equal to sell positions)

  Once CLP is executed, delete all pending orders;

  Delay by x seconds to restart to track RSI.

  User inputs

1)  Selection of positions (buy / sell / both buy and sell)

2)  Selection of safe guard (on or off)

3)  x TP in dollars

4)  x trailing stop in dollars

5)  x TP in profit p

6)  x trailing stop in profit p

7)  Modification SL / TP in every x seconds


Virtual SL / TP

You can refer to the link below, it's something like the following:

https://www.mql5.com/en/code/21362  

 

Trading steps example

1.  If I tracked rsi signal (either above or below rsi bound), I want to simultaneously place 2 sets of pending order, 

2.  with buy limit set of distance 50, step 100, coefficient 1, grid 100, and sell limit of distance 100, step 200, coefficient 2, grid 150 .

3.  Because  placing  pending order takes time, delay is to allow enough time for completion. 

4.  Say, buy limit set is placed, and wait for 15 seconds, is to allow time for buy limit set to complete, and sell limit set is to place  next.

5. delay time, is just a ea process time gurantee, vps sometimes is so slow. 


No.

Pending orders

1

RSI

2

RSI Period

x

3

RSI Price

Close Price / Open Price / High Price / Low Price / Median Price / Typical Price / Weighted Price

4

RSI Buy level

x

5

RSI Sell level

x

6

Buy stop

7

Buy stop

On / Off

8

Distance

x

9

Step

x

10

Lot

x

11

Coefficient

x

12

Grids

x

13

Delay by "" seconds

x

14

Sell stop

15

Sell Stop

On / Off

16

Distance

x

17

Step

x

18

Lot

x

19

Coefficient

x

20

Grids

x

21

Delay by "" seconds

x

22

Buy limit

23

Buy limit

On / Off

24

Distance

x

25

Step

x

26

Lot

x

27

Coefficient

x

28

Grids

x

29

Delay by "" seconds

x

30

Sell limit

31

Sell limit

On / Off

32

Distance

x

33

Step

x

34

Lot

x

35

Coefficient

x

36

Grids

x

37

Delay by "" seconds

x

38

CLP

39

CLP Positions

Buy / Sell / Buy and Sell

40

Consider commissions

On / Off

41

Consider swaps

On / Off

42

Virtual SL / TP

On / Off

43

Take profit in dollars

x

44

Trailing stop in dollars

x

45

Take profit in profit p

x

46

Trailing stop in profit p

x

47

Modification of SL / TP in "" seconds

x

48

Delete all pending orders by FIFO

On / Off

49

Delete all pending orders after CLP is executed

On / Off

50

Set remaining to BE once CLP is executed

On / Off

51

Safe Guard

52

Safe Guard

On / Off

53

Positions

Buy / Sell / Buy and Sell

54

Net positions loss in dollars exceed "" to lock positions

x

55

Loop

56

Delay to restart pending orders after CLP

x

 


Han respondido

1
Desarrollador 1
Evaluación
(9)
Proyectos
20
10%
Arbitraje
3
67% / 0%
Caducado
5
25%
Trabaja
2
Desarrollador 2
Evaluación
(59)
Proyectos
67
36%
Arbitraje
3
33% / 33%
Caducado
2
3%
Trabaja
3
Desarrollador 3
Evaluación
(17)
Proyectos
22
5%
Arbitraje
7
14% / 29%
Caducado
3
14%
Libre
4
Desarrollador 4
Evaluación
(11)
Proyectos
11
0%
Arbitraje
4
25% / 50%
Caducado
2
18%
Libre
5
Desarrollador 5
Evaluación
(6)
Proyectos
12
8%
Arbitraje
1
0% / 100%
Caducado
4
33%
Libre
6
Desarrollador 6
Evaluación
(167)
Proyectos
191
10%
Arbitraje
37
38% / 35%
Caducado
5
3%
Trabaja
7
Desarrollador 7
Evaluación
(566)
Proyectos
639
41%
Arbitraje
21
57% / 29%
Caducado
45
7%
Trabajando
8
Desarrollador 8
Evaluación
(41)
Proyectos
87
13%
Arbitraje
29
31% / 48%
Caducado
35
40%
Ocupado
Solicitudes similares
How the EA will work: The EA uses a Megatrend indicator (will be given to you) to determine the trend in trading. Whether to open a buy or sell trade will depend on this indicator. Take profit can be reached in 3 ways: either by a fixed amount of pips TP (with or without trailing stop), a fixed amount of money TP or when there is profit upon trend change. There are a maximum of 3 time filters where the opening of the
hi.. i have a pin script (TV) but some lines in the code needs to be fixed,,, i will attach the file, Also I will be paying $20 for the project cause i just need you to adjust some Minor things in it, i will explain more further in the message side
I would like to be able to copy trades from MT4/5 to any other trading platform - e.g. ctrader, dxtrade etc. so I will run an EA and allow web requests, and then enter the login details into the EA and copy the trades over, is this possible for all trading platform
I have the source file for a FOREX EA that I would like to modify to allow it to trade crypto currencies. It currently gives the error that the currency is not recognized when trying to back test and optimize the EA. Will need the EA to recognize BTC/ETH/SOL pairs and be able to trade crypto currencies
Hello There With new mt4 update my EA by the name "BreakFast In Canada" does not work on the new mt4 version so I need someone to make it work, however it looks like I do not have the source code for it. So I do not know if it is still possible to work on it. I have attached the picture of the specific EA as there many EAs with this name
The wizard 100 - 100000 USD
A robot that can predict trade and the same time have best trading strategies,And gives accurate signals that may yeld huge profit in a short periods of time.also able to play the market and make trade on it's self even if am not in the market and able to avoid trades with huge loses but not profitable
Hello, I would like to automate a strategy that is based on Fibonacci Retracement with different input, a daily read of 3 mins highest Close of the previous day, and lowest close of the day on 3 min timeframe, Then a specific line that will be named R, a video will be given to explain it, and main Trade (percentage per trade), With 1 cancelation added within the range of the R
------MAIN FUNCTIONS----------- Trade will enter buy trade after current candle goes below previous candle then within the same candle closes at or near the highest point. (PIN BAR) Trade will enter SELL trade after current candle goes below previous candle then within the same candle closes at or near the lowest point. (PIN BAR) ENTRY CANDLE TIMEFRAME: 1MIN, 5 MIN, 15MIN, 30MIN, H1, H4, DAILY PERCENTAGE DISTANCE
Hi Looking for an exisiting bot to create a Expert Advisor, that can pass prop firm Challenges (1 or 2 phases), like FTMO, MFF, TFF etc. Prop Firm EA Bot Using Gold Pairs Need source code Unlimited License NO martingale strategy Need to have nice entries and exits. NO big lots and low risk. Need complied with this restrictions: -Profit 10% -Max Drawdown (DD) 10% -Max Daily Loss 4% -All trades with SL -NO trades
H ello, I have a pinescript from trading view with several self-created indicators. Now I would like to convert these into an mt4/mt5 EA that trades automatically according to my specifications. The bot should also have an integrated news filter and not trade 2 hours before the news . I am looking for someone who can start immediately and deliver high-quality results. If you believe you are the right fit for this

Información sobre el proyecto

Presupuesto
100 - 200 USD
Para el ejecutor
90 - 180 USD
Plazo límite de ejecución
a 3 día(s)