Fixed Issue #2: type for volume set to double (was int).

This commit is contained in:
DW
2016-05-10 18:05:11 +03:00
parent 8b333f599d
commit 5b46599b93
2 changed files with 1 additions and 1 deletions
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -3539,7 +3539,7 @@ string ExecuteRequestOrderSend(JSONObject *jo)
string symbol = jo.getString("Symbol");
int cmd = jo.getInt("Cmd");
int volume = jo.getDouble("Volume");
double volume = jo.getDouble("Volume");
double price;