Walkthrough
## Walkthrough
此次更新为 `tqsdk` 软件包引入了版本 3.6.1,主要包括对文档、功能和模块的增强。新特性如 `TqCtp` 类的引入,增强了交易账户的管理,改进了文档的可用性和国际化支持。还对现有功能进行了优化,确保在回测等环境下的稳定性和可靠性。整体而言,这些更改提升了用户体验和系统灵活性。
## Changes
| 文件 | 更改摘要 |
|--------------------------|-----------------------------------------------------------------|
| `PKG-INFO`, `doc/conf.py`, `setup.py`, `tqsdk/__version__.py` | 版本号从 3.6.0 更新至 3.6.1,表示小版本更新。 |
| `doc/demo/jupyter.rst`, `doc/usage/jupyter.rst` | 文档中增加中文内容及使用注意事项,改善用户指南。 |
| `doc/index.rst`, `doc/tqsdk_llm.rst` | 新增 `tqsdk_llm` 文档,提供用户指南和常见问题解答。 |
| `tqsdk/api.py`, `tqsdk/tradeable/__init__.py`, `tqsdk/tradeable/otg/__init__.py` | 引入 `TqCtp` 类以扩展可用账户类型,并更新相关文档。 |
| `tqsdk/connect.py`, `tqsdk/multiaccount.py` | 增强连接处理逻辑,支持新账户类型,并更新多账户管理。 |
| `tqsdk/objs_not_entity.py`, `tqsdk/zq_otg.py` | 优化回测场景中的请求逻辑和管理外部进程的上下文。 |
| `tqsdk/tradeable/sim/basesim.py` | 更新时间记录逻辑,确保测试环境的准确性。 |
## Sequence Diagram(s)
```mermaid
sequenceDiagram
participant User
participant TqApi
participant TqCtp
User->>TqApi: 创建账户
TqApi->>TqCtp: 发送登录请求
TqCtp-->>TqApi: 返回登录结果
TqApi-->>User: 返回账户信息
```
> 🐰 在草地上欢跳,版本更新来临,
> 小兔子乐陶陶,功能增强真得意。
> TqCtp新登场,交易更方便,
> 文档翻译更友好,用户体验大提升! 🌼
Tips
### Chat
There are 3 ways to chat with [CodeRabbit](https://coderabbit.ai):
- Review comments: Directly reply to a review comment made by CodeRabbit. Example:
- `I pushed a fix in commit .`
- `Generate unit testing code for this file.`
- `Open a follow-up GitHub issue for this discussion.`
- Files and specific lines of code (under the "Files changed" tab): Tag `@coderabbitai` in a new review comment at the desired location with your query. Examples:
- `@coderabbitai generate unit testing code for this file.`
- `@coderabbitai modularize this function.`
- PR comments: Tag `@coderabbitai` in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
- `@coderabbitai generate interesting stats about this repository and render them as a table.`
- `@coderabbitai show all the console.log statements in this repository.`
- `@coderabbitai read src/utils.ts and generate unit testing code.`
- `@coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.`
- `@coderabbitai help me debug CodeRabbit configuration file.`
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.
### CodeRabbit Commands (invoked as PR comments)
- `@coderabbitai pause` to pause the reviews on a PR.
- `@coderabbitai resume` to resume the paused reviews.
- `@coderabbitai review` to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
- `@coderabbitai full review` to do a full review from scratch and review all the files again.
- `@coderabbitai summary` to regenerate the summary of the PR.
- `@coderabbitai resolve` resolve all the CodeRabbit review comments.
- `@coderabbitai configuration` to show the current CodeRabbit configuration for the repository.
- `@coderabbitai help` to get help.
Additionally, you can add `@coderabbitai ignore` anywhere in the PR description to prevent this PR from being reviewed.
### CodeRabbit Configuration File (`.coderabbit.yaml`)
- You can programmatically configure CodeRabbit by adding a `.coderabbit.yaml` file to the root of your repository.
- Please see the [configuration documentation](https://docs.coderabbit.ai/guides/configure-coderabbit) for more information.
- If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: `# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json`
### Documentation and Community
- Visit our [Documentation](https://coderabbit.ai/docs) for detailed information on how to use CodeRabbit.
- Join our [Discord Community](https://discord.com/invite/GsXnASn26c) to get help, request features, and share feedback.
- Follow us on [X/Twitter](https://twitter.com/coderabbitai) for updates and announcements.
Automated changes by create-pull-request GitHub action
Summary by CodeRabbit
新特性
文档
修复