export const isInternalMarketOrder = (order: InternalOrder): order is InternalMarketOrder => 'origQty' in order && order.type === 'MARKET';