Termos de Referência


```
//+------------------------------------------------------------------+
//| Hello World Expert Advisor                                      |
//|                                                                 |
//| This is a basic EA that buys and sells based on a simple        |
//| moving average crossover strategy.                             |
//+------------------------------------------------------------------+
#property version "0.01"
#property strict

input int FastMA Period = 10;
input int SlowMA Period = 20;

void OnTick()
{
  // Calculate moving averages
  double fastMA = iMA(Symbol(), FastMA Period, 0, MODE_SMA);
  double slowMA = iMA(Symbol(), SlowMA Period, 0, MODE_SMA);

  // Buy and sell logic
  if (fastMA > slowMA)
  {
    // Buy
    OrderSend(Symbol(), OP_BUY, 0.1, Ask, 3, Bid - 3 * Point, "Buy Order");
  }
  else if (fastMA < slowMA)
  {
    // Sell
    OrderSend(Symbol(), OP_SELL, 0.1, Bid, 3, Ask + 3 * Point, "Sell Order");
  }
}
```

Respondido

1
Desenvolvedor 1
Classificação
(12)
Projetos
17
29%
Arbitragem
5
20% / 40%
Expirado
1
6%
Livre
2
Desenvolvedor 2
Classificação
(33)
Projetos
50
74%
Arbitragem
4
50% / 0%
Expirado
0
Trabalhando
3
Desenvolvedor 3
Classificação
(249)
Projetos
311
28%
Arbitragem
33
27% / 64%
Expirado
10
3%
Livre
4
Desenvolvedor 4
Classificação
(22)
Projetos
32
53%
Arbitragem
1
0% / 0%
Expirado
1
3%
Trabalhando
5
Desenvolvedor 5
Classificação
(39)
Projetos
54
61%
Arbitragem
2
50% / 50%
Expirado
0
Livre
6
Desenvolvedor 6
Classificação
(574)
Projetos
945
47%
Arbitragem
309
58% / 27%
Expirado
125
13%
Livre
7
Desenvolvedor 7
Classificação
(48)
Projetos
49
8%
Arbitragem
0
Expirado
0
Livre
8
Desenvolvedor 8
Classificação
(2)
Projetos
5
0%
Arbitragem
3
0% / 100%
Expirado
1
20%
Trabalhando
9
Desenvolvedor 9
Classificação
(452)
Projetos
565
26%
Arbitragem
24
42% / 38%
Expirado
85
15%
Livre
Publicou: 6 códigos
10
Desenvolvedor 10
Classificação
(50)
Projetos
64
20%
Arbitragem
11
27% / 55%
Expirado
5
8%
Livre
11
Desenvolvedor 11
Classificação
(11)
Projetos
18
28%
Arbitragem
4
50% / 50%
Expirado
1
6%
Livre
12
Desenvolvedor 12
Classificação
(3)
Projetos
2
50%
Arbitragem
2
0% / 100%
Expirado
0
Livre
13
Desenvolvedor 13
Classificação
(3)
Projetos
4
25%
Arbitragem
3
0% / 100%
Expirado
0
Livre
Pedidos semelhantes
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
Hello great developers, I need a very fast and hardworking deliver who know both back end and front end of trade copier system. I need a web based trade copier application, i already create the website aspect, only need the copier to be included. I actually have a limited time, and no room for unprofessional developers, kindly send your applications if you can actually get it done in the space of 2 days and my budget
// Add this to your EA after ExportState() function void SendToBase44(const string state, const string dir, double entry, double sl, double tp) { string url = " https://preview-sandbox--ee0a32a725b788974de435e8cef40b7a.base44.app/api/functions/receiveEAState "; string headers = "Content-Type: application/json\r\n"; string json = "{" "\"symbol\":\""+_Symbol+"\","
1.Sinyal Perdagangan : Sinyal beli: garis MACD utama memotong garis sinyal ke atas (macd_current>signal_current && macd_previous<signal_previous). Sinyal jual: garis MACD utama memotong garis sinyal ke bawah (macd_current<signal_current && macd_previous>signal_previous). Gambar di bawah menunjukkan kasus beli dan jual. 2. Posisi ditutup pada sinyal yang berlawanan: Posisi beli ditutup pada sinyal jual, dan posisi

Informações sobre o projeto

Orçamento
30+ USD
Prazo
de 2 para 333 dias