stock-api/README.md

152 lines
3.9 KiB
Markdown
Raw Normal View History

<h1 align="center">股票数据小助手</h1>
2020-08-03 00:47:05 +08:00
<p align="center">
<a href="https://codecov.io/github/jiucaixiaozhu/stock-api?branch=master"><img src="https://img.shields.io/codecov/c/github/jiucaixiaozhu/stock-api/master.svg?sanitize=true" alt="Coverage Status"></a>
<a href="https://npmcharts.com/compare/stock-api?minimal=true"><img src="https://img.shields.io/npm/dm/stock-api.svg?sanitize=true" alt="Downloads"></a>
<a href="https://www.npmjs.com/package/stock-api"><img src="https://img.shields.io/npm/v/stock-api.svg?sanitize=true" alt="Version"></a>
<a href="https://www.npmjs.com/package/stock-api"><img src="https://img.shields.io/npm/l/stock-api.svg?sanitize=true" alt="License"></a>
<a href="https://www.npmjs.com/package/stock-api"><img src="https://img.shields.io/badge/language-typescript-blue" alt="License"></a>
</p>
2020-07-23 23:24:08 +08:00
## 简介
2020-07-23 23:28:38 +08:00
一款聚焦在 `股票实时数据``周边相关服务` 的接口小助手。
2020-07-23 23:24:08 +08:00
## 股票数据
2020-08-21 00:42:13 +08:00
| 名称 | 接口名 | 搜索股票代码 | 获取股票实时数据 | 获取股票组实时数据 | 官网 |
| :---: | :---: | :---: | :---: | :---: | :---: |
| 网易财经 | netease | [已实现](#搜索股票代码) | [已实现](#获取股票实时数据) | [已实现](#获取股票组实时数据) | [传送门](https://money.163.com/) |
| 雪球 | xueqiu | [已实现](#搜索股票代码) | [已实现](#获取股票实时数据) | [已实现](#获取股票组实时数据) | [传送门](https://xueqiu.com/) |
2020-08-22 17:05:59 +08:00
| 新浪股票 | sina | [已实现](#搜索股票代码) | [已实现](#获取股票实时数据) | [已实现](#获取股票组实时数据) | [传送门](https://finance.sina.com.cn/) |
| 腾讯股票 | tencent | [已实现](#搜索股票代码) | [已实现](#获取股票实时数据) | [已实现](#获取股票组实时数据) | [传送门](http://gu.qq.com/) |
2020-07-23 23:24:08 +08:00
2020-07-29 09:19:48 +08:00
## 安装
2020-07-23 23:24:08 +08:00
```shell
npm install stock-api
2021-01-30 00:52:25 +08:00
yarn add stock-api
2020-07-23 23:24:08 +08:00
```
## 使用
### 接口概览
* [选择数据源](#选择数据源)
* [搜索股票代码](#搜索股票代码)
* [获取股票实时数据](#获取股票实时数据)
* [获取股票组实时数据](#获取股票组实时数据)
2020-08-02 11:26:03 +08:00
### 股票代码
2020-08-02 17:58:36 +08:00
由于每个交易所数据规则不一样,为了能统一规范对代码定义了规则 `交易所+股票代码`
2020-08-02 11:26:03 +08:00
| 交易所 | 代号 | 实例 |
| --- | --- | --- |
| 上海交易所 | SH | SH000001 |
| 深圳交易所 | SZ | SZ399001 |
| 香港交易所 | HK | HKHSI |
| 美国交易所 | US | USDJI |
2020-07-30 02:53:12 +08:00
### 选择数据源
2020-07-29 19:55:09 +08:00
##### 可选导入
```typescript
2020-07-30 02:53:12 +08:00
import { stocks } from "stock-api";
2020-07-29 19:55:09 +08:00
2020-08-20 02:21:22 +08:00
// 数据源
const sina = stocks.sina;
const xueqiu = stocks.xueqiu;
const netease = stocks.netease;
const tencent = stocks.tencent;
2020-07-29 19:55:09 +08:00
```
### 搜索股票代码
##### 示例
```typescript
import { stocks } from "stock-api";
// 获取股票组实时数据
stocks.sina.searchStocks(["510500"]).then(console.log);
```
##### 输出
```typescript
[{
code: 'SH510500',
name: '500ETF',
percent: 0.028383,
now: 7.174,
low: 6.93,
high: 7.184,
yesterday: 6.976
}]
```
2020-07-23 23:24:08 +08:00
### 获取股票实时数据
2020-07-29 19:55:09 +08:00
##### 示例
2020-07-23 23:24:08 +08:00
```typescript
2020-07-30 02:53:12 +08:00
import { stocks } from "stock-api";
2020-07-23 23:24:08 +08:00
2020-08-20 02:21:22 +08:00
// 获取股票实时数据
stocks.sina.getStock("SH510500").then(console.log);
2020-07-29 19:55:09 +08:00
```
2020-07-23 23:24:08 +08:00
2020-07-29 19:55:09 +08:00
##### 输出
```typescript
{
code: 'SH510500',
name: '500ETF',
percent: 0.028383,
now: 7.174,
low: 6.93,
high: 7.184,
yesterday: 6.976
}
2020-07-23 23:24:08 +08:00
```
### 获取股票组实时数据
2020-07-29 19:55:09 +08:00
##### 示例
2020-07-23 23:24:08 +08:00
```typescript
2020-07-30 02:53:12 +08:00
import { stocks } from "stock-api";
2020-07-23 23:24:08 +08:00
2020-08-20 02:21:22 +08:00
// 获取股票组实时数据
stocks.sina.getStocks(["SH510500"]).then(console.log);
2020-07-29 19:55:09 +08:00
```
##### 输出
2020-07-23 23:24:08 +08:00
2020-07-29 19:55:09 +08:00
```typescript
[{
code: 'SH510500',
name: '500ETF',
percent: 0.028383,
now: 7.174,
low: 6.93,
high: 7.184,
yesterday: 6.976
}]
2020-07-23 23:24:08 +08:00
```
2020-07-23 23:24:08 +08:00
## 一起成长
> 韭菜小猪也有暴富梦~
2020-07-29 09:19:48 +08:00
- 在困惑的城市里总少不了并肩同行的 伙伴 让我们一起成长。
- 如果您想让更多人看到文章可以点个 点赞。
- 如果您想激励小二可以到 Github 给个 小星星。