Files
mtapi/MtApi/SeriesIdentifier.cs
T
2024-06-16 13:57:50 +03:00

13 lines
229 B
C#
Executable File

namespace MtApi
{
public enum SeriesIdentifier
{
MODE_OPEN = 0,
MODE_LOW = 1,
MODE_HIGH = 2,
MODE_CLOSE = 3,
MODE_VOLUME = 4,
MODE_TIME = 5
}
}