Bullish engulfing dan bearish engulfing

MQL5 Experten

Spezifikation

//+------------------------------------------------------------------+
//|                                               EngulfingBot.mq5    |
//|                        Copyright 2024, Your Name                 |
//|                                       https://yourwebsite.com     |
//+------------------------------------------------------------------+
input double TakeProfit = 50; // Take profit dalam pips
input double StopLoss = 30;    // Stop loss dalam pips
input double LotSize = 0.1;     // Ukuran lot
input int Slippage = 3;         // Slippage

//+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
  {
   return(INIT_SUCCEEDED);
  }

//+------------------------------------------------------------------+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
  {
  }

//+------------------------------------------------------------------+
//| Expert tick function                                             |
//+------------------------------------------------------------------+
void OnTick()
  {
   int lastBar = 1; // Menggunakan bar terakhir
   double open1 = iOpen(NULL, 0, lastBar);
   double close1 = iClose(NULL, 0, lastBar);
   double open2 = iOpen(NULL, 0, lastBar + 1);
   double close2 = iClose(NULL, 0, lastBar + 1);

   // Memeriksa bullish engulfing
   if (close1 > open1 && open1 < close2 && close2 < open2)
     {
      // Buka posisi Buy
      if (OrderSend(Symbol(), OP_BUY, LotSize, Ask, Slippage, 0, 0, "Bullish Engulfing", 0, 0, clrGreen) > 0)
        {
         Print("Buy Order Opened");
        }
     }

   // Memeriksa bearish engulfing
   if (close1 < open1 && open1 > close2 && close2 > open2)
     {
      // Buka posisi Sell
      if (OrderSend(Symbol(), OP_SELL, LotSize, Bid, Slippage, 0, 0, "Bearish Engulfing", 0, 0, clrRed) > 0)
        {
         Print("Sell Order Opened");
        }
     }
  }
//+------------------------------------------------------------------+

Bewerbungen

1
Entwickler 1
Bewertung
(167)
Projekte
187
32%
Schlichtung
6
50% / 50%
Frist nicht eingehalten
2
1%
Arbeitet
2
Entwickler 2
Bewertung
(214)
Projekte
347
16%
Schlichtung
22
41% / 32%
Frist nicht eingehalten
18
5%
Überlastet
3
Entwickler 3
Bewertung
(59)
Projekte
66
6%
Schlichtung
27
19% / 37%
Frist nicht eingehalten
4
6%
Überlastet
4
Entwickler 4
Bewertung
(29)
Projekte
35
14%
Schlichtung
5
40% / 60%
Frist nicht eingehalten
5
14%
Frei
5
Entwickler 5
Bewertung
(315)
Projekte
401
21%
Schlichtung
44
61% / 23%
Frist nicht eingehalten
46
11%
Arbeitet
6
Entwickler 6
Bewertung
(10)
Projekte
25
28%
Schlichtung
3
0% / 0%
Frist nicht eingehalten
1
4%
Beschäftigt
7
Entwickler 7
Bewertung
(36)
Projekte
46
37%
Schlichtung
0
Frist nicht eingehalten
0
Frei
8
Entwickler 8
Bewertung
(2)
Projekte
5
0%
Schlichtung
1
0% / 0%
Frist nicht eingehalten
1
20%
Arbeitet
9
Entwickler 9
Bewertung
(7)
Projekte
13
8%
Schlichtung
0
Frist nicht eingehalten
3
23%
Beschäftigt
10
Entwickler 10
Bewertung
Projekte
1
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
11
Entwickler 11
Bewertung
(172)
Projekte
244
21%
Schlichtung
17
65% / 18%
Frist nicht eingehalten
1
0%
Beschäftigt
12
Entwickler 12
Bewertung
(1100)
Projekte
1457
46%
Schlichtung
49
73% / 12%
Frist nicht eingehalten
36
2%
Arbeitet
13
Entwickler 13
Bewertung
(3)
Projekte
7
29%
Schlichtung
1
100% / 0%
Frist nicht eingehalten
0
Arbeitet
14
Entwickler 14
Bewertung
(98)
Projekte
121
40%
Schlichtung
10
80% / 0%
Frist nicht eingehalten
0
Arbeitet
15
Entwickler 15
Bewertung
(5)
Projekte
7
29%
Schlichtung
2
50% / 0%
Frist nicht eingehalten
2
29%
Frei
16
Entwickler 16
Bewertung
(357)
Projekte
563
33%
Schlichtung
24
67% / 8%
Frist nicht eingehalten
17
3%
Frei
17
Entwickler 17
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
Ähnliche Aufträge
Hi there I'm looking to create an EA that incorporates my trading strategy, unfortunately I do not have experience coding. The strategy consist of: - Fibonacci retracement on 4h timeframe, in the direction of the trend - The trade needs to be opened following trend direction - indicator EMA - need option to customize period input, Uptrend if price above EMA, downtrend if price below EMA - Only take high quality
Hi, I am looking for you who probably already got this high-performing bot that I am looking for or is willing to create one. My main focus is XAUUSD. Win-Rate should be >70% on back-test, Should also be able to run live demo a/c and show profit. There has to be a clear strategy and parameters in order to optimize and adapt to change
Hello there, am in need of an expert pinescript programmer who can work on an existing code to add some indicators and features. Please bid if you understand pinescript well and can work on existing code
We are seeking an experienced MQL4 developer to create a forecasting indicator with a prediction accuracy above 80%. The indicator must be capable of learning from historical market data starting from the year 2000 to the present. Additionally, it should offer an option to analyze and learn from all available candlesticks on the current timeframe, allowing it to adapt to real-time market conditions. Key Requirements
Dears, I hope you are doing well. I am looking to develop a trading bot specifically for trading gold on the MT5 platform. My target is for the bot to generate a monthly return of 40-60% on the initial capital, which will start at $2,000, with a leverage of 1:400. Additionally, I would like to have access to the indicators and tools necessary for evaluating the bot’s performance. These should include key metrics like
I have an expert that wrote in Mq4 .. and I would like to convert it to Mq5 .. to work as it works on mq4 .. with some added options.. so who can do it for me
Mega-FX Indicator 30 - 100 USD
Hello the Mega-Fx Indicator is currently running on MT4. I would need it in Mt5 and automatic trading with free setting of parameters. Specifically. When he should make a trade should be adjustable
I am looking for someone to help me to automate my trading from mt4/5 expert advisors and own trades to tradovate. My trades are generated by my expert in MT5, I want those trades copied to Tradovate's platform using their API to different accounts, that some programmers have suggested is a REST API and should be easily doable
Kindly access the vps to check out the EA, the name of the EA I'm referring to is called TOPGUN 2.0 The EA is in below VPS Server: 176.57.188.42 User:administrator Password: Test20082024! The project is to replicate the same EA in the server and code a very similar one based on the exact functionality in that existing EA
Good day. I would like to have an EA that closes all positions when a certain equity has been achieved. For example, I set balance to 100$ and equity target profit to 5$. When equity reaches 105$, it closes all positions and does the process again to 110$, 115$ and so on and so forth

Projektdetails

Budget
33+ USD
Ausführungsfristen
von 1 bis 99 Tag(e)

Kunde

Veröffentlichte Aufträge1
Anzahl der Schlichtungen0