list_short_volume
Retrieve short volume data for stocks by specifying ticker, date range, and sorting options to analyze market trends on the Polygon-io MCP Server.
Instructions
Retrieve short volume data for stocks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | ||
date_gt | No | ||
date_gte | No | ||
date_lt | No | ||
date_lte | No | ||
limit | No | ||
order | No | ||
params | No | ||
sort | No | ||
ticker | No |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"anyOf": [
{
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Date"
},
"date_gt": {
"anyOf": [
{
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Date Gt"
},
"date_gte": {
"anyOf": [
{
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Date Gte"
},
"date_lt": {
"anyOf": [
{
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Date Lt"
},
"date_lte": {
"anyOf": [
{
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Date Lte"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"order": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Order"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"sort": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sort"
},
"ticker": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Ticker"
}
},
"title": "list_short_volumeArguments",
"type": "object"
}