EA Modification - 3 areas

MQL4 Эксперты

Работа завершена

Время выполнения 3 дня
Отзыв от заказчика
He came through for me again and his work exceed my expectation. He even revised my original request to show different way (much better way) and I appreciate his initiative. A+ coder.

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

I have EA that were coded fairly recently.  

After testing in forward trading environment, I need to add  or Modify to change  couple of trading rules in the EA.   

I will provide the EA once coder is selected and assign the project to coder.

In a nutshell, this project is  1) add Grid space between order   2) Add an option to select number of indicators to look for signal  3) add comment on the screen


======Below is detail example for current situation and what I am looking for after modification.   My description seem like lots of request, but it's more of explanation than request ==== 

(1) 

Currently, EA opens when signal comes in xx number of bar.

As an example:  If I set the EA -->  TF = 5min, DelayGridOrderSettings = 12,

At current bar's closing, price = 1.50000, if rules are met and signal is to take long order, EA will open long order  @ 1.50000

then, after 12 bars (which is 1 hr later), price is 1.50100.  If rules are still met to go Long, then, EA will open 2nd Grid order @ 1.50100 at the closing of the bar.

(or if price is 1.49910, as long as rules to take long order, EA will open 2nd long order at the closing of the bar, which in this case, 2nd order will be place at 1.49910) 

So, I have 2 long orders at this point: 1st order @ 150000 and 2nd order @ 1.50100 (or 1.49910 depends on the market price)

 

-->  I need to add following options.

add: extern int MimGridSpace = 30 pips. (or whatever the settings that I use)  ** Make sure to change Point to NewPoint for 5 digits. It's already in the code. 

using example above, after 12 bars' later (when DelayGridOrderSettings = 12), if rules still met and signals to take long, I want EA to open 

ONLY IF closing of the bar's price at this time is bigger or equal Grid distance settings, 

So, 1st order was at 1.50000, so 2nd order should only be placed after 1 hr later (because I used DelayGridOrderSettings = 12 on 5 min TF), if Market price at the closing of this bar is less than 30 pips from the first order, EA will not place order.  

So, in a nutshell, Checked for the signal per DelayGridOrderSettings.  If price is equal or greater than MinGridSpace from previous order, then, 2nd, 3rd, 4th+++ orders.

 

(2) Current EA has the rules to find signal based on price movement patterns + 4 indicators combined. (mom, psar, macd, rsi). Based on this signal, EA opens orders and also exit orders if AutoExit = true.   When rules changes from Long to Short, all opened orders will close if AutoExit = true.  So, if I have Long orders that are not yet closed, if signal changes to take 'short', then EA will close all open orders and initiate first Sell orders.

Code for this is poorly written and I would like to modify, so that I can select which indicators (how many indicators) should give signal in order to open orders and AutoExit.

Current EA has the code written as below (example):

 ------  if price pattern.... (code here is for the price pattern )

&&   (

      ((MacdSig(1)=="GoLong"||!EnableMacd)&&(MomSig(1)=="GoLong"||!MomFilterEnabled)&&(SARSig(1)=="GoLong"||!PSAR_Filter_Enable)&&(RSISig(1)=="GoLong"||!RSI_Filter_Enable))||

      ((MacdSig(1)=="GoLong"||!EnableMacd)&&(MomSig(1)=="GoLong"||!MomFilterEnabled)&&(SARSig(1)=="GoLong"||!PSAR_Filter_Enable))||

      ((MomSig(1)=="GoLong"||!MomFilterEnabled)&&(SARSig(1)=="GoLong"||!PSAR_Filter_Enable)&&(RSISig(1)=="GoLong"||!RSI_Filter_Enable))||

      ((SARSig(1)=="GoLong"||!PSAR_Filter_Enable)&&(RSISig(1)=="GoLong"||!RSI_Filter_Enable)&& (MacdSig(1)=="GoLong"||!EnableMacd))||

      ((RSISig(1)=="GoLong"||!RSI_Filter_Enable) && (MacdSig(1)=="GoLong"||!EnableMacd)&& (MomSig(1)=="GoLong"||!MomFilterEnabled))

      )  && 

 -----

 

What I want in modification is:

add:

extern int SelectNumOfIndySignal = 2;

So, if I set this to 2, EA will look for entry if 2 indicators signals met rules.

