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%
무료
비슷한 주문
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 the 2 lines in the below pictures and then start to activate bids once they cross each other and then be able to manage all bids afterwards towards the direction of the market by opening and closing them intermittently and profitably until the position at the other
Hi man, How are u? I have an EA and I need to check few aspects of the code, if It works fine? I am looking for an expert coder, who can understand mt4 language and help us to solve this out. This job will hardly take about 3-4 hours max for an experienced coder, when explained detail. Also, I would like to give this to someone, who can understand and speak English well. Also, the coder should be able to come via
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. THREE TYPES OF ENTRIES 1: AGGRESSIVE 2: DIVERGENCE 3
Indicator in use: Bollinger Bands Mechanism (See diagrams provided for help) Sells: 1. Trigger candle: When candle low is above the top Bollinger band - accurate to the lowest point scale (e.g. On EURUSD if candle low is 1.07915 and the value of top bollinger is 1.07914 - this is a sell signal; or if on Futures if the increment is .25 or .10 then this is used) 2. Enter sell ONLY on the next candle if price breaks
Indicator in use: Bollinger Bands Mechanism: (See diagrams provided for help) Sells: 1. Trigger candle: When candle low is above the top Bollinger band - accurate to the point scale (e.g. On EURUSD if candle low is 1.07915 and the value of top bollinger is 1.07914 - this is a sell signal) 2. Enter sell ONLY on the next candle if price breaks below the trigger candle LOW (using the e.g. above- if next candle price
hey guys, im looking for an auto mt5 license system through a web app i have already, i simply want it so a unique license key is generated for memebers, they input this onto the EA input and then it checks if its valid. active license per user capped at 5. i already have an mt5 coder and dec team for the app so i dont know if youd prefer to intergrate onto the webapp yourself or simply provide the code and doc so my
I need a simple panel to execute both buy and sell operations with very basic things like stopp loss take profit that functions for both market orders such as buy stop sell stop buy limit sell limit I don't care about colors or design I just want how you can do it what interests me most are the functions
I want to create an EA that can take bids according to information of a logic I have developed to give indication of a BUY or SELL opportunity. The EA will then be able to activate the BUY at the lowest possible position once the indicator clears it for a BUY and take bid upwards or identify the highest point and clears it for a SELL and take bids downwards. As you can see from example of JULY 2024 data to see how
We are seeking a skilled developer who can convert a Tradingview indicator written in Pinescript to a NinjaTrader indicator written in C#. The goal is to create a profitable trading strategy using this indicator. The successful candidate will have expertise in both Pinescript and C# programming languages, as well as a strong understanding of trading indicators and strategies. The main responsibilities will include
I am seeking an experienced MQL5 developer to create a user-friendly manual Grid Trading Expert Advisor (EA) with the following key features: Dynamic Grid Trading: Adjustable Grid Distance: Traders can manually input grid distance in pips via an intuitive, movable table. Take Profit Management: Fixed TP for the initial positions (e.g., first 5 trades). Stop-Loss (Optional): Traders can choose to use a stop-loss with

프로젝트 정보

예산
10 - 15 USD
개발자에게
9 - 13.5 USD
기한
에서 1  2 일