Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix trailing_percent, trailing_amount #269

Merged
merged 12 commits into from
May 20, 2024
4 changes: 2 additions & 2 deletions docs/api-reference/socket/how_to_subscribe_trade.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ Example:
"tag": "GTC",
"trigger_status": "ACTIVE",
"trigger_at": "1562761893",
"tailing_amount": "5",
"tailing_percent": "1",
"trailing_amount": "5",
"trailing_percent": "1",
"limit_offset": "0.01",
"account_no": "HK123445",
"last_share": "100",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ The real `JSON` format of `data`:
"tag": "GTC",
"trigger_status": "ACTIVE",
"trigger_at": "1562761893",
"tailing_amount": "5",
"tailing_percent": "1",
"trailing_amount": "5",
"trailing_percent": "1",
"limit_offset": "0.01",
"account_no": "HK123445",
"last_share": "100",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ Example:
"tag": "GTC",
"trigger_status": "ACTIVE",
"trigger_at": "1562761893",
"tailing_amount": "5",
"tailing_percent": "1",
"trailing_amount": "5",
"trailing_percent": "1",
"limit_offset": "0.01",
"account_no": "HK123445",
"last_share": "100",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ sidebar_position: 2
| tag | string | 訂單標記<br/><br/>**可選值**<br/>`Normal` - 普通訂單<br />`GTC` - 长期單<br />`Grey` - 暗盤單 |
| trigger_status | string | 條件單觸發狀態<br/><br/>**可選值**<br/>`NOT_USED` - 未激活 <br />`DEACTIVE` - 已失效<br />`ACTIVE` - 已激活<br />`RELEASED` - 已觸發 |
| trigger_at | string | 觸發時间 |
| tailing_amount | string | 條件單跟蹤金额 |
| tailing_percent | string | 條件單跟蹤漲跌幅 |
| trailing_amount | string | 條件單跟蹤金额 |
| trailing_percent | string | 條件單跟蹤漲跌幅 |
| limit_offset | string | 指定價差 |
| account_no | string | 用戶端賬號 |
| remark | string | 備注 |
Expand Down Expand Up @@ -123,8 +123,8 @@ sidebar_position: 2
"tag": "GTC",
"trigger_status": "ACTIVE",
"trigger_at": "1562761893",
"tailing_amount": "5",
"tailing_percent": "1",
"trailing_amount": "5",
"trailing_percent": "1",
"limit_offset": "0.01",
"account_no": "HK123445",
"last_share": "100",
Expand Down
Loading