get_deposit_rate_data
Retrieve benchmark deposit rates (current, fixed-term) for specified date ranges. Returns data in a markdown table format for easy analysis.
Instructions
Fetches benchmark deposit rates (活期, 定期) within a date range.
Args:
start_date: Optional. Start date in 'YYYY-MM-DD' format.
end_date: Optional. End date in 'YYYY-MM-DD' format.
Returns:
Markdown table with deposit rate data or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | ||
start_date | No |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "End Date"
},
"start_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Start Date"
}
},
"title": "get_deposit_rate_dataArguments",
"type": "object"
}