명시

# Project Requirements – Sierra Chart to MT5 Integrated Alerts

*Scope:*  
The project must be a *fully integrated system* including both:  
1. *Sierra Chart ACSIL sender* – writes alerts to JSON.  
2. *MT5 EA (Listener)* – reads JSON alerts and executes trades in MT5.  

The system must handle alerts *from Sierra Chart to MT5 execution* completely, not just file sending.

*Duplicate Alert Detection:*  
- Use *timestamp* for each alert.  
- Only *one trade per alert at a different time*.  

*JSON Fields Required:*  
{
  "symbol": "...",
  "timeframe": "...",
  "direction": "...",
  "valid": true
}

*Trade Execution Settings (MT5 EA):*  
- *Loss:* in currency, manually set in inputs.  
  - Example: if the difference between entry and stop is 20 points → loss = $100.  
- *Take Profit (TP):* from 1 to 5 (or 1 to 3), manually configurable.  
- *Entry:* at the close of the alert candle.  
- *Stop Placement:*  
  - Buy → below the alert candle  
  - Sell → above the alert candle  
- *News Filter:*  
  - Close all trades 5 minutes before news  
  - Accept new orders 5 minutes after news  
- *MT5 Symbol Suffix/Prefix:* Depends on broker. Currently, no suffix/prefix.  

*Sierra Chart Performance:*  
- Ensure *Sierra Chart performance is not affected* during alerts sending.  

*MT5 EA Behavior:*  
- Receive JSON payload.  
- Execute trade *immediately if valid=true*.  
- Ignore alert if valid=false.  

*Development Deliverables:*  
1. *ACSIL source code (.cpp)*  
2. *MT5 EA source code (.mq5)*  
3. *MT5 executable (.ex5)*  

*Testing & Support:*  
- Testing and bug fixing are *free*.  
- Support must be provided *even after project completion*.  
- The developer *must provide a video demonstration* showing complete setup, installation, and running of the system.  
- If installation issues arise, the developer must *connect via AnyDesk* to fix problems directly.  

*Additional Requirements:*  
- The system must *read Alert Manager file periodically*.  
- Only detect *new alerts*.  
- The system should be *extendable* to allow additional JSON fields for MT5 trade execution in the future.








Hi
Trade Execution Settings (MT5 EA):**  
- *Loss:* in currency, manually set in inputs.  
  - Example: if the difference between entry and stop is 20 points → loss = $100.  
- *Take Profit (TP):* from 1 to 5 (or 1 to 3), manually configurable.  
- *Entry:* at the close of the alert candle.  
- *Stop Placement:*  
  - Buy → below the alert candle  
  - Sell → above the alert candle  
- *News Filter:*  
  - Close all trades 5 minutes before news  
  - Accept new orders 5 minutes after news  
JPG
IMG_20260608_170353_163.jpg
640.2 Kb
Such as Risking money is another example. 

 risk 100 $ 


manually configurable.  
- *Entry:* at the close of the alert candle.  
- *Stop Placement:*  
  - Buy → below the alert candle  
  - Sell → above the alert candle  

Loss:** in currency, manually set in inputs.  
  - Example: if the difference between entry and stop is 20 points → loss = $100.  

 Use TP3 only      true or false   
Use TP5  only       true or false 
Use TP7 only        true or false 
Use TP10 only      true or false  


Is this clear? 
Hi,
I need to implement a dynamic lot size calculation module in this MetaTrader 5 Expert Advisor (MQL5). The position size must not be fixed; instead, it should be calculated automatically for every trade based on a manually set dollar risk and the point distance between the entry price and the stop loss.
Here are the technical requirements and input parameters:


