Add method SymbolInfoSession()

This commit is contained in:
Konstantin Ivanov
2016-10-05 17:02:00 +03:00
parent 7aa2a1b691
commit 6b4adfaa97
8 changed files with 64 additions and 1 deletions
+2 -1
View File
@@ -11,6 +11,7 @@
OrderDelete = 6,
OrderModify = 7,
iCustom = 8,
CopyRates = 9
CopyRates = 9,
Session = 10,
}
}
+17
View File
@@ -0,0 +1,17 @@
using System;
namespace MtApi.Requests
{
public class SessionRequest : RequestBase
{
public string Symbol { get; set; }
public DayOfWeek DayOfWeek { get; set; }
public int SessionIndex { get; set; }
public SessionType SessionType { get; set; }
public override RequestType RequestType
{
get { return RequestType.Session; }
}
}
}