- 进行自动的程序化股票交易
- 实现自动登录
- 支持命令行调用,方便其他语言适配
- 支持 Python3 / Python2
- 有兴趣的可以加群
429011814
一起讨论
开发环境 : Ubuntu 15.10
/ Python 3.5
简单的股票量化交易框架 使用 easytrader 和 easyquotation
- 佣金宝
- 华泰
- 银河 (感谢 ruyiqf 的贡献)
pip install -r requirements.txt
华泰 / 佣金宝 的自动登录需要安装以下二者之一:
JAVA
: 推荐, 识别率高,安装简单, 需要命令行下java -version
可用 (感谢空中园的贡献)tesseract
: 保证在命令行下tesseract
可用
import easytrader
user = easytrader.use('yjb') # 佣金宝支持 ['yjb', 'YJB', '佣金宝']
user = easytrader.use('ht') # 华泰支持 ['ht', 'HT', '华泰']
user = easytrader.use('yh') # 银河支持 ['yh', 'YH', '银河']
user.prepare('ht.json') // 或者 yjb.json 或者 yh.json
注:
- 华泰需要配置
ht.json
填入相关信息,trdpwd
加密后的密码首次需要登录后查看登录POST
的trdpwd
值确定 - 佣金宝需要配置
yjb.json
并填入相关信息, 其中的password
为加密后的password
- 银河需要配置
yh.json
填入相关信息,trdpwd
加密后的密码首次需要登录后查看登录POST
的trdpwd
值确定, 以及登录POST
请求里面的hardinfo
字段
以下用法以佣金宝为例,华泰类似
user.balance
return
[{ 'asset_balance': '资产总值',
'current_balance': '当前余额',
'enable_balance': '可用金额',
'market_value': '证券市值',
'money_type': '币种',
'pre_interest': '预计利息' ]}
user.position
return
[{'cost_price': '摊薄成本价',
'current_amount': '当前数量',
'enable_amount': '可卖数量',
'income_balance': '摊薄浮动盈亏',
'keep_cost_price': '保本价',
'last_price': '最新价',
'market_value': '证券市值',
'position_str': '定位串',
'stock_code': '证券代码',
'stock_name': '证券名称'}]
user.entrust
return
[{'business_amount': '成交数量',
'business_price': '成交价格',
'entrust_amount': '委托数量',
'entrust_bs': '买卖方向',
'entrust_no': '委托编号',
'entrust_price': '委托价格',
'entrust_status': '委托状态', # 废单 / 已报
'report_time': '申报时间',
'stock_code': '证券代码',
'stock_name': '证券名称'}]
user.buy('162411', price=0.55, amount=100)
return
[{'entrust_no': '委托编号',
'init_date': '发生日期',
'batch_no': '委托批号',
'report_no': '申报号',
'seat_no': '席位编号',
'entrust_time': '委托时间',
'entrust_price': '委托价格',
'entrust_amount': '委托数量',
'stock_code': '证券代码',
'entrust_bs': '买卖方向',
'entrust_type': '委托类别',
'entrust_status': '委托状态',
'fund_account': '资金帐号',
'error_no': '错误号',
'error_info': '错误原因'}]
user.sell('162411', price=0.55, amount=100)
user.cancel_entrust('委托单号')
user.cancel_entrust('委托单号', '股票代码')
user.cancel_entrust('委托单号', '股票代码')
user.fundsubscribe('基金代码', '基金份额')
user.fundpurchase('基金代码', '基金份额')
user.fundredemption('基金代码', '基金份额')
user.fundmerge('基金代码', '基金份额')
user.fundsplit('基金代码', '基金份额')
python cli.py --use ht --prepare ht.json
注: 此时会生成 account.session
文件保存生成的 user
对象
python cli.py --get balance
python cli.py --do buy 162411 0.450 100
python cli.py --help
编辑完配置文件,运行后出现 json
解码报错的信息。类似于下面
raise JSONDecodeError("Expecting value", s, err.value) from None
JSONDecodeError: Expecting value
请勿使用 记事本
编辑账户的 json
配置文件,推荐使用 notepad++ 或者 sublime text