Issue #91: Added MarketBookGetRequest to perform function MarketBookGet (MT5)

This commit is contained in:
vdemydiuk
2018-02-21 14:43:25 +02:00
parent be8a17c0fd
commit c86a3a3752
9 changed files with 81 additions and 69 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace MtApi5.Requests
{
internal class MarketBookGetRequest: RequestBase
{
public override RequestType RequestType => RequestType.MarketBookGet;
public string Symbol { get; set; }
}
}
+2 -1
View File
@@ -9,6 +9,7 @@ namespace MtApi5.Requests
iCustom = 2,
OrderSend = 3,
PositionOpen = 4,
OrderCheck = 5
OrderCheck = 5,
MarketBookGet = 6
}
}