EA-Setka-2/framework/common/alert.mqh

17 lines
263 B
MQL5
Raw Permalink Normal View History

2025-05-30 14:50:44 +02:00
#ifndef FRAMEWORK_ALERT_MQH
#define FRAMEWORK_ALERT_MQH
#ifdef FOR_OPTIMIZATION
#define ALERT_PUSH( message )
#else
#define ALERT_PUSH( message ) \
Alert(StringFormat("[%s] - %s", \
CURRENT_SYMBOL, \
message) )
#endif
#endif