asx-stocks
v1.1.7
Published
node module to pull data from ASX
Downloads
3
Readme
ASXapi
port pyasx over to node with typescript
const asx = require('asx-stocks')
asx.getListedCompanies()
.then((companies) => {
console.log(companies[100])
console.log(companies[101])
})
--- output ---
{
name: 'ALTERITY THERAPEUTICS LIMITED',
ticker: 'ATH',
gicsIndustry: 'Pharmaceuticals, Biotechnology & Life Sciences'
}
{
name: 'ALTERNATIVE INVESTMENT TRUST',
ticker: 'AIQ',
gicsIndustry: 'Not Applic'
}