fx_daily
Retrieve daily foreign exchange rate data between currency pairs for financial analysis and market tracking.
Instructions
Fetch FX daily
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| from_symbol | Yes | ||
| to_symbol | Yes | ||
| datatype | No | ||
| outputsize | No |
Input Schema (JSON Schema)
{
"properties": {
"datatype": {
"type": "string"
},
"from_symbol": {
"type": "string"
},
"outputsize": {
"type": "string"
},
"to_symbol": {
"type": "string"
}
},
"required": [
"from_symbol",
"to_symbol"
],
"type": "object"
}