Liquidity_Predator/Utilities/Log/M_LogWarning.mqh
2026-02-11 19:29:28 +01:00

9 lines
No EOL
130 B
MQL5

bool M_LogWarning(string Message)
{
if(!bOptimizationRun)
{
Print("Warning: " + Message);
}
return true;
}