forked from MrLeo/Warrior_EA
11 lines
537 B
MQL5
11 lines
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);
|
||
|
}
|