Liquidity_Predator/Utilities/Log/M_LogWarning.mqh

9 lines
130 B
MQL5
Raw Permalink Normal View History

2026-02-11 19:29:28 +01:00
bool M_LogWarning(string Message)
{
if(!bOptimizationRun)
{
Print("Warning: " + Message);
}
return true;
}