get_usd_mxn_historical_data
Retrieve historical USD/MXN exchange rate data from Banxico, specifying the number of recent data points to analyze currency trends and financial insights.
Instructions
Get historical USD/MXN exchange rate data from Banxico.
Args: limit: Maximum number of recent data points to return (default: 30)
Returns: Historical USD/MXN exchange rate data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 30,
"title": "Limit"
}
},
"type": "object"
}