mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 19:17:48 +00:00
9 lines
227 B
C#
Executable File
9 lines
227 B
C#
Executable File
namespace MtApi5
|
|
{
|
|
public enum CopyTicksFlag
|
|
{
|
|
Info = 1, // ticks with Bid and/or Ask changes
|
|
Trade = 2, // ticks with changes in Last and Volume
|
|
All = -1 // all ticks
|
|
}
|
|
} |