fx_intraday
Retrieve real-time and historical foreign exchange rate data for currency pairs at specified intervals to analyze market trends and monitor exchange rate movements.
Instructions
Fetch FX intraday
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| from_symbol | Yes | ||
| to_symbol | Yes | ||
| interval | Yes | ||
| outputsize | No | ||
| datatype | No |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"type": "string"
},
"from_symbol": {
"type": "string"
},
"interval": {
"type": "string"
},
"outputsize": {
"type": "string"
},
"to_symbol": {
"type": "string"
}
},
"required": [
"from_symbol",
"to_symbol",
"interval"
],
"type": "object"
}