ONLY FOR THOSE WHO CAN UNDERSTAND AND SPEAK ENGLISH PLEASE. We will need to use team viewer so please speak english.

MQL4 Asesores Expertos

Tarea técnica

I will be using this on the ig mt4 SPREAD BETTING PLATFORM. You need to demonstrate it works there. 
Important rules to take into consideration:
For an upward cross of EMA. Meaning EMA1>EMA2/3/4(ONLY AT BAR CLOSURE)=positive direction AND ALL THE INDICATORS POINTING IN AN UPWARD DIRECTION(THIS MEANS THAT THE EA WILL COMPARE THE VALUE OF THE INDICATORS ON THE BAR WHERE THE CROSS HAPPENED TO BAR THAT FORMED BEFORE IT AND IF THE INDICATOR VALUES ARE INCREASING/BECOMING LESS NEGATIVE)=buy trade entry(ON THE OPENING OF THE NEXT BAR) IF YOU DO NOT UNDERSTAND THIS THEN PLEASE ASK
1 If during the above period after the cross has happened. If the buy trade has closed(whether take profit has been achieved) and then on the next bar being formed(all the 3 indicators are pointing in an upward direction at bar closure, SIMILAR CONCEPT AS ABOVE) another buy trade will be placed(on the opening of the new bar). This buy trade will ONLY be placed if ALL indicators are pointing in an upward direction and there is no existing buy trade. During an upward cross of the ema, only buy trades will be made(provided that all the indicators are also pointing in a positive direction)

For a downward cross of EMA. Meaning EMA1<EMA2/3/4(ONLY AT BAR CLOSURE)=negative  direction AND ALL THE INDICATORS POINTING IN A DOWNWARD DIRECTION(THIS MEANS THAT THE EA WILL COMPARE THE VALUE OF THE INDICATORS ON THE BAR WHERE THE CROSS HAPPENED TO BAR THAT FORMED BEFORE IT AND IF THE INDICATOR VALUES ARE decreasing/BECOMING more NEGATIVE) =sell entry(on the opening of the new bar)
1 If during the above period after the cross has happened. If the sell trade has closed(whether take profit has been achieved) and then on the next bar being formed(all the 3 indicators are pointing in a downward direction at bar closure)  another sell trade will be placed. This sell trade will ONLY be placed if ALL indicators are pointing in an downward direction and there is no existing sell trade. During an downward cross of the ema, only sell trades will be made(provided that all the indicators are also pointing in a downward direction)


take profit 
tp1 till tp10     
There will be a variable called time duration= x seconds I will explain this below
If we choose time duration=false then if a trade has gone to tp3 and we want it to go tp4 but instead it comes back to tp3 then the trade will be closed immediately there. If a trade has crossed tp1 and doesnt reach tp2 but becomes tp1 again and time duration is false it will close the trade on tp1 only.
This rule of time duration will function till trailing feature has not been activated, once trailing has been activated this rule of time duration will no longer apply. Basically what this means is if we have tp1=10 points tp2=20 tp3=30 tp4=40 tp5=50 points tp6=60 points. If the trade goes from tp4 to tp3, the trade will not close immediately. If we have specified time duration as =120 seconds. The ea will see that after 120 seconds is the price still below tp3 value of 30 points or not. If it is it will close the trade immediately. If it has become more than tp3 value of 30 points it will let the trade run. If this is not clear then ask. Also if for whatever reason the trade decreases so rapidly that it in that 120 secs duration it decreases to tp2 value it will close the trade immediately. So to summarize, we had achieved tp3 and we wanted the trade to go to tp4. It didnt go there and again came down to tp3 value. For 120 seconds we waited for it to recover, if after 120 secs it did recover and become more than tp3 value we let the trade stay. If during that 120 secs the trade dipped down to tp2 value then regardless of the time passed the ea will close the trade immediately. So like the above, if we had a trade which had crossed tp6 value, didnt make it tp7 but again came down to tp6 value, we wait 120 sec. If it dips down to tp5 value, the trade close immediately. If still not clear let me know.

