get_historical_data
Fetch historical price data for USD-pegged stablecoins, displaying date, price, and deviation in a Markdown table. Specify the stablecoin symbol and optional days for analysis.
Instructions
Fetch historical price data for a USD-pegged stablecoin and return as a Markdown table.
Args:
coin (str): The symbol of the stablecoin (e.g., 'usdt', 'usdc', 'dai').
days (int, optional): Number of days for historical data. Defaults to 7.
Returns:
str: A Markdown table with date, price, and deviation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coin | Yes | ||
days | No |
Input Schema (JSON Schema)
{
"properties": {
"coin": {
"title": "Coin",
"type": "string"
},
"days": {
"default": 7,
"title": "Days",
"type": "integer"
}
},
"required": [
"coin"
],
"title": "get_historical_dataArguments",
"type": "object"
}