subscribeToTicker
Subscribe to real-time ticker updates for specific trading pairs on Bitget cryptocurrency exchange. Choose instrument type (SPOT or UMCBL) to monitor market data instantly.
Instructions
Subscribe to real-time ticker updates
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instType | No | Instrument type (default: SPOT) | |
symbol | Yes | Trading pair symbol |
Input Schema (JSON Schema)
{
"properties": {
"instType": {
"description": "Instrument type (default: SPOT)",
"enum": [
"SPOT",
"UMCBL"
],
"type": "string"
},
"symbol": {
"description": "Trading pair symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}