get_trade_history
Retrieve recent trade data for a specific cryptocurrency pair on Binance. Specify the symbol and limit to fetch detailed trade summaries for analysis or decision-making.
Instructions
Get recent trade history for a pair.
Args: symbol: The trading pair. limit: Number of trades to fetch.
Returns: List of trade summaries.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"title": "get_trade_historyArguments",
"type": "object"
}