Files

14 lines
292 B
C#
Raw Permalink Normal View History

namespace MtApi
2014-10-31 09:05:52 +02:00
{
public enum PriceConstantsType
{
PRICE_CLOSE = 0,
PRICE_OPEN = 1,
PRICE_HIGH = 2,
PRICE_LOW = 3,
PRICE_MEDIAN = 4,
PRICE_TYPICAL = 5,
PRICE_WEIGHTED = 6
}
}