get_avg_price
Calculate the average price of a cryptocurrency trading pair using Binance market data. Provide the trading pair symbol (e.g., BTCUSDT) to retrieve precise price averages for informed decision-making.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Trading pair symbol, e.g. BTCUSDT |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbol": {
"description": "Trading pair symbol, e.g. BTCUSDT",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}