Lavoro terminato
Tempo di esecuzione 1 giorno
Specifiche
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)
Con risposta
1
Valutazioni
Progetti
283
46%
Arbitraggio
27
59%
/
37%
In ritardo
36
13%
Gratuito
2
Valutazioni
Progetti
23
9%
Arbitraggio
8
25%
/
38%
In ritardo
1
4%
Occupato
3
Valutazioni
Progetti
2
0%
Arbitraggio
1
0%
/
100%
In ritardo
0
Gratuito
Pubblicati: 2 codici
4
Valutazioni
Progetti
89
28%
Arbitraggio
24
13%
/
58%
In ritardo
7
8%
In elaborazione
5
Valutazioni
Progetti
0
0%
Arbitraggio
1
0%
/
100%
In ritardo
0
Gratuito
6
Valutazioni
Progetti
633
54%
Arbitraggio
32
53%
/
22%
In ritardo
6
1%
Caricato
7
Valutazioni
Progetti
977
74%
Arbitraggio
27
19%
/
67%
In ritardo
101
10%
Gratuito
Pubblicati: 1 articolo, 6 codici
8
Valutazioni
Progetti
5
40%
Arbitraggio
1
0%
/
0%
In ritardo
0
Gratuito
9
Valutazioni
Progetti
38
21%
Arbitraggio
5
0%
/
60%
In ritardo
0
Gratuito
10
Valutazioni
Progetti
57
18%
Arbitraggio
6
33%
/
17%
In ritardo
1
2%
Gratuito
Pubblicati: 2 codici
11
Valutazioni
Progetti
1
100%
Arbitraggio
0
In ritardo
0
Gratuito
12
Valutazioni
Progetti
559
35%
Arbitraggio
80
31%
/
44%
In ritardo
203
36%
Gratuito
13
Valutazioni
Progetti
4
25%
Arbitraggio
1
0%
/
100%
In ritardo
0
Gratuito
14
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
15
Valutazioni
Progetti
369
33%
Arbitraggio
34
41%
/
29%
In ritardo
108
29%
Gratuito
Pubblicati: 1 codice
16
Valutazioni
Progetti
25
52%
Arbitraggio
3
0%
/
100%
In ritardo
2
8%
Gratuito
Ordini simili
No complain
100 - 150 USD
Liquid Gold EA is a volatility-based trading system designed to identify strong price impulses and respond with precision using pending order execution The system monitors rapid market movements and positions trades only when clear momentum is established, combining dynamic order adjustment with structured risk control and trailing protection It integrates features such as adaptive lot sizing, spread filtering, daily
I am looking for an experienced developer in MQL5 to build a fully AI and automated trading bot (Expert Advisor) for MetaTrader 5. The EA will trade XAUUSD only and will be based purely on price action and Smart Money Concepts (SMC), specifically focusing on liquidity sweeps, market structure shifts (MSS/CHoCH), and wick rejection entries at key points of interest (POIs). The system must follow a strict rule: no
I want to develop a highly advanced professional trading indicator for XAUUSD (Gold) that works on MT4 / MT5 or TradingView. It should function as a semi-complete trading system based on Smart Money Concepts (SMC) and Liquidity Model. The indicator must be extremely accurate and generate only a few but high-quality signals (High Probability Trades only). 🔷 Core Concept: The system analyzes market behavior based on
BSS Trading Robot
30 - 200 USD
*Subject: EA Requirements for Prop Firm Trading - Live MT5 + Investor Access Required* To apply, you must already have the EA running live on an MT5 account connected to the market. You will need to provide the investor password and login for me to trace and monitor the account. *EA Requirements:* 1. *One trade at a time only* - EA must not open a new position if one is already running. Use `OrdersTotal() == 0` check
SMC DEVIL EYE
1500+ USD
DEVIL EYE SMC – Gold Trading Expert Advisor DEVIL EYE SMC is a precision-based Smart Money Concepts trading robot designed specifically for XAUUSD (Gold), built around institutional market structure and liquidity principles. This EA analyzes price action using advanced SMC logic including: • Break of Structure (BOS) • Liquidity Sweeps • Fair Value Gaps (FVG) • Supply / Demand Zones • Order Blocks Confirmation •
This robot is going to help me to assist my parents about their needs, it also going help me build a house and purchase my own car. Additionally, it is going to play an essential role upon my life as I will not struggle with the foods and transport for taking the trips
I am looking for a serious marketer with experience in promoting trading tools or Expert Advisors for MetaTrader 5. The product is an automated MT5 trading EA focused on Gold trading, with risk-management tools and trading filters designed to improve trade quality. For credibility, I will provide: An Investor Account for a live/demo account where the EA has been running for a while Backtest reports for the EA Clear
Point/Percentage Reversal ZigZag
90 - 999999 USD
i want to study how to trading i want to be a rich man in the world i want to help people in my town i want to give some money for the charity
Gold Precision Pro
30 - 100 USD
I want the indicator to be built professionally and carefully because the strategy is strong, but it requires advanced and clean programming. The indicator should work mainly on XAUUSD M15 and should generate more than 2 high-quality signals per day, ideally around 2 to 4 signals maximum, without flooding the chart. The logic must not be random. Each signal must be based on: HTF Bias from H1/H4, Liquidity Sweep
Darwish
30 - 100 USD
Hey, I want you to build an AI bot for buying and selling. I really like the structure and design of the information I sent you, so please use that as the base. I need the same logic and flow, but make sure it’s unique to me. The bot should handle buying and selling, and I want to control access most users get limited access, like one day, but I need a way to grant full, unlimited access if I choose. Don’t worry just
Informazioni sul progetto
Budget
30+ USD
Scadenze
da 1 a 20 giorno(i)