Get Top Long/Short Account Ratio
Get historical long/short account ratio for top traders on a specific exchange. Shows positioning of large, experienced traders. Top traders typically have higher win rates. Supports multiple intervals. Ideal for: smart money tracking, whale sentiment analysis, institutional positioning, follow-the-leader strategies.
Catalog action Blockchain Data
Get historical long/short account ratio for top traders on a specific exchange. Shows positioning of large, experienced traders. Top traders typically have higher win rates. Supports multiple intervals. Ideal for: smart money tracking, whale sentiment analysis, institutional positioning, follow-the-leader strategies.
At a Glance
| Field | Value |
|---|---|
| Action ID | coinglass-get-top-long-short-account-ratio |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinglass, futures, long-short, ratio, top-traders, whales, sentiment, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
exchange | string | Yes | Exchange name (e.g., 'Binance', 'OKX', 'Bybit') |
symbol | string | Yes | Trading pair symbol (e.g., 'BTCUSDT', 'ETHUSDT') |
interval | string | Yes | Time interval for data aggregation |
limit | number | No | Maximum number of results (default: 1000, max: 4500) |
startTime | number | No | Start timestamp in seconds (Unix timestamp) |
endTime | number | No | End timestamp in seconds (Unix timestamp) |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
exchange | string | Yes | Exchange name |
symbol | string | Yes | Trading pair symbol |
interval | string | Yes | Time interval |
dataPoints | array | Yes | Array of top traders long/short account ratio data points |
Examples
json{ "type": "coinglass-get-top-long-short-account-ratio", "payload": { "exchange": "example-exchange", "symbol": "ETH", "interval": "1h" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coinglass-get-top-long-short-account-ratio/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "exchange": "example-exchange", "symbol": "ETH", "interval": "1h" }}'
Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.
