Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Hook to stream market information (mark price, index price, 24h stats) for a single symbol.
PERP_BTC_USDC
const marketInfo = useTickerStream("PERP_BTC_USDC"); return ( <> <div className="flex flex-col"> <div className="color-gray">Mark</div> <div>{stream.mark_price}</div> </div> <div className="flex flex-col"> <div className="color-gray">Index</div> <div>{stream.index_price}</div> </div> <div className="flex flex-col"> <div className="color-gray">24h volume</div> <div>{stream["24h_amount"]}</div> </div> </> );