Skip to content

Order Side

Order Side is an enum that represents the side of an order. It can be either BUY or SELL.

Usage

You would normally not need to use it directly.

Structure

class OrderSide(Enum):
"""
Enum for order side.
"""
BUY = "buy"
SELL = "sell"