1
0
Fork 0
forked from MrLeo/Warrior_EA
Warrior_EA_Fork_Test/System/PrintVerbose.mqh

11 lines
537 B
MQL5
Raw Permalink Normal View History

2025-05-30 16:35:54 +02:00
//+------------------------------------------------------------------+
//| PrintVerbose.mqh |
//| AnimateDread |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "AnimateDread"
#property link "https://www.mql5.com"
void PrintVerbose(string message) {
if (VerboseMode)
Print(message);
}