MQL5Book/Include/IS.mqh

29 lines
1,006 B
MQL5
Raw Permalink Normal View History

2025-05-30 16:09:41 +02:00
//+------------------------------------------------------------------+
//| IS.mqh |
//| Copyright 2022, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
//| Copmparison operators for conditions on properties |
//+------------------------------------------------------------------+
enum IS
{
EQUAL,
GREATER,
NOT_EQUAL,
LESS,
OR_EQUAL,
OR_BITWISE,
EQUAL_OR_ZERO,
};
//+------------------------------------------------------------------+
//| Abstract enum for typecasting |
//+------------------------------------------------------------------+
enum ENUM_ANY
{
};
//+------------------------------------------------------------------+