TradableOrderStatus

@objc public enum TradableOrderStatus: Int

Possible statuses of order.

  • The order with this status is pending; it’s not a final status, the order can be cancelled or executed.

    Declaration

    Swift

    case pending
  • The order with this status has been executed; it’s a final status.

    Declaration

    Swift

    case executed
  • The order with this status has been cancelled; it’s a final status.

    Declaration

    Swift

    case cancelled