crypto_intraday
Get real-time cryptocurrency intraday trading data for analysis, including price movements and market trends within specific time intervals.
Instructions
Fetch crypto intraday
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | ||
| market | Yes | ||
| interval | Yes | ||
| outputsize | No | ||
| datatype | No |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"type": "string"
},
"interval": {
"type": "string"
},
"market": {
"type": "string"
},
"outputsize": {
"type": "string"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol",
"market",
"interval"
],
"type": "object"
}