Added Position and PositionBy properties to MqlTradeRequest

This commit is contained in:
Unknown
2017-08-25 15:32:24 +02:00
parent e072343fe1
commit 29722f362d
2 changed files with 5 additions and 1 deletions
+2
View File
@@ -1777,6 +1777,8 @@ void ReadMqlTradeRequestFromCommand(MqlTradeRequest& request)
request.expiration = (datetime)tmpEnumValue;
getStringValue(ExpertHandle, 14, commentValue);
request.comment = commentValue;
getULongValue(ExpertHandle, 15, request.position);
getULongValue(ExpertHandle, 16, request.position_by);
}
string BoolToString(bool value)