Order Side
Order Side is an enum that represents the side of an order.
It can be either BUY or SELL.
You would normally not need to use it directly.
Structure
Section titled “Structure”class OrderSide(Enum): """ Enum for order side. """ BUY = "buy" SELL = "sell"