ctp 报错 RuntimeError:can not open CFlow file in line of file ../../source/userapi/ThostFtdcUserApiImplBase.cpp
报错的代码在vnpy_ctp/gateway/ctp_gateway.py
path: Path = get_folder_path(self.gateway_name.lower())
self.createFtdcTraderApi((str(path) + "\\Td").encode("GBK"))
原因是路径错误
检查路径,并改为
path: Path = source_path / 'temp' / 'temp_gateway' / self.gateway.gateway_name
if not path.exists():
path.mkdir(parents=True, exist_ok=True)
self.createFtdcMdApi((str(path) + "\\Md").encode("GBK"))
出处: https://www.cnblogs.com/meizhengchao/p/18206044
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出, 原文链接 如有问题, 可邮件(meizhengchao@qq.com)咨询.