작업 종료됨
실행 시간 1 일
명시
Build a Session Breakout EA for MT5 (EURUSD) — EXACTLY as below. No changes to logic.
but make it work on all pairs
double slPips, tpPips;
if (AssetType == "Forex") { slPips = 20; tpPips = 60; }
if (AssetType == "GBPUSD") { slPips = 25; tpPips = 75; }
if (AssetType == "NAS100") { slPips = 30; tpPips = 90; }
if (AssetType == "US30") { slPips = 40; tpPips = 120; }
if (AssetType == "Gold") { slPips = 150; tpPips = 450; }
but optimize it for eurusd
================================================================
CORE STRATEGY
================================================================
- Trade ONLY at London Open: 08:00–08:05 UTC
- Breakout of Asian Session Range (00:00–07:59 UTC)
- Entry: 5M candle CLOSES outside Asian High/Low
- Volume Filter: Breakout candle volume > 2× 20-period average
- Risk: 0.5% of account per trade
- Option: Manual lot size override (input)
- SL: 20 pips beyond breakout level
- TP: 1:3 RR (60 pips target)
- Max 1 trade per day
- Skip: NFP, ECB Rate, FOMC, CPI, bank holidays
================================================================
TIME FILTER (BROKER TIME AUTO-DETECT)
================================================================
- Use TimeGMT() to detect broker offset
- Auto-calculate 08:00 UTC based on broker time
- Example: If broker is GMT+3 → trade 11:00–11:05 broker time
================================================================
INPUTS (User Can Change Only These)
================================================================
input double RiskPercent = 0.5; // % risk
input double FixedLotSize = 0.0; // 0 = use % risk, >0 = fixed lots
input int VolumeMultiplier = 2; // Fixed
input int SlippagePips = 3; // Max slippage
input bool UseNewsFilter = true; // Auto-skip news
input string MagicComment = "SBOv1";
================================================================
SESSION LOGIC
================================================================
// Reset at 00:00 UTC
if (TimeHour(TimeGMT()) == 0 && TimeMinute(TimeGMT()) == 0)
{
AsianHigh = -999; AsianLow = 999;
}
// Track Asian range (00:00–07:59 UTC)
if (TimeHour(TimeGMT()) >= 0 && TimeHour(TimeGMT()) < 8)
{
double h = iHigh(_Symbol, PERIOD_H1, 0);
double l = iLow(_Symbol, PERIOD_H1, 0);
if (h > AsianHigh) AsianHigh = h;
if (l < AsianLow) AsianLow = l;
}
// At 08:00 UTC → lock range
if (TimeHour(TimeGMT()) == 8 && TimeMinute(TimeGMT()) == 0)
FinalAsianHigh = AsianHigh; FinalAsianLow = AsianLow;
// Trade window: 08:00–08:05 UTC (broker time adjusted)
datetime brokerTime = TimeCurrent();
int brokerHour = TimeHour(brokerTime);
int brokerMin = TimeMinute(brokerTime);
int utcHour = TimeHour(TimeGMT());
if (utcHour == 8 && brokerMin >= 0 && brokerMin <= 5)
CheckBreakout();
================================================================
VOLUME FILTER
================================================================
double vol = iVolume(_Symbol, PERIOD_M5, 1);
double volAvg = iMA(_Symbol, PERIOD_M5, 20, 0, MODE_SMA, PRICE_VOLUME, 1);
if (vol <= volAvg * VolumeMultiplier) return;
================================================================
ENTRY LOGIC
================================================================
if (iClose(PERIOD_M5, 1) > FinalAsianHigh && iLow(PERIOD_M5, 1) <= FinalAsianHigh)
→ LONG
if (iClose(PERIOD_M5, 1) < FinalAsianLow && iHigh(PERIOD_M5, 1) >= FinalAsianLow)
→ SHORT
================================================================
RISK & POSITION SIZING
================================================================
double slPips = 20;
double lots;
if (FixedLotSize > 0)
lots = FixedLotSize;
else
{
double risk = AccountBalance() * RiskPercent / 100;
double pipValue = MarketInfo(_Symbol, MODE_TICKVALUE);
lots = NormalizeDouble(risk / (slPips * pipValue * 10), 2);
}
lots = MathMax(lots, 0.01);
================================================================
NEWS FILTER (BUILT-IN CALENDAR)
================================================================
- Use Forex Factory RSS or built-in MT5 calendar
- Skip if ANY high-impact event in next 2 hours:
→ NFP, ECB Interest Rate, FOMC, CPI (US/EU)
- Hardcode event names + auto-check
================================================================
TRADE MANAGEMENT
================================================================
- No trailing stop
- No partial close
- Max hold: 8 hours (auto-close at 16:00 UTC)
- If no fill by 08:05 UTC → cancel
- Close at TP or SL only
================================================================
SAFETY FEATURES
================================================================
- No trading on weekends
- No trading if spread > 2.0 pips (iSpread)
- No trading if equity < 50% of start balance
================================================================
DELIVERABLES
================================================================
1. .ex5 file
2. .mq5 source (fully commented)
3. PDF: 1-page user guide
4. CSV: Backtest 2015–2025 (1,026 trades)
응답함
1
등급
프로젝트
286
47%
중재
27
59%
/
37%
기한 초과
36
13%
무료
2
등급
프로젝트
28
7%
중재
9
33%
/
33%
기한 초과
1
4%
작업중
3
등급
프로젝트
2
0%
중재
1
0%
/
100%
기한 초과
0
무료
게재됨: 2 코드
4
등급
프로젝트
90
29%
중재
24
13%
/
58%
기한 초과
7
8%
작업중
5
등급
프로젝트
0
0%
중재
1
0%
/
100%
기한 초과
0
무료
6
등급
프로젝트
645
53%
중재
35
63%
/
20%
기한 초과
6
1%
로드됨
7
등급
프로젝트
977
74%
중재
27
19%
/
67%
기한 초과
100
10%
작업중
게재됨: 1 기고글, 6 코드
8
등급
프로젝트
5
40%
중재
1
0%
/
0%
기한 초과
0
무료
9
등급
프로젝트
38
21%
중재
5
0%
/
60%
기한 초과
0
무료
10
등급
프로젝트
59
20%
중재
7
29%
/
14%
기한 초과
1
2%
작업중
게재됨: 2 코드
11
등급
프로젝트
1
100%
중재
0
기한 초과
0
무료
12
등급
프로젝트
571
35%
중재
83
31%
/
45%
기한 초과
206
36%
작업중
13
등급
프로젝트
4
25%
중재
1
0%
/
100%
기한 초과
0
무료
14
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
15
등급
프로젝트
369
33%
중재
34
41%
/
29%
기한 초과
108
29%
무료
게재됨: 1 코드
16
등급
프로젝트
25
52%
중재
3
0%
/
100%
기한 초과
2
8%
무료
비슷한 주문
i have indicator for Trading View, also copy for NT, i need someone to improve and check the NT version (indicator is simple is volume density koncept)…. when i put same settings on TV version and NT version i have diffrerent results, but this can be because diffrent market data or fact that TV sending tick info in blocks , not tick by tick like NT8 on both. I(ndicator base on counting volume) so besied that is it
I need a developer who can write me a XML file for a dbot robot to trade any deriv option instruments and trading mode A market analyser is needed. Let it automatically scan the market and choose the instrument and with the best input parameters for a given trading mode and show the predicted win rate as shown in the videos below; https://vt.tiktok.com/ ZSb14aoAA/ https://vt.tiktok.com/ ZSb1bFBkA/
Title: MQL5 EA Developer Needed — EUR/USD 15M Scalping Robot (1:1 RR, Rule-Based) Platform: MetaTrader 5 (MQL5) Description: Looking for an experienced MQL5 developer to build a fully automated Expert Advisor for EUR/USD on the 15-minute timeframe. The strategy is a rule-based pullback scalp system with a fixed 1:1 risk/reward ratio, EMA-based trend filtering, session-time restrictions (London open + London/NY
Add Smart Early Exit Logic to Existing XAUUSD M15 EA
100 - 200 USD
I am looking for an experienced MQL5 developer to research, develop, and integrate a Smart Early Exit system into my existing XAUUSD EA. The EA is already fully functional. The objective of this job is not to redesign the strategy or modify the entry logic , but to improve how losing trades are managed. The Early Exit system should identify trades that are showing signs of genuine deterioration and close them before
Purpose Develop a transparent and conservative Expert Advisor for MetaTrader 5. Profit is not guaranteed; acceptance is based on correct implementation, risk controls and reproducible testing. 1. Platform and instruments - Native MQL5 Expert Advisor for MetaTrader 5. - Symbols: EURUSD and USDJPY. - Working timeframe: H1. Higher-timeframe trend filter: H4. - Must support standard broker symbol suffixes/prefixes and
Please may someone assist me with the indicator attached, it has a SERIOUS BUG issue in the sense that when I load it, and activate the template (attached as well) MT4 ALWAYS freezes and then eventually disconnects automatically, ALL THE TIME. It even gets worse to an extent that after disconnecting a number of times mt4 ends up not loading anymore, UNTIL I remove the indicator. Please I WILL NEED A DEMO (FOR A DAY)
I need a MetaTrader 5 (MT5) custom indicator specifically designed for fast scalping on the M5 timeframe for volatile assets like XAUUSD, US30, and BTCUSD. I am based in the UAE (GMT+4). The indicator must run silently in the background and send Mobile Push Notifications and Pop-Up Alerts ONLY. Absolutely NO lines, boxes, objects, or graphic panels should be drawn or left on the trading chart. Core Requirements: 1
Ola, Tenho um Bot mas parou de funcionar, preciso de programador que desenvolva o mesmo configurações. Envio o antigo bot para pegar as configurações e realizar outro modelo. Hello, I have a bot that has stopped working, and I need a programmer to develop one with the same settings. I can send the old bot so you can extract the settings and build a new version
Hello Developers, I am looking for an experienced MQL5 developer to build a custom Expert Advisor (EA) for MetaTrader 5 (MT5) based on ICT (Inner Circle Trader) concepts and Support/Resistance price action. Key Features & Strategy Requirements: 1. Market Structure & Price Action: - Identify Support and Resistance zones automatically. - Detect Break of Structure (BOS) and Change of Character (CHoCH). - Identify
I am looking for an experienced MQL5 developer to build a fully automated MT5 Expert Advisor for XAUUSD. The trading rules are already defined. I need the developer to implement them accurately in MQL5, not redesign the strategy. Main requirements: XAUUSD Multi-timeframe logic: H1 direction, M15 setup, M5 entry Entry only after candle-close confirmation No repainting / closed-bar logic Configurable Stop Loss and Take
프로젝트 정보
예산
30+ USD
기한
에서 1 로 20 일