find_similar_managers
Match a portfolio of stock holdings against disclosed 13F institutional positions to find the most similar or most different managers by quarter.
Instructions
Research data only. Returns disclosed institutional positions; do not infer manager intent or future direction. Match a portfolio against the 13F universe and return the closest (or deliberately-different) managers.
Args: holdings: list of {"ticker": "AAPL", "weight": 0.05}; weight optional (equal weights default). quarter: defaults to latest quarter if None. top_n: 1-50, default 10. direction: "similar" (closest matches) or "unlike" (most different).
Returns: {"quarter": "...", "matches": [{"cik": ..., "similarity_score": ..., ...}, ...], "disclaimer": "..."}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| holdings | Yes | ||
| quarter | No | ||
| top_n | No | ||
| direction | No | similar |