工作已完成
执行时间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
等级
项目
281
46%
仲裁
27
59%
/
37%
逾期
36
13%
空闲
2
等级
项目
22
9%
仲裁
5
40%
/
40%
逾期
1
5%
已载入
3
等级
项目
2
0%
仲裁
1
0%
/
100%
逾期
0
空闲
发布者: 2 代码
4
等级
项目
84
26%
仲裁
24
13%
/
58%
逾期
7
8%
已载入
5
等级
项目
0
0%
仲裁
1
0%
/
100%
逾期
0
空闲
6
等级
项目
623
54%
仲裁
30
53%
/
23%
逾期
6
1%
繁忙
7
等级
项目
963
74%
仲裁
27
19%
/
67%
逾期
100
10%
繁忙
发布者: 1 文章, 6 代码
8
等级
项目
5
40%
仲裁
1
0%
/
0%
逾期
0
空闲
9
等级
项目
38
21%
仲裁
5
0%
/
60%
逾期
0
空闲
10
等级
项目
57
18%
仲裁
6
33%
/
17%
逾期
1
2%
空闲
发布者: 2 代码
11
等级
项目
1
100%
仲裁
0
逾期
0
空闲
12
等级
项目
550
35%
仲裁
79
32%
/
42%
逾期
198
36%
已载入
13
等级
项目
4
25%
仲裁
1
0%
/
100%
逾期
0
空闲
14
等级
项目
0
0%
仲裁
0
逾期
0
空闲
15
等级
项目
362
32%
仲裁
34
41%
/
29%
逾期
108
30%
空闲
发布者: 1 代码
16
等级
项目
25
52%
仲裁
3
0%
/
100%
逾期
2
8%
空闲
相似订单
Automated trading
70 - 100 USD
Automated trading board that runs 24 x 7 on cryptocurrencies/Forex and as well as copy with all the integrated, etc., along with profit and having no boundary of a minimum investment. I want fully executable file, fully customizable robot not a demo
I have an existing MT5 EA and I am sharing the exact behaviour settings below. I need a NEW custom MT5 Expert Advisor that behaves the SAME WAY as these settings. Platform: MetaTrader 5 Symbol: Gold (XAUUSD) Timeframe: M5 (Trading_TF = 0 means current chart) ======================== INDICATOR & TRADE MODE ======================== - Trade Mode = 2 (both Buy & Sell) - Trading timeframe = Current chart (M5)
For a buy case, ea will set buy stop order at the high of the current 4H candle, if the close of the current 4h candle is higher than the open and if the close is less than the high of the 4H candle , then ea will set a buy stop at the high of the current 4h candle. Reverse of this is the sell case. , - -- sell SL to 1800point for gold pair only, set 4500 point for TP, --- , BE the SL to 50points when price moved
//+------------------------------------------------------------------+ //| INDICES SCALPING BOT | //+------------------------------------------------------------------+ #property strict input double RiskPercent = 4.0; input int EMAtrend = 50; input int EMAPullback = 20; input int RSIPeriod = 14; input double ATRMultiplierSL = 3.0; input double ATRMultiplierTP = 2.5; double LotSize(double
Profitable GOLD EA BOT
30+ USD
I am looking for a bot that has been created and tested and confirmed profitable in a live market for Gold. The bot must be profitable and be verifiable on real account and have a low drawdown. The developer will send a demo of the EA which I can test for myself. I am looking for more of an experienced developer. Please no EA on demo account
Development Request – AI Precision Enhancement
30 - 125 USD
📌 Development Request – AI Precision Enhancement I would like to clarify my request clearly and precisely. The current trading strategy is strong, stable, and effective , and I do not want to modify or replace the core strategy logic in any way . The goal is only to enhance entry and exit precision , not to redesign the system. ✅ Scope of Work (Required) Please keep the existing strategy exactly as it is , and add
Build Alpha - Strategy Factory Setup
100 - 300 USD
Hi, I’m looking for someone with real Build Alpha experience to help set up an index-trading ruleset inside Build Alpha. Important: This work cannot be done without full access to Build Alpha . You must already own a Build Alpha licence and actively use the platform. Please do not apply if you do not currently have Build Alpha. What needs to be set up in Build Alpha 1. Session and Time Rules • Fixed GMT trading
Oluwaleye Blessing Olumide
30+ USD
We're looking for a highly motivated and detail-oriented individual to fill a key position in our team. The successful candidate will be responsible for driving projects forward, analyzing complex data, and collaborating with cross-functional teams to achieve business objectives. The role requires exceptional problem-solving skills, effective communication, and adaptability in a fast-paced environment. If you're a
EA DEVELOPMENT
50+ USD
Hello, I’m interested in developing an Expert Advisor (EA). I will send you the details and examples of the type of EA I need. Please log in and review them so you can understand my requirements
An Expert Advisor (EA) robot that uses market movement-based indicators is an automated program designed for platforms like MetaTrader 4 or 5 (MT4/MT5) that monitors price fluctuations and triggers trades based on predefined technical rules. These robots, often used for trend following, scalping, or breakout strategies, analyze price action, moving averages, or volatility to automatically enter and exit trades
项目信息
预算
30+ USD
截止日期
从 1 到 20 天