trade

Topic format: trade.{marketId}, fx. trade.BTCUSDC

  id: string;
  marketId: string;
  size: number;
  executionPrice: number;
  direction: OrderDirection;
  side: OrderSide;
  timestamp: string;

OrderSide could be either "BUY" or "SELL"

OrderDirection could be either "SHORT" or "LONG"

A combination of OrderSide and OrderDirection shows what order was executed as a taker in the trade

Last updated