Skip to content

Commit 8b0ad82

Browse files
author
方佳
committed
Merge branch 'main_0615_merge' into 'main'
feat: Trading System Update See merge request webull/openapi-python-sdk!4
2 parents 8d0dbc4 + ed586e0 commit 8b0ad82

File tree

11 files changed

+15
-13
lines changed

11 files changed

+15
-13
lines changed

webull-python-sdk-core/webullsdkcore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.7"
1+
__version__ = "0.1.8"
22

33
import logging
44

webull-python-sdk-demos/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
LONG_DESCRIPTION = fp.read()
1616

1717
requires = [
18-
"webull-python-sdk-mdata==0.1.7",
19-
"webull-python-sdk-trade==0.1.7"
18+
"webull-python-sdk-mdata==0.1.8",
19+
"webull-python-sdk-trade==0.1.8"
2020
]
2121

2222
setup_args = {

webull-python-sdk-mdata/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
LONG_DESCRIPTION = fp.read()
1616

1717
requires = [
18-
"webull-python-sdk-core==0.1.7",
19-
"webull-python-sdk-quotes-core==0.1.7"
18+
"webull-python-sdk-core==0.1.8",
19+
"webull-python-sdk-quotes-core==0.1.8"
2020
]
2121

2222
setup_args = {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# coding=utf-8
22

3-
__version__ = '0.1.7'
3+
__version__ = '0.1.8'

webull-python-sdk-quotes-core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"grpcio==1.51.1",
2525
"grpcio-tools==1.51.1",
2626
"protobuf==4.21.12",
27-
"webull-python-sdk-core==0.1.7"
27+
"webull-python-sdk-core==0.1.8"
2828
]
2929

3030
setup_args = {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.7"
1+
__version__ = "0.1.8"

webull-python-sdk-trade-events-core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"grpcio==1.51.1",
2424
"grpcio-tools==1.51.1",
2525
"protobuf==4.21.12",
26-
"webull-python-sdk-core==0.1.7"
26+
"webull-python-sdk-core==0.1.8"
2727
]
2828

2929
setup_args = {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.7"
1+
__version__ = "0.1.8"

webull-python-sdk-trade/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
LONG_DESCRIPTION = fp.read()
1616

1717
requires = [
18-
"webull-python-sdk-trade-events-core==0.1.7",
19-
"webull-python-sdk-core==0.1.7"
18+
"webull-python-sdk-trade-events-core==0.1.8",
19+
"webull-python-sdk-core==0.1.8"
2020
]
2121

2222
setup_args = {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.1.7"
1+
__version__ = "0.1.8"
22

webull-python-sdk-trade/webullsdktrade/common/order_type.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@ class OrderType(EasyEnum):
2626
AT_AUCTION = (7, "AT AUCTION")
2727
AT_AUCTION_LIMIT = (8, "AT AUCTION LIMIT")
2828
ODD_LOT_LIMIT = (9, "ODD LOT LIMIT")
29+
MARKET_ON_OPEN = (10, "MARKET ON OPEN")
30+
MARKET_ON_CLOSE = (11, "MARKET ON CLOSE")

0 commit comments

Comments
 (0)