Risk_Amount_USD (input double): Default = 100.0 (The maximum amount in account currency I am willing to lose per trade).
Use_TP3_Only (input bool): Default = false
Use_TP5_Only (input bool): Default = false
Use_TP7_Only (input bool): Default = false
Use_TP10_Only (input bool): Default = false
(Note for Developer: Please ensure these TP inputs act as an exclusive radio-button logic in the OnTick() or OnInit() to avoid conflicts).
2. Entry and Stop Loss Logic
When an alert/signal is received for the Alert Candle:
Execution Time: Execute the market order immediately at the Close of the alert candle (EntryPrice = Candle\ Close).
Stop Loss Placement (SL_{price}):
For BUY: SL_{price} = Alert\ Candle\ Low
For SELL: SL_{price} = Alert\ Candle\ High
3. Dynamic Lot Size Calculation (MQL5)
Before sending the trade request via CInTrade or MqlTradeRequest, the EA must calculate the exact lot size based on the candle size.


ample Scenario:
Risk_Amount_USD = $100
Alert Candle closes, triggering a BUY.
EntryPrice (Close) = 1.1020, SL_{price} (Low) = 1.1000 \rightarrow Risk = 200 Points.
The EA must calculate the exact lot size so that if the trade hits the SL, the realized loss is exactly $100.

Final Trade Management Specification for the Developer
Hi,
Please implement the final Take Profit (TP) and Breakeven (BE) logic based on the user selection. Only one TP setting can be true at a time.
Here is how the EA must manage the trade for each specific input:

Important Rules for the Code:
Exclusive Inputs: If Use_TP3_Only is true, the EA should ignore or automatically set the other TP inputs to false to avoid conflicts.
Execution Flow: * For TP3: Open Trade \rightarrow Hits 3R Target \rightarrow Close Trade.
For TP5 / TP7 / TP10: Open Trade \rightarrow Hits 3R Level (Move SL to Entry) \rightarrow Hits Final Target (Close Trade).


Add this requirement for Alert Time Filtering:
"Please implement a strict Alert Time Filtering module for incoming signals from Sierra Chart. The EA should only process alerts and execute trades if the signal is received within a user-defined time window.
Please add these input parameters:
START_Time (input string): Default = "03:00" (HH:MM format, manually configured by the user).
END_Time (input string): Default = "04:00" (HH:MM format, manually configured by the user).
Execution Logic:
When an alert message is received from Sierra Chart, the EA must check the current time against the START_Time and END_Time window.
IF the alert arrives strictly between START_Time and END_Time \rightarrow The EA is allowed to calculate the lot size and execute the trade.
IF the alert arrives outside this designated window \rightarrow The EA must completely ignore the alert and take no action.
This is critical to ensure the EA only operates during the specific high-probability market hours I select."

 

Hi,
I need to implement a dynamic lot size calculation module in this MetaTrader 5 Expert Advisor (MQL5). The position size must not be fixed; instead, it should be calculated automatically for every trade based on a manually set dollar risk and the point distance between the entry price and the stop loss.
Here are the technical requirements and input parameters:


Risk_Amount_USD (input double): Default = 100.0 (The maximum amount in account currency I am willing to lose per trade).
Use_TP3_Only (input bool): Default = false
Use_TP5_Only (input bool): Default = false
Use_TP7_Only (input bool): Default = false
Use_TP10_Only (input bool): Default = false
(Note for Developer: Please ensure these TP inputs act as an exclusive radio-button logic in the OnTick() or OnInit() to avoid conflicts).
2. Entry and Stop Loss Logic
When an alert/signal is received for the Alert Candle:
Execution Time: Execute the market order immediately at the Close of the alert candle (EntryPrice = Candle\ Close).
Stop Loss Placement (SL_{price}):
For BUY: SL_{price} = Alert\ Candle\ Low
For SELL: SL_{price} = Alert\ Candle\ High
3. Dynamic Lot Size Calculation (MQL5)
Before sending the trade request via CInTrade or MqlTradeRequest, the EA must calculate the exact lot size based on the candle size.


