CTP gateway for bothpy quant trading framework.
Project description
说明
基于CTP期货版的6.6.7接口封装开发,接口中自带的是【穿透式实盘环境】的dll文件。 由 vnpy_ctp 修改而来
打包
python setup.py bdist_wheel
需要进行C++编译,因此在执行上述命令之前请确保已经安装了【Visual Studio(Windows)】、【GCC(Linux)】、【XCode(Mac)】编译器。
发布
先安装一下 twine:
python -m pip install twine
twine upload dist/*
没有账户去注册一个 https://pypi.org/
安装
直接使用pip命令:
pip install bothpy_ctp
使用
以脚本方式启动(script/run.py):
from bothpy.event import EventEngine
from bothpy.trader.engine import MainEngine
from bothpy.trader.ui import MainWindow, create_qapp
from bothpy_ctp import CtpGateway
def main():
"""主入口函数"""
qapp = create_qapp()
event_engine = EventEngine()
main_engine = MainEngine(event_engine)
main_engine.add_gateway(CtpGateway)
main_window = MainWindow(main_engine, event_engine)
main_window.showMaximized()
qapp.exec()
if __name__ == "__main__":
main()
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for bothpy_ctp-6.6.7.3-cp310-cp310-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01339bf081f6ec40a95bf66f1e8e8db55c5f40ecb794105865772fc0c53eda3b |
|
MD5 | 90c07a54e0aa5c600e845ce797f5fb74 |
|
BLAKE2b-256 | 55d68ac5e11fb0c40147bcab93b37f0aad163882f3a3227b7787825cdb318fa9 |