idstock-reader
v0.2.1
Published
Reader for financial report that published by [Indonesian Stock Exchange](https://idx.co.id) that have .xlsx format
Downloads
12
Readme
IDX Financial Report Reader
Reader for financial report that published by Indonesian Stock Exchange that have .xlsx format
How to Install
npm install idstock-reader
// using yarn:
yarn add idstock-readerUsage
import Reader from 'idstock-reader'
const readerIns = new Reader({path: "financialReportPath.xlsx", language: "en"})
// Get general information
await readerIns.getGeneral()
//get cashflow statement
await readerIns.getCashflow()
//get balance statement
await readerIns.getBalance()
//get income statement
await readerIns.getIncome()
//get change statement
await readerIns.getChangeStatement()
//get full report (general, income, cashflow, balance, change) statement
await readerIns.getFullReport()
