Funds Net Closed Positions
Retrieve stocks ranked by the net number of positions closed by funds (closed positions - new positions) in the latest reporting quarter.
type
string
The type of security to retrieve.
One of stock, etf.
Returns all types if not specified.
market_cap
string
The market cap of securities to retrieve.
One or more of mega_cap, large_cap, mid_cap, small_cap, micro_cap, separated by commas.
Returns all market caps if not specified.
sector
string
The sector of securities to retrieve.
See the Sectors section for a list of all sectors.
Returns all sectors if not specified.
industry
string
The industry of securities to retrieve.
See the Industries section for a list of all industries.
Returns all industries if not specified.
sort_by
string
The field to sort the results by.
One of net, new, closed.
Defaults to net.
sort_dir
string
The order to sort the results by.
One of asc, desc.
Defaults to desc.
page
number
The page number to retrieve.
Defaults to 1.
page_size
number
The number of items per page.
If specified, must be between 1 and 10000 inclusive.
Defaults to 100.
/v1/fund-trends/net-closed-positions
{
"page": 1,
"page_size": 100,
"has_more_pages": false,
"reporting_year": 2025,
"reporting_quarter": 1,
"stocks": [
{
"stock": {
"id": "wtr1sn",
"ticker": "C",
"name": "Citigroup",
"active": true
},
"net_closed_positions": 88,
"new_positions": 88,
"closed_positions": 176
}
]
}