Plot only one "field" of a Redis Stream

Hello,

I’m new to Redis but I’ve some data in Redis streams

which look like

XRANGE trades-BINANCE-BTC-USDT 1711915630000 1711915637000


1) 1) "1711915630040-0"
   2) 1) "exchange"
      2) "BINANCE"
      3) "symbol"
      4) "BTC-USDT"
      5) "side"
      6) "sell"
      7) "amount"
      8) "0.0003"
      9) "price"
      10) "71029.95"
      11) "id"
      12) "2946737379"

I’d like to plot with Grafana only price in timeseries plot.

I did the following

Query:
Type: Redis
Command: XRANGE
Key: $trades (variable which contains trades-BINANCE-BNB-USDT)

Unfortunately I don’t know how to only plot price

Sorry for my newbie question.

Kind regards