14 lines
1 KiB
MQL5
14 lines
1 KiB
MQL5
//+------------------------------------------------------------------+
|
|
//| |
|
|
//+------------------------------------------------------------------+
|
|
class DataInfo
|
|
{
|
|
//информация по каждой отдельно взятой сделке
|
|
public:
|
|
ulong posID;
|
|
double posPNL;
|
|
double posSize;
|
|
string posComment;
|
|
ENUM_POSITION_TYPE type;
|
|
};
|
|
//+------------------------------------------------------------------+
|