Added projects MtApi4 and MtApi5

This commit is contained in:
Vyacheslav Demidyuk
2014-10-31 09:05:52 +02:00
parent 869d3a117b
commit 8746e96416
178 changed files with 26390 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MtApi
{
public enum SeriesIdentifier
{
MODE_OPEN = 0,
MODE_LOW = 1,
MODE_HIGH = 2,
MODE_CLOSE = 3,
MODE_VOLUME = 4,
MODE_TIME = 5
}
}