Termos de Referência

//+------------------------------------------------------------------+
//| EURUSD Daily Strategy EA                                         |
//+------------------------------------------------------------------+
extern int MA_Fast = 50;
extern int MA_Slow = 200;
extern int RSI_Period = 14;
extern double RiskReward = 2.0;
extern double StopLossMultiplier = 1.5;

void OnTick() {
   if (TimeCurrent() != iTime(NULL, PERIOD_D1, 0)) return;
   
   double maFast = iMA(NULL, PERIOD_D1, MA_Fast, 0, MODE_SMA, PRICE_CLOSE, 1);
   double maSlow = iMA(NULL, PERIOD_D1, MA_Slow, 0, MODE_SMA, PRICE_CLOSE, 1);
   double rsi = iRSI(NULL, PERIOD_D1, RSI_Period, PRICE_CLOSE, 1);
   
   if (maFast > maSlow && rsi < 70 && !PositionCheck(SHORT)) {
      OpenBuy();
   }
   if (maFast < maSlow && rsi > 30 && !PositionCheck(LONG)) {
      OpenSell();
   }
}

void OpenBuy() {
   double atr = iATR(NULL, PERIOD_D1, 14, 1);
   double sl = Ask - StopLossMultiplier * atr;
   double tp = Ask + RiskReward * StopLossMultiplier * atr;
   OrderSend(Symbol(), OP_BUY, 0.1, Ask, 3, sl, tp);
}

void OpenSell() {
   double atr = iATR(NULL, PERIOD_D1, 14, 1);
   double sl = Bid + StopLossMultiplier * atr;
   double tp = Bid - RiskReward * StopLossMultiplier * atr;
   OrderSend

Arquivos anexados:

JPEG
IMG_5302.jpeg
514.6 Kb
JPEG
IMG_5303.jpeg
457.2 Kb

Respondido

1
Desenvolvedor 1
Classificação
(393)
Projetos
546
40%
Arbitragem
30
57% / 3%
Expirado
57
10%
Livre
Publicou: 11 códigos
2
Desenvolvedor 2
Classificação
(103)
Projetos
165
24%
Arbitragem
23
9% / 78%
Expirado
16
10%
Trabalhando
3
Desenvolvedor 3
Classificação
(74)
Projetos
107
50%
Arbitragem
25
24% / 52%
Expirado
9
8%
Trabalhando
4
Desenvolvedor 4
Classificação
(16)
Projetos
35
23%
Arbitragem
4
0% / 50%
Expirado
2
6%
Trabalhando
5
Desenvolvedor 5
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
6
Desenvolvedor 6
Classificação
(4)
Projetos
5
0%
Arbitragem
1
0% / 100%
Expirado
1
20%
Livre
7
Desenvolvedor 7
Classificação
(60)
Projetos
87
29%
Arbitragem
24
13% / 58%
Expirado
7
8%
Trabalhando
8
Desenvolvedor 8
Classificação
(6)
Projetos
8
0%
Arbitragem
8
13% / 88%
Expirado
0
Livre
9
Desenvolvedor 9
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
10
Desenvolvedor 10
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
11
Desenvolvedor 11
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
12
Desenvolvedor 12
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
13
Desenvolvedor 13
Classificação
(250)
Projetos
256
30%
Arbitragem
0
Expirado
3
1%
Livre
Publicou: 2 códigos
14
Desenvolvedor 14
Classificação
(3)
Projetos
1
0%
Arbitragem
5
0% / 100%
Expirado
0
Livre
15
Desenvolvedor 15
Classificação
(1278)
Projetos
1698
49%
Arbitragem
52
71% / 12%
Expirado
37
2%
Trabalhando
16
Desenvolvedor 16
Classificação
(3)
Projetos
3
67%
Arbitragem
0
Expirado
0
Livre
17
Desenvolvedor 17
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
18
Desenvolvedor 18
Classificação
(43)
Projetos
49
29%
Arbitragem
4
25% / 25%
Expirado
0
Livre
19
Desenvolvedor 19
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
20
Desenvolvedor 20
Classificação
(1928)
Projetos
3549
88%
Arbitragem
73
40% / 15%
Expirado
268
8%
Livre
Pedidos semelhantes
I can Program or do any Developing for you for MQL5 or 4 I can work 1 - 5 days deposit is required before im doing anything for both our safety as these work takes a lot of time and energy inbox me and we can discuss the job im reliable and trustworthy looking forward to working with you
Data Integrity 500 - 1000 USD
The trading bot is an automated software system designed to monitor financial markets, execute trades, and manage risk based on predefined strategies. The bot aims to maximize profits while minimizing human intervention and emotional decision-making. Scope: Supports automated trading on selected exchanges (e.g., Binance, Bitget, Coinbase). Executes trades based on technical indicators, signals, or AI models. Provides
I need a AI signal generating bot for forex trading that use the latest ai technology to track real time forex market, analyse and give signals. The bot should operate such that when i put it in a chart it will analyse the market, after several minutes it will display whether the trade is buying or selling. It should display the one minute, five minute,15minute, 30 minute, one hour, 4 hours and daily time frame
step by step and structure this into a full IEEE 830 / ISO/IEC/IEEE 29148 style Requirements Specification. This format will include: Introduction System Overview Functional and Performance Requirements Traceability Matrix (linking requirements to test cases) Verification and Validation Compliance Standards 1. Introduction 1.1 Purpose The purpose of this document is to define the technical requirements for the
BitsoFx 40 - 10000 USD
//+------------------------------------------------------------------+ //| Simple Robo Trader MT5 | //| Works on any pair & timeframe | //+------------------------------------------------------------------+ #property strict // Input settings input double LotSize = 0.01; input int FastMA = 10; input int SlowMA = 30; input int RSIPeriod = 14; input int StopLoss = 200; // in points input int TakeProfit = 400;// in

Informações sobre o projeto

Orçamento
30 - 200 USD

Cliente

Pedidos postados1
Número de arbitragens0