İş Gereklilikleri
//+------------------------------------------------------------------+
//| 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);
}
}
//+------------------------------------------------------------------+
Yanıtlandı
1
Derecelendirme
Projeler
471
24%
Arabuluculuk
52
60%
/
19%
Süresi dolmuş
53
11%
Yüklendi
2
Derecelendirme
Projeler
374
24%
Arabuluculuk
23
57%
/
22%
Süresi dolmuş
1
0%
Meşgul
3
Derecelendirme
Projeler
73
21%
Arabuluculuk
11
18%
/
27%
Süresi dolmuş
6
8%
Çalışıyor
4
Derecelendirme
Projeler
38
71%
Arabuluculuk
3
67%
/
0%
Süresi dolmuş
0
Serbest
5
Derecelendirme
Projeler
33
24%
Arabuluculuk
3
33%
/
33%
Süresi dolmuş
4
12%
Serbest
6
Derecelendirme
Projeler
1
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
7
Derecelendirme
Projeler
652
33%
Arabuluculuk
31
74%
/
6%
Süresi dolmuş
20
3%
Çalışıyor
8
Derecelendirme
Projeler
26
38%
Arabuluculuk
2
50%
/
50%
Süresi dolmuş
2
8%
Serbest
9
Derecelendirme
Projeler
65
11%
Arabuluculuk
12
58%
/
42%
Süresi dolmuş
1
2%
Serbest
10
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Çalışıyor
11
Derecelendirme
Projeler
903
77%
Arabuluculuk
25
16%
/
68%
Süresi dolmuş
99
11%
Çalışıyor
Yayınlandı: 1 makale, 6 kod
12
Derecelendirme
Projeler
1
0%
Arabuluculuk
0
Süresi dolmuş
0
Çalışıyor
13
Derecelendirme
Projeler
943
47%
Arabuluculuk
303
59%
/
25%
Süresi dolmuş
125
13%
Çalışıyor
14
Derecelendirme
Projeler
2
0%
Arabuluculuk
1
0%
/
0%
Süresi dolmuş
1
50%
Çalışıyor
15
Derecelendirme
Projeler
115
70%
Arabuluculuk
5
80%
/
0%
Süresi dolmuş
11
10%
Serbest
16
Derecelendirme
Projeler
305
34%
Arabuluculuk
56
38%
/
38%
Süresi dolmuş
99
32%
Çalışıyor
17
Derecelendirme
Projeler
16
19%
Arabuluculuk
5
40%
/
60%
Süresi dolmuş
4
25%
Meşgul
18
Derecelendirme
Projeler
327
50%
Arabuluculuk
12
42%
/
0%
Süresi dolmuş
17
5%
Meşgul
19
Derecelendirme
Projeler
163
40%
Arabuluculuk
11
27%
/
73%
Süresi dolmuş
24
15%
Serbest
20
Derecelendirme
Projeler
2
50%
Arabuluculuk
1
0%
/
0%
Süresi dolmuş
0
Çalışıyor
21
Derecelendirme
Projeler
6
0%
Arabuluculuk
0
Süresi dolmuş
2
33%
Serbest
22
Derecelendirme
Projeler
1
100%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
23
Derecelendirme
Projeler
280
35%
Arabuluculuk
14
29%
/
50%
Süresi dolmuş
42
15%
Serbest
24
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
25
Derecelendirme
Projeler
0
0%
Arabuluculuk
1
0%
/
0%
Süresi dolmuş
0
Çalışıyor
26
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
27
Derecelendirme
Projeler
540
53%
Arabuluculuk
13
69%
/
15%
Süresi dolmuş
3
1%
Serbest
28
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
29
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
30
Derecelendirme
Projeler
90
13%
Arabuluculuk
34
26%
/
59%
Süresi dolmuş
37
41%
Çalışıyor
31
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
Benzer siparişler
IFVG INDICATOR FOR MT4
50+ USD
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
Hi I heard some days ago about TheStrat and would like to ask if someone has built already something with it? Looks like a great opportunity and Inwould like to discuss those strategies. In the end we build an EA with all these strategies together. Havin a multy strategy EA based on the patterns would be great. So we will implement a MLP NN to train the patterns. Checkout the website
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
Improving backtest velocity
30+ USD
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
Development of a trading other
35+ USD
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. -
Quantower strategy development
70 - 100 USD
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
Proje bilgisi
Bütçe
30 - 500 USD
Son teslim tarihi
from 5 to 10 gün
Müşteri
Verilmiş siparişler1
Arabuluculuk sayısı0