2
0
포크 0
원본 프로젝트 animatedread/Warrior_EA
Warrior_EA/System/PrintVerbose.mqh

11 lines
537 B
MQL5

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