mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 19:17:48 +00:00
19 lines
384 B
C#
Executable File
19 lines
384 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
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
|
|
}
|
|
}
|