Specification

//+------------------------------------------------------------------+
//| SimpleEA.mq5|
//| Copyright 2023, MetaQuotes Software Corp. |
//+------------------------------------------------------------------+
#property copyright "2023, MetaQuotes Software Corp."
#property link "https://www.mql5.com"
#property version "1.00"
#property strict

input int FastMAPeriod = 12; // Período da média móvel rápida
input int SlowMAPeriod = 26; // Período da média móvel lenta
input double LotSize = 0.1; // Tamanho do lote

double FastMA, SlowMA;

//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit()
  {
   //--- initialization of indicators
   FastMA = iMA(NULL, 0, FastMAPeriod, 0, MODE_SMA, PRICE_CLOSE, 0);
   SlowMA = iMA(NULL, 0, SlowMAPeriod, 0, MODE_SMA, PRICE_CLOSE, 0);
   
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
  {
   //---
  }
//+------------------------------------------------------------------+
//| Expert tick function |
//+------------------------------------------------------------------+
void OnTick()
  {
   FastMA = iMA(NULL, 0, FastMAPeriod, 0, MODE_SMA, PRICE_CLOSE, 0);
   SlowMA = iMA(NULL, 0, SlowMAPeriod, 0, MODE_SMA, PRICE_CLOSE, 0);
   
   double previousFastMA = iMA(NULL, 0, FastMAPeriod, 0, MODE_SMA, PRICE_CLOSE, 1);
   double previousSlowMA = iMA(NULL, 0, SlowMAPeriod, 0, MODE_SMA, PRICE_CLOSE, 1);
   
   if (previousFastMA < previousSlowMA && FastMA > SlowMA)
   {
      if (OrderSelect(0, SELECT_BY_POS, MODE_TRADES) == false)
      {
         OrderSend(Symbol(), OP_BUY, LotSize, Ask, 2, 0, 0, "Buy Order", 0, 0, clrGreen);
      }
   }
  }
//+------------------------------------------------------------------+

Responded

1
Developer 1
Rating
(32)
Projects
55
5%
Arbitration
35
0% / 94%
Overdue
24
44%
Working
2
Developer 2
Rating
(153)
Projects
238
33%
Arbitration
20
45% / 30%
Overdue
2
1%
Free
3
Developer 3
Rating
(568)
Projects
657
32%
Arbitration
41
41% / 46%
Overdue
11
2%
Busy
4
Developer 4
Rating
(94)
Projects
130
9%
Arbitration
8
25% / 38%
Overdue
28
22%
Working
5
Developer 5
Rating
(11)
Projects
17
59%
Arbitration
2
0% / 100%
Overdue
2
12%
Free
6
Developer 6
Rating
Projects
1
100%
Arbitration
0
Overdue
0
Free
7
Developer 7
Rating
(49)
Projects
50
8%
Arbitration
0
Overdue
0
Free
Similar orders
Preciso de um Expert Advisor profissional para MetaTrader 5 (MT5) no XAUUSD. Nome do projeto: XAU GOLD IA PRO Características: operação 100% automática timeframe M5 confirmação M15 + H1 início automático às 19:30 (horário Brasil) meta diária de 2% stop diário de 5% lote inicial 0.01 RR 3:1 estratégia com regiões de preço + Fibonacci + Smart Money Concepts (SMC) add position leve (sem martingale agressivo) trailing
"I am looking for an Elite Developer capable of coding a high-frequency multi-symbol synchronization using the OnTimer() function. This project requires mathematical precision for Fibonacci 61.8% dynamic trailing stops. If you can handle low-latency execution across 3 symbols, apply now." EMA 9/21 crossovers + RSI (14) filter across 3 symbols (Multi-symbol sync). News Filter (High Impact events auto-pause). Max
ESPECIFICAÇÃO TÉCNICA – EA MT5 RENKO COM CONFLUÊNCIA + MARTINGALE POR BLOCOS Objetivo Desenvolver um Expert Advisor para MetaTrader 5 que opere em gráficos Renko, executando ordens apenas quando houver confluência entre 5 indicadores, sempre negociando na direção da tendência. As entradas devem ocorrer apenas na abertura do próximo candle/bloco após a confirmação de todos os sinais. Indicadores Utilizados

Project information

Budget
30+ USD
Deadline
from 15 to 35 day(s)