list_conditions
Retrieve a list of trading conditions used by Polygon.io, filtered by asset class, data type, ID, or SIP, to streamline market data analysis.
Instructions
List conditions used by Polygon.io.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
asset_class | No | ||
data_type | No | ||
id | No | ||
params | No | ||
sip | No |
Input Schema (JSON Schema)
{
"properties": {
"asset_class": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Asset Class"
},
"data_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Data Type"
},
"id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Id"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"sip": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sip"
}
},
"title": "list_conditionsArguments",
"type": "object"
}