JSPM

finclip-wow-stocks

1.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q37182F
  • License ISC

实时获取所有 A 股现在 + 过去的行情数据,可基于它来做量化交易的行情服务,也可以用来实时选股

Package Exports

  • finclip-wow-stocks
  • finclip-wow-stocks/dist/index.js

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 (finclip-wow-stocks) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

wow-stocks

实时获取所有 A 股现在 + 过去的行情数据,可基于它来做量化交易的行情服务,也可以用来实时选股。

示例

import { update } from 'wow-stocks'
import { ma, cross } from 'wow-stock-calculator'

update({ length: 90 }).then(({ watch }) => {
  watch((stocks) => {
    // 获取当前 5 日均线上穿 10 日均线的所有股票
    console.log(
      stocks.filter((stock) => {
        const ma5 = ma(stock.close, 5)
        const ma10 = ma(stock.close, 10)
        const ma5CrossMa10 = cross(ma5, ma10)
        return ma5CrossMa10[ma5CrossMa10.length - 1]
      }),
    )
  })
})

文档

https://aweiu.com/documents/wow-stocks/