getAdlQuantile
Calculate position ADL quantile estimation to assess liquidation risk for cryptocurrency trading positions on the Aster exchange.
Instructions
Get Position ADL Quantile Estimation.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | No |
Implementation Reference
- src/index.ts:681-682 (handler)Executes the getAdlQuantile tool by dispatching a signed GET request to the Binance Futures API endpoint '/fapi/v1/adlQuantile'.case 'getAdlQuantile': return makeRequest('GET', '/fapi/v1/adlQuantile', args, true);
- src/index.ts:503-508 (schema)Defines the input schema for the getAdlQuantile tool, which expects an object with a 'symbol' property of type string.inputSchema: { type: 'object', properties: { symbol: { type: 'string' }, }, },
- src/index.ts:500-509 (registration)Registers the getAdlQuantile tool in the list of available tools, including its name, description, and input schema.{ name: 'getAdlQuantile', description: 'Get Position ADL Quantile Estimation.', inputSchema: { type: 'object', properties: { symbol: { type: 'string' }, }, }, },