Convert ADX EA from MQL4 to MQL5 - 20 lines of code only

MQL5 Uzman Danışmanlar

İş tamamlandı

Tamamlanma süresi: 14 dakika

İş Gereklilikleri

Convert this simple lines of MQL4 Code to a MQL5 Expert Advisor:

input int  TakeProfit=3900;//Take profit
input int  StopLoss=500;//Stop Loss

input int MAGIC = 2930;
input double defaultLot = 0.01;
input int period = 13;
input ENUM_APPLIED_PRICE appliedPrice = PRICE_CLOSE;
input int shift = 0;
input int limitUp = 40;

void OnTick()
  {   
   double adx_main = iADX(NULL, 0, period, appliedPrice, MODE_MAIN, shift);
   double adx_plusdi = iADX(NULL, 0, period, appliedPrice, MODE_PLUSDI, shift);
   double adx_minusdi = iADX(NULL, 0, period, appliedPrice, MODE_MINUSDI, shift);
   
   if(countOrders(MAGIC) == 0) {
      if(adx_main > limitUp) {
         double lot = defaultLot;
         if(adx_plusdi > adx_minusdi) {
            Print("Open SELL Lot:"+DoubleToStr(lot)+" - SL:"+IntegerToString(StopLoss)+" -TP:"+IntegerToString(TakeProfit));
            sell(lot, StopLoss, TakeProfit, MAGIC, "");
         } else if(adx_plusdi < adx_minusdi) {
            Print("Open BUY Lot:"+DoubleToStr(lot)+" - SL:"+IntegerToString(StopLoss)+" -TP:"+IntegerToString(TakeProfit));
            buy(lot, StopLoss, TakeProfit, MAGIC, "");
         }
      }
   }

}

Some functions are not included:

- "countOrders" will return the number of executed orders for this specific MAGIC number

- "sell"/"buy" will open a sell/buy order with the specified parameters

So basically, the EA will open an order if there no order already opened, and if:

- the ADX Plus DI is above the ADX Minus DI (sell)

- the ADX Plus DI is below the ADX Minus DI (buy)


Yanıtlandı

1
Geliştirici 1
Derecelendirme
(414)
Projeler
478
40%
Arabuluculuk
7
43% / 29%
Süresi dolmuş
16
3%
Serbest
2
Geliştirici 2
Derecelendirme
(229)
Projeler
339
49%
Arabuluculuk
21
5% / 33%
Süresi dolmuş
24
7%
Serbest
3
Geliştirici 3
Derecelendirme
(2077)
Projeler
2636
61%
Arabuluculuk
113
45% / 26%
Süresi dolmuş
418
16%
Çalışıyor
4
Geliştirici 4
Derecelendirme
(590)
Projeler
789
71%
Arabuluculuk
9
33% / 33%
Süresi dolmuş
22
3%
Serbest
5
Geliştirici 5
Derecelendirme
(23)
Projeler
53
9%
Arabuluculuk
10
20% / 60%
Süresi dolmuş
11
21%
Serbest
6
Geliştirici 6
Derecelendirme
(355)
Projeler
589
70%
Arabuluculuk
14
43% / 7%
Süresi dolmuş
28
5%
Serbest
7
Geliştirici 7
Derecelendirme
(24)
Projeler
34
9%
Arabuluculuk
3
33% / 0%
Süresi dolmuş
8
24%
Serbest
8
Geliştirici 8
Derecelendirme
(414)
Projeler
670
33%
Arabuluculuk
60
17% / 32%
Süresi dolmuş
113
17%
Çalışıyor
9
Geliştirici 9
Derecelendirme
(53)
Projeler
79
18%
Arabuluculuk
13
15% / 54%
Süresi dolmuş
5
6%
Serbest
10
Geliştirici 10
Derecelendirme
(320)
Projeler
521
66%
Arabuluculuk
52
21% / 38%
Süresi dolmuş
165
32%
Çalışıyor
11
Geliştirici 11
Derecelendirme
(439)
Projeler
545
25%
Arabuluculuk
21
38% / 38%
Süresi dolmuş
83
15%
Serbest
12
Geliştirici 12
Derecelendirme
(1127)
Projeler
1429
62%
Arabuluculuk
21
57% / 10%
Süresi dolmuş
43
3%
Serbest
13
Geliştirici 13
Derecelendirme
(28)
Projeler
36
17%
Arabuluculuk
5
20% / 40%
Süresi dolmuş
17
47%
Serbest
14
Geliştirici 14
Derecelendirme
(97)
Projeler
121
25%
Arabuluculuk
5
20% / 60%
Süresi dolmuş
17
14%
Serbest
15
Geliştirici 15
Derecelendirme
(563)
Projeler
932
47%
Arabuluculuk
301
59% / 25%
Süresi dolmuş
124
13%
Çalışıyor
16
Geliştirici 16
Derecelendirme
(4)
Projeler
5
0%
Arabuluculuk
3
0% / 67%
Süresi dolmuş
2
40%
Serbest
17
Geliştirici 17
Derecelendirme
(62)
Projeler
140
46%
Arabuluculuk
19
42% / 16%
Süresi dolmuş
32
23%
Serbest
18
Geliştirici 18
Derecelendirme
(46)
Projeler
73
16%
Arabuluculuk
13
8% / 92%
Süresi dolmuş
37
51%
Serbest
Benzer siparişler
The Expert Advisor would use two built-in indicators as entry/exit signals and our own risk management strategy with customizable inputs. The goal is to create a reliable and efficient trading tool that can automate our trading process on the MT5 platform
Hi, I have an indicator from my friend, I want to copy it to my own MT5 can you do that for me. Here is the link
I'm looking for someone to help me create an arbitrage trading robot that can trade on any decentralized exchange and forex market. I already have some source code to a strategy but would like to enhance it to make it profitable and automated
I installed the E.A. into the Experts folder in MT4. When I double click on it nothing happens. When I right click and "attach to chart" nothing happens. The E.A. is not grayed out, it simply will not attach. Any help would be greatly Appreciated
I have an EA and want to add few new logic to fetch profit taking factors and other values from an external master data and use it in existing EA
Hello Every one, Good day, I want from someone professional to create an EA is working on Mt5, This EA is working by depend on some indicators, and all those indicators must be working on MACD window, not on the chart, for more details please read my attached pdf file carefully. Many Thanks
I'm looking for an expert MQL5 developer that can create an EA that's based on my price action trading strategy with no indicators. The EA must analyze trades based on my price action rules, enter trades based on my price action rules, manage trades based on my price action rules and exit trades based on my price action rules
hi hi there i have an strategy on tradingview and i want to automate it like metatrader EA so i want the strategy to open and close trade automaticlly on tradingview
We are looking for an experienced Expert Advisor Developer who can build a customized MT5 Expert Advisor for us. The Expert Advisor would use two built-in indicators as entry/exit signals and our own risk management strategy with customizable inputs. The goal is to create a reliable and efficient trading tool that can automate our trading process on the MT5 platform. Skills required: - Strong understanding of
I need stochastic div (hidden &regular ea) that should perform task in all tf's ..divergence is a repaint stly so i want to use it with candlestick flips .. so bet for it

Proje bilgisi

Bütçe
30+ USD
KDV (20%): 6 USD
Toplam: 36 USD
Geliştirici için
27 USD
Son teslim tarihi
to 1 gün