Enumeration OrderType

OrderType Enum representing the type of order

console.log(OrderType.LIMIT); // 'limit'
console.log(OrderType.MARKET); // 'market'
console.log(OrderType.STOP_LIMIT); // 'stop_limit'
console.log(OrderType.OCO); // 'oco'

Enumeration Members

Enumeration Members

LIMIT

Limit order

MARKET

Market order

OCO

One cancels the other order

STOP_LIMIT

Stop limit order