I need both New EA MT4/MT5

MQL5 Uzman Danışmanlar

İş Gereklilikleri

//+------------------------------------------------------------------+
//| Expert Advisor: Gold AI Scalping Bot (M1/M5 MA Crossover)       |
//+------------------------------------------------------------------+
#property copyright "OpenAI"
#property version   "1.01"
#property strict

input string symbol = "XAUUSD";
input ENUM_TIMEFRAMES timeframe = PERIOD_M1; // Change to PERIOD_M5 if needed
input int fastMA = 5;
input int slowMA = 20;
input double lotSize = 0.1;
input int stopLoss = 100;    // in points (e.g., 10 pips)
input int takeProfit = 150;  // in points (e.g., 15 pips)
input int magicNumber = 777777;

double maFastPrev, maFastCurr;
double maSlowPrev, maSlowCurr;

//+------------------------------------------------------------------+
//| Expert initialization                                            |
//+------------------------------------------------------------------+
int OnInit()
  {
   Print("Gold AI Scalping Bot initialized on ", EnumToString(timeframe));
   return(INIT_SUCCEEDED);
  }

//+------------------------------------------------------------------+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick()
  {
   if (Symbol() != symbol) return;
   if (PositionsTotal() > 0) return; // Avoid multiple trades

   // MA values
   maFastPrev = iMA(symbol, timeframe, fastMA, 0, MODE_EMA, PRICE_CLOSE, 1);
   maFastCurr = iMA(symbol, timeframe, fastMA, 0, MODE_EMA, PRICE_CLOSE, 0);
   maSlowPrev = iMA(symbol, timeframe, slowMA, 0, MODE_EMA, PRICE_CLOSE, 1);
   maSlowCurr = iMA(symbol, timeframe, slowMA, 0, MODE_EMA, PRICE_CLOSE, 0);

   // Crossover detection
   if (maFastPrev < maSlowPrev && maFastCurr > maSlowCurr)
     {
      // BUY signal
      OpenTrade(ORDER_TYPE_BUY);
     }
   else if (maFastPrev > maSlowPrev && maFastCurr < maSlowCurr)
     {
      // SELL signal
      OpenTrade(ORDER_TYPE_SELL);
     }
  }

//+------------------------------------------------------------------+
//| Trade execution                                                  |
//+------------------------------------------------------------------+
void OpenTrade(ENUM_ORDER_TYPE type)
  {
   double price = (type == ORDER_TYPE_BUY) ? SymbolInfoDouble(symbol, SYMBOL_ASK)
                                           : SymbolInfoDouble(symbol, SYMBOL_BID);

   double sl = (type == ORDER_TYPE_BUY) ? price - stopLoss * _Point
                                        : price + stopLoss * _Point;
   double tp = (type == ORDER_TYPE_BUY) ? price + takeProfit * _Point
                                        : price - takeProfit * _Point;

   MqlTradeRequest request;
   MqlTradeResult result;
   ZeroMemory(request);

   request.action = TRADE_ACTION_DEAL;
   request.symbol = symbol;
   request.volume = lotSize;
   request.type = type;
   request.price = NormalizeDouble(price, _Digits);
   request.sl = NormalizeDouble(sl, _Digits);
   request.tp = NormalizeDouble(tp, _Digits);
   request.magic = magicNumber;
   request.deviation = 10;
   request.type_filling = ORDER_FILLING_IOC;

   if (!OrderSend(request, result))
     {
      Print("Trade failed: ", result.retcode);
     }
   else
     {
      Print("Trade opened: ", (type == ORDER_TYPE_BUY ? "BUY" : "SELL"));
     }
  }

Yanıtlandı

