search_specific_position_by_ticker
Search for a single open position by its exact ticker symbol and retrieve details like quantity, average price, current price, and profit/loss without fetching the full portfolio.
Instructions
Look up a single open position by its exact ticker symbol.
Use this when you need details on one specific holding without fetching the
entire portfolio. Returns the same Position data as fetch_all_open_positions
but for a single instrument.
Args:
ticker: The exact Trading 212 ticker symbol (e.g., 'AAPL_US_EQ', 'IGLDd_EQ').
Use search_instrument to find the correct ticker if unsure.
Returns:
Position with ticker, quantity, averagePrice, currentPrice, ppl, and moreInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ticker | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ticker | Yes | ||
| quantity | Yes | ||
| averagePrice | Yes | ||
| currentPrice | Yes | ||
| ppl | No | ||
| fxPpl | No | ||
| initialFillDate | No | ||
| pieQuantity | No | ||
| maxBuy | No | ||
| maxSell | No | ||
| frontend | No |