get_trading_day_ticker
Fetch trading day ticker data for Binance cryptocurrency pairs to analyze market activity, supporting single or multiple symbols and customizable data types (FULL or MINI).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | No | Trading pair symbol, e.g. BTCUSDT | |
symbols | No | Array of multiple trading pair symbols | |
timeZone | No | Time zone, default 0 | |
type | No | Return data type, FULL or MINI |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbol": {
"description": "Trading pair symbol, e.g. BTCUSDT",
"type": "string"
},
"symbols": {
"description": "Array of multiple trading pair symbols",
"items": {
"type": "string"
},
"type": "array"
},
"timeZone": {
"description": "Time zone, default 0",
"type": "number"
},
"type": {
"description": "Return data type, FULL or MINI",
"enum": [
"FULL",
"MINI"
],
"type": "string"
}
},
"type": "object"
}