okx_loan_ratios
Calculate OKX cryptocurrency loan ratios between borrowed quote currency and borrowed base currency to monitor borrowing patterns and market sentiment across different time periods.
Instructions
获取OKX加密货币借入计价货币与借入交易货币的累计数额比值
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| period | No | 时间粒度,仅支持: [5m/1H/1D] 注意大小写,仅分钟为小写m | 1h |
| symbol | No | 币种,格式: BTC 或 ETH | BTC |
Input Schema (JSON Schema)
{
"properties": {
"period": {
"default": "1h",
"description": "时间粒度,仅支持: [5m/1H/1D] 注意大小写,仅分钟为小写m",
"type": "string"
},
"symbol": {
"default": "BTC",
"description": "币种,格式: BTC 或 ETH",
"type": "string"
}
},
"type": "object"
}