analyze_peg_stability
Assess the stability of USD-pegged stablecoins by generating a detailed Markdown report with historical data, current price, and analysis over a specified time period.
Instructions
Generate a peg stability analysis report for a USD-pegged stablecoin.
Args:
coin (str): The symbol of the stablecoin (e.g., 'usdt', 'usdc', 'dai').
days (int, optional): Number of days for analysis. Defaults to 7.
Returns:
str: A Markdown-formatted report with historical data, current price, and stability analysis.
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": "analyze_peg_stabilityArguments",
"type": "object"
}