Job finished
Execution time 4 days
Feedback from employee
Great client to work with. Clear requirements and very good communication throughout the project. Payment was fast and everything went smoothly. I would be happy to work together again in the future.
Feedback from customer
There is no best developer, only the right developer for you.
Specification
| List: | |
| Close EA (No Stop EA) | 2,3,4 |
| SendNotification | 1 |
| Guard monitor EA | 7,8,12,13,14 |
| Failed market Delay | 5 |
| ToDeveloper | 9,10,11 |
| interval | 15 |
| Modification 7: | ||||||||
| Added 1 feature to the Expert Advisor (EA): | ||||||||
| Maximum number of consecutive losing orders = 500 | ||||||||
| Uncounted loss orders (losses >= N pips) = 300 | ||||||||
| symbol | magic number | |||||||
| XAUJPYm | 834 | |||||||
| Explanation: This EA has a maximum of 500 consecutive losing orders. If this limit is exceeded, a notification will be sent: "EA_834(XAUJPYm)_Exceeded Maximum Number of Consecutive Losing Orders_Safety Control Activated." After stopping, close the EA. | ||||||||
| This function allows the EA to check its historical trading records. | ||||||||
| This function does not calculate the total number of consecutive losing orders for the entire account, but rather the consecutive losing orders for the EA itself. | ||||||||
| Condition 1: Losing orders closed within the same number of seconds will only be counted once. | ||||||||
| For example 1, if 6 orders close at a loss within the same number of seconds, it will only be counted once. | ||||||||
| For example 2, if 13 orders with different comments close at a loss within the same number of seconds, it will only be counted once. | ||||||||
| For example3, if 5 orders with different comments close at the same time ("2026.02.26 03:15:39") and are considered losing orders, they will only be counted once. | ||||||||
| Then, if 6 orders close at the same time ("2026.02.26 03:15:42") and are considered losing orders, they will only be counted once, for a total of 2 counts. | ||||||||
| Then, if 5 orders at different times are consecutively losing orders, they will only be counted 5 times, for a total of 7 counts. | ||||||||
| Then, if 6 orders are consecutively losing orders, but 2 of them exceed 300 pips in loss, they will only be counted 4 times, for a total of 11 counts. | ||||||||
| The counting will reset only when a profitable order is closed. | ||||||||
| Remark: The function belongs to "Guard monitor EA" function. | ||||||||
| ----------------------------------------------------------------------------------------------------------- | ||||||||
| Modification 8: | ||||||||
| Add 3 conditional statements about "The EA continuously monitors the status of the current step and the previous step". | ||||||||
| Previous_Price_Points_Steps_Deviation = 100 | ||||||||
| Case1: | ||||||||
| Direction_Steps = s s b | ||||||||
| Price_Points_Steps = 0 -200 4000 | ||||||||
| If the distance between the current step "b" and the previous step "s" is <= 3900 because of (4000-100), send a notification "EA_834_EURUSD_Status anomaly of current step and previous step (Price_Points_Steps)_step2_4000", then close the EA order and the EA. | ||||||||
| The notification format is: = EA_"magic number"_"symbol"_Status anomaly of current step and previous step (Price_Points_Steps)_"current stepN"_"Price_Points_Steps value" | ||||||||
| Case2: | ||||||||
| Direction_Steps = b s | ||||||||
| Price_Points_Steps = 0 -4000 | ||||||||
| If the distance between the current step "s" and the previous step "b" is >= -3900 because of (-4000+100), send the notification "EA_834_EURUSD_Current Step and Previous Step Status Anomaly (Price_Points_Steps)_step1_-4000", then close the EA order and the EA. | ||||||||
| Case3: | ||||||||
| the current step buy order(include b,b#) = 3001.22 | ||||||||
| the previous step sell order(include s,s#) = 3001.23 | ||||||||
| If the price of the current step buy order(include b,b#) is below the price of the previous step sell order(include s,s#), send the notification "EA_834_ETHUSD_Current Step and Previous Step Status Anomaly (Direction_Steps)_step4", then close the EA order and the EA. | ||||||||
| The notification format is: EA_"magic number"_"symbol"_Current Step and Previous Step Status Anomaly (Direction_Steps)_"current stepN" | ||||||||
| Remark: The function belongs to "Guard monitor EA" function. | ||||||||
| ----------------------------------------------------------------------------------------------------------- | ||||||||
| Modification 12: | ||||||||
| Next_Price_Points_Steps_Deviation = 1000 | ||||||||
| If the EA detects that an order has met the conditions for opening an order, and this condition has been exceeded by 1000 pips for 10 minutes, it will begin sending a notification, after which the EA will attempt to replenish the order. | ||||||||
| If, for unknown reasons, the order still does not exist, and this condition has been exceeded by 1000 pips for 30 minutes, a second notification will be sent, after which the EA will attempt to replenish the order. | ||||||||
| If, for unknown reasons, the order still does not exist, and this condition has been exceeded by 1000 pips for 120 minutes, a third notification will be sent, after which the EA will attempt to replenish the order. | ||||||||
| If, for unknown reasons, the order still does not exist, and this condition has been exceeded by 1000 pips for 4320 minutes, a fourth notification will be sent, after which all orders will be closed, and the EA will be shut down. | ||||||||
| Case1: | ||||||||
| string Direction_Steps= | b b b s | |||||||
| string Driection_Lots= | 0.01 0.02 0.03 0.18 | |||||||
| string Price_Points_Steps= | 0 -600 -1200 -1200 | |||||||
| For example: | ||||||||
| 3600.12 <--- step0 | ||||||||
| 3594.12 <--- step1 | ||||||||
| 3582.12 <--- step2 "current step" | ||||||||
| 3570.12 <--- step3 "next step" | ||||||||
| A price less than 3570.12 is the condition for starting an order in step3. | ||||||||
| The first notification will be sent if the price is below 3560.12 (because 3570.12 - 1000 pips) and remains so for more than 10 minutes. The notification will then be: "EA_834_ETHUSD_STEP3_Price has met the condition to open an order at 3570.12, but the order has not been opened after 10 minutes." EA will then attempt to add the order. | ||||||||
| If, for unknown reasons, the order still does not exist, and the price exceeds the opening condition by 1000 pips and remains so for 30 minutes, the notification will be: "EA_834_ETHUSD_STEP3_Price has met the condition to open an order at 3570.12, but the order has not been opened after 30 minutes." The EA will then attempt to add the order. | ||||||||
| If the order still doesn't exist for unknown reasons, exceeding the order activation requirements of 1000 pips and lasting for 120 minutes. The EA will then send a notification: "EA_834_ETHUSD_STEP3_Price has met the order activation requirement of 3570.12, but no order has been activated after 120 minutes." The EA will then attempt to add the order. | ||||||||
| If the order still doesn't exist for unknown reasons, exceeding the order activation requirements of 1000 pips and lasting for 4320 minutes, a fourth notification will be sent: "EA_834_ETHUSD_STEP3_The next step cannot be activated even after exceeding the order activation requirements of 1000 pips and 4320 minutes. Safety Control Activated. EA stopped." The EA will then stop, close all orders, and then shut down. | ||||||||
| Remark: The function belongs to "Guard monitor EA" function. | ||||||||
| ----------------------------------------------------------------------------------------------------------- | ||||||||
| Modification 13: | ||||||||
| Holding current orders (not historical orders), If an order has 3 or more duplicates with the same symbol, magic number, and comment, | ||||||||
| for example, if there are 5 duplicates, | ||||||||
| the EA (Expert Advisor) will delete 4 of the duplicate orders, keeping only 1, and send a notification: "EA has found 5 duplicates with the same symbol, magic number, and comment; this has been corrected." If, after correction, there are still 3 or more duplicates with the same symbol, magic number, and comment, the EA will close all orders and send a notification: "EA has found the same product, magic number, and comment for the second time, therefore the EA is forcibly closed." The EA will then be close all order and then shut down. | ||||||||
| Remark: The function belongs to "Guard monitor EA" function. | ||||||||
| ----------------------------------------------------------------------------------------------------------- | ||||||||
| Modification 14: | ||||||||
| An Expert Advisor (EA) can open a maximum of 100 orders within every <=200 seconds and <=500 pips. | ||||||||
| If this limit is exceeded, the EA will be stopped, the orders closed, and the EA closed, and a notification sent. | ||||||||
| Stopping the Expert Advisor (EA) before closing the order prevents the EA from continuously closing orders while simultaneously opening new ones. | ||||||||
| The notification format is: "Indications of continuously opening orders - More than 100 orders opened within 200 seconds and 500 pips, EA closed (EA_magic number_symbol_comment)". | ||||||||
| EA Function Name | Parameters | |||||||
| Maximum Number Of Orders Allowed | 100 | |||||||
| Monitor Each Time Range (in seconds) | 200 | |||||||
| Monitor Each Price Range (in pips) | 500 | |||||||
Responded
1
Rating
Projects
71
37%
Arbitration
4
25%
/
75%
Overdue
1
1%
Free
Published: 1 code
2
Rating
Projects
27
7%
Arbitration
9
33%
/
33%
Overdue
1
4%
Working
3
Rating
Projects
35
23%
Arbitration
4
0%
/
50%
Overdue
2
6%
Working
4
Rating
Projects
10
20%
Arbitration
1
0%
/
0%
Overdue
4
40%
Working
5
Rating
Projects
8
38%
Arbitration
1
100%
/
0%
Overdue
2
25%
Free
6
Rating
Projects
565
35%
Arbitration
81
31%
/
44%
Overdue
204
36%
Free
7
Rating
Projects
1
0%
Arbitration
0
Overdue
0
Free
8
Rating
Projects
257
53%
Arbitration
16
50%
/
38%
Overdue
83
32%
Free
9
Rating
Projects
51
59%
Arbitration
2
100%
/
0%
Overdue
1
2%
Free
Published: 5 codes
10
Rating
Projects
22
41%
Arbitration
8
0%
/
50%
Overdue
3
14%
Free
11
Rating
Projects
12
0%
Arbitration
3
33%
/
33%
Overdue
1
8%
Free
12
Rating
Projects
267
30%
Arbitration
0
Overdue
3
1%
Working
Published: 2 codes
13
Rating
Projects
20
20%
Arbitration
3
33%
/
67%
Overdue
3
15%
Free
14
Rating
Projects
39
23%
Arbitration
14
0%
/
93%
Overdue
4
10%
Free
15
Rating
Projects
10
50%
Arbitration
1
0%
/
100%
Overdue
2
20%
Free
16
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
Similar orders
Mac200
50+ USD
I need a Trend following Bot. Here we took entries by looking at two indicator which are 200 period ema and 12 26 9 MacD. Rules for entry exit are: Buy trade: When market is above 200 ema and MacD Line cross over the signal line and this cross over happened below the zero line of MacD indicator. We simply put Buy trade. Sell trade: When market is below 200 ema and MacD line crosses below the signal line and this
Multiple times EMA Crossing robot with smart entry
50 - 100 USD
I I would like to create a trading robot based on 2 ema crossing. The robot is pretty simple, it should open buy position when fast ema cross slow ema and vise versa. Also it should use martingale after the loss position. It should has expiration period inside the code and alerts l
Iconic Boy
300 - 400 USD
Am looking for a bot to trade .so that I can be able to trade and become very successful and make some profit so that I cannot sleep on a empty stomach
MT5 Global Stop Loss & Take Profit Manager for Manual Trades I need an Expert Advisor (EA) for MetaTrader 5 that manages ONLY existing manual trades. GENERAL REQUIREMENTS - Works only on the current chart symbol (example: XAUUSD). - Supports Hedging accounts. - Detects all manually opened market positions. - Never opens trades automatically. - Never closes trades automatically. - Never places pending orders. - Never
Supply and Demand EA
50 - 250 USD
I need a SnD EA. Prefer coder who has previous experience coding SnD EA. PO are based on (CHoCH or BoS) and 3EMA, order block (from my TradingView indicator), area based on Fibonacci. SL options are based on fix pips or zone size; CL is based on candle closing. TP1 and TP2 options are based on fix pips or fix ratio. Canceling PO is based on market structure or Fibonacci. Money management are based on fix volume or
Hi MQL5 Community, With over 10 years of live market experience as a Quantitative & Trading System Developer, I specialize in building robust, highly scalable Expert Advisors (EAs), custom indicators, and automated architectures. I’ve recently put together a comprehensive showcase demonstrating my flagship Modular Multi-Engine Architecture , designed to bring institutional-grade logic and real-time telemetry into
I need a developer that can make my trading strategies into a working perfect EA Robot working on Mt5. Candlestick pattern confirmation through PDH, PDL, PWH, PWL, Liquidities, HTF OB
Xau trading bot with 99.9% profit
2000+ USD
I need a trading bot specially for XAU, high profit gain. Requirements bot analyzes the market places trades closes with 2 to 3 profit per trades daily profit should be 50 to 100 dollars
EA Needed for a Professional Forex Fund Management Firm
500 - 2000 USD
We are looking for an experienced MQL5 developer to provide a stable, consistently profitable Forex Expert Advisor (EA) capable of generating 10–15% average monthly returns while maintaining the lowest possible drawdown . Our Requirements The EA must have a proven track record of consistent performance. A long-term trading history (live or verified) will be considered a significant advantage. Before final selection
I am looking for a professional MQL5/MT5 Expert Advisor developer to build a fully automated trading bot based on my custom strategy. Requirements: Strong experience in MQL5 (MetaTrader 5) Previous experience developing Forex/Gold Expert Advisors Ability to convert a trading strategy into a fully automated EA Clean, well-structured, and optimized code Good communication and willingness to provide updates during
Project information
Budget
30+ USD