Puga/PugaFiles/DataInfo.mqh
super.admin cb1aa93a0a convert
2025-05-30 16:18:30 +02:00

14 lines
1 KiB
MQL5

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