Skip to content

Commit bd3d860

Browse files
committed
fix: modify description
1 parent 61e7d89 commit bd3d860

File tree

3 files changed

+7
-15
lines changed

3 files changed

+7
-15
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ Subscription to real-time information: Subscribe to order status changes, market
1919

2020
## Interface Protocol
2121

22-
The bottom layer of Webull OpenAPI provides three protocols, HTTP / GRPC / MQTT, to support functions and features like trading, subcriptions for changes of order status and real-time market quotes.
22+
The bottom layer of Webull OpenAPI provides three protocols, HTTP / GRPC / MQTT, to support functions and features like trading, subscriptions for changes of order status and real-time market quotes.
2323

24-
HTTP: It mainly provides interface services for data such as tradings, accounts, candlestick charts, snapshots, etc.
25-
26-
GRPC: Currently provides real-time messages for order status changes.
27-
28-
MQTT: Provides data services for real-time market conditions.
24+
| Protocol | Description |
25+
|-------|------------------------------------------|
26+
| HTTP | It mainly provides interface services for data such as tradings, accounts, candlestick charts, snapshots, etc. |
27+
| GRPC | 1. Provide real-time push messages for order status changes.<br/>2. Provide data query support for the market interface. |
28+
| MQTT | Provides data services for real-time market conditions. |
2929

3030
## Developer documentation
3131

docs/1-Installation.md

-8
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,3 @@ Packages that need to be installed by default for the complete use of the tradin
2525
- `webull-python-sdk-core`
2626
- `webull-python-sdk-trade-events-core`
2727
- `webull-python-sdk-trade-hk`
28-
29-
## Source package installation script
30-
31-
### windows
32-
Under the source code package scripts directory`install_for_windows.bat`
33-
34-
### Linux / MacOS
35-
Under the source code package scripts directory`install.sh`

webull-python-sdk-trade-hk/webullsdktradehk/common/order_tif.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
class OrderTIF(EasyEnum):
2222
DAY = (1, "order day")
23-
GTC = (2, "until the user cancels")
23+
GTC = (2, "GTC order")
2424
IOC = (3, "deal or cancel right now")
2525

2626

0 commit comments

Comments
 (0)