Trailing feature which i want
tp1=3
tp2=10
tp3=17
tp4=20
tp5=50
We have a variable which is start trailing
hence start trailing= at tp1 or tp2 or tp3 or tp4 or tp5 or tp6 or tp7 or tp8 or tp9 or tp10 , in this case we chose tp4

once it reaches a profit of 20 points then we can intiate trailing. Which will work like this . One trailing has been activated the time duration variable will no longer apply
trail%=xx% would be a variable we can change.
trail 50%= hence tp was 20 points so, if the trade goes against 10 points(50% of 20) the trade will close
trail 25%= tp was 20 points, hence 5 points, so if the trade goes against us by 5 points the trade is closed
So if the trade keeps going in our favour, like for eg 25 points or 32 points or xx points, if the trail % is 50% then it will 50% of 32 points which is 16 points. Hence trade goes against us by 16 points, the trade will close.
however the max trailing points will never be greater, this will be variable which we can  configure and which will over ride the above. So
max trail points=40
regardless of the take profit and the % above, if the trade goes against us by 40 points the trade will close. I hope this is clear now.

Also once we attach the ea to a symbol it will not place and buy or sell trade from the start. It will wait till an ema cross occurs, only then will the trades start. I hope this is clear
so now parameters
stop loss=points or pips(points mean if a price of dax 30 is 10300 and it becomes 10301 that is an increase of 1 point
stop difference 1 till 10=XX points(i have explained this in the end)
vol=  This is measured in pounds per point. So a value of 10 here would mean 10 pounds per point
take profit= so from tp1 till tp10
time duration=x seconds
start trailing at=x points 
trailing%=x%
max trailing

ema1= period  in numbers
ema2= ''''''''''''
ema3= '''''''''''''
ema4= '''''''''''''
ema5= '''''''''''''
ema6= '''''''''''
buy condition=ema x> ema x where x is 1-6 above and the below indicators pointing up
sell condition=ema x< ema x where x is 1-6 above and the below indicators pointing down
bb%b= period, standard deviation
CCI= period
DPO=period
For stop loss we will do the following:

when the trade was placed and tp1 was not achieved, the ea will use the standard stop loss as above,  which for example sake is stop loss=40 points
once tp1 is achieved= 10 points, we will then have a variable(stop difference=xx in this case we choose 20 points) basically what this means, if tp1 was 10 points, then once tp1 is achieved, stop loss will be 20 points below the tp1 price. We will no longer use the standard stop loss value now. so tp1 will have stop difference 1, tp2 will have stop difference 2 and so on. If choose till tp10 there will be stop difference till 10. If we choose trailing function stop difference will be till tp5. So now trade will either close if this stop difference is triggered or because it has reached the trailing value which i stated above or if we have chosen the time duration value and after a certain time the value does not go above that tp and then the trade will close or during that time duration(like is discussed above we were at tp4 and waiting to go to tp5 but it during that time duration it hit tp3 value). If you havent understood this please let me know. 
If we choose stop difference=false then only the standard stop loss will be used.
Its highly recommended you use the ig mt4 spread betting platfrom. We can do a team viewer session and i go over this with you and you are 100% clear what to do.

Archivos adjuntos:

Han respondido

1
Desarrollador 1
Evaluación
(376)
Proyectos
398
31%
Arbitraje
62
19% / 69%
Caducado
50
13%
Trabajando
2
Desarrollador 2
Evaluación
(36)
Proyectos
50
28%
Arbitraje
2
0% / 100%
Caducado
6
12%
Libre
3
Desarrollador 3
Evaluación
(115)
Proyectos
129
18%
Arbitraje
11
27% / 55%
Caducado
4
3%
Libre
4
Desarrollador 4
Evaluación
(45)
Proyectos
58
33%
Arbitraje
12
42% / 42%
Caducado
7
12%
Libre
5
Desarrollador 5
Evaluación
(27)
Proyectos
43
7%
Arbitraje
18
6% / 78%
Caducado
26
60%
Libre
6
Desarrollador 6
Evaluación
(26)
Proyectos
34
26%
Arbitraje
7
14% / 43%
Caducado
7
21%
Libre
7
Desarrollador 7
Evaluación
(20)
Proyectos
29
55%
Arbitraje
0
Caducado
0
Libre
Solicitudes similares
Creating of an expert advisor or trading bot that uses a Top Down analysis (using monthly, weekly, daily, hourly, minutes ( 30, 15, 5, 1) to determine trade direction or trend direction and makes multiple trade decisions for mt4. You can use or combine accurate trend indicators
Hello The EA will work on particular zone choose by the user and can mark it on any TF and with some rules can open trades and mange the trade by some unique rules. the EA need to check the difference by RSI as well and with some extra rules . developer should have good attitude and good communication (englsih) with high performence and knowledge with coding EA
I am looking forward to automate my trading strategy where I use renko bars on Tradingview. I really want to use unirenkos too, but unfortunately I couldn't figure out how to use ninjatrader on my MacBook and Tradingview does not offer unirenkos. As far as I see from your offered services you are very familiar with ninjatrader. I wanted to ask you if you could code me an Indicator for unirenkos for Tradingview so I
I am looking forward to automate my trading strategy where I use renko bars on Tradingview. I really want to use unirenkos too, but unfortunately I couldn't figure out how to use ninjatrader on my MacBook and Tradingview does not offer unirenkos. As far as I see from your offered services you are very familiar with ninjatrader. I wanted to ask you if you could code me an Indicator for unirenkos for Tradingview so I
Hello The EA will work on particular zone choose by the user and can mark it on any TF and with some rules can open trades and mange the trade by some unique rules. the EA need to check the difference by RSI as well and with some extra rules . developer should have good attitude and good communication (englsih) with high performence and knowledge with coding EA
Hello, I want to create an EA that can be able to take and optimise trade bids using the trend tracker concept I have developed. The tracker will monitor 2 lines to determine the trend of the market and afterwards take bids towards the correct direction. It will also be able to use a distance between the bids for the direction of the trend and plan a reverse bid when the price of the extreme doesn’t change again. The
Gradient boosting and L2 100 - 200 USD
I am looking for a well experienced programmer to put/implement a gradient boosting algorithm and an L2 to reduce overfitting in my ea which l already have which uses indicators . If you are experienced please adhere
Hello, I'm looking for a developer for repair calendar in EA MT4/MT5 (News Filter - https://ec.forexprostools.com ) for all windows servers. Note: EA MT4/MT5 works with calendar on PC Win 10, 11 but not on all windows servers. I have the source code and will post within the comments section for review. If you are able to do this and quality. Please apply. Thanks
Create mt4 ea 50+ USD
To convert the provided MT4 indicator script into an Expert Advisor (EA) and implement prompt functionality for user input, we need to modify the code to handle external parameters and provide a user-friendly interface. Below is the EA code that incorporates prompts for user inputs
SCALP MARTINCALE SPY TIMEFRAME 1MIN CANDLE - SHORT SIDE ONLY 1-SET RISK : A IS A VARIABLE (HOW MUCH $) 2-SET ATR(3) : SET THE TIME AT WHICH THE ATR SHOULD BE TAKEN, IF SET 933AM THEN THE ATR OF THE 1MIN CANDLE AT 933AM CANDLE WILL BE USED (ROUND AT 0.25 UP OR DOWN) *USE NEW YORK TIME 3-SET MAX NUMBER OF ENTRY : B IS A VARIABLE 4-SET RSI(14) / C IS A VARIABLE, IF RSI(14) > C = ORDERS OPEN 5-IF RSI(14) > C IS TRIGGERED

Información sobre el proyecto

Presupuesto
90 - 150 USD
Para el ejecutor
81 - 135 USD
Plazo límite de ejecución
de 3 a 7 día(s)