get_crypto_intraday
Fetch intraday cryptocurrency prices at customizable intervals (1min, 5min, 1hour) using Yahoo Finance data to monitor real-time market movements and trends.
Instructions
按时间间隔获取加密货币的分时价格,支持 1min、5min 和 1hour。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
interval | No | 1min | |
symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"interval": {
"default": "1min",
"title": "Interval",
"type": "string"
},
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"title": "get_crypto_intradayArguments",
"type": "object"
}