get_price_change_statistics_24h
Retrieve 24-hour price change statistics for trading pairs in a Markdown table format using Aster Finance API. Includes symbol, price change, percentage change, last price, and volume.
Instructions
Fetch 24-hour ticker price change statistics 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, priceChange, priceChangePercent, lastPrice, and volume.
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_price_change_statistics_24hArguments",
"type": "object"
}