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

14 lines
292 B
C#
Executable File

namespace MtApi
{
public enum PriceConstantsType
{
PRICE_CLOSE = 0,
PRICE_OPEN = 1,
PRICE_HIGH = 2,
PRICE_LOW = 3,
PRICE_MEDIAN = 4,
PRICE_TYPICAL = 5,
PRICE_WEIGHTED = 6
}
}