GithubHelp home page GithubHelp logo

mootdx's Introduction

通达信数据读取接口

image

image

Documentation Status

Updates

运行环境

  • 操作系统: Windows / MacOS / Linux 都可以运行.
  • Python: 3.5 以及以上版本, 不支持 python2.
  • 依赖库: pytdx>=1.67

安装方法

# PIP 自动安装方法
pip install mootdx

# 手动下载源码安装
git clone https://github.com/bopo/mootdx.git 
cd mootdx
python setup.py install

使用说明

命令行工具

mootdx --help

Usage: mootdx [OPTIONS] COMMAND [ARGS]...

Options:
  -v, --verbose
  --help         Show this message and exit.

Commands:
  affair  财务文件下载&解析.
  bestip  测试行情服务器.
  quotes  读取股票在线行情数据.
  reader  读取股票本地行情数据.

使用最快的服务器

# -w 参数是写入配置文件
mootdx bestip -w -v

通达信离线数据读取

from mootdx.reader import Reader

# market 参数 std 为标准市场(就是股票), ext 为扩展市场(期货,黄金等)
# tdxdir 是通达信的数据目录, 根据自己的情况修改

reader = Reader.factory(market='std', tdxdir='C:/new_tdx')

# 读取日线数据
reader.daily(symbol='600036')

# 读取分钟数据
reader.minute(symbol='600036')

# 读取时间线数据
reader.fzline(symbol='600036')

通达信线上行情读取

from mootdx.quotes import Quotes

# 标准市场
client = Quotes.factory(market='std', multithread=True, heartbeat=True)

# k 线数据
client.bars(symbol='600036', category=9, offset=10)

# 指数
client.index(symbol='000001', category=9)

# 分钟
client.minute(symbol='000001')

通达信财务数据读取

from mootdx.affair import Affair

# 远程文件列表
files = Affair.files()

# 下载单个
Affair.fetch(downdir='tmp', filename='gpcw19960630.zip')

# 下载全部
Affair.parse(downdir='tmp')

版本更新

  • 更新了详细的文档.
  • 多种线路配置方案. (配置文件, 环境变量等).
  • 重写了专业财务数据接口.
  • 更新了最佳服务器选择问题.
  • 修改了 PIP 安装程序问题.
  • 本程序全面支持 python3.
  • 通达信客户端文件转换.
  • 通达信在线行情下载.

欢迎赞助

微信支付

支付宝

mootdx's People

Contributors

bopo avatar pyup-bot avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.