congcong009

Results 7 comments of congcong009

同感,网站和论坛也是,图床基本挂了,感觉社区经历了一次核弹攻击,直接抹平了····qq群你等等,我也是昨天才通过加了进去,好安静的样子,但群文件不错

找到文档了,下载 [QUANTAXIS 1.10.2 RELEASE](https://github.com/yutiansut/QUANTAXIS/releases/tag/1.10.2),其中有个上古时期的 Documents\ 目录,里面相对比较全面。 但读后感,这个文档版本仅限 python 版本,而 latest 看发布应该是精简版本 + Rust,重写的部分没开源,自然对应文档也就没法刷新了。 二次开发还是得以 1.10 为主,2.x 给出的是个升级框架,适合有能力的在上面自己盖。 请其他大大帮忙指正。

there's a way to help debug. Put print() where error happened. Like in .\modules\shared.py ``` def load(self, filename): with open(filename, "r", encoding="utf8") as file: print(filename) self.data = json.load(file) ``` Run...

or you can replace it as: styleSheet = str(styleSheet, encoding='utf8') this works for me

你的docker环境中没有安装,在requirement.txt中添加,再重跑部署。不过这个库已经没有实际应用意义了,只是一个接入演示,系统中完全没用到。

目前财务数据基于pytdx,来自通达信,接口中不包含港股,需要自己找源然后接入SU下载

You may also need to config the smtp information. Better try like this: ```python from redmail import EmailSender outlook= EmailSender(host="smtp.office365.com", port=587, username=username, password=password) outlook.send( receivers=["[email protected]"], #NOTE: not email address I'm...