Техническое задание
| 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
Оценка
Проекты
69
35%
Арбитраж
4
25%
/
75%
Просрочено
0
Свободен
2
Оценка
Проекты
22
9%
Арбитраж
6
33%
/
50%
Просрочено
1
5%
Работает
3
Оценка
Проекты
35
23%
Арбитраж
4
0%
/
50%
Просрочено
2
6%
Работает
4
Оценка
Проекты
6
0%
Арбитраж
0
Просрочено
3
50%
Работает
5
Оценка
Проекты
4
0%
Арбитраж
1
100%
/
0%
Просрочено
1
25%
Работает
6
Оценка
Проекты
555
35%
Арбитраж
79
32%
/
42%
Просрочено
201
36%
Работает
7
Оценка
Проекты
1
0%
Арбитраж
0
Просрочено
0
Свободен
8
Оценка
Проекты
257
53%
Арбитраж
16
50%
/
38%
Просрочено
83
32%
Свободен
9
Оценка
Проекты
32
63%
Арбитраж
1
0%
/
0%
Просрочено
1
3%
Работает
Опубликовал: 5 примеров
10
Оценка
Проекты
19
42%
Арбитраж
6
0%
/
50%
Просрочено
3
16%
Работает
11
Оценка
Проекты
5
0%
Арбитраж
1
0%
/
100%
Просрочено
1
20%
Свободен
12
Оценка
Проекты
259
30%
Арбитраж
0
Просрочено
3
1%
Свободен
Опубликовал: 2 примера
13
Оценка
Проекты
13
8%
Арбитраж
3
33%
/
67%
Просрочено
1
8%
Свободен
14
Оценка
Проекты
39
23%
Арбитраж
15
0%
/
87%
Просрочено
4
10%
Работает
15
Оценка
Проекты
7
57%
Арбитраж
1
0%
/
100%
Просрочено
1
14%
Работает
16
Оценка
Проекты
0
0%
Арбитраж
0
Просрочено
0
Свободен
Похожие заказы
Product Requirements Document (PRD) Project Title: Liquidity Sniper Semi-EA (Fibonacci & SMC Based) Platform: MetaTrader 5 (MQL5) Target Asset: XAUUSD (High Volatility) / M5 Timeframe 1. EA Operating Concept (Semi-Automated) Human-Machine Collaboration: The trader manually draws a standard Fibonacci Retracement object on the M15 chart to define the market structure (setting the 1.0 and 0.0 anchor points). EA's Role
Looking for a good EA
30 - 100 USD
Hello guys,i am looking for a good already established ea,that doesnt blow account,only give 5 percent per month with maximum 10 percent drowdown,I need prove,i need to backtest by myself,after that i select the developer
Short Description: I am seeking an experienced MQL4 developer to build a high-frequency Asymmetric Salami Grid EA . This is a sophisticated volatility harvester, not a basic martingale. Key Features to Implement: Virtual Grid Execution: No pending orders; all logic handled in-memory via OnTick . Asymmetric Lot Sizing: Trend-side degression vs. Counter-trend progression . Salami Partial Liquidation: XX% of profits
MT4 Expert Advisor convertion to MT5 Expert Advisor
30 - 100 USD
I would like to convert my MT4 EA to MT5 EA, it should have all the default indicators in it but can remove the custom indicators, it should have the same logic as MT4 EA no chnages at all in the logic
Description: I am looking for an experienced MQL4 developer to create an Expert Advisor (EA) for trading DAX (GER40) based on the confluence of two indicators. I already have both indicators in .ex4/.mq4 format. Key Requirements: Indicators: Use "PivotPoints-All-In-One" and "shved_supply_and_demand" (via iCustom). Entry Logic: Open BUY/SELL only when a Pivot level (PP, S1, R1 etc.) is located inside a "Verified" or
An autommated and manual forex trading bot
30 - 100 USD
Hello i need an expert advisor for meta trader 5 .Strategy: Trend on H1 using EMA 50. ENTRY on M5 when the price pulls back to EMA 21 or VWAP. BUY after bullish candle confirmation , SELL after bearish candle conformation.STOP LOSS 5- 8 pips ,TAKE PROFIT 10 - 15 pips.include spread filter , no trade on major news and a maximum of 3 trades per day
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
Информация о проекте
Бюджет
30+ USD