npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tushare-api-client

v1.0.0

Published

Tushare API TypeScript客户端,支持获取股票市场分钟、日、周、月、年级别的K线数据

Downloads

64

Readme

Tushare API TypeScript 客户端

这是一个使用 TypeScript 实现的 Tushare API 客户端,用于获取股票市场数据。支持分钟、日、周、月、年等多个级别的K线数据获取。

安装

npm install tushare-api-client

使用方法

import TushareClient from 'tushare-api-client';
import { APIResponse, MinuteKLineData, DailyKLineData } from 'tushare-api-client/types';

// 创建客户端实例
const client = new TushareClient({
    token: '你的token'
});

// 获取分钟级别K线数据
async function getMinuteData() {
    try {
        const data: APIResponse<MinuteKLineData> = await client.min1({
            ts_code: '600519.SH',    // 股票代码
            start_date: '2024-01-01 09:30:00',  // 开始时间
            end_date: '2024-01-01 15:00:00'     // 结束时间
        });
        console.log('1分钟K线数据:', data);
    } catch (error) {
        console.error('获取数据失败:', error);
    }
}

// 获取日线数据
async function getDailyData() {
    try {
        const data: APIResponse<DailyKLineData> = await client.daily({
            ts_code: '600519.SH',    // 股票代码
            start_date: '20240101',  // 开始日期
            end_date: '20241010'     // 结束日期
        });
        console.log('日线数据:', data);
    } catch (error) {
        console.error('获取数据失败:', error);
    }
}

API 方法

分钟级别数据

min1(options)

获取1分钟K线数据

min5(options)

获取5分钟K线数据

min15(options)

获取15分钟K线数据

min30(options)

获取30分钟K线数据

min60(options)

获取60分钟K线数据

参数类型:

interface MinuteParams {
    ts_code: string;      // 股票代码
    start_date?: string;  // 开始时间 (YYYY-MM-DD HH:mm:ss)
    end_date?: string;    // 结束时间 (YYYY-MM-DD HH:mm:ss)
    fields?: string;      // 需要的字段,可选
}

返回数据类型:

interface MinuteKLineData {
    ts_code: string;    // 股票代码
    trade_time: string; // 交易时间
    open: number;       // 开盘价
    high: number;       // 最高价
    low: number;        // 最低价
    close: number;      // 收盘价
    vol: number;        // 成交量
    amount: number;     // 成交额
}

日线及以上级别数据

daily(options)

获取日线数据

weekly(options)

获取周线数据

monthly(options)

获取月线数据

yearly(options)

获取年线数据

参数类型:

interface BaseParams {
    ts_code: string;      // 股票代码
    start_date?: string;  // 开始日期 (YYYYMMDD)
    end_date?: string;    // 结束日期 (YYYYMMDD)
    fields?: string;      // 需要的字段,可选
}

返回数据类型:

interface DailyKLineData {
    ts_code: string;    // 股票代码
    trade_date: string; // 交易日期
    open: number;       // 开盘价
    high: number;       // 最高价
    low: number;        // 最低价
    close: number;      // 收盘价
    pre_close: number;  // 昨收价
    change: number;     // 涨跌额
    pct_chg: number;    // 涨跌幅
    vol: number;        // 成交量
    amount: number;     // 成交额
}

开发

# 安装依赖
npm install

# 构建
npm run build

# 运行示例
npm run example

注意事项

  1. 使用前需要先在 Tushare 官网注册并获取 token
  2. 接口调用频率需要遵循 Tushare 的限制规则
  3. 本模块使用了 Node.js 原生的 fetch API,需要 Node.js 18.0.0 或更高版本
  4. 分钟级别的数据获取使用 pro_bar 接口,可能需要更高级别的会员权限
  5. 不同级别的K线数据在时间格式上有所不同:
    • 分钟级别使用 YYYY-MM-DD HH:mm:ss 格式
    • 日线及以上级别使用 YYYYMMDD 格式

TypeScript 支持

本模块使用 TypeScript 编写,提供完整的类型定义,支持代码补全和类型检查。