namespace CryptoExchange.Net.CommonObjects
{
///
/// Order type
///
public enum CommonOrderType
{
///
/// Limit type
///
Limit,
///
/// Market type
///
Market,
///
/// Other order type
///
Other
}
///
/// Order side
///
public enum CommonOrderSide
{
///
/// Buy order
///
Buy,
///
/// Sell order
///
Sell
}
///
/// Order status
///
public enum CommonOrderStatus
{
///
/// placed and not fully filled order
///
Active,
///
/// canceled order
///
Canceled,
///
/// filled order
///
Filled
}
///
/// Position side
///
public enum CommonPositionSide
{
///
/// Long position
///
Long,
///
/// Short position
///
Short,
///
/// Both
///
Both
}
}