get_shibor_data
Retrieve Shanghai Interbank Offered Rate (SHIBOR) data for specified date ranges. Outputs results as a markdown table, aiding analysis of China's A-share market interbank lending rates.
Instructions
Fetches SHIBOR (Shanghai Interbank Offered Rate) data 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 SHIBOR 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_shibor_dataArguments",
"type": "object"
}