get_order_book_ticker
Retrieve order book ticker data for trading pairs from Aster Finance API, output as a Markdown table with symbol, bid/ask prices, and quantities for market analysis.
Instructions
Fetch order book ticker data from Aster Finance API and return as Markdown table text.
Parameters:
symbol (Optional[str]): Trading pair symbol (e.g., 'BTCUSDT', 'ETHUSDT'). Case-insensitive.
If None, returns data for all symbols.
Returns:
str: Markdown table containing symbol, bidPrice, bidQty, askPrice, and askQty.
Raises:
Exception: If the API request fails or data processing encounters an error.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | No |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Symbol"
}
},
"title": "get_order_book_tickerArguments",
"type": "object"
}