Issue #89: Changed function PositionOpen to use json request/response

This commit is contained in:
vdemydiuk
2018-02-19 15:54:03 +02:00
parent c9c188f697
commit d6640300f5
8 changed files with 141 additions and 50 deletions
+3 -3
View File
@@ -1,13 +1,13 @@
using System.Diagnostics.CodeAnalysis;
// ReSharper disable InconsistentNaming
namespace MtApi5.Requests
{
[SuppressMessage("ReSharper", "InconsistentNaming")]
internal enum RequestType
{
Unknown = 0,
CopyTicks = 1,
iCustom = 2,
OrderSend = 3
OrderSend = 3,
PositionOpen = 4
}
}