11 lines
No EOL
537 B
MQL5
11 lines
No EOL
537 B
MQL5
//+------------------------------------------------------------------+
|
|
//| PrintVerbose.mqh |
|
|
//| AnimateDread |
|
|
//| https://www.mql5.com |
|
|
//+------------------------------------------------------------------+
|
|
#property copyright "AnimateDread"
|
|
#property link "https://www.mql5.com"
|
|
void PrintVerbose(string message) {
|
|
if (VerboseMode)
|
|
Print(message);
|
|
} |