Implemented function ChartNavigate (MT5)

This commit is contained in:
vdemydiuk
2018-03-15 12:55:46 +02:00
parent 29be184136
commit bd45c45fa1
4 changed files with 62 additions and 31 deletions
+9 -3
View File
@@ -112,11 +112,17 @@ namespace MtApi5
public enum ENUM_CHART_PROPERTY_STRING
{
CHART_COMMENT = 20,
CHART_EXPERT_NAME = 113,
CHART_SCRIPT_NAME = 114
CHART_COMMENT = 20,
CHART_EXPERT_NAME = 113,
CHART_SCRIPT_NAME = 114
}
public enum ENUM_CHART_POSITION
{
CHART_BEGIN = 0, // Chart beginning (the oldest prices)
CHART_CURRENT_POS = 1, // Current position
CHART_END = 2 // Chart end (the latest prices)
}
#endregion