Haydn's Mid Week Momentum EA

MQL4 专家

工作已完成

执行时间22 天
客户反馈
Alexander is an amazing coder. The last EA I got was a challenge but he solved all the problems. He is fast, knowledgeable and very professional. I will keep using him for all my coding.
员工反馈
Thanks for very detailed description of initial specs and all testing aspects!

指定

Dear Alexander,

I have another EA which I was hoping you would be available to code for me.  The calculation for the buy and sell signal is slightly different, but the money management system, the stop losses, the error reporting and so on are the same as the last EA you coded for me:

https://www.mql5.com/en/job/64535

I would be happy if you just copy those across to this new EA as well.

I have described the EA below.  If there is anything that is not clear don't hesitate to ask and I will try to explain more clearly.

Best regards,

Haydn




Settings Adjusted by User

 


Day and Time the EA executes

(this EA should execute on this day of the week at this time every week until stopped – if for some reason this time does not exist on the chart eg if the user sets a day and time for which there was no trading then no position is opened and the EA continues to wait until the day and time occur)

 

Day of Week:  Wednesday

Time of Day:  15:00

(At the day and time set by the user here I want the EA to check the three time periods set by the user below

On the chart they would look like this:  )

GBPUSD H1 chart labelled 



 

The Three Time Periods to check to create the Buy/Sell Signal

 

Period 1

FromStartPeriod1: 65

(user specifies the bar back from the start bar which is the start of period 1, in the example above this is 65 bars back from the start bar)

FromBarPart1:  Open

(want to perform the calculation described below using the open price of this bar)

ToStartPeriod1: 49

(the user specifies the last bar of period 1)

ToBarPart1: Close

(want to perform the calculation described below using the closing price of this end bar of period 1)

 

Period 2

FromStartPeriod2: 48

(user specifies the bar back from the start bar which is the start of period 2)

FromBarPart2:  Open

(want to perform the calculation described below using the open price of this bar)

ToStartPeriod2: 25

(the user specifies the last bar of period 2)

ToBarPart2: Close

(want to perform the calculation described below using the closing price of this end bar of period 2)

 

Period 3

FromStartPeriod3: 24

(user specifies the bar back from the start bar which is the start of period 3)

FromBarPart3:  Open

(want to perform the calculation described below using the open price of this bar)

ToStartPeriod3: 1

(the user specifies the last bar of period 3)

ToBarPart3: Close

(want to perform the calculation described below using the closing price of this end bar of period 3)



Other user defined settings

Lot Size = 0.3

Money Management = False

