We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f027724 commit 699bca0Copy full SHA for 699bca0
CHANGELOG.md
@@ -1,3 +1,8 @@
1
+## 2.1.6 (2022-08-11)
2
+### Modify
3
+- 支持全局时区配置, 可通过 ClientConfig.timezone 设置时区
4
+
5
6
## 2.1.5 (2022-08-01)
7
### Modify
8
- 交易相关接口支持全局语言配置, 可通过 ClientConfig.language 改变默认语言
tigeropen/__init__.py
@@ -4,4 +4,4 @@
@author: gaoan
"""
-__VERSION__ = '2.1.5'
+__VERSION__ = '2.1.6'
tigeropen/examples/client_config.py
@@ -21,4 +21,5 @@ def get_client_config():
21
client_config.account = 'your account'
22
client_config.secret_key = None # 机构交易员专有密钥 (机构用户需要填写, 个人开发者无需填写)
23
client_config.language = Language.en_US
24
+ # client_config.timezone = 'US/Eastern' # 设置全局时区
25
return client_config
0 commit comments