指定
//+------------------------------------------------------------------+
//| ScalperEA.mq5 |
//+------------------------------------------------------------------+
#property copyright "Template"
#property version "1.00"
#property strict
input int FastEMA = 8;
input int SlowEMA = 21;
input int AtrPeriod = 14;
input double StopAtrMult = 1.2;
input double TpAtrMult = 1.0;
input double RiskPercent = 0.5; // percent account risk per trade
input int Magic = 123456;
input double Lots = 0.01;
double EMAFast[], EMASlow[], ATRArr[];
int OnInit()
{
SetIndexBuffer(0, EMAFast);
SetIndexBuffer(1, EMASlow);
// nothing to set for ATR; we'll compute using iATR
return(INIT_SUCCEEDED);
}
void OnTick()
{
// get last two closed candles
int shift = 1; // last closed bar
double fast_prev = iMA(NULL, PERIOD_CURRENT, FastEMA, 0, MODE_EMA, PRICE_CLOSE, shift+1);
double fast_last = iMA(NULL, PERIOD_CURRENT, FastEMA, 0, MODE_EMA, PRICE_CLOSE, shift);
double slow_prev = iMA(NULL, PERIOD_CURRENT, SlowEMA, 0, MODE_EMA, PRICE_CLOSE, shift+1);
double slow_last = iMA(NULL, PERIOD_CURRENT, SlowEMA, 0, MODE_EMA, PRICE_CLOSE, shift);
double atr = iATR(NULL, PERIOD_CURRENT, AtrPeriod, shift);
if (atr <= 0) return;
// simple crossover signals
if (fast_prev <= slow_prev && fast_last > slow_last)
{
// buy signal
double entry = SymbolInfoDouble(_Symbol, SYMBOL_BID); // or use Ask for buy market entry
double stop = entry - StopAtrMult * atr;
double tp = entry + TpAtrMult * atr;
double lots = Lots;
// optionally compute lots from RiskPercent and stop distance
// place market buy
trade_buy(lots, stop, tp);
}
else if (fast_prev >= slow_prev && fast_last < slow_last)
{
// sell signal
double entry = SymbolInfoDouble(_Symbol, SYMBOL_ASK);
double stop = entry + StopAtrMult * atr;
double tp = entry - TpAtrMult * atr;
trade_sell(Lots, stop, tp);
}
}
void trade_buy(double lots, double stop, double tp)
{
MqlTradeRequest req;
MqlTradeResult res;
ZeroMemory(req);
req.action = TRADE_ACTION_DEAL;
req.symbol = _Symbol;
req.volume = lots;
req.type = ORDER_TYPE_BUY;
req.price = SymbolInfoDouble(_Symbol, SYMBOL_ASK);
req.sl = stop;
req.tp = tp;
req.deviation = 5;
req.magic = Magic;
OrderSend(req, res);
}
void trade_sell(double lots, double stop, double tp)
{
MqlTradeRequest req;
MqlTradeResult res;
ZeroMemory(req);
req.action = TRADE_ACTION_DEAL;
req.symbol = _Symbol;
req.volume = lots;
req.type = ORDER_TYPE_SELL;
req.price = SymbolInfoDouble(_Symbol, SYMBOL_BID);
req.sl = stop;
req.tp = tp;
req.deviation = 5;
req.magic = Magic;
OrderSend(req, res);
}
応答済み
1
評価
プロジェクト
987
47%
仲裁
33
36%
/
36%
期限切れ
99
10%
取り込み中
パブリッシュした人: 6 codes
2
評価
プロジェクト
168
24%
仲裁
23
9%
/
78%
期限切れ
16
10%
仕事中
3
評価
プロジェクト
0
0%
仲裁
2
0%
/
100%
期限切れ
0
暇
4
評価
プロジェクト
401
27%
仲裁
40
40%
/
50%
期限切れ
1
0%
暇
5
評価
プロジェクト
1
0%
仲裁
1
0%
/
100%
期限切れ
0
暇
6
評価
プロジェクト
8
0%
仲裁
2
0%
/
50%
期限切れ
1
13%
仕事中
7
評価
プロジェクト
2
0%
仲裁
4
25%
/
50%
期限切れ
1
50%
暇
8
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
9
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
10
評価
プロジェクト
35
34%
仲裁
5
0%
/
80%
期限切れ
0
仕事中
パブリッシュした人: 2 codes
11
評価
プロジェクト
262
30%
仲裁
0
期限切れ
3
1%
暇
パブリッシュした人: 2 codes
12
評価
プロジェクト
0
0%
仲裁
1
0%
/
100%
期限切れ
0
暇
13
評価
プロジェクト
3
33%
仲裁
2
0%
/
100%
期限切れ
0
暇
14
評価
プロジェクト
16
13%
仲裁
4
50%
/
25%
期限切れ
4
25%
取り込み中
15
評価
プロジェクト
0
0%
仲裁
5
0%
/
80%
期限切れ
0
暇
16
評価
プロジェクト
168
39%
仲裁
10
40%
/
0%
期限切れ
29
17%
取り込み中
17
評価
プロジェクト
8
13%
仲裁
3
0%
/
33%
期限切れ
2
25%
暇
パブリッシュした人: 1 code
18
評価
プロジェクト
8
0%
仲裁
3
33%
/
67%
期限切れ
4
50%
暇
19
評価
プロジェクト
1
100%
仲裁
3
0%
/
100%
期限切れ
0
暇
20
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
21
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
暇
22
評価
プロジェクト
33
61%
仲裁
1
100%
/
0%
期限切れ
1
3%
暇
パブリッシュした人: 5 codes
類似した注文
🔥 Overview Gold Visual Trendline Smart DCA EA is a powerful automated trading system designed specifically for XAUUSD on M1 timeframe . It combines multiple trading concepts into one intelligent system: Dynamic Support & Resistance Automatic trendline detection Candlestick pattern recognition Multi-timeframe trend prediction Smart DCA recovery strategy This EA does not trade randomly — it analyzes market structure
Hola, estoy buscando un desarrollador MQL5 con experiencia real en trading algorítmico. Necesito un EA para XAUUSD con: Control de Drawdown filtro de mercado (tendencia vs rango) gestión de riesgo dinámica optimización para sesiones específicas Antes de avanzar quisiera saber: ¿Qué experiencia tienes con EAs en MT5? ¿Has trabajado con estrategias de oro (XAUUSD)? ¿Cómo gestionas el drawdown en un bot? ¿Puedes mostrar
There is a programming god without EA here. I want to find someone to make an EA to operate gold and silver. There is a model, but it can't run. So I want to find someone to make professional improvements to make my EA run. If you are interested, you can WECHAT: 15113958263. Please note EA when adding friends
Robots in C++ (cAlgo trading platform)
30 - 80 USD
Iam seeking for a good trade robot/indicator debugging developer to finalize and close profits for me,in both my exneas blocker and MT5,for expert advisor for trading both gold xausd and sliver xagusd,l really want a perfect robot that can herence and risk management principles,not to leave out am a beginner
Development of Advanced MT5 Expert Advisor (Epic Fury)
100 - 200 USD
Overview I am seeking a high-level MQL5 developer to develop and finalize a professional-grade MetaTrader 5 Expert Advisor (EA) for trading XAUUSD (Gold) . This is not a beginner project — the EA requires structured logic, efficient coding, and strict adherence to risk management principles. Strategy Summary The EA is based on a multi-indicator confluence system combining: Parabolic SAR → trend direction MACD →
Title: SEEKING: Proven SMC/Order Block EA for XAUUSD – Live Track Record Required (<5% Max DD) Job/Request Description: I am looking to acquire or license a high-performance, fully automated Expert Advisor (EA) specifically optimized for XAUUSD (Gold) . The strategy must be strictly based on Smart Money Concepts (SMC) , utilizing Order Blocks, Liquidity sweeps, and Market Structure Shifts (MSS). Technical
A SPECIFICATION: NESTED MULTI-TIMEFRAME MOMENTUM (NMTM) 1. CORE OBJECTIVE The EA is designed to identify institutional Supply and Demand zones on the H4 timeframe that are "nested" within Daily (D1) zones. It filters for high- momentum "Leg-Out" moves and only trades in the direction of the Daily trend. 2. PHASE 1: TREND & CONTEXT FILTERS (DAILY) The EA must first confirm the Daily bias. No H4 zones are valid if they
I already have a fully developed MT5 Expert Advisor with all required prop firm features, including: Risk management Daily loss & max drawdown limits Spread & slippage filters News filter Trade management system The EA structure is complete. 👉 What I need is a professional developer to replace ONLY the entry logic with a high-quality, rule-based trading strategy. 🚨 STRICT REQUIREMENT (READ CAREFULLY): I am NOT
I need an experienced developer to carry out an indicator and trading robot using the following; moving averages risk ( take profit and stop loss) and maximum drawdown limits heiken ashi confirmation. trendline breakout if possible The developer will test this on a demo account that I will provide before conclusion as I don’t want anyone to waste my time trying to use chartgpt trial and error. If you can do the
Looking to buy an EA which is good, profitable and takes many trades, good for IB broker comissions, Any strategy or martingale is fine, send me a demo license file, I will backtest and purchase immediately if my team like it
プロジェクト情報
予算
30 - 500 USD