Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Twitter !
Rejoignez notre page de fans
Un script intéressant ?
Poster un lien vers celui-ci -
laisser les autres l'évaluer
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
Bibliothèque

Log4mql - bibliothèque pour MetaTrader 4

Vues:
6269
Note:
(24)
Publié:
2015.07.06 10:51
Mise à jour:
2016.11.22 07:32
\MQL4\Include\
log4mql.mqh (16.61 KB) afficher
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

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.