Guard monitor EA, Failed market Delay, Close EA (No Stop EA), SendNotification

指定

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


応答済み

1
開発者 1
評価
(51)
プロジェクト
69
35%
仲裁
4
25% / 75%
期限切れ
0
2
開発者 2
評価
(18)
プロジェクト
22
9%
仲裁
6
33% / 50%
期限切れ
1
5%
仕事中
3
開発者 3
評価
(16)
プロジェクト
35
23%
仲裁
4
0% / 50%
期限切れ
2
6%
仕事中
4
開発者 4
評価
(3)
プロジェクト
6
0%
仲裁
0
期限切れ
3
50%
仕事中
5
開発者 5
評価
(3)
プロジェクト
4
0%
仲裁
1
100% / 0%
期限切れ
1
25%
仕事中
6
開発者 6
評価
(309)
プロジェクト
555
35%
仲裁
79
32% / 42%
期限切れ
201
36%
仕事中
7
開発者 7
評価
(1)
プロジェクト
1
0%
仲裁
0
期限切れ
0
8
開発者 8
評価
(73)
プロジェクト
257
53%
仲裁
16
50% / 38%
期限切れ
83
32%
9
開発者 9
評価
(32)
プロジェクト
32
63%
仲裁
1
0% / 0%
期限切れ
1
3%
仕事中
パブリッシュした人: 5 codes
10
開発者 10
評価
(10)
プロジェクト
19
42%
仲裁
6
0% / 50%
期限切れ
3
16%
仕事中
11
開発者 11
評価
(4)
プロジェクト
5
0%
仲裁
1
0% / 100%
期限切れ
1
20%
12
開発者 12
評価
(253)
プロジェクト
259
30%
仲裁
0
期限切れ
3
1%
パブリッシュした人: 2 codes
13
開発者 13
評価
(9)
プロジェクト
12
8%
仲裁
3
33% / 67%
期限切れ
1
8%
仕事中
14
開発者 14
評価
(28)
プロジェクト
39
23%
仲裁
14
0% / 93%
期限切れ
4
10%
仕事中
15
開発者 15
評価
(3)
プロジェクト
7
57%
仲裁
1
0% / 100%
期限切れ
1
14%
16
開発者 16
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
類似した注文
I am seeking an experienced MQL5 developer to build a high-precision Gold (XAUUSD) scalping Expert Advisor. The objective is to achieve a Profit Factor (PF) of 2.0 or higher with a focus on institutional logic rather than retail lagging indicators.The EA must be designed to pass a "100% Real Ticks" backtest (Exness/Dukascopy data) over a 30-day period with a $500 initial deposit.Core Requirements & Strategy
Title: Design and Development of an Automated Forex Trading Robot Using MQL5 and Machine Learning Techniques Abstract: This project focuses on the design and development of an automated Forex trading robot that integrates MQL5 programming and machine learning techniques. The system aims to predict market movements and execute trades automatically, minimizing human error and emotional trading. By leveraging historical
I am looking to purchase an existing multi-currency MT5 Expert Advisor that is capable of trading multiple currency pairs simultaneously . Please only contact me if you already have a ready-made EA and are willing to sell the full system including the complete source code . ⚠️ Important: If you do not own the EA, do not have the source code, or are planning to build something from scratch, please do not apply
Chin 30 - 300 USD
i want to add the 30m time frame in the ema section high ema is 1h low ema is 5m i want u to add a mid ema so i can use 3 time frames
I'm looking to have a tradingview strategy translated to work on ninjatrader. Right now I'm using webhooks together with the platform Crosstrade to automate the strategy and have the trades take place on Tradingview. Let me know if that's something you can help me out with
MT5 account status 50 - 150 USD
I want a wordpress plugin where our traders can enter their mt5 demo account details to check their equity base trailing drawdown. Once the result is loaded, it will indicate if they breach the account by exceeding certain drawdown % and also indicate how many scalping orders were taken. The program should be able to perform 100 task per minute
Propfirm EA 30 - 2000 USD
I am currently looking to purchase a ready-made MT5 Expert Advisor designed specifically for prop firm trading. Requirements: Strategy must be safe for prop firm rules Maximum daily drawdown: below 4% Maximum overall drawdown: below 8% Target performance: 10% monthly return No martingale or high-risk grid strategies Must be able to run consistently on MT5 Purchase Conditions: I will require full source code (.mq5)
Profitable Expert Advisor 150 - 1500 USD
I need a profitable ea have programmed already . Real profit on real account not fail on real due to recote & Slippage 1-send me (demo ) 1 week at least 2-after testing & approved 3-buy it from you (Max budget $1500) The price can be increased if EA is very profitable
Hello, Please read the full specification before applying. This project is NOT about building an EA from scratch. I already have a fully working MT5 Expert Advisor. The EA already includes a dashboard, risk management, and some protection systems, but it needs a few more features . So I need an experienced MQL5 developer to modify my existing MT5 EA by replacing the current entry logic with a new breakout strategy
Copying third party from telegram. I have quite a number of them There is many different of them, I will consolidate all of them and send you Usually is a price range, so when hit the range will trigger Option for both fix or scale with equity I would like to have both, option to choose to follow the SL/TP signal provided or not This copier will trigger my DCA bot function. So don’t need set max position limit and

プロジェクト情報

予算
30+ USD

依頼者

(14)
出された注文51
裁定取引数0