mirror of
https://github.com/vdemydiuk/mtapi.git
synced 2026-07-27 18:47:55 +00:00
16 lines
341 B
C#
Executable File
16 lines
341 B
C#
Executable File
namespace MtApi
|
|
{
|
|
public enum TradeOperation
|
|
{
|
|
OP_BUY = 0,
|
|
OP_SELL = 1,
|
|
OP_BUYLIMIT = 2,
|
|
OP_SELLLIMIT = 3,
|
|
OP_BUYSTOP = 4,
|
|
OP_SELLSTOP = 5,
|
|
OP_BALANCE = 6,
|
|
OP_CREDIT = 7,
|
|
OP_REBATE = 8
|
|
}
|
|
}
|