digital_currency_weekly
Retrieve weekly digital currency price data for analysis and tracking market trends using Alpha Vantage financial data.
Instructions
Fetch digital currency weekly
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| market | Yes |
Input Schema (JSON Schema)
{
"properties": {
"market": {
"type": "string"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol",
"market"
],
"type": "object"
}