mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 02:57:56 +00:00
22 lines
436 B
C#
Executable File
22 lines
436 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MtApi
|
|
{
|
|
public enum ChartPeriod
|
|
{
|
|
ZERO = 0,
|
|
PERIOD_M1 = 1,
|
|
PERIOD_M5 = 5,
|
|
PERIOD_M15 = 15,
|
|
PERIOD_M30 = 30,
|
|
PERIOD_H1 = 60,
|
|
PERIOD_H4 = 240,
|
|
PERIOD_D1 = 1440,
|
|
PERIOD_W1 = 10080,
|
|
PERIOD_MN1 = 43200
|
|
}
|
|
}
|