EMA_Cross_Bot

İş Gereklilikleri

//+------------------------------------------------------------------+
//| Expert advisor simples: Cruzamento de EMAs |
//+------------------------------------------------------------------+
input int EMA_Fast = 9;
input int EMA_Slow = 21;
input double LotSize = 0.1;
input int Slippage = 3;

int fast_ema_handle;
int slow_ema_handle;

double fast_ema[], slow_ema[];

int OnInit()
  {
   fast_ema_handle = iMA(_Symbol, _Period, EMA_Fast, 0, MODE_EMA, PRICE_CLOSE);
   slow_ema_handle = iMA(_Symbol, _Period, EMA_Slow, 0, MODE_EMA, PRICE_CLOSE);
   return(INIT_SUCCEEDED);
  }

void OnTick()
  {
   if(CopyBuffer(fast_ema_handle, 0, 0, 2, fast_ema) < 0) return;
   if(CopyBuffer(slow_ema_handle, 0, 0, 2, slow_ema) < 0) return;

   double ema_fast_now = fast_ema[0];
   double ema_fast_prev = fast_ema[1];
   double ema_slow_now = slow_ema[0];
   double ema_slow_prev = slow_ema[1];

   if (ema_fast_prev < ema_slow_prev && ema_fast_now > ema_slow_now)
     {
      if(PositionSelect(_Symbol)) PositionClose(_Symbol); // Fecha se já existe posição
      trade.Buy(LotSize, _Symbol, Ask, Slippage);
     }
   else if (ema_fast_prev > ema_slow_prev && ema_fast_now < ema_slow_now)
     {
      if(PositionSelect(_Symbol)) PositionClose(_Symbol);
      trade.Sell(LotSize, _Symbol, Bid, Slippage);
     }
  }

Yanıtlandı

1
Geliştirici 1
Derecelendirme
(83)
Projeler
142
51%
Arabuluculuk
8
13% / 75%
Süresi dolmuş
21
15%
Serbest
2
Geliştirici 2
Derecelendirme
(539)
Projeler
620
33%
Arabuluculuk
36
39% / 53%
Süresi dolmuş
11
2%
Yüklendi
3
Geliştirici 3
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
4
Geliştirici 4
Derecelendirme
(151)
Projeler
232
32%
Arabuluculuk
18
39% / 33%
Süresi dolmuş
1
0%
Çalışıyor
5
Geliştirici 5
Derecelendirme
(6)
Projeler
8
0%
Arabuluculuk
8
13% / 88%
Süresi dolmuş
0
Serbest
6
Geliştirici 6
Derecelendirme
(48)
Projeler
49
8%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
7
Geliştirici 7
Derecelendirme
(250)
Projeler
460
26%
Arabuluculuk
140
20% / 59%
Süresi dolmuş
100
22%
Çalışıyor
8
Geliştirici 8
Derecelendirme
(44)
Projeler
53
38%
Arabuluculuk
8
13% / 38%
Süresi dolmuş
8
15%
Çalışıyor
Benzer siparişler
Quero um robô para MetaTrader 5 que opere baseado em notícias econômicas de alto impacto. Ele deve identificar o horário exato das notícias, aguardar um tempo configurável antes e depois da liberação, e então abrir ordens de compra ou venda com base na volatilidade ou direção dos preços. O robô precisa permitir configurar o tempo de espera antes da entrada, o tamanho do lote, o stop loss, o take profit e o slippage
//+------------------------------------------------------------------+ //| Gold MetaLockDay EA (MT5) | //| Meta líquida diária com MIX de entradas (XAUUSD) | //+------------------------------------------------------------------+ #property strict #include <Trade/Trade.mqh> CTrade trade; //======================== INPUTS ========================// input string InpSymbol = ""; //
Tenho uma foto e video(não deu para anexar) de um robo trabalhando com buy stop e sell stop com indicadores de força e volatilidade. Gostaria de saber se consegue construir um

Proje bilgisi

Bütçe
30 - 100 USD
Son teslim tarihi
from 5 to 10 gün