Largest Short Volume by Day
GetLargestShortVolumeGet the stocks with the largest daily short sale volume for a single trading day (defaults to the latest available), from FINRA's daily short sale volume files, sorted by short volume descending. Short % is the share of that day's FINRA-facility (off-exchange/TRF) volume sold short — 40-50% is a normal market-making baseline — NOT short interest (the open short position; use GetShortInterest/GetShortInterestSnapshot for positions and GetShortSqueezeScores for squeeze candidates; use GetShortVolume for one stock's daily history). Pass sortBy=shortPercent with a minTotalVolume floor to rank by short intensity instead of raw size.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | Trading day in YYYY-MM-DD format (defaults to the latest available day) | |
| offset | No | Number of ranked results to skip before returning rows — pass the previous call's last row number to page past the maxResults cap (default: 0) | |
| sortBy | No | Sort key: shortVolume (default) or shortPercent — with shortPercent set a minTotalVolume floor, otherwise illiquid names dominate | shortVolume |
| maxResults | No | Maximum number of results to return (default: 50, max: 500) | |
| minShortVolume | No | Minimum short volume filter (default: 0) | |
| minTotalVolume | No | Minimum total FINRA-reported volume filter, in shares (default: 0 = no floor) |