Metadata-Version: 2.1
Name: traderhelper
Version: 0.0.1
Summary: make trader easy
Home-page: UNKNOWN
Author: traderhelper
Author-email: traderhelper@163.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pandas (>=0.24.0)

# 证券交易助手 Stock Trader Helper

本仓库目前处于开发内测阶段, 敬请期待

## TODOLIST

- 免责条款
- 合作协议
- 交易接口
- `UI` 库可行性 

## 开发指南
 安装软件  `pip install traderhelper`

## helloworld

 ```buildoutcfg
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__time__ = '2020/10/26 0:45'

from stocktrader import StockTrader

if __name__ == '__main__':
    trader = StockTrader()

    '''
    trader.login()
    trader.insert_order()
    trader...
    '''
```
运行以上程序, `python helloworld.py`







