Issue #31: Implemented function SymbolInfoDouble in MtApi MT4

This commit is contained in:
vdemydiuk
2016-11-14 14:04:31 +02:00
parent c64417474a
commit 32f6018858
13 changed files with 332 additions and 188 deletions
+2 -1
View File
@@ -13,6 +13,7 @@
iCustom = 8,
CopyRates = 9,
Session = 10,
SeriesInfoInteger = 11
SeriesInfoInteger = 11,
SymbolInfoDouble = 12
}
}
+12
View File
@@ -0,0 +1,12 @@
using System;
namespace MtApi.Requests
{
internal class SymbolInfoDoubleRequest : RequestBase
{
public override RequestType RequestType => RequestType.SymbolInfoDouble;
public string SymbolName { get; set; }
public int PropId { get; set; }
}
}