1
Geliştirici 1
Derecelendirme
(2246)
Projeler
2833
62%
Arabuluculuk
118
46% / 25%
Süresi dolmuş
428
15%
Çalışıyor
2
Geliştirici 2
Derecelendirme
(7)
Projeler
9
22%
Arabuluculuk
0
Süresi dolmuş
0
Yüklendi
3
Geliştirici 3
Derecelendirme
(515)
Projeler
588
38%
Arabuluculuk
2
100% / 0%
Süresi dolmuş
1
0%
Çalışıyor
Yayınlandı: 9 kod
4
Geliştirici 4
Derecelendirme
(5)
Projeler
4
25%
Arabuluculuk
1
0% / 100%
Süresi dolmuş
0
Serbest
5
Geliştirici 5
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
6
Geliştirici 6
Derecelendirme
(1)
Projeler
0
0%
Arabuluculuk
1
0% / 0%
Süresi dolmuş
0
Serbest
7
Geliştirici 7
Derecelendirme
(254)
Projeler
375
25%
Arabuluculuk
22
59% / 23%
Süresi dolmuş
1
0%
Meşgul
8
Geliştirici 8
Derecelendirme
(1)
Projeler
1
100%
Arabuluculuk
1
0% / 0%
Süresi dolmuş
0
Çalışıyor
9
Geliştirici 9
Derecelendirme
(1)
Projeler
1
0%
Arabuluculuk
1
0% / 0%
Süresi dolmuş
0
Çalışıyor
10
Geliştirici 10
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
11
Geliştirici 11
Derecelendirme
(50)
Projeler
73
21%
Arabuluculuk
11
18% / 27%
Süresi dolmuş
6
8%
Çalışıyor
12
Geliştirici 12
Derecelendirme
(164)
Projeler
212
20%
Arabuluculuk
17
47% / 18%
Süresi dolmuş
0
Çalışıyor
13
Geliştirici 13
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
14
Geliştirici 14
Derecelendirme
(236)
Projeler
242
31%
Arabuluculuk
0
Süresi dolmuş
3
1%
Serbest
Yayınlandı: 2 kod
15
Geliştirici 15
Derecelendirme
(461)
Projeler
906
76%
Arabuluculuk
25
16% / 68%
Süresi dolmuş
99
11%
Çalışıyor
Yayınlandı: 1 makale, 6 kod
16
Geliştirici 16
Derecelendirme
(414)
Projeler
655
33%
Arabuluculuk
31
74% / 6%
Süresi dolmuş
20
3%
Serbest
17
Geliştirici 17
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
18
Geliştirici 18
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
19
Geliştirici 19
Derecelendirme
(11)
Projeler
11
18%
Arabuluculuk
1
0% / 0%
Süresi dolmuş
1
9%
Serbest
20
Geliştirici 20
Derecelendirme
(6)
Projeler
6
17%
Arabuluculuk
2
0% / 0%
Süresi dolmuş
1
17%
Yüklendi
21
Geliştirici 21
Derecelendirme
(4)
Projeler
2
0%
Arabuluculuk
1
0% / 0%
Süresi dolmuş
1
50%
Çalışıyor
22
Geliştirici 22
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
23
Geliştirici 23
Derecelendirme
(229)
Projeler
268
77%
Arabuluculuk
10
80% / 0%
Süresi dolmuş
4
1%
Yüklendi
24
Geliştirici 24
Derecelendirme
(7)
Projeler
8
13%
Arabuluculuk
5
40% / 20%
Süresi dolmuş
0
Serbest
25
Geliştirici 25
Derecelendirme
(495)
Projeler
736
56%
Arabuluculuk
47
32% / 30%
Süresi dolmuş
116
16%
Çalışıyor
Yayınlandı: 1 kod
26
Geliştirici 26
Derecelendirme
(284)
Projeler
290
70%
Arabuluculuk
2
100% / 0%
Süresi dolmuş
0
Çalışıyor
Yayınlandı: 1 kod
Benzer siparişler
I’m looking for an EA (Expert Advisor) developer or an existing EA that is built on volume and order flow trading strategies . Requirements: EA must trade based on volume / order flow signals . Should have precise entry and exit points with proven high profitability . Must include full source code as part of the purchase. Should work across any major currency pair , with preference for Gold (XAUUSD) . Ability to
Hello, I’m currently looking to hire a professional and experienced developer to help create a custom trading bot (Expert Advisor) for the MetaTrader platform (MT5). What I Need: I’m looking for someone who can: Develop a fully automated trading bot based on my strategy (which I will provide in detail)
Ea that uses the same 4 indicators with options to turn on or off each indicator. tp and sl in currency with lotsize starting from 0.0001. No further parameters. if it can be done in 3 days would be lovely
I'm looking for an EA that can automate my tradingview alerts (like pineconnector or tradingconnector does) with automatic risk calculation based on SL (pineconnector offers this function but it doesn't always work well). Using webhook would be great or a set up locally over chrome. - I would send a command like: sell,EURUSD,risk=0.5,sl=1.0784479159258427,tp=1.0748320840741577 - based on the risk percentage, current
Tebza&Lee_EA 48+ USD
I need an experienced mql5 developer to build a ** high-performance support and resistance EA** This EA must only trade Nas100, Us30, USDZAR, XAGUSD, XAUUSD, XPTUSD, USDJPY, USDCHF, USDCAD, EURUSD, GBPUSD and More details are attached
MosesRobot 30+ USD
1. Timeframe & Pairs Timeframe: 5-minute chart (M5) Pairs: EURUSD, GBPUSD, USDJPY,XAUUSD (low spreads, high liquidity) Trading Hours: London & New York session overlap (13:00–17:00 UTC) for volatility. --- 2. Indicators & Filters Main Signals: 1. EMA Crossover: EMA 9 (fast) & EMA 21 (slow) Buy signal: EMA 9 crosses above EMA 21 Sell signal: EMA 9 crosses below EMA 21 2. RSI Filter (Period 14): Buy only if RSI > 50
GOLDEN WEALTH EA 30 - 40 USD
I need developer that will help me to convert indication with signal to EA. that will be able to trade on any pair and brokers with the features of take profit, stop loss, risk management and trade in the adjustable % of equity or account balance
I am working with several EAs (that i created). Inside MT5, they are fine. However, I’m also using a local MT5 runner on port 8787 to allow triggering backtests via commands. This requires exposing the runner via Cloudflare tunnels. I already: Installed cloudflared Created a tunnel and token Can generate temporary trycloudflare.com URLs But I am stuck on the final step: configuring the tunnel and updating the runner
An Expert Advisor with two time frames. Time frame 1 Buy when price closes below Moving average indicator, or sell when price closes above Moving average indicator. Time frame 2 If a buy position is open, close when price crosses below Moving Average indicator. If a sell position is open, close when price crosses above Moving Average indicator. Repeat forever. Adjustable parameters like the free Experts in the Mql5
X 30+ USD
I NEED AN EA THAT WORKS ON DERIV VOLATILITY BREAKE OUT AT EVERY 50 LEVEL BUY OR SELL 1/1 RAHIO 9 WILL EXPLAIN LETTER ON NOT THAT MUCH THE STRATEGY IS MORE OF PYCHOLOGYCAL LEVEL WILL WORK AS THE ZONE WHILE THE WE WAIT FOR A BREAK OF A HIGH OR ALOW AT THAT AREA

Proje bilgisi

Bütçe
50+ USD

Müşteri

Verilmiş siparişler1
Arabuluculuk sayısı0