ample Scenario:
Risk_Amount_USD = $100
Alert Candle closes, triggering a BUY.
EntryPrice (Close) = 1.1020, SL_{price} (Low) = 1.1000 \rightarrow Risk = 200 Points.
The EA must calculate the exact lot size so that if the trade hits the SL, the realized loss is exactly $100.

Final Trade Management Specification for the Developer
Hi,
Please implement the final Take Profit (TP) and Breakeven (BE) logic based on the user selection. Only one TP setting can be true at a time.
Here is how the EA must manage the trade for each specific input:

Important Rules for the Code:
Exclusive Inputs: If Use_TP3_Only is true, the EA should ignore or automatically set the other TP inputs to false to avoid conflicts.
Execution Flow: * For TP3: Open Trade \rightarrow Hits 3R Target \rightarrow Close Trade.
For TP5 / TP7 / TP10: Open Trade \rightarrow Hits 3R Level (Move SL to Entry) \rightarrow Hits Final Target (Close Trade).
Feature Requirement: Trade Notification System (WhatsApp & Telegram)
Condition:
The Expert Advisor (EA) must include a built-in notification system capable of sending real-time trade results and details (Opening, Closing, and Modifications) automatically via Webhooks/API to both WhatsApp and Telegram

Add this requirement for Alert Time Filtering:
"Please implement a strict Alert Time Filtering module for incoming signals from Sierra Chart. The EA should only process alerts and execute trades if the signal is received within a user-defined time window.
Please add these input parameters:
START_Time (input string): Default = "03:00" (HH:MM format, manually configured by the user).
END_Time (input string): Default = "04:00" (HH:MM format, manually configured by the user).
Execution Logic:
When an alert message is received from Sierra Chart, the EA must check the current time against the START_Time and END_Time window.
IF the alert arrives strictly between START_Time and END_Time \rightarrow The EA is allowed to calculate the lot size and execute the trade.
IF the alert arrives outside this designated window \rightarrow The EA must completely ignore the alert and take no action.
This is critical to ensure the EA only operates during the specific high-probability market hours I

응답함

