EMA_RSI_Robot.mq4

Tarea técnica

//+------------------------------------------------------------------+
//| 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);
     }
  }
//+------------------------------------------------------------------+

Han respondido

1
Desarrollador 1
Evaluación
(367)
Proyectos
471
24%
Arbitraje
52
60% / 19%
Caducado
53
11%
Trabajando
2
Desarrollador 2
Evaluación
(254)
Proyectos
374
24%
Arbitraje
23
57% / 22%
Caducado
1
0%
Ocupado
3
Desarrollador 3
Evaluación
(50)
Proyectos
73
21%
Arbitraje
11
18% / 27%
Caducado
6
8%
Trabaja
4
Desarrollador 4
Evaluación
(25)
Proyectos
38
71%
Arbitraje
3
67% / 0%
Caducado
0
Libre
5
Desarrollador 5
Evaluación
(25)
Proyectos
33
24%
Arbitraje
3
33% / 33%
Caducado
4
12%
Libre
6
Desarrollador 6
Evaluación
Proyectos
1
0%
Arbitraje
0
Caducado
0
Libre
7
Desarrollador 7
Evaluación
(411)
Proyectos
652
33%
Arbitraje
31
74% / 6%
Caducado
20
3%
Trabaja
8
Desarrollador 8
Evaluación
(20)
Proyectos
26
38%
Arbitraje
2
50% / 50%
Caducado
2
8%
Libre
9
Desarrollador 9
Evaluación
(43)
Proyectos
65
11%
Arbitraje
12
58% / 42%
Caducado
1
2%
Libre
10
Desarrollador 10
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Trabaja
11
Desarrollador 11
Evaluación
(459)
Proyectos
903
77%
Arbitraje
25
16% / 68%
Caducado
99
11%
Trabaja
Ha publicado: 1 artículo, 6 ejemplos
12
Desarrollador 12
Evaluación
(1)
Proyectos
1
0%
Arbitraje
0
Caducado
0
Trabaja
13
Desarrollador 13
Evaluación
(572)
Proyectos
943
47%
Arbitraje
303
59% / 25%
Caducado
125
13%
Trabaja
14
Desarrollador 14
Evaluación
(4)
Proyectos
2
0%
Arbitraje
1
0% / 0%
Caducado
1
50%
Trabaja
15
Desarrollador 15
Evaluación
(84)
Proyectos
115
70%
Arbitraje
5
80% / 0%
Caducado
11
10%
Libre
16
Desarrollador 16
Evaluación
(204)
Proyectos
305
34%
Arbitraje
56
38% / 38%
Caducado
99
32%
Trabaja
17
Desarrollador 17
Evaluación
(11)
Proyectos
16
19%
Arbitraje
5
40% / 60%
Caducado
4
25%
Ocupado
18
Desarrollador 18
Evaluación
(276)
Proyectos
327
50%
Arbitraje
12
42% / 0%
Caducado
17
5%
Ocupado
19
Desarrollador 19
Evaluación
(135)
Proyectos
163
40%
Arbitraje
11
27% / 73%
Caducado
24
15%
Libre
20
Desarrollador 20
Evaluación
(2)
Proyectos
2
50%
Arbitraje
1
0% / 0%
Caducado
0
Trabaja
21
Desarrollador 21
Evaluación
(5)
Proyectos
6
0%
Arbitraje
0
Caducado
2
33%
Libre
22
Desarrollador 22
Evaluación
(1)
Proyectos
1
100%
Arbitraje
0
Caducado
0
Libre
23
Desarrollador 23
Evaluación
(156)
Proyectos
280
35%
Arbitraje
14
29% / 50%
Caducado
42
15%
Libre
24
Desarrollador 24
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
25
Desarrollador 25
Evaluación
Proyectos
0
0%
Arbitraje
1
0% / 0%
Caducado
0
Trabaja
26
Desarrollador 26
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
27
Desarrollador 27
Evaluación
(505)
Proyectos
540
53%
Arbitraje
13
69% / 15%
Caducado
3
1%
Libre
28
Desarrollador 28
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
29
Desarrollador 29
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
30
Desarrollador 30
Evaluación
(44)
Proyectos
90
13%
Arbitraje
34
26% / 59%
Caducado
37
41%
Trabaja
31
Desarrollador 31
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
Solicitudes similares
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

Información sobre el proyecto

Presupuesto
30 - 500 USD
Plazo límite de ejecución
de 5 a 10 día(s)

Cliente

Encargos realizados1
Número de arbitrajes0