get_snapshot_direction
Identify market gainers or losers with precision by specifying market type and direction, streamlining insights for informed trading decisions.
Instructions
Get gainers or losers for a market.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
direction | Yes | ||
include_otc | No | ||
market_type | Yes | ||
params | No |
Input Schema (JSON Schema)
{
"properties": {
"direction": {
"title": "Direction",
"type": "string"
},
"include_otc": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Include Otc"
},
"market_type": {
"title": "Market Type",
"type": "string"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
}
},
"required": [
"market_type",
"direction"
],
"title": "get_snapshot_directionArguments",
"type": "object"
}