list_futures_trades
Retrieve futures contract trades within a specified time range using ticker, timestamp filters, and session end date parameters.
Instructions
Get trades for a futures contract in a given time range.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
params | No | ||
session_end_date | No | ||
session_end_date_gt | No | ||
session_end_date_gte | No | ||
session_end_date_lt | No | ||
session_end_date_lte | No | ||
sort | No | ||
ticker | Yes | ||
timestamp | No | ||
timestamp_gt | No | ||
timestamp_gte | No | ||
timestamp_lt | No | ||
timestamp_lte | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"session_end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Session End Date"
},
"session_end_date_gt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Session End Date Gt"
},
"session_end_date_gte": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Session End Date Gte"
},
"session_end_date_lt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Session End Date Lt"
},
"session_end_date_lte": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Session End Date Lte"
},
"sort": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sort"
},
"ticker": {
"title": "Ticker",
"type": "string"
},
"timestamp": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Timestamp"
},
"timestamp_gt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Timestamp Gt"
},
"timestamp_gte": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Timestamp Gte"
},
"timestamp_lt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Timestamp Lt"
},
"timestamp_lte": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Timestamp Lte"
}
},
"required": [
"ticker"
],
"title": "list_futures_tradesArguments",
"type": "object"
}