https://github.com/aweiu/wow-stock-quotation
😱 获取所有 A 股实时 + 历史行情
https://github.com/aweiu/wow-stock-quotation
stock
Last synced: about 2 months ago
JSON representation
😱 获取所有 A 股实时 + 历史行情
- Host: GitHub
- URL: https://github.com/aweiu/wow-stock-quotation
- Owner: aweiu
- Created: 2019-08-31T05:06:00.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-12T00:34:56.000Z (almost 4 years ago)
- Last Synced: 2025-04-02T06:12:14.301Z (3 months ago)
- Topics: stock
- Language: TypeScript
- Homepage:
- Size: 37.1 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wow-stock-quotation
获取所有 A 股实时 + 历史行情
```
{
date: string // 日期
code: string // 股票代码
open: number // 开盘价
close: number // 收盘价/当前价
preClose?: number // 昨日收盘价 只在实时行情中有该字段
high: number // 最高价
low: number // 最低价
volume: number // 成交量(单位:股)
amount: number // 成交额(单位:人民币元)
turnover: number // 换手率
suspended: boolean // 是否停牌
buying?: [{ price: number, volume: number }...] // 买5 只在实时行情中有该字段。volume 单位:股
selling?: [{ price: number, volume: number }...] // 卖5 只在实时行情中有该字段。volume 单位:股
}
```[文档地址](https://aweiu.com/documents/wow-stock-quotation/)