1
개발자 1
등급
(279)
프로젝트
377
72%
중재
19
32% / 47%
기한 초과
15
4%
무료
게재됨: 15 코드
2
개발자 2
등급
(258)
프로젝트
323
30%
중재
34
26% / 65%
기한 초과
10
3%
작업중
3
개발자 3
등급
(8)
프로젝트
9
11%
중재
0
기한 초과
0
무료
4
개발자 4
등급
(545)
프로젝트
827
62%
중재
33
27% / 45%
기한 초과
23
3%
무료
게재됨: 1 코드
5
개발자 5
등급
(8)
프로젝트
8
0%
중재
2
50% / 0%
기한 초과
1
13%
작업중
6
개발자 6
등급
(28)
프로젝트
39
23%
중재
14
0% / 93%
기한 초과
4
10%
무료
7
개발자 7
등급
(163)
프로젝트
172
44%
중재
3
33% / 33%
기한 초과
1
1%
작업중
8
개발자 8
등급
(24)
프로젝트
31
19%
중재
4
50% / 25%
기한 초과
4
13%
무료
9
개발자 9
등급
(595)
프로젝트
686
33%
중재
42
45% / 45%
기한 초과
12
2%
바쁜
10
개발자 10
등급
(7)
프로젝트
10
10%
중재
4
50% / 0%
기한 초과
0
작업중
게재됨: 4 기고글, 33 코드
11
개발자 11
등급
(1)
프로젝트
1
0%
중재
1
0% / 0%
기한 초과
0
무료
12
개발자 12
등급
(258)
프로젝트
265
29%
중재
0
기한 초과
3
1%
무료
게재됨: 2 코드
13
개발자 13
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
14
개발자 14
등급
(48)
프로젝트
56
34%
중재
15
27% / 60%
기한 초과
1
2%
작업중
15
개발자 15
등급
(58)
프로젝트
90
43%
중재
4
0% / 100%
기한 초과
3
3%
작업중
16
개발자 16
등급
(43)
프로젝트
51
61%
중재
4
50% / 25%
기한 초과
0
작업중
17
개발자 17
등급
(25)
프로젝트
31
13%
중재
13
0% / 77%
기한 초과
9
29%
무료
18
개발자 18
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
19
개발자 19
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
20
개발자 20
등급
(40)
프로젝트
44
59%
중재
2
100% / 0%
기한 초과
1
2%
작업중
게재됨: 5 코드
비슷한 주문
The striker robot 30 - 2000 USD
I would like a trend and pullback strategy for the robot timeframe:15 minutes(m15) or 1 hour(h1) indicators:50 EMA (Exponential Moving Average)/200 EMA/RSI (14) BUY SET UP 1.Confirm The Trend .50 EMA must be above 200 EMA .Price must be above both EMAs 2.Wait for a pullback .Do not buy when the price shoots up. .Wait for the price to come back near the 50 EMA 3.Confirm entry .ENTER BUY WHEN: .A bullish candlestick
I need an Ai trading bot for Binance and BTC on MT5 that also uses order flow data. It should also make use of TSI- Temporal indicator sampling and also it should make use of fundamental analysis in the process of signal generation
I have a EA for XAUUSD which works awesome in sideways and trending market as well, capital requirement is only 2000USd and weekly profit is around 1500-2000 USD. I am using this bot from 3 months and getting continuous good result
Title: MT5 Forex Trading Robot Development I need a MetaTrader 5 (MT5) Expert Advisor (EA) for automated Forex trading. Requirements: 1. The robot must be fully automated and capable of opening and closing trades without manual intervention. 2. Compatible with MetaTrader 5 (MT5). 3. Adjustable lot size, Stop Loss, and Take Profit settings. 4. Built-in risk management based on account balance. 5. Ability to trade
ART 1: NUMBER OF TRADES ALLOWED IN ONE DIRECTION: Maximum number of trades in one direction = ------------------------------ ------------------------------ ------------------------------ -------------- par PART 2 PARTIAL CLOSURE OF STOPLOSS: Total STOPLOSS =------ Pips 1a: Percentage of Stoploss =--% 1b Percentage of Lot size =--% 2a: Percentage oe of Lot size =--% f Stoploss =--% 2b
MT5 Expert Advisor (EA) Acquisition Request – Proven XAUUSD Martingale / Grid EA I am looking to purchase a fully developed, actively traded, and proven MT5 Expert Advisor for XAUUSD (Gold) that uses Martingale, Grid, Averaging, Recovery, or Hybrid Recovery techniques. Mandatory Verification Requirement To be considered, please provide: - MT5 Investor Password (Read-Only Access) for verification - Account Number /
Looking to buy profitable MT4/MT5 Expert Advisors (EAs). Requirements: • Fully automated • 6+ months backtest • 100+ trades • No martingale or grid systems Send: • Backtest report • Max drawdown • Markets traded • Brief strategy summary Only original EAs developed by you. Long-term collaboration available
Live chart [ expert is not executing trades on xauusd ] , Deleting Existing Parameter not in use , Live Chart Adjustments Only , No Need to Change anything else , expert will be live testing Throughout
Prepare expert for xauusd live chart [ expert is not executing trades on xauusd ] . Deletion and cleaning code . Trailing Stop Rule to follow the given method . Live Chart Only
MT5 EA Developer for Structured ICT/SMC Market Logic Requirements Specification: I need an MT5 Expert Advisor only in MQL5. No indicator, no script, no DLL, and no external API. The EA must be built on a rule-based ICT/SMC-style framework with objective, backtestable logic. I am not looking for social-media-style ICT/SMC interpretation. I need a developer who can convert trading concepts into clear coding rules. The

프로젝트 정보

예산
100+ USD
기한
에서 1  5 일

고객

넣은 주문3
중재 수0