okx_taker_volume
Retrieve active buy and sell trading volume data for cryptocurrencies on OKX exchange. Analyze market participation across different time periods and instrument types to understand trader behavior.
Instructions
获取OKX加密货币主动买入和卖出的交易量
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| instType | No | 产品类型 SPOT:现货 CONTRACTS:衍生品 | SPOT |
| period | No | 时间粒度,仅支持: [5m/1H/1D] 注意大小写,仅分钟为小写m | 1h |
| symbol | No | 币种,格式: BTC 或 ETH | BTC |
Input Schema (JSON Schema)
{
"properties": {
"instType": {
"default": "SPOT",
"description": "产品类型 SPOT:现货 CONTRACTS:衍生品",
"type": "string"
},
"period": {
"default": "1h",
"description": "时间粒度,仅支持: [5m/1H/1D] 注意大小写,仅分钟为小写m",
"type": "string"
},
"symbol": {
"default": "BTC",
"description": "币种,格式: BTC 或 ETH",
"type": "string"
}
},
"type": "object"
}