ProRealTime automation strategies converting into MT4 automated strategies

MQL4 Uzman Danışmanlar

İş Gereklilikleri

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





Yanıtlandı

1
Geliştirici 1
Derecelendirme
(103)
Projeler
205
41%
Arabuluculuk
17
29% / 71%
Süresi dolmuş
45
22%
Serbest
2
Geliştirici 2
Derecelendirme
(2)
Projeler
2
0%
Arabuluculuk
13
8% / 92%
Süresi dolmuş
1
50%
Serbest
3
Geliştirici 3
Derecelendirme
(107)
Projeler
149
36%
Arabuluculuk
29
3% / 55%
Süresi dolmuş
35
23%
Serbest
4
Geliştirici 4
Derecelendirme
(49)
Projeler
134
27%
Arabuluculuk
62
13% / 53%
Süresi dolmuş
58
43%
Serbest
Yayınlandı: 187 makale, 1 kod
5
Geliştirici 5
Derecelendirme
(3)
Projeler
4
0%
Arabuluculuk
3
0% / 100%
Süresi dolmuş
0
Serbest
6
Geliştirici 6
Derecelendirme
(20)
Projeler
35
23%
Arabuluculuk
23
17% / 61%
Süresi dolmuş
14
40%
Serbest
7
Geliştirici 7
Derecelendirme
(1)
Projeler
4
25%
Arabuluculuk
1
0% / 100%
Süresi dolmuş
1
25%
Serbest
Yayınlandı: 6 kod
8
Geliştirici 8
Derecelendirme
(1)
Projeler
1
0%
Arabuluculuk
1
0% / 100%
Süresi dolmuş
0
Serbest
9
Geliştirici 9
Derecelendirme
(219)
Projeler
370
42%
Arabuluculuk
145
17% / 41%
Süresi dolmuş
124
34%
Serbest
Yayınlandı: 38 kod
Benzer siparişler
Hello Programmers, I',m in need of a ready made bot for Ninjatrader platform. Make sure you are ready to provide with videos and settings including the necessary things. Please only message if you know you already have a ready mad bot for sales. Thanks in Advance
I have a purchased MT4 custom indicator (Rapid Trend.ex4) located in the Market folder: MQL4 > Indicators > Market > Rapid Trend.ex4 I want to create a new custom indicator ( iCustomRapidTrend.ex4 ) that: Uses the original Rapid Trend indicator via iCustom with path input: Market\\Rapid Trend.ex4 Adjusts the width and size of the lines and arrows (Green/Red lines: width 2; Up-arrow Blue and Down-arrow Magenta: size
I am looking for an experienced and reliable MQL5 developer to complete an Expert Advisor (EA) project that is already partially developed. The previous coder abandoned the project close to completion, so I need someone who can step in, quickly understand the existing code, and professionally bring it across the finish line
I have a complex Pine Script indicator for TradingView that generates Buy/Sell signals, Stop Loss, and Take Profit levels. The indicator has many lines of code and includes several customizable parameters that I manually adjust in TradingView. I need an experienced MQL5 developer to convert this indicator into a fully functional Expert Advisor (EA) for MetaTrader 5 (MT5) that executes trades automatically 24/7. The
LOT SIZE WITH MULTIPLIER WHEN INITIAL TRADE ENTERED WHEN PARABOLIC REVERSES IT SHOULD NOT CLOSE OPEN ENTRY AND DO HEDGING AS FOLLOWS: PARABOLIC BUY MOVING AVERAGE BUY OPEN TRADE BUY 0.01 WHEN PARABOLIC REVERSE AGAIN ENTER SAME LOT & HEDGE THE POSITION 0.01 SELL WHEN AGAIN PARABOLIC BUY ENTER IF MULTIPLIER IS 2 THEN 0.02 BUY AGAIN PARABOLIC SELL 0.02 AS SO ON.. AS BELOW EXAMPLE.. First Buy: 0.01 Reverse → Sell: 0.01
Hey guys, I have an EA - it works fine so far, but I'm not happy with all settings and want it modified. - Would need the change from points to currency of the Account - Delay after opening a trade (don't open another trade in the next x minutes/points) [if the delay is set on 5m and the trade closes in 2m it can ofcourse take a new signal, but if the trade is open: wait 5min and look at max. open trades limit] -
I am looking for an experienced MQL5 or MetaTrader developer who can create a custom solution that generates MT5 trading statement files (HTML or XML format). The tool should allow me to manually input trade data (such as order open/close times, lot sizes, symbols, profits, etc.) and then generate a file that looks identical to a real MetaTrader 5 statement. Requirements: • Ability to simulate real trading history
Trading_bot 30 - 200 USD
Some traders include trading lot calculation algorithms at the first stage of robot creation. However, it is not recommended to include the money management algorithms for calculating the lot at this stage, since additional input parameters can lead to history-based overfitting during EA optimization. Better test your first EA version using a fixed lot. Only forward testing using history data and several-month real
Looking for existing bot which trades on indices/gold/bitcoin with trend following / momentum strategies. require winrate no less than 70% with max 10% DD. ability to conduct multiple trades a day. I do not expect huge gains, but one with consistent performance with risk mangement controls. no grid/martingale/ win or die strategies. From there, i may add in modifications. Can offer range from USD100-1000, depending
Hi, I need an Expert Advisor (EA) MT5 that focuses on GOLD / XAUUSD with the goal of achieving very high monthly returns (40%++) under strict risk control parameters. Looking for a Strategy with entry on M5 (developers are welcome to add validation such as H1, H4, or D1) but, entry must be on M5 timeframe A strategy that uses orderblocks and/or support/resistance zones for entry. (You can add other features such as

Proje bilgisi

Bütçe
30 - 100 USD
Geliştirici için
27 - 90 USD