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