EMA_RSI_Robot.mq4

Spezifikation

//+------------------------------------------------------------------+
//| EMA + RSI Forex Robot (Safe for $5 Cent Account) |
//| Created by ChatGPT |
//+------------------------------------------------------------------+
#property strict

input int EMA_Fast = 50;
input int EMA_Slow = 200;
input int RSI_Period = 14;
input double LotSize = 0.01;
input int StopLoss = 30; // in pips
input int TakeProfit = 60; // in pips
input int Slippage = 3;

int ticket;

//+------------------------------------------------------------------+
int OnInit()
  {
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
void OnTick()
  {
   //--- Check if a trade already exists
   if(OrdersTotal() > 0) return;

   //--- Indicators
   double emaFast = iMA(NULL,0,EMA_Fast,0,MODE_EMA,PRICE_CLOSE,0);
   double emaSlow = iMA(NULL,0,EMA_Slow,0,MODE_EMA,PRICE_CLOSE,0);
   double rsi = iRSI(NULL,0,RSI_Period,PRICE_CLOSE,0);

   //--- Price
   double ask = NormalizeDouble(Ask,Digits);
   double bid = NormalizeDouble(Bid,Digits);

   //--- StopLoss/TakeProfit levels
   double sl,tp;

   //--- BUY Condition: Uptrend + RSI > 50
   if(emaFast > emaSlow && rsi > 50)
     {
      sl = bid - StopLoss * Point * 10;
      tp = bid + TakeProfit * Point * 10;
      ticket = OrderSend(Symbol(),OP_BUY,LotSize,ask,Slippage,sl,tp,"EMA+RSI BUY",0,0,clrGreen);
     }

   //--- SELL Condition: Downtrend + RSI < 50
   if(emaFast < emaSlow && rsi < 50)
     {
      sl = ask + StopLoss * Point * 10;
      tp = ask - TakeProfit * Point * 10;
      ticket = OrderSend(Symbol(),OP_SELL,LotSize,bid,Slippage,sl,tp,"EMA+RSI SELL",0,0,clrRed);
     }
  }
//+------------------------------------------------------------------+

Bewerbungen

1
Entwickler 1
Bewertung
(367)
Projekte
471
24%
Schlichtung
52
60% / 19%
Frist nicht eingehalten
53
11%
Beschäftigt
2
Entwickler 2
Bewertung
(254)
Projekte
374
24%
Schlichtung
23
57% / 22%
Frist nicht eingehalten
1
0%
Überlastet
3
Entwickler 3
Bewertung
(50)
Projekte
73
21%
Schlichtung
11
18% / 27%
Frist nicht eingehalten
6
8%
Arbeitet
4
Entwickler 4
Bewertung
(25)
Projekte
38
71%
Schlichtung
3
67% / 0%
Frist nicht eingehalten
0
Frei
5
Entwickler 5
Bewertung
(25)
Projekte
33
24%
Schlichtung
3
33% / 33%
Frist nicht eingehalten
4
12%
Frei
6
Entwickler 6
Bewertung
Projekte
1
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
7
Entwickler 7
Bewertung
(411)
Projekte
652
33%
Schlichtung
31
74% / 6%
Frist nicht eingehalten
20
3%
Arbeitet
8
Entwickler 8
Bewertung
(20)
Projekte
26
38%
Schlichtung
2
50% / 50%
Frist nicht eingehalten
2
8%
Frei
9
Entwickler 9
Bewertung
(43)
Projekte
65
11%
Schlichtung
12
58% / 42%
Frist nicht eingehalten
1
2%
Frei
10
Entwickler 10
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Arbeitet
11
Entwickler 11
Bewertung
(459)
Projekte
903
77%
Schlichtung
25
16% / 68%
Frist nicht eingehalten
99
11%
Arbeitet
Veröffentlicht: 1 Artikel, 6 Beispiele
12
Entwickler 12
Bewertung
(1)
Projekte
1
0%
Schlichtung
0
Frist nicht eingehalten
0
Arbeitet
13
Entwickler 13
Bewertung
(572)
Projekte
943
47%
Schlichtung
303
59% / 25%
Frist nicht eingehalten
125
13%
Arbeitet
14
Entwickler 14
Bewertung
(4)
Projekte
2
0%
Schlichtung
1
0% / 0%
Frist nicht eingehalten
1
50%
Arbeitet
15
Entwickler 15
Bewertung
(84)
Projekte
115
70%
Schlichtung
5
80% / 0%
Frist nicht eingehalten
11
10%
Frei
16
Entwickler 16
Bewertung
(204)
Projekte
305
34%
Schlichtung
56
38% / 38%
Frist nicht eingehalten
99
32%
Arbeitet
17
Entwickler 17
Bewertung
(11)
Projekte
16
19%
Schlichtung
5
40% / 60%
Frist nicht eingehalten
4
25%
Überlastet
18
Entwickler 18
Bewertung
(276)
Projekte
327
50%
Schlichtung
12
42% / 0%
Frist nicht eingehalten
17
5%
Überlastet
19
Entwickler 19
Bewertung
(135)
Projekte
163
40%
Schlichtung
11
27% / 73%
Frist nicht eingehalten
24
15%
Frei
20
Entwickler 20
Bewertung
(2)
Projekte
2
50%
Schlichtung
1
0% / 0%
Frist nicht eingehalten
0
Arbeitet
21
Entwickler 21
Bewertung
(5)
Projekte
6
0%
Schlichtung
0
Frist nicht eingehalten
2
33%
Frei
22
Entwickler 22
Bewertung
(1)
Projekte
1
100%
Schlichtung
0
Frist nicht eingehalten
0
Frei
23
Entwickler 23
Bewertung
(156)
Projekte
280
35%
Schlichtung
14
29% / 50%
Frist nicht eingehalten
42
15%
Frei
24
Entwickler 24
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
25
Entwickler 25
Bewertung
Projekte
0
0%
Schlichtung
1
0% / 0%
Frist nicht eingehalten
0
Arbeitet
26
Entwickler 26
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
27
Entwickler 27
Bewertung
(505)
Projekte
540
53%
Schlichtung
13
69% / 15%
Frist nicht eingehalten
3
1%
Frei
28
Entwickler 28
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
29
Entwickler 29
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
30
Entwickler 30
Bewertung
(44)
Projekte
90
13%
Schlichtung
34
26% / 59%
Frist nicht eingehalten
37
41%
Arbeitet
31
Entwickler 31
Bewertung
Projekte
0
0%
Schlichtung
0
Frist nicht eingehalten
0
Frei
Ähnliche Aufträge
hello great developer I’m looking for an experienced MQL4 developer to create a custom IFVG indicator for MT4. Must be fully compatible with Expert Advisors (clean buffer outputs for iCustom). Include testing and debugging for stable performance in live and backtest. Deliver optimized, well-documented, and reliable code. Goal: A professional IFVG indicator that enhances strategy automation on MT4.FOR
Ai spike Indicator 30 - 35 USD
Create an Ai based indicator that is able to identify sudden market movements known as spikes on boom and crash indices on the deriv market. The Ai should incorporate these strategies for better precision on getting signals, these strategies include support and resistance on 4 hour time frame SMC, CRT, ICT, Strategies volume trend, volatility pure price action tick velocity, momentum and key points on fibbonacci tool
Hello I have an EA with all include files but something is probably wrong with: Frequent ArrayResize() + CopyRates() on every tick Repeated calls to iClose(), iOpen() inside loops Full recalculation of indicators like SMA on every tick No caching of ArraySize() or loop boundaries Linear search in sorted data instead of ArrayBsearch() I would like to share all source code files but I won‘t just send it. First I will
MALOO-GMZ 50 - 500 USD
This website is about selling gaming electronics and home electronics with a discount of more than 50%. We will be selling quality and orignal electronics perfect looking.And there will be no need to come and collect because we do door to door delivery
I would like you to create an expert advisor or robot based on a closed source Trading View indicator ‘Stop Hunt by _Nephew_Sam’. You have to first check this indicator out and be sure you can replicate the source code’s logic before you apply for this gig. If you read to this point, include closed source in your reply to this post
Project Description: I am looking for an experienced developer to create an Expert Advisor (EA) compatible with both MT4 and MT5 with the following functionalities: 1. Capital and Position Sizing Management: Automatically calculate and determine the appropriate trade size based on account balance and predefined risk parameters. Enforce strict capital management rules to prevent excessive exposure and control overall
Here are the requirements for a potential developer: 1. *Task*: Create a detailed specification for image editing tasks. 2. *Key Features*: - Describe the type of image (e.g., photo, graphic). - Specify edits (add, remove, change elements). - Define desired output format and resolution. 3. *Deliverables*: - A clear, concise document outlining the task. - Estimated complexity and cost assessment. -
Hi I have a strategy for quantower I needed coded I have been trying myself but can't quite get there. They all partially work but break somewhere along the way either in live trading or can't connect to back testing. I have about 2500-4000 lines of code. What would a quote be? I am happy to share all codes I do have to help
Project Overview: I am seeking an experienced MT5 developer to create a high-precision Expert Advisor (EA) that: Draws and updates session rectangles based on candle bodies only, auto-extending with each new candle. Displays RSI + Envelope indicators combined in a single subwindow, visually and functionally identical to dragging Envelopes onto RSI in MT5. Executes trades automatically when RSI+Envelope levels and
I'm looking for someone who can help me create an EA that can both backtest and trade automatically according to a specific strategy that I've developed myself. The strategy is NOT based on any indicator but rather on market structure regarding higher highs, lower lows, liquidity etc. I need someone who has done such EA's before and have a deep experience

Projektdetails

Budget
30 - 500 USD
Ausführungsfristen
von 5 bis 10 Tag(e)

Kunde

Veröffentlichte Aufträge1
Anzahl der Schlichtungen0