mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-08-15 03:38:09 +00:00
Fixed Issue #2: type for volume set to double (was int).
This commit is contained in:
Binary file not shown.
+1
-1
@@ -3539,7 +3539,7 @@ string ExecuteRequestOrderSend(JSONObject *jo)
|
|||||||
|
|
||||||
string symbol = jo.getString("Symbol");
|
string symbol = jo.getString("Symbol");
|
||||||
int cmd = jo.getInt("Cmd");
|
int cmd = jo.getInt("Cmd");
|
||||||
int volume = jo.getDouble("Volume");
|
double volume = jo.getDouble("Volume");
|
||||||
|
|
||||||
double price;
|
double price;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user