JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q44718F
  • License MIT

Taiwan stock library

Package Exports

  • twstockjs

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (twstockjs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

twstockjs

npm Travis (.org) Coveralls github Gitter Codacy Badge David

台股資料library

Install

npm i twstockjs

Usage

const { Basic } = require('twstockjs');

API

Basic

getTseList()

取得上市證券清單

getOtcList()

取得上櫃證券清單

getTseAndOtcList()

取得上市櫃證券清單

getCorpInfo(string)

取得公司資料

await basic.getCorpInfo('2330');
await basic.getCorpInfo('台積電');
await basic.getCorpInfo('0050'); // null

isTradingDay(string)

判斷是否為交易日

checkTradingDay(string)

檢查是否為交易日

RealTime

getByStock(IStock)

  const realTimeData = await getByStock({
    code: '2330',
    name: '台積電', // 可有可無
    type: 'tse',
  });

TODO

  • 上市櫃清單

  • 公司基本資料

  • 即時資料