Enrique

MQL4 Indicateurs Experts

Spécifications

NECESITO QUE ME PASEN UN ALGORITMO DE PROREALTIME A METATRADER

 

// Definición de los parámetros del código
DEFPARAM CumulateOrders = False // Acumulación de posiciones desactivada

// Condiciones para entrada de posiciones largas
indicator1 = Average[4](RSI[14](close))
indicator2 = Average[4](RSI[14](close))
c1 = (indicator1 CROSSES OVER indicator2)

IF c1 THEN
BUY 1 CONTRACT AT MARKET
ENDIF

// Condiciones de salida de posiciones largas
indicator3 = Average[4](RSI[14](close))
indicator4 = Average[4](RSI[14](close))
c2 = (indicator3 CROSSES UNDER indicator4)

IF c2 THEN
SELL  AT MARKET
ENDIF

// Condiciones de entrada de posiciones cortas
indicator5 = Average[4](RSI[14](close))
indicator6 = RSI[14](close)
c3 = (indicator5 >= indicator6)

IF c3 THEN
SELLSHORT 1 CONTRACT AT MARKET
ENDIF

// Condiciones de salida de posiciones cortas
indicator7 = Average[4](RSI[14](close))
indicator8 = Average[4](RSI[14](close))
c4 = (indicator7 CROSSES UNDER indicator8)

IF c4 THEN
EXITSHORT  AT MARKET
ENDIF

// Stops y objetivos
SET STOP pTRAILING 10       

Répondu

1
Développeur 1
Évaluation
(106)
Projets
314
49%
Arbitrage
42
52% / 19%
En retard
22
7%
Gratuit
2
Développeur 2
Évaluation
(512)
Projets
773
63%
Arbitrage
33
27% / 45%
En retard
23
3%
Gratuit

Informations sur le projet

Budget
20 - 50 USD
TVA (21%): 4.2 - 10.5 USD
Total: 24.2 - 60.5 USD
Pour le développeur
18 - 45 USD
Délais
de 1 à 3 jour(s)