| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Exchange plugin for bt_api framework.
This package provides Bitget exchange plugin for bt_api for the bt_api framework. It offers a unified interface for interacting with BITGET exchange.
pip install bt_api_bitgetOr install from source:
git clone https://github.com/cloudQuant/bt_api_bitget
cd bt_api_bitget
pip install -e .from bt_api_bitget import BitgetApi
# Initialize
feed = BitgetApi(api_key="your_key", secret="your_secret")
# Get ticker data
ticker = feed.get_ticker("BTCUSDT")
print(ticker)| Operation | Status |
|---|---|
| Ticker | ✅ |
| OrderBook | ✅ |
| Trades | ✅ |
| Bars/Klines | ✅ |
| Orders | ✅ |
| Balances | ✅ |
| Positions | ✅ |
| Resource | Link |
|---|---|
| English Docs | https://bt-api-bitget.readthedocs.io/ |
| Chinese Docs | https://bt-api-bitget.readthedocs.io/zh/latest/ |
| GitHub Repository | https://github.com/cloudQuant/bt_api_bitget |
| Issue Tracker | https://github.com/cloudQuant/bt_api_bitget/issues |
bt_api_bitget/ ├── src/bt_api_bitget/ # Source code │ ├── containers/ # Data containers │ ├── feeds/ # API feeds │ ├── gateway/ # Gateway adapter │ └── plugin.py # Plugin registration ├── tests/ # Unit tests └── docs/ # Documentation
MIT License - see LICENSE for details.
本包为 bt_api 框架提供 Bitget exchange plugin for bt_api。它提供了与 BITGET 交易所交互的统一接口。
pip install bt_api_bitget或从源码安装:
git clone https://github.com/cloudQuant/bt_api_bitget
cd bt_api_bitget
pip install -e .from bt_api_bitget import BitgetApi
# 初始化
feed = BitgetApi(api_key="your_key", secret="your_secret")
# 获取行情数据
ticker = feed.get_ticker("BTCUSDT")
print(ticker)| 操作 | 状态 |
|---|---|
| Ticker | ✅ |
| OrderBook | ✅ |
| Trades | ✅ |
| Bars/Klines | ✅ |
| Orders | ✅ |
| Balances | ✅ |
| Positions | ✅ |
bt_api_bitget/ ├── src/bt_api_bitget/ # 源代码 │ ├── containers/ # 数据容器 │ ├── feeds/ # API 源 │ ├── gateway/ # 网关适配器 │ └── plugin.py # 插件注册 ├── tests/ # 单元测试 └── docs/ # 文档
MIT 许可证 - 详见 LICENSE。
| Back | FazBrowse Home | New Git URL |