mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-28 11:07:48 +00:00
18 lines
343 B
C#
Executable File
18 lines
343 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MtApi
|
|
{
|
|
public enum TradeOperation
|
|
{
|
|
OP_BUY = 0,
|
|
OP_SELL = 1,
|
|
OP_BUYLIMIT = 2,
|
|
OP_SELLLIMIT = 3,
|
|
OP_BUYSTOP = 4,
|
|
OP_SELLSTOP = 5
|
|
}
|
|
}
|