etrade_lookup_product
Search for stocks, mutual funds, and options using symbols or company names to retrieve detailed product information from E*TRADE market data.
Instructions
Look up products by symbol or company name.
Args: search: Full or partial symbol name to search for company: Full or partial company name (optional) type: Security type - EQ (equity), MF (mutual fund), OPTN (option) (optional)
Returns: List of matching products with details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| search | Yes | ||
| company | No | ||
| type | No |
Input Schema (JSON Schema)
{
"properties": {
"company": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"search": {
"type": "string"
},
"type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"required": [
"search"
],
"type": "object"
}