Skip to content

Commit 4277667

Browse files
committed
modify comment
1 parent 73cb7c4 commit 4277667

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tigeropen/examples/client_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ def get_client_config():
2222
# standard_account 属性和 paper_account 属性只是为多账户时取用方便, 一般可忽略
2323
client_config.standard_account = None
2424
client_config.paper_account = None
25-
client_config.secret_key = None # 机构密钥(机构用户需要填写, 个人开发者无需填写)
25+
client_config.secret_key = None # 机构交易员专有密钥 (机构用户需要填写, 个人开发者无需填写)
2626
client_config.language = Language.en_US
2727
return client_config

tigeropen/tiger_open_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def get_client_config(private_key_path, tiger_id, account, standard_account=None
190190
:param charset: 字符集编码
191191
:param server_url: 网关地址
192192
:param socket_host_port: 推送长连接的域名端口, 值为协议, 域名, 端口构成的三元组
193-
:param secret_key: 机构密钥(个人开发者无需指定)
193+
:param secret_key: 机构交易员专有密钥 (个人开发者无需指定)
194194
:return:
195195
"""
196196
config = TigerOpenClientConfig(sandbox_debug=sandbox_debug)

tigeropen/trade/domain/order.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def __init__(self, account, contract, action, order_type, quantity, limit_price=
5050
- remaining: 未成交的数量
5151
- order_legs: 附加订单列表
5252
- algo_params: 算法订单参数
53-
- secret_key: 机构密钥
53+
- secret_key: 机构交易员专有密钥
5454
"""
5555

5656
self.id = id

0 commit comments

Comments
 (0)