Generic EA 2 (GEA2)

MQL4 专家

工作已完成

执行时间22 天

指定

EA Operation

Upon EA starting (the EA attached to a graph), a series of Processes are launched with a certain pips gap between them. Meaning, Process 1 is launched immediately, Process 2 is launched after the price made a PipsGap movement to either direction (upwards or downwards), Process 3 will be launched after the price made another PipsGap movement to either direction, and so on and so forth. After the first trade in a Process is initiated, there may be a sequence of follow-up trades within this Process. So a Process is the series of trades from the first one until the Process is closed due to Process Take Profit, or Process Stop Loss.

 Each Process is described by an [Process Type n] sub section in the EA parameters which details the Process parameters. There should be up to 32 sub sections for up to 32 Process Types.

Among these parameters are Process TP and Process SL measured in US Dollars, OrderType, which may be Buy or Sell and more (the full list of the trade parameters appears in the next paragraph

 Each Process Type sub section will include also a switch parameter called Active. This parameter may be Yes or No to determine if this Process Type n is currently active or not. As a result, the number of active Trade Types in a certain run of the EA equals to the number of Process Types  where Active=Yes.

The first trade in a Process is opened in a price level which we’ll call L1.

For Process Type 1, L1 is the price level when the EA starts. For the follow-up Processes, L1 is dependent on the price distance between each 2 consecutive Processes as dictated by The PipsGap parameter which appears among the parameters of each Process Type n.

For each Process the behavior is as follows:

As mentioned, the first trade is opened at price level L1. (The Trade Type and volume for this 1st trade are described in the Process Type parameters). There is another price level L2 that is D (Distance) pips from L1 in the losing direction from the trade that was opened in L1 (if the trade in L1 is Buy then L2 is bellow L1, if the trade in L1 is Sell then L2 is D pips above L1).

If the price movement for the trade in L1 goes in the winning direction, and the accumulated profit during this Process hits ProcessTakeProfit, than this Process is closed. Now, if ProcessAutoRestart=1 then another process from this Process Type is immediately launched and a new L1 is set.

If the price movement for the trade in L1 goes in the losing direction and hits L2, then a new trade is opened in this price level. This trade is opposite to the trade in L1 (if the trade in L1 was Buy than in L2 it will be Sell). The volume of this 2nd trade is provided in VT2 (Volume Trade 2) parameter, which is among the Trade Type parameters.

Now, the same logic continues. If the price movement for the L2 trade goes in the winning direction, and the accumulated profit for this Process hits ProcessTakeProfit, then the Process is closed (and a new one is immediately opened should ProcessAutuRestart=1.). If the price movement for L2 trade goes in the losing direction and hits L1, then a new trade is opened at L1, in the same direction like the previous L1 trade, and with a volume equals to VT3. This VT3 trade is added to the previous trade/s in this L1 level

 If during the Process, the accumulated loss of this Process hits ProcessStopLoss, than this process is closed (and a new one is immediately opened should ProcessAutuRestart=1.)

 From this point and on, the Process continues in the same logic, until it’s closed.

There are 2 more parameters called GlobalTP and GlobalSL. If from the moment process Type 1 (Process 1) was initiated, the accumulated profit (or loss) of all the currently active processes hits GlobalTP (or GlobalSL), then all processes are closed immediately. Should GlobalAutoRestart=1, then the EA restarts from Process Type 1 and on.

 

To rephrase: a series of trades that were “born” from a certain Initial Trade is called a Process.

A process is finished in one of the following 2 instances:

1.     The accumulated profit/loss of this process (starting VT1, VT2, etc.), reaches a ProcessTP or ProcessSL.

2.     The accumulated profit/loss of all processes that are currently active reaches GlobalTP or GlobalSL. In this case all trades in the EA are terminated immediately.

 For this calculation closed processes that belong to this run of the EA and were finished because of ProcessTP/SL need also to be taken into account.

This is actually how the EA is finished. Now, the EA will be re-initiated if GlobalAutoRestart=1.

 

There are 2 AutoRestart parameters, one in the Process level, and one in the EA general level. If ProcessAutoRestart=1 in the Process Type parameters, then after a Process is terminated due to ProcessTP or ProcessSL, another Process will be immediately launched with the same parameters.

 If GlobalAutoRestart=1 in the General parameters in the EA level, then EA will be re-launched and all Process Types will be initiated (much like in the EA start)

 

General parameters

 

Will appear in a separate General sub section within the EA parameters.

1.     GlobalTP – as described above. Measured in US Dollars.

2.     GlobalSL – as described above. Measured in US Dollars.

3.     GlobalAutoRestart – 1 or 0 as described above

 

 

Process Type parameters

As mentioned, there will be up to 32 identical sub sections to include the various Process Types and their related parameters.

These parameters, for each Process Type, will appear in a separate sub-section that will include:

1.     A Process Type header with a serial number, all within brackets. For the 1st Trade Type it will look like this:  [Process Type 1]

2.     Active – a switch parameter than can have the values Yes or No. If Yes, this Process Type is active in the coming run of the EA.

3.     OrderType (Buy/Sell) of the first trade in the Process

4.     VV (Volume Vector) in lots (starting 0.01 lot). It will look like this

VV= VT1, VT2, VT3, VT4 …VTN (there will be numbers instead of letters of course...). It means that the first trade, to be opened in L1 will have a volume VT1, the second trade to be opened in L2 will have the volume VT2, the 3rd trade to be opened in L1 will have the volume VT3, and so on and so Forth.

 The number of VTs is not limited, but if the Process reached the last value in the VV, VTN, and the process hasn’t been closed yet, it starts all over again from VT1.

5.     ProcessTP – Process take profit. Measured in US Dollars.

6.     ProcessSL – Process stop loss. Measured in US Dollars.

7.      D – price distance between L1 and L2 (in pips)

8.      ProcessAutoRestart – 1 or 0 as described above. If 1, the process will be re-initiated immediately after the previous Process for this Trade Type was closed due to SL/TP.

9.     PipsGap – a price movement in pips that the price should move in either direction, so the next Process Type will be opened

  

 

Comments

1.     GlobalSL/TP overrides ProcessSL/TP. Meaning should EA reached the conditions described to hit GlobalSL or GlobalTP, the whole EA will be closed (and immediately re-initiated if GlobalAutoRestart=1), regardless of the individual status of the currently active Processes).

2.     The EA should create a detailed log to enable us to accurately track and check its operation.

3.     If any questions, please don’t hesitate to ask.

4.     Thanks in advance for your reasonable bid and professional and fast delivery.

 

反馈

1
开发者 1
等级
(1235)
项目
2820
80%
仲裁
156
22% / 43%
逾期
488
17%
空闲
2
开发者 2
等级
(182)
项目
342
42%
仲裁
118
12% / 73%
逾期
104
30%
空闲
3
开发者 3
等级
(59)
项目
182
55%
仲裁
31
45% / 16%
逾期
103
57%
空闲
4
开发者 4
等级
(54)
项目
164
43%
仲裁
43
47% / 16%
逾期
58
35%
空闲
5
开发者 5
等级
(187)
项目
367
56%
仲裁
45
22% / 56%
逾期
188
51%
空闲
6
开发者 6
等级
(82)
项目
150
29%
仲裁
9
44% / 11%
逾期
46
31%
空闲
7
开发者 7
等级
(30)
项目
93
49%
仲裁
18
56% / 17%
逾期
38
41%
空闲
相似订单
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

项目信息

预算
100 - 300 USD
开发人员
90 - 270 USD
截止日期
 4  10 天