ProRealTime automation strategies converting into MT4 automated strategies

MQL4 Эксперты

Техническое задание

We have a number of automated strategies working on the ProRealTime platform. We are looking for someone to translate the code from PRT on to MT4 for us to be able to test and use. We are looking to be able to adjust basic variables ourselves i.e. back test criteria, and TA settings.


The strategies are based on commonly used indicators and will have features such as trailing stop losses. We may wish to undergo repeat work and support and have a long term relationship with the person whom we select. Skype contact is a must.


We have all the code already written for PRT so there is no interpretation needed in terms of the settings and functions, just translation. For example, this is the code and what it looks like on PRT.


Please let us know if you can offer these services and we can sort a business arrangement.


PRT code example:


EFPARAM CumulateOrders = False // Cumulating positions deactivated

DEFPARAM FLATAFTER = 205900 (variable J) // close open trades at this Time


// Set £ per point here

n = 1 //recommended is 1


//Code only allows trading between certain hours


indicator1 = TIME > 080000 (Variable A)

indicator2 = TIME < 110000 (Variable B

c1 = indicator1 AND indicator2


//Code excludes certain dates, some past dates for back tests and future dates

IF Date = 20161214 or Date = 20160921 or Date = 20160727 or Date = 20160615 or Date = 20160427 or Date = 20160316 or Date = 20160127 or Date = 20151216 or Date = 20151028 or Date = 20150917 or Date = 20150729 or Date = 20150617 or Date = 20150429 or Date = 20150318 or Date = 20150128 or Date = 20141217 or Date = 20141029 or Date = 20140917 or Date = 20140730 or Date = 20140618 or Date = 20140430 or Date = 20140319 or Date = 20140129 THEN


TradingDay = 0

ELSE

TradingDay = 1

ENDIF


// Conditions to enter long positions

indicator3 = close

indicator4 = SuperTrend[3,10] (Variable C)

c2 = indicator3 > indicator4


indicator5 = RSI[14](close) (Variable D)

c3 = (indicator5 CROSSES OVER 20) (Variable E)


indicator6 = Stochastic[14,3](close) (Variable F)

c4 = (indicator4 < 20) (Variable G)


IF c1 AND c2 AND c3 AND c3 and c4 AND TradingDay = 1 THEN

BUY n PERPOINT AT MARKET

ENDIF


// Stops and targets

SET STOP pLOSS 35 (Variable G)


SET TARGET pProfit 100 (Variable H)

//trailing stop

trailingstop = 30 (Variable I)


//resetting variables when no trades are on market

if not onmarket then

MAXPRICE = 0

MINPRICE = close

priceexit = 0

endif


//case LONG order

if longonmarket then

MAXPRICE = MAX(MAXPRICE,close) //saving the MFE of the current trade

if MAXPRICE-tradeprice(1)>=trailingstop*pointsize then //if the MFE is higher than the trailingstop then

priceexit = MAXPRICE-trailingstop*pointsize //set the exit price at the MFE - trailing stop price level

endif

endif


//exit on trailing stop price levels

if onmarket and priceexit>0 then

EXITSHORT AT priceexit STOP

SELL AT priceexit STOP

endif





Откликнулись

1
Разработчик 1
Оценка
(103)
Проекты
205
41%
Арбитраж
17
29% / 71%
Просрочено
45
22%
Свободен
2
Разработчик 2
Оценка
(2)
Проекты
2
0%
Арбитраж
13
8% / 92%
Просрочено
1
50%
Свободен
3
Разработчик 3
Оценка
(107)
Проекты
149
36%
Арбитраж
29
3% / 55%
Просрочено
35
23%
Свободен
4
Разработчик 4
Оценка
(49)
Проекты
134
27%
Арбитраж
62
13% / 53%
Просрочено
58
43%
Свободен
5
Разработчик 5
Оценка
(3)
Проекты
4
0%
Арбитраж
3
0% / 100%
Просрочено
0
Свободен
6
Разработчик 6
Оценка
(20)
Проекты
35
23%
Арбитраж
23
17% / 61%
Просрочено
14
40%
Свободен
7
Разработчик 7
Оценка
(1)
Проекты
4
25%
Арбитраж
1
0% / 100%
Просрочено
1
25%
Свободен
8
Разработчик 8
Оценка
(1)
Проекты
1
0%
Арбитраж
1
0% / 100%
Просрочено
0
Свободен
9
Разработчик 9
Оценка
(219)
Проекты
370
42%
Арбитраж
145
17% / 41%
Просрочено
124
34%
Свободен
Похожие заказы
1) the EA can compound the lot size from 0.01 to 0.02 so on 2) the EA must able to trade different kind of pair 3) the EA will have stoploss or take profit 4) long term profit 5) for equiry will be 100 for every 0.01 lot Developer will have that kind of EA may apply and introduce any investor account! this EA must have mql4 file
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 13.0px 'Helvetica Neue'} Hello Looking for someone to help me improve my current strategy on my own algorithm and to also add hedging mode
I want the script in mql5 language for my martingale strategy. The script should open trades in both directions buy and sell and if any trade closes in loss then open new trade in that direction by using the next volume and when trade closes in profit then reset the volume to first from volume list and also maximum consecutive losses limit will apply. If trades closes consecutively in losses and hits the limit then
Long Position 1. Trend Line: When a Lower High (LH) is formed, draw a trend line from the previous Higher High (HH) to the new LH. 2. Trend Line Adjustment: If a new Lower High (LH) is formed without breaking the trend line, redraw the trend line to the new LH. Draw a trend line between the Higher High (HH) and the Higher Low (HL). If a new Higher High (HH) is formed, remove the previous trend line and draw a new one
Please watch the video on this youtube channel and download the Indicator from there. https://www.youtube.com/watch?v=ldTomLu8DxE&amp ;t=32s Rules are explained on the video and the download of the indicator is on the same video
I would like an EA that follows exactly this steps to trade de daily candle. Watch the video and then see if you can do the task. https://www.youtube.com/watch?v=g3oDYq4P9ZE Document is one this link https://cdn.discordapp.com/attachments/1135977927469703230/1135978751461695598/Daily_Bias-TTrades_edu.pdf?ex=669a9a27&amp ;is=669948a7&hm=96de195f7e695a381c1261b065f67b94fae319d02a0c88641b146f8b2978320c& Should have
I have a custom EA that works fine in the live market trading, but when doing a back test in the strategy tester , it does not open sell orders. There are no errors or warnings; it just doesn't open sell orders. I've checked every possible reason that might be the reason why it does not open sell orders, but I can't find anything, especially since it works fine in the real market and it opens both buys and sells
Hi, I have an indicator from my friend, I want to copy it to my own MT5 can you do that for me. Here is the link
I'm looking for someone to help me create an arbitrage trading robot that can trade on any decentralized exchange. I had one created in python, but I would like it to work in MT5 with various regular rules that make it profitable
I installed the E.A. into the Experts folder in MT4. When I double click on it nothing happens. When I right click and "attach to chart" nothing happens. The E.A. is not grayed out, it simply will not attach. Any help would be greatly Appreciated

Информация о проекте

Бюджет
30 - 100 USD
Исполнителю
27 - 90 USD