Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zhs007/trdb2py
tradingdb2 for python
https://github.com/zhs007/trdb2py
Last synced: 8 days ago
JSON representation
tradingdb2 for python
- Host: GitHub
- URL: https://github.com/zhs007/trdb2py
- Owner: zhs007
- License: apache-2.0
- Created: 2020-12-08T08:34:04.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-27T13:47:34.000Z (over 3 years ago)
- Last Synced: 2024-10-04T07:37:33.692Z (about 1 month ago)
- Language: Python
- Size: 193 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# trdb2py
这是 ``tradingdb2`` 的python库,初衷是希望有一个更方便的研究工具,能在 ``jupyter`` 里使用。
大量的运算,都是通过 ``tradingdb2`` 发送给 ``tradingnode2`` 节点进行分布式运算,而 ``tradingdb2`` 负责负载均衡 和 结果缓存,这样就算 ``jupyter`` 有什么问题,也不至于要重新运算。
图形化选择的是 ``plotly`` 。
注意:
- ``jupyter``运行效率有些低,如果不在研究阶段,建议直接python运行脚本更合适。
- 如果进行非常大数据量的运算,在``jupyter``里很容易内核挂掉,这种脚本需要自己处理好内存管理,直接python运行脚本更合适。
- 提供了vscode可用的``devcontainer``,建议用这个配置开发,避免污染本地环境。# 安装
直接用 ``pip`` 安装即可。
```
pip install trdb2py
```# 更新日志
### v0.3
- 需要搭配 ``TradingDB2`` v0.6 以上版本使用。
### v0.2
- 加入更多本地分析功能,不会把所有计算都放云端。
### v0.1
- 实现了基本功能。