1
0
Fork 0
forked from MrLeo/Warrior_EA
Warrior_EA_Fork_Test/System/PrintVerbose.mqh
super.admin 0a527b0cf9 convert
2025-05-30 16:35:54 +02:00

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);
}