此CTP Python API基于Python 3.7.2版本,使用时请务必安装此版本及以上版本。该API是用swig方法在官方C++ API上编译得到,完全开源,有兴趣自己编译的读者windows64版可以参考笔者
CTP Python API及Demo(利用Swig封装)Windows版(traderapi)这篇博客,Linux版只需要参考笔者其他博客,更改下makefile即可。此方法编译得到的API在数据结构,参数名,函数名及用法上与C++版API完全一致,十分容易上手。
thosttraderapi.py //交易头文件
_thosttraderapi.pyd //交易库转换文件
thosttraderapi.dll //交易官方动态库,穿透式版为thosttraderapi_se.dll
thostmduserapi.py //行情头文件
_thostmduserapi.pyd //行情库转换文件
thostmduserapi.dll //行情官方动态库,穿透式版为thostmduserapi_se.dll
thosttraderapi.py //交易头文件,与win64平台相同
_thosttraderapi.so //交易库转换文件
libthosttraderapi.so //交易官方动态库,穿透式版为thosttraderapi_se.so
thostmduserapi.py //行情头文件,与win64平台相同
_thostmduserapi.so //行情库转换文件
libthostmduserapi.so //行情官方动态库,穿透式版为thostmduserapi_se.so
参考后面章节
README.md //本文档
6.3.15_API接口说明 //官方文档,也可至http://www.sfit.com.cn/下载
所有函数名、参数及参数数据结构都是与官方C++
版一致的,可以参见上期技术官网文档。以登录请求为例:
官方C++版:
函数名
virtual int ReqUserLogin(CThostFtdcReqUserLoginField *pReqUserLoginField, int nRequestID) = 0;
调用方法
CThostFtdcReqUserLoginField reqUserLogin = { 0 };
strcpy_s(reqUserLogin.BrokerID, “0000”);
strcpy_s(reqUserLogin.UserID, “00001”);
strcpy_s(reqUserLogin.Password, “123456”);
m_pUserApi->ReqUserLogin(&reqUserLogin, nRequestID++);
Python版:
函数名
def ReqUserLogin(self, pReqUserLoginField: 'CThostFtdcReqUserLoginField', nRequestID: 'int') -> "int":
调用方法
loginfield = api.CThostFtdcReqUserLoginField()
loginfield.BrokerID="0000"
loginfield.UserID="00001"
loginfield.Password="123456"
tradeapi.ReqUserLogin(loginfield,0)
所有的函数名均可以在相应头文件底部class CThostFtdcTraderApi
和class CThostFtdcMdApi
中查到,函数声明中自带了参数类型,参数结构直接在头文件中搜索就可以。至于对应的函数怎么用,请参考附带官方文档。以登录为例,找到文档中
/6.3.15_API接口说明/交易接口/CThostFtdcTraderApi/ReqUserLogin
这里面写的非常清楚。
所有函数名、参数及参数数据结构都是与官方C++
版一致的,可以参见上期技术官网文档。以登录响应为例:
官方C++版:
函数名
virtual void OnRspUserLogin(CThostFtdcRspUserLoginField *pRspUserLogin, CThostFtdcRspInfoField *pRspInfo, int nRequestID, bool bIsLast) {};
调用方法为继承该函数所在类,重写该函数调用。
Python版:
函数名
def OnRspUserLogin(self, pRspUserLogin: 'CThostFtdcRspUserLoginField', pRspInfo: 'CThostFtdcRspInfoField', nRequestID: 'int', bIsLast: 'bool') -> "void":
调用方法同样是继承所在CThostFtdcTraderSpi类,重写该函数,实现自己需要的逻辑。
所有的函数名均可以在头文件底部class CThostFtdcTraderSpi
和class CThostFtdcMdSpi
中查到,函数名中自带了参数类型,参数结构直接在头文件中搜索就可以。
将td_demo.py文件直接拷贝到API库交易相关文件(3个)同一文件夹中,切换到该目录运行Python td_demo.py即可直接运行。md_demo.py用法相同。
通常都是类型对象为None,却直接使用了该对象的成员变量。以查结算单为例,返回回调中,如果输出结算单内容通常直接写成:
def OnRspQrySettlementInfo(self, pSettlementInfo: 'CThostFtdcSettlementInfoField', pRspInfo: 'CThostFtdcRspInfoField', nRequestID: 'int', bIsLast: 'bool') -> "void":
print ("content:",pSettlementInfo.Content)
这时如果查到结算单自然没有问题,但如果查回结算单为空则直接出错退出,因为pSettlementInfo是None类型。所以正确写法应该先判断是否为空,写成如下:
def OnRspQrySettlementInfo(self, pSettlementInfo: 'CThostFtdcSettlementInfoField', pRspInfo: 'CThostFtdcRspInfoField', nRequestID: 'int', bIsLast: 'bool') -> "void":
if pSettlementInfo is not None :
print ("content:",pSettlementInfo.Content)
欢迎扫二维码关注或者搜索程序化交易入门(QuantRoad2019),一起学习程序化交易!