(see below for description of how I would like this EA to calculate lot size when money management is turned on.  If money management is turned off then EA will use the lot size specified here.  This is the same as the money management you coded for me in my other EA, https://www.mql5.com/en/job/64535)


Stop Loss = 1500

Take Profit = 0

(as I understand EAs the SL and TP levels are specified in points not pips.  I use a five digit broker and so I need to specify my stop loss x 10, to say 150 pips for me I will need to enter 1500.  When value = 0 no SL/TP is set)

Trailing Stop Trigger Distance (in points): 250

Trailing Stop Min Trailing Step (in points): 50

Trailing Stop Trailing Distance (in points): 50

Trailing Stop 

(the same system that you included in my last EA was great)


MarginPrice = 155

PercentageofEquity = 0.1

LotSizeMultiplier = 0.1

(To calculate the lot size to take when money management is turned on the user needs to specify what their broker charges for margin.  That value is then used to calculate the lot size.  The user also specifies what percentage of equity should be used to open positions.  Lastly the user selects what order of magnitude lot size to use, ie to use micro lots the user would enter 0.01, to use mini lots the user would enter 0.1 and to use standard lots the user would enter 1 – if possible can these three options be offered as a drop down selection as it will one of those three that should be selected here.  The default value can be 0.1)

 

Magic Number:  14444

Check for Manual Positions = False

(Under the section below “Each time the EA is triggered” the EA should check for open positions using this magic number and whether the free margin is less than Account Equity.  This variable allows the user to turn off that second check)

 

ClosingDay = Sunday

ClosingTime = 21:45

 


 

The calculation that generates the buy/sell signal

 

Period 1 close – Period 1 open

If period 1 close – period 1 open < 0

Then Signal1 = -1

Else Signal1 = +1

(here we are calculating whether the price went up during period 1 or whether the price went down during period 1.  If the close price is higher than the open price (ie the period is the equivalent of a green bar) then when you subtract the open price from the close price the value for period 1 should be above zero.  If the value for period 1 is less than zero it means that the close price was less than the open price (the period was the equivalent of a red bar).  To enable that value to be used in a calculation if the value of period 1 is less than zero (a red bar) we will assign period 1 a value of -1.  If the value of period 1 is greater than zero (a green bar) we will assign period 1 a value of +1.

 

I hope that makes sense)

 

Period 2 close – Period 2 open

If period 2 close – period 2 open < 0

Then Signal2 = -1

Else Signal2 = +1

 

Period 3 close – Period 3 open

If period 3 close – period 3 open < 0

Then Signal3 = -1

Else Signal3 = +1

 

BuySellSignal = Signal1+Signal2+Signal3

 

If BuySellSignal > 0 then open Long position with X lot size with stop loss and take profit

(using the Stop Loss and Take Profit values set by the user, the lot size will be the value set in the money management section if Money Management is turned on, or the static user specified value if Money Management is turned off)

 

If BuySellSignal < 0 then open Short position with X lot size with stop loss and take profit

 


Money Management

 (Note:  This was the same money management system that I asked for in my last EA you coded for me:  https://www.mql5.com/en/job/64535

Feel free to include the same thing here)


To calculate the Lot Size to open

 

LotSize = (Equity*PercentageofEquity/MarginPrice)* LotSizeMultiplier

(And then just use the first decimal place.  E.g. if I had Equity of $10,260.24 with a margin setting of $155 and wanted to only use 10% of my equity, then I would get:

 

($10,260.24 * 0.1 / $155)*0.1

= 0.6619509677419355

= 0.6

 

(I don’t want to round up or down I just want to use the first decimal place here, ie in the number above, 0.6619509677419355, I want to use 0.6 not 0.7.

 

So as I understand it we can’t use NormalizeDouble(LotSize, 1) since that will normalize to the first decimal place but it will do it by rounding and I would end up with a lot size of 0.7 in this example. E.g. see discussion at: https://www.mql5.com/en/forum/113562

 

To only use the first digit without rounding I think we have to first of all multiply the raw LotSize number by 10 to move the first decimal place to the left hand side of the decimal point:

0.6619509677419355 x 10

= 6.619509677419355

Then convert to an integer which will remove all the decimal places:

= 6

Then convert back into a double and divide by 10

=0.6

 

If that is not possible then just normalize double to two decimal places, ie NormalizeDouble(LotSize, 2)

 

Again, I hope that makes sense)

 


Each time the EA is triggered

 

(Each time the start day and time set by the user occurs, eg each Wednesday at 15:00 in this example, the EA should check if there is already any positions open.  Check for open positions in two ways:

 

·         Check that there are no positions with this Magic number open

 

·         Also check that Free Margin is not less than Account Equity (so that way any manually opened trades are detected)

 

If any of these checks are true then don’t open anymore positions and wait until next week to check again

 

Note: The Free Margin check can be turned off by the user setting listed above)

 

 

 


Error Return

(You probably have a better idea of the sorts of values that the EA needs to check and what sorts of errors need to be reported than I do.  The error reporting you included in my last EA would be fine here) 


 

Closing the Position

 

 

(The position should be closed at the day and time specified by the user)

 


Notifications

 (The opening and closing of the positions should be indicated on the chart. I am happy with the way you implemented that on the last EA you coded for me so feel free to copy that accross


(In the Journal the actions taken by the EA should be noted along with the Magic Number, eg EA [Magic Number]: Pending orders placed; EA [Magic Number]: Buy order triggered, pending sell order cancelled; EA [Magic Number]: No pending orders triggered, pending orders cancelled; EA [Magic Number]: Buy order Closed P/L =  $XX.XX.)



反馈

1
开发者 1
等级
(3)
项目
3
0%
仲裁
0
逾期
0
空闲
2
开发者 2
等级
(219)
项目
370
42%
仲裁
145
17% / 41%
逾期
124
34%
空闲
3
开发者 3
等级
(53)
项目
79
18%
仲裁
13
15% / 54%
逾期
5
6%
空闲
4
开发者 4
等级
(362)
项目
506
40%
仲裁
147
18% / 72%
逾期
99
20%
已载入
5
开发者 5
等级
(4)
项目
5
0%
仲裁
3
0% / 67%
逾期
2
40%
空闲
6
开发者 6
等级
(803)
项目
1374
72%
仲裁
113
28% / 48%
逾期
342
25%
工作中
相似订单
I want have the possibility to increase lotsize not alone by Lot-multiplier rather I want add a fix-lot increase for excample for 0,05 lot. I want have this for buy / sell and hedge-buy and hedge sell
Hi, I want to make an automated system to take my place in making trading positions and closing it. But I want to ask , can you program it to draw a trend line in a specific chart and several moving averages should be in specific order, and when the price is near the trend line by few pips, we shift to 15 minutes chart and noticing a resistance or support action , then we take the trade ? can we do that
Develop EA to track performance metrics of strategies I would like to develop an EA that will track the performance metrics of the strategies I have running on a terminal, If any of the metrics start to under perform then the EA/Indictor should alert me with a pop up alert that specify's the metric that has triggered the alert. The EA should also display the metrics in a dashboard - please see my example screen shot
I would like to modify the RSI Epert Avisor with a developer. I would like to use the RSI Expert on the inverse mode and the base setting doesnt conatain this strategy mode
Profitable EA HFT 50 - 300 USD
From a long time i am searching for a profitable EA i have lost a lot , and now i have only 300$ to buy a profitable EA , i wish to say with 0 losses but some or most traders they don't want to hear this i am really tired of searching for a programmer to just create me a profitable EA with the least losses or zero losses maybe nearly 1 year i am searching i just need an HFT EA that can work very well on MT4,MT5
I need help fixing my EA for MT5. It’s a very simple EA, and I currently cannot solve an issue where webrequest communicates with OpenAi API without error. Please only apply if you can help solve this issue
p.p1 {margin: 0.0px 0.0px 12.0px 0.0px; font: 14.0px 'Trebuchet MS'; color: #313131} p.p1 {margin: 0.0px 0.0px 12.0px 0.0px; font: 14.0px 'Trebuchet MS'; color: #313131} li.li1 {margin: 0.0px 0.0px 12.0px 0.0px; font: 14.0px 'Trebuchet MS'; color: #313131} ol.ol1 {list-style-type: decimal} I have an EA that open trades when my entry conditions are met. It usually executes one trade per day. I'd like to add an option
у нас есть стратегия, нам нужно написать mql5-код ​​для тестера стратегий МТ5,Цена договорная. Мой контакт @abbosaliyev из Telegram Программист должен знать РУССКИЙ ИЛИ УЗБЕКСКИЙ язык. Задание: разработать тестер, который использует шаблон условий на открытие и проверит весь исторический график на всех доступных таймфреймах. Остальная информация будет предоставлена ​​после согласования цены
a coder is required to add an indicator to existing ea The new indicator will work as 1. option to combine with exiting indicator to open trade 2. it will be used as alternative BE point 3. It can also be used to close order or combine with other to close trade The second Job is telegram bot to get alert fr news trade and others Details when you apply i will test the ea work on live market and all bug is fixed before
Hello, I want to make an EA based on SMC and a developer that is familiar with the concept and full understanding of this. Must have done similar jobs before and be able show it. I only want to work with developer that has good track record and is precise. Further information will be handed when contact is made. Developers that has zero rating will not be considered. Listed price is a base point. The project can also

项目信息

预算
100+ USD
开发人员
90 USD