mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-27 18:47:55 +00:00
15 lines
331 B
C#
Executable File
15 lines
331 B
C#
Executable File
// ReSharper disable InconsistentNaming
|
|
|
|
namespace MtApi5.Requests
|
|
{
|
|
internal enum RequestType
|
|
{
|
|
Unknown = 0,
|
|
CopyTicks = 1,
|
|
iCustom = 2,
|
|
OrderSend = 3,
|
|
PositionOpen = 4,
|
|
OrderCheck = 5,
|
|
MarketBookGet = 6
|
|
}
|
|
} |