Mira cómo descargar robots gratis
¡Búscanos en Telegram!
Pon "Me gusta" y sigue las noticias
¿Es interesante este script?
Deje un enlace a él, ¡qué los demás también lo valoren!
¿Le ha gustado el script?
Evalúe su trabajo en el terminal MetaTrader 5
Librerías

Math Utils - librería para MetaTrader 5

Visualizaciones:
552
Ranking:
(19)
Publicado:
2018.07.24 15:17
\MQL5\Include\
math_utils.mqh (13.38 KB) ver
\MQL5\Scripts\
math_test.mq5 (5.22 KB) ver
pitfalls.mq5 (3.94 KB) ver
¿Necesita un robot o indicador basado en este código? Solicítelo en la bolsa freelance Pasar a la bolsa

Funciones cómodas para comparar los números con punto flotante

bool EQ(double a, double b, int digits = 8);

bool GT(double a, double b, int digits = 8);

bool LT(double a, double b, int digits = 8);

bool NE(double a, double b, int digits = 8);

bool GE(double a, double b, int digits = 8);

bool LE(double a, double b, int digits = 8);



Funciones cómodas para redondear los números con punto flotante

double RoundToDigit(double number, int digits);

double RoundToDigitUp(double number, int digits);

double RoundToDigitDown(double number, int digits);

double RoundToStep(double number, double step);

double RoundToStepUp(double number, double step);

double RoundToStepDown(double number, double step);

double RoundPrice(double pPrice, string pSymbol = NULL);

double RoundVolume(double pVolume, string pSymbol = NULL);

Traducción del inglés realizada por MetaQuotes Ltd.
Artículo original: https://www.mql5.com/en/code/20822

WPR Support Resistance WPR Support Resistance

Soporte/resistencia a base del indicador WPR (Williams Percent Range).

Rocket RSI Rocket RSI

Indicador "Rocket RSI" de John Ehlers. Se utiliza para buscar las probabilidades fuertes de las reversiones cíclicas.

Executor Candles Executor Candles

Trading con varios patrones de velas. Niveles de Stop Loss, Take Profit y Trailing para BUY y SELL.

Rainbow WMA Rainbow WMA

El indicador se basa en Rainbow Average de Mel Widner (parece mucho a MMA Guppy). Es una versión generalizada de Rainbow WMA con algunas adiciones.