Subscribe to trades via Websockets for a given symbol.

Example

const { data, isLoading } = useMarketTradeStream(symbol);

The returned data is an array of objects containing the following fields:

{
  "price": 95731.5,
  "side": "SELL",
  "size": 0.1,
  "ts": 1732805310368
}