search Nothing found
Main Algotrading documentation Constants and enumerations

OrderType

Predefined list of pending orders

public enum OrderType : int
{
BuyLimit = 100,
SellLimit = 101,
BuyStop = 102,
SellStop = 103
}

Description

Order type
 
Description
int
BuyLimit
Pending buy order (Set below the current price)
100
SellLimit
Pending sell order (Set above the current price)
101
BuyStop
Pending buy order (Set above the current price)
102
SellStop
Pending sell order (Set below the current price)
103