Note:  I want EA to look for indicator's signal in order of importance.   Momentum,--> PSAR,--> RSI -->, MACD in this order. 

So, if I  SelectNumOfIndySignal = 2;  EA will look for Momentum and PSAR signal only

 if I  SelectNumOfIndySignal = 1;  EA will look for Momentum  signal only

 if I  SelectNumOfIndySignal = 3;  EA will look for Momentum and PSAR and RSI signal only

if I selectNumberOfIndySignal = 0; then EA will only look for price pattern only and disregard any of indicators' signal

 

(3) Current EA displays comments on the screen.

There is BE (BreakEven) and AutoExit comments.  It is now display as 0 or 1.  I would like this to show 'yes' or 'no".   

Also, add the new comments to show above modifications  to the screen comments:

 MimGridSpace = xx pips

SelectNumOfIndySignal = x  (x can be display per my settings. So, I know if this is show 0, I don't monitor indicators.  if this shows 1, I only look at the momentum indicator, etc)

 

 

  

  

 

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

1
Разработчик 1
Оценка
(49)
Проекты
134
27%
Арбитраж
62
13% / 53%
Просрочено
58
43%
Свободен
2
Разработчик 2
Оценка
(68)
Проекты
111
26%
Арбитраж
17
6% / 71%
Просрочено
15
14%
Свободен
3
Разработчик 3
Оценка
(4)
Проекты
5
80%
Арбитраж
0
Просрочено
2
40%
Свободен
4
Разработчик 4
Оценка
(3)
Проекты
4
50%
Арбитраж
0
Просрочено
0
Свободен
5
Разработчик 5
Оценка
(304)
Проекты
509
47%
Арбитраж
29
10% / 45%
Просрочено
138
27%
Свободен
Похожие заказы
Im looking for an coder to code an EA: Trade management 1. opening trades according to the indicator 2. trades settings to choose from like: open all trades according to the signal open only trade 1,2,3 or 4 % per trade ( example 50/30/20 of the lot settings, with 4 trades it would be for example 50/30/10/10) 3. SL/Trailing settings: Move SL to entry after hitting TP1/TP2 or TP3 moving SL by % keep the original SL
Hi I'm looking to have 2 of my pinescript strategies converted to MQL5 and was wondering if you could first give me a quote for the more simple strategy and then for both the simple and complex strategy together. The simple strategy is a MACD crossover type thing that uses a special EMA script that filters out some ranging price action and also fractal candles for the stop loss. The second strategy is market
I want grate robot for making profits that know when to start a good trade and close a trade and must be active all time to avoid lost of money
I have developed a very strong TradingView strategy in Pine Script but unfortunately, a third-party connector is requiired and in my opinion, I want a more direct connection. I am not brilliant at coding, but I have coded the majority of the MT5 code and I would like you to make sure that the MT5 code matches my TradingView script and executes the same way as the TradingView script that I will provide if you are
Mbeje fx 50+ USD
I like to own my robot that why I want to build my own.i like to be a best to every robot ever in the life to be have more money
I need an MT5 EA that can do the following: I have to give the EA a price in advance, when the price is reached the EA has to automatically place a buy stop or sell stop order 0.5 pips below or above the price. Is this possible
Dr Pattern 30+ USD
good day i need the service of the seaso coder to help me fix my ea The Job required 1 knowledge of Mt4 and Mt5 indicator coding 2. Telegram code 3. ability to code indicator to work on multiple Time frame combine to trade 4 Ability to Join two or three indicator on same ir different time frame if you have these skill please let chart i will discuss the details of the Job inside to you The required day including
Good day, I want someone to help me create a universal news filter with on/off switch, with start and end settings, and drawdown control with magic number of EAs, etc. Thanks
Hello, I am looking for a professional programmer to optimize my existing EA integrating it with ChatGPT to analyze currencies using various methods to make the right trading decisions. i want it to be an EA that can be trusted to carry trade with the help of chat gpt and also have a very low drawdown
Hello, I am looking for a professional programmer to create a trading expert on the MT4 platform, integrating it with ChatGPT to analyze currencies using various methods to make the right trading decisions. Further details will be provided to the applicants later

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

Бюджет
10 - 15 USD
Исполнителю
9 - 13.5 USD
Сроки выполнения
от 1 до 2 дн.