searchSymbols
Find trading symbols by search criteria and filter by asset type to identify securities for market analysis and trading decisions.
Instructions
Search for symbols (Note: Symbol search not available in TradeStation v3 API - use getSymbolDetails instead with known symbols)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| criteria | Yes | Search criteria | |
| type | No | Symbol type filter | all |
Input Schema (JSON Schema)
{
"properties": {
"criteria": {
"description": "Search criteria",
"type": "string"
},
"type": {
"default": "all",
"description": "Symbol type filter",
"enum": [
"stock",
"option",
"future",
"forex",
"all"
],
"type": "string"
}
},
"required": [
"criteria"
],
"type": "object"
}