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

Log4mql - librería para MetaTrader 4

Visualizaciones:
6246
Ranking:
(24)
Publicado:
2015.07.06 10:51
Actualizado:
2016.11.22 07:32
\MQL4\Include\
log4mql.mqh (16.61 KB) ver
¿Necesita un robot o indicador basado en este código? Solicítelo en la bolsa freelance Pasar a la bolsa

Log4mql is an MQL4 (MetaQuotes MetaTrader 4 Language) library for flexible logging to files and the terminal console. It is modeled after the Log4j Java library.

Documentation (GitHub): https://github.com/swaypnet/Log4mql

Usage in your Code:

CLog4mql::getInstance().error(__FILE__, __LINE__, "Something unexpected happen");

or (for more frequent usage)

CLog4mql* logger = CLog4mql::getInstance();
logger.error(__FILE__, __LINE__, "Something unexpected happen");
logger.info(__FILE__, __LINE__, "Calcumation done");
logger.debug(__FILE__, __LINE__, StringFormat("The result of %s is %d", string1, value1));

Don't forget at the end of your EA/Indicator/Script:

 CLog4mql::release();

or

logger.release();

Directories:

The directory for the log4mql.conf and the log4mql.log files

  • Normal mode: <mt4datadir>/MQL4/Files/
  • Test mode: <mt4datadir>/tester/files/

Log levels:

You can configure the required log level for output in the config file for each appending file and/or a global default.

  • TRACE
  • DEBUG
  • INFO
  • WARN
  • ERROR
  • CRIT

Log4mql

Trade History Export to CSV Trade History Export to CSV

Exports CSV file to analyze trade history for a symbol.

Fibo For Yesterday and Last Week Fibo For Yesterday and Last Week

Using Golden Section Analysis of the market for yesterday and last week.

Guppy (Long and Short) Guppy (Long and Short)

This indicator combines two groups of six exponential moving averages of different periods to elucidate the direction and the strength of the short-term and long-term trend.

Check Current Open Orders With Profit Check Current Open Orders With Profit

This script lists current open orders with profit.