Warning
This API is deprecated since shortsqueeze.com has removed all free data from their website.
Get detailed short stocks data from shortsqueeze.com
Warning! This is unofficial API. 💎🙌 to the moon 🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀
Install package from NPM
npm install shortsqueeze
Get free stock shorts data from shortsqueeze.com such as:
- Short intrest days to cover
- Short percent float
- Short % Increase / Decrease
- Short interest shares short
- Trading volume today vs Avg
- Market cap
- Current price (20 min delay)
- AND MANY OTHERS
Use shortsqueeze in async functions
const shortsqueeze = require('shortsqueeze');
const main = async () => {
const stock = await shortsqueeze('SPCE');
console.log(stock);
};
main();
await shortsqueeze('SPCE')
{
shortInterestRatioDaysToCover: 1.1,
shortPercentOfFloat: 10.12,
shortPercentIncreaseDecrease: -45,
shortInterestCurrentSharesShort: 21130000,
sharesFloat: 208790000,
shortInterestPriorSharesShort: 38600000,
percentFrom52WkHigh: -5.4,
percentFrom50DayMa: 74.66,
percentFrom200DayMa: 162.11,
percentFrom52WkLow: 555.74,
n52WeekPerformance: 148.91,
tradingVolumeTodayVsAvg: 108.18,
tradingVolumeToday: 21387935,
tradingVolumeAverage: 19770000,
marketCap: NaN,
percentOwnedByInsiders: 40,
percentOwnedByInstitutions: 29.72,
price: 54.53,
name: 'Virgin Galactic Holdings Inc',
ticker: 'SPCE'
}