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%
무료
게재됨: 38 코드
3
개발자 3
등급
(53)
프로젝트
79
18%
중재
13
15% / 54%
기한 초과
5
6%
무료
4
개발자 4
등급
(365)
프로젝트
507
40%
중재
147
18% / 72%
기한 초과
99
20%
로드됨
5
개발자 5
등급
(4)
프로젝트
5
0%
중재
3
0% / 67%
기한 초과
2
40%
무료
6
개발자 6
등급
(839)
프로젝트
1430
72%
중재
117
29% / 47%
기한 초과
354
25%
작업중
게재됨: 3 기고글
비슷한 주문
Experts mt5 30 - 50 USD
I need a programmer to create an MT5 robot, putting my strategy inside it, send me a message if you are interested! The robot will be based on averages making purchases and sales together
To develop EA algo on GBPUSD on MT5 Client will provide the necessary indicator which will plot Daily pivots on the chart. PFA screenshot attached for details of job work
Hello, my budget is 30$, I need MT5 EA send alert to telegram: 1. Send alert if any position volume by magic number more than: for example, 0.25 lot, send position symbol name and positions not all positions just the positions are more than 0.25 lot volume and positions trade comment and send Custom comment: I entered it manually in input menu. 2. Send alert if I have open positions by magic number in
Description de la stratégie de trading : Bot de trading ULTIMATE AI Smart Money Concept (SMC) Aperçu: J'ai besoin du robot de trading IA ultime, conçu pour mettre en œuvre une stratégie de trading Smart Money Concept (SMC) axée sur l'identification des configurations de trading à forte probabilité en fonction de la structure du marché, des blocs d'ordres et de l'évolution des prix. Ce robot vise à capitaliser sur le
I’m looking for a skilled MQL5 developer to build an MT5 Expert Advisor that mirrors inverse trades (Buy ↔ Sell) from a prop firm challenge account (demo) to a live hedge account . Core Requirements: Open and close opposite trades in real-time Dynamic lot sizing based on account balances (Objective: recover approx. $500 if the challenge account fails) Support for multiple symbols , including: XAUUSD, NAS100, BTCUSD
Hi, I’m looking for an experienced MQL5 or AI trading systems developer who can build a scalable, beginner-friendly forex trading network . The system should include: Fully automated trading logic (AI-enhanced or rule-based) MT5 (or MT4 if needed) compatibility A beginner dashboard with simplified controls A structure that supports onboarding of multiple traders (eventually multi-asset) Key modules like performance
Trading Strategy Description: ULTIMATE AI Smart Money Concept (SMC) Trading Bot Overview: i need The ULTIMATE AI trading bot that is designed to implement a Smart Money Concept (SMC) trading strategy that focuses on identifying high-probability trading setups based on market structure, order blocks, and price action. The bot aims to capitalize on institutional trading behavior by analyzing price movements and
I need someone who can provide metatrader4/5 restful api. And I want restful and websockets. we need to use metatrader api in our app for statistics and trade copying. Apply only if you have the necessary qualifications and experience for this project
GOLD KILLER 1099+ USD
TELL ME SELL OR BUY DON’t BLOW ACCOUNT. THE ROBOT IS FAST ON TAKING TRADING ON MONDAY AND CPI NFP AND EVEY THING I WILL NOT SELL THE BOT ITS FREE
I need a highly disciplined, low-risk EA for MT4/MT5 that trades only when 100% strategy conditions are met. It must include multi-timeframe trend logic, support/resistance rejection, BOS/CHoCH detection from real swing levels, and a breakout strategy with trailing SL. EA should scan all major pairs (from one chart), trade only during 07:00–16:00 GMT, and skip trades 2 hours before major news. Max 1 trade per pair

프로젝트 정보

예산
100+ USD
개발자에게
90 USD