okxv5 1.8.11__py3-none-any.whl → 1.8.12__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- okxv5/Account_api.py +28 -489
- okxv5/Affiliate_api.py +4 -12
- okxv5/Broker_api.py +2 -179
- okxv5/Convert_api.py +1 -7
- okxv5/Copytrading_api.py +2 -309
- okxv5/FDBroker_api.py +6 -20
- okxv5/Finance_api.py +47 -40
- okxv5/Funding_api.py +26 -25
- okxv5/Market_api.py +29 -193
- okxv5/Public_api.py +20 -64
- okxv5/Recurring_api.py +0 -57
- okxv5/Rfq_api.py +0 -22
- okxv5/Singal_api.py +45 -100
- okxv5/SprdApi_api.py +8 -154
- okxv5/Trade_api.py +27 -459
- okxv5/TradingBot_api.py +27 -87
- okxv5/TradingData_api.py +6 -49
- okxv5/client.py +30 -84
- okxv5/consts.py +400 -399
- okxv5/exceptions.py +11 -44
- okxv5/status_api.py +0 -14
- okxv5/subAccount_api.py +1 -172
- okxv5/utils.py +14 -67
- okxv5-1.8.12.dist-info/METADATA +915 -0
- okxv5-1.8.12.dist-info/RECORD +28 -0
- okxv5/hunyuan_client.py +0 -74
- okxv5-1.8.11.dist-info/METADATA +0 -59
- okxv5-1.8.11.dist-info/RECORD +0 -29
- {okxv5-1.8.11.dist-info → okxv5-1.8.12.dist-info}/WHEEL +0 -0
- {okxv5-1.8.11.dist-info → okxv5-1.8.12.dist-info}/top_level.txt +0 -0
okxv5/consts.py
CHANGED
@@ -1,423 +1,424 @@
|
|
1
1
|
# http header
|
2
|
-
API_URL = 'https://www.okx.com'
|
2
|
+
API_URL = 'https://www.okx.com'
|
3
3
|
|
4
|
-
CONTENT_TYPE = 'Content-Type'
|
5
|
-
OK_ACCESS_KEY = 'OK-ACCESS-KEY'
|
6
|
-
OK_ACCESS_SIGN = 'OK-ACCESS-SIGN'
|
7
|
-
OK_ACCESS_TIMESTAMP = 'OK-ACCESS-TIMESTAMP'
|
8
|
-
OK_ACCESS_PASSPHRASE = 'OK-ACCESS-PASSPHRASE'
|
4
|
+
CONTENT_TYPE = 'Content-Type'
|
5
|
+
OK_ACCESS_KEY = 'OK-ACCESS-KEY'
|
6
|
+
OK_ACCESS_SIGN = 'OK-ACCESS-SIGN'
|
7
|
+
OK_ACCESS_TIMESTAMP = 'OK-ACCESS-TIMESTAMP'
|
8
|
+
OK_ACCESS_PASSPHRASE = 'OK-ACCESS-PASSPHRASE'
|
9
9
|
|
10
|
-
ACEEPT = 'Accept'
|
11
|
-
COOKIE = 'Cookie'
|
12
|
-
LOCALE = 'Locale='
|
10
|
+
ACEEPT = 'Accept'
|
11
|
+
COOKIE = 'Cookie'
|
12
|
+
LOCALE = 'Locale='
|
13
13
|
|
14
|
-
APPLICATION_JSON = 'application/json'
|
14
|
+
APPLICATION_JSON = 'application/json'
|
15
15
|
|
16
|
-
GET = "GET"
|
17
|
-
POST = "POST"
|
16
|
+
GET = "GET"
|
17
|
+
POST = "POST"
|
18
18
|
|
19
|
-
SERVER_TIMESTAMP_URL = '/api/v5/public/time'
|
19
|
+
SERVER_TIMESTAMP_URL = '/api/v5/public/time'
|
20
20
|
|
21
|
-
# account
|
22
|
-
POSITION_RISK='/api/v5/account/account-position-risk'
|
23
|
-
ACCOUNT_INFO = '/api/v5/account/balance'
|
24
|
-
POSITION_INFO = '/api/v5/account/positions'
|
25
|
-
BILLS_DETAIL = '/api/v5/account/bills'
|
26
|
-
BILLS_ARCHIVE = '/api/v5/account/bills-archive'
|
27
|
-
ACCOUNT_CONFIG = '/api/v5/account/config'
|
28
|
-
POSITION_MODE = '/api/v5/account/set-position-mode'
|
29
|
-
SET_LEVERAGE = '/api/v5/account/set-leverage'
|
30
|
-
MAX_TRADE_SIZE = '/api/v5/account/max-size'
|
31
|
-
MAX_AVAIL_SIZE = '/api/v5/account/max-avail-size'
|
32
|
-
ADJUSTMENT_MARGIN = '/api/v5/account/position/margin-balance'
|
33
|
-
GET_LEVERAGE = '/api/v5/account/leverage-info'
|
34
|
-
MAX_LOAN = '/api/v5/account/max-loan'
|
35
|
-
FEE_RATES = '/api/v5/account/trade-fee'
|
36
|
-
INTEREST_ACCRUED = '/api/v5/account/interest-accrued'
|
37
|
-
INTEREST_RATE = '/api/v5/account/interest-rate'
|
38
|
-
SET_GREEKS = '/api/v5/account/set-greeks'
|
39
|
-
ISOLATED_MODE = '/api/v5/account/set-isolated-mode'
|
40
|
-
MAX_WITHDRAWAL = '/api/v5/account/max-withdrawal'
|
41
|
-
ACCOUNT_RISK = '/api/v5/account/risk-state'
|
42
|
-
BORROW_REPAY = '/api/v5/account/borrow-repay'
|
43
|
-
BORROW_REPAY_HISTORY = '/api/v5/account/borrow-repay-history'
|
44
|
-
INTEREST_LIMITS = '/api/v5/account/interest-limits'
|
45
|
-
SIMULATED_MARGIN = '/api/v5/account/simulated_margin'
|
46
|
-
GREEKS = '/api/v5/account/greeks'
|
47
|
-
POSITIONS_HISTORY = '/api/v5/account/positions-history'
|
48
|
-
POSITION_TIRES = '/api/v5/account/position-tiers'
|
49
|
-
ACTIVATE_OPTION = '/api/v5/account/activate-option'
|
50
|
-
QUICK_MARGIN_BRROW_REPAY = '/api/v5/account/quick-margin-borrow-repay'
|
51
|
-
QUICK_MARGIN_BORROW_REPAY_HISTORY = '/api/v5/account/quick-margin-borrow-repay-history'
|
52
|
-
VIP_INTEREST_ACCRUED = '/api/v5/account/vip-interest-accrued'
|
53
|
-
VIP_INTEREST_DEDUCTED = '/api/v5/account/vip-interest-deducted'
|
54
|
-
VIP_LOAN_ORDER_LIST = '/api/v5/account/vip-loan-order-list'
|
55
|
-
VIP_LOAN_ORDER_DETAIL = '/api/v5/account/vip-loan-order-detail'
|
56
|
-
SET_LOAN_ALLOCATION = '/api/v5/account/subaccount/set-loan-allocation'
|
57
|
-
|
58
|
-
SET_RISKOFFSET_TYPE = '/api/v5/account/set-riskOffset-type'
|
59
|
-
SET_AUTO_LOAN = '/api/v5/account/set-auto-loan'
|
60
|
-
MMP_RESET = '/api/v5/account/mmp-reset'
|
61
|
-
SET_RISKOFFSET_AMT = '/api/v5/account/set-riskOffset-amt'
|
62
|
-
GET_FIXED_LOAN_BORROWING_LIMIT = '/api/v5/account/fixed-loan/borrowing-limit'
|
63
|
-
GET_FIXED_LOAN_BORROWING_QUOTE = '/api/v5/account/fixed-loan/borrowing-quote'
|
64
|
-
FIXED_LOAN_BORROWING_ORDER = '/api/v5/account/fixed-loan/borrowing-order'
|
65
|
-
FIXED_LOAN_AMEND_BORROWING_ORDER = '/api/v5/account/fixed-loan/amend-borrowing-order'
|
66
|
-
FIXED_LOAN_MANUAL_BORROWING = '/api/v5/account/fixed-loan/manual-reborrow'
|
67
|
-
FIXED_LOAN_REPAY_BORROWING_ORDER = '/api/v5/account/fixed-loan/repay-borrowing-order'
|
68
|
-
GET_FIXED_LOAN_BORROWING_ORDERS_LIST = '/api/v5/account/fixed-loan/borrowing-orders-list'
|
69
|
-
GET_ACCOUNT_INSTRUMENTS = '/api/v5/account/instruments'
|
70
|
-
SPOT_MANUAL_BORROW_REPAY = '/api/v5/account/spot-manual-borrow-repay'
|
71
|
-
SET_AUTO_REPAY = '/api/v5/account/set-auto-repay'
|
72
|
-
GET_SPOT_BORROW_REPAY_HISTORY = '/api/v5/account/spot-borrow-repay-history'
|
73
|
-
CONVERT_TO_MARKET_LOAN = '/api/v5/account/fixed-loan/convert-to-market-loan'
|
74
|
-
REDYCE_LIABILITIES = '/api/v5/account/fixed-loan/reduce-liabilities'
|
75
|
-
ACC_RATE_LIMIT = '/api/v5/trade/account-rate-limit'
|
76
|
-
BILLS_HISTORY_ARCHIVE = '/api/v5/account/bills-history-archive'
|
77
|
-
GET_BILLS_HISTORY_ARCHIVE = '/api/v5/account/bills-history-archive'
|
78
|
-
ACCOUNT_LEVEL_SWITCH_PRESET = '/api/v5/account/account-level-switch-preset'
|
79
|
-
SET_ACCOUNT_SWITCH_PRECHECK = '/api/v5/account/set-account-switch-precheck'
|
21
|
+
# account
|
22
|
+
POSITION_RISK='/api/v5/account/account-position-risk'
|
23
|
+
ACCOUNT_INFO = '/api/v5/account/balance'
|
24
|
+
POSITION_INFO = '/api/v5/account/positions'
|
25
|
+
BILLS_DETAIL = '/api/v5/account/bills'
|
26
|
+
BILLS_ARCHIVE = '/api/v5/account/bills-archive'
|
27
|
+
ACCOUNT_CONFIG = '/api/v5/account/config'
|
28
|
+
POSITION_MODE = '/api/v5/account/set-position-mode'
|
29
|
+
SET_LEVERAGE = '/api/v5/account/set-leverage'
|
30
|
+
MAX_TRADE_SIZE = '/api/v5/account/max-size'
|
31
|
+
MAX_AVAIL_SIZE = '/api/v5/account/max-avail-size'
|
32
|
+
ADJUSTMENT_MARGIN = '/api/v5/account/position/margin-balance'
|
33
|
+
GET_LEVERAGE = '/api/v5/account/leverage-info'
|
34
|
+
MAX_LOAN = '/api/v5/account/max-loan'
|
35
|
+
FEE_RATES = '/api/v5/account/trade-fee'
|
36
|
+
INTEREST_ACCRUED = '/api/v5/account/interest-accrued'
|
37
|
+
INTEREST_RATE = '/api/v5/account/interest-rate'
|
38
|
+
SET_GREEKS = '/api/v5/account/set-greeks'
|
39
|
+
ISOLATED_MODE = '/api/v5/account/set-isolated-mode'
|
40
|
+
MAX_WITHDRAWAL = '/api/v5/account/max-withdrawal'
|
41
|
+
ACCOUNT_RISK = '/api/v5/account/risk-state'
|
42
|
+
BORROW_REPAY = '/api/v5/account/borrow-repay'
|
43
|
+
BORROW_REPAY_HISTORY = '/api/v5/account/borrow-repay-history'
|
44
|
+
INTEREST_LIMITS = '/api/v5/account/interest-limits'
|
45
|
+
SIMULATED_MARGIN = '/api/v5/account/simulated_margin'
|
46
|
+
GREEKS = '/api/v5/account/greeks'
|
47
|
+
POSITIONS_HISTORY = '/api/v5/account/positions-history'
|
48
|
+
POSITION_TIRES = '/api/v5/account/position-tiers'
|
49
|
+
ACTIVATE_OPTION = '/api/v5/account/activate-option'
|
50
|
+
QUICK_MARGIN_BRROW_REPAY = '/api/v5/account/quick-margin-borrow-repay'
|
51
|
+
QUICK_MARGIN_BORROW_REPAY_HISTORY = '/api/v5/account/quick-margin-borrow-repay-history'
|
52
|
+
VIP_INTEREST_ACCRUED = '/api/v5/account/vip-interest-accrued'
|
53
|
+
VIP_INTEREST_DEDUCTED = '/api/v5/account/vip-interest-deducted'
|
54
|
+
VIP_LOAN_ORDER_LIST = '/api/v5/account/vip-loan-order-list'
|
55
|
+
VIP_LOAN_ORDER_DETAIL = '/api/v5/account/vip-loan-order-detail'
|
56
|
+
SET_LOAN_ALLOCATION = '/api/v5/account/subaccount/set-loan-allocation'
|
57
|
+
INTEREST_LIMITS = '/api/v5/account/subaccount/interest-limits'
|
58
|
+
SET_RISKOFFSET_TYPE = '/api/v5/account/set-riskOffset-type'
|
59
|
+
SET_AUTO_LOAN = '/api/v5/account/set-auto-loan'
|
60
|
+
MMP_RESET = '/api/v5/account/mmp-reset'
|
61
|
+
SET_RISKOFFSET_AMT = '/api/v5/account/set-riskOffset-amt'
|
62
|
+
GET_FIXED_LOAN_BORROWING_LIMIT = '/api/v5/account/fixed-loan/borrowing-limit'
|
63
|
+
GET_FIXED_LOAN_BORROWING_QUOTE = '/api/v5/account/fixed-loan/borrowing-quote'
|
64
|
+
FIXED_LOAN_BORROWING_ORDER = '/api/v5/account/fixed-loan/borrowing-order'
|
65
|
+
FIXED_LOAN_AMEND_BORROWING_ORDER = '/api/v5/account/fixed-loan/amend-borrowing-order'
|
66
|
+
FIXED_LOAN_MANUAL_BORROWING = '/api/v5/account/fixed-loan/manual-reborrow'
|
67
|
+
FIXED_LOAN_REPAY_BORROWING_ORDER = '/api/v5/account/fixed-loan/repay-borrowing-order'
|
68
|
+
GET_FIXED_LOAN_BORROWING_ORDERS_LIST = '/api/v5/account/fixed-loan/borrowing-orders-list'
|
69
|
+
GET_ACCOUNT_INSTRUMENTS = '/api/v5/account/instruments'
|
70
|
+
SPOT_MANUAL_BORROW_REPAY = '/api/v5/account/spot-manual-borrow-repay'
|
71
|
+
SET_AUTO_REPAY = '/api/v5/account/set-auto-repay'
|
72
|
+
GET_SPOT_BORROW_REPAY_HISTORY = '/api/v5/account/spot-borrow-repay-history'
|
73
|
+
CONVERT_TO_MARKET_LOAN = '/api/v5/account/fixed-loan/convert-to-market-loan'
|
74
|
+
REDYCE_LIABILITIES = '/api/v5/account/fixed-loan/reduce-liabilities'
|
75
|
+
ACC_RATE_LIMIT = '/api/v5/trade/account-rate-limit'
|
76
|
+
BILLS_HISTORY_ARCHIVE = '/api/v5/account/bills-history-archive'
|
77
|
+
GET_BILLS_HISTORY_ARCHIVE = '/api/v5/account/bills-history-archive'
|
78
|
+
ACCOUNT_LEVEL_SWITCH_PRESET = '/api/v5/account/account-level-switch-preset'
|
79
|
+
SET_ACCOUNT_SWITCH_PRECHECK = '/api/v5/account/set-account-switch-precheck'
|
80
80
|
|
81
|
-
# funding
|
82
|
-
DEPOSIT_ADDRESS = '/api/v5/asset/deposit-address'
|
83
|
-
GET_BALANCES = '/api/v5/asset/balances'
|
84
|
-
FUNDS_TRANSFER = '/api/v5/asset/transfer'
|
85
|
-
TRANSFER_STATE = '/api/v5/asset/transfer-state'
|
86
|
-
WITHDRAWAL_COIN = '/api/v5/asset/withdrawal'
|
87
|
-
DEPOSIT_HISTORIY = '/api/v5/asset/deposit-history'
|
88
|
-
CURRENCY_INFO = '/api/v5/asset/currencies'
|
89
|
-
PURCHASE_REDEMPT = '/api/v5/finance/savings/purchase-redempt'
|
90
|
-
BILLS_INFO = '/api/v5/asset/bills'
|
91
|
-
PIGGY_BALANCE = '/api/v5/finance/savings/balance'
|
92
|
-
DEPOSIT_LIGHTNING = '/api/v5/asset/deposit-lightning'
|
93
|
-
WITHDRAWAL_LIGHTNING = '/api/v5/asset/withdrawal-lightning'
|
94
|
-
CANCEL_WITHDRAWAL = '/api/v5/asset/cancel-withdrawal'
|
95
|
-
WITHDRAWAL_HISTORIY = '/api/v5/asset/withdrawal-history'
|
96
|
-
CONVERT_DUST_ASSETS = '/api/v5/asset/convert-dust-assets'
|
97
|
-
ASSET_VALUATION = '/api/v5/asset/asset-valuation'
|
98
|
-
SET_LENDING_RATE = '/api/v5/finance/savings/set-lending-rate'
|
99
|
-
LENDING_HISTORY = '/api/v5/finance/savings/lending-history'
|
100
|
-
LENDING_RATE_HISTORY = '/api/v5/asset/lending-rate-history'
|
101
|
-
LENDING_RATE_SUMMARY = '/api/v5/asset/lending-rate-summary'
|
102
|
-
DEPOSIT_WITHDRAW_STATUS = '/api/v5/asset/deposit-withdraw-status'
|
103
|
-
EXCHANGE_LIST = '/api/v5/asset/exchange-list'
|
104
|
-
MONTHLY_STATEMENT = '/api/v5/asset/monthly-statement'
|
105
|
-
MONTHLY_STATEMENTS = '/api/v5/asset/monthly-statement'
|
81
|
+
# funding
|
82
|
+
DEPOSIT_ADDRESS = '/api/v5/asset/deposit-address'
|
83
|
+
GET_BALANCES = '/api/v5/asset/balances'
|
84
|
+
FUNDS_TRANSFER = '/api/v5/asset/transfer'
|
85
|
+
TRANSFER_STATE = '/api/v5/asset/transfer-state'
|
86
|
+
WITHDRAWAL_COIN = '/api/v5/asset/withdrawal'
|
87
|
+
DEPOSIT_HISTORIY = '/api/v5/asset/deposit-history'
|
88
|
+
CURRENCY_INFO = '/api/v5/asset/currencies'
|
89
|
+
PURCHASE_REDEMPT = '/api/v5/finance/savings/purchase-redempt'
|
90
|
+
BILLS_INFO = '/api/v5/asset/bills'
|
91
|
+
PIGGY_BALANCE = '/api/v5/finance/savings/balance'
|
92
|
+
DEPOSIT_LIGHTNING = '/api/v5/asset/deposit-lightning'
|
93
|
+
WITHDRAWAL_LIGHTNING = '/api/v5/asset/withdrawal-lightning'
|
94
|
+
CANCEL_WITHDRAWAL = '/api/v5/asset/cancel-withdrawal'
|
95
|
+
WITHDRAWAL_HISTORIY = '/api/v5/asset/withdrawal-history'
|
96
|
+
CONVERT_DUST_ASSETS = '/api/v5/asset/convert-dust-assets'
|
97
|
+
ASSET_VALUATION = '/api/v5/asset/asset-valuation'
|
98
|
+
SET_LENDING_RATE = '/api/v5/finance/savings/set-lending-rate'
|
99
|
+
LENDING_HISTORY = '/api/v5/finance/savings/lending-history'
|
100
|
+
LENDING_RATE_HISTORY = '/api/v5/asset/lending-rate-history'
|
101
|
+
LENDING_RATE_SUMMARY = '/api/v5/asset/lending-rate-summary'
|
102
|
+
DEPOSIT_WITHDRAW_STATUS = '/api/v5/asset/deposit-withdraw-status'
|
103
|
+
EXCHANGE_LIST = '/api/v5/asset/exchange-list'
|
104
|
+
MONTHLY_STATEMENT = '/api/v5/asset/monthly-statement'
|
105
|
+
MONTHLY_STATEMENTS = '/api/v5/asset/monthly-statement'
|
106
106
|
|
107
|
-
# Market Data
|
108
|
-
TICKERS_INFO = '/api/v5/market/tickers'
|
109
|
-
TICKER_INFO = '/api/v5/market/ticker'
|
110
|
-
INDEX_TICKERS = '/api/v5/market/index-tickers'
|
111
|
-
ORDER_BOOKS = '/api/v5/market/books'
|
112
|
-
MARKET_CANDLES = '/api/v5/market/candles'
|
113
|
-
HISTORY_CANDLES = '/api/v5/market/history-candles'
|
114
|
-
INDEX_CANSLES = '/api/v5/market/index-candles'
|
115
|
-
MARKPRICE_CANDLES = '/api/v5/market/mark-price-candles'
|
116
|
-
MARKET_TRADES = '/api/v5/market/trades'
|
117
|
-
VOLUMNE = '/api/v5/market/platform-24-volume'
|
118
|
-
ORACLE = '/api/v5/market/oracle'
|
119
|
-
Components = '/api/v5/market/index-components'
|
120
|
-
EXCHANGE_RATE = '/api/v5/market/exchange-rate'
|
121
|
-
HISTORY_TRADES = '/api/v5/market/history-trades'
|
122
|
-
BLOCK_TICKERS = '/api/v5/market/block-tickers'
|
123
|
-
BLOCK_TICKER = '/api/v5/market/block-ticker'
|
124
|
-
BLOCK_TRADES = '/api/v5/market/trades'
|
125
|
-
HISTORY_INDEX_CANDLES = '/api/v5/market/history-index-candles'
|
126
|
-
HISTORY_MARK_PRICE_CANDLES = '/api/v5/market/history-mark-price-candles'
|
127
|
-
INSTRUMENT_FAMILY_TRADES = '/api/v5/market/option/instrument-family-trades'
|
128
|
-
GET_BOOKS_LITE = '/api/v5/market/books-lite'
|
129
|
-
BOOKS_FULL = '/api/v5/market/books-full'
|
130
|
-
GET_CALL_AUCTION_DETAILS = '/api/v5/market/call-auction-details'
|
107
|
+
# Market Data
|
108
|
+
TICKERS_INFO = '/api/v5/market/tickers'
|
109
|
+
TICKER_INFO = '/api/v5/market/ticker'
|
110
|
+
INDEX_TICKERS = '/api/v5/market/index-tickers'
|
111
|
+
ORDER_BOOKS = '/api/v5/market/books'
|
112
|
+
MARKET_CANDLES = '/api/v5/market/candles'
|
113
|
+
HISTORY_CANDLES = '/api/v5/market/history-candles'
|
114
|
+
INDEX_CANSLES = '/api/v5/market/index-candles'
|
115
|
+
MARKPRICE_CANDLES = '/api/v5/market/mark-price-candles'
|
116
|
+
MARKET_TRADES = '/api/v5/market/trades'
|
117
|
+
VOLUMNE = '/api/v5/market/platform-24-volume'
|
118
|
+
ORACLE = '/api/v5/market/oracle'
|
119
|
+
Components = '/api/v5/market/index-components'
|
120
|
+
EXCHANGE_RATE = '/api/v5/market/exchange-rate'
|
121
|
+
HISTORY_TRADES = '/api/v5/market/history-trades'
|
122
|
+
BLOCK_TICKERS = '/api/v5/market/block-tickers'
|
123
|
+
BLOCK_TICKER = '/api/v5/market/block-ticker'
|
124
|
+
BLOCK_TRADES = '/api/v5/market/trades'
|
125
|
+
HISTORY_INDEX_CANDLES = '/api/v5/market/history-index-candles'
|
126
|
+
HISTORY_MARK_PRICE_CANDLES = '/api/v5/market/history-mark-price-candles'
|
127
|
+
INSTRUMENT_FAMILY_TRADES = '/api/v5/market/option/instrument-family-trades'
|
128
|
+
GET_BOOKS_LITE = '/api/v5/market/books-lite'
|
129
|
+
BOOKS_FULL = '/api/v5/market/books-full'
|
130
|
+
GET_CALL_AUCTION_DETAILS = '/api/v5/market/call-auction-details'
|
131
131
|
|
132
|
-
# Public Data
|
133
|
-
INSTRUMENT_INFO = '/api/v5/public/instruments'
|
134
|
-
DELIVERY_EXERCISE = '/api/v5/public/delivery-exercise-history'
|
135
|
-
OPEN_INTEREST = '/api/v5/public/open-interest'
|
136
|
-
FUNDING_RATE = '/api/v5/public/funding-rate'
|
137
|
-
FUNDING_RATE_HISTORY = '/api/v5/public/funding-rate-history'
|
138
|
-
PRICE_LIMIT = '/api/v5/public/price-limit'
|
139
|
-
OPT_SUMMARY = '/api/v5/public/opt-summary'
|
140
|
-
ESTIMATED_PRICE = '/api/v5/public/estimated-price'
|
141
|
-
DICCOUNT_INTETEST_INFO = '/api/v5/public/discount-rate-interest-free-quota'
|
142
|
-
SYSTEM_TIME = '/api/v5/public/time'
|
143
|
-
LIQUIDATION_ORDERS = '/api/v5/public/liquidation-orders'
|
144
|
-
MARK_PRICE = '/api/v5/public/mark-price'
|
145
|
-
TIER = '/api/v5/public/position-tiers'
|
146
|
-
INTEREST_LOAN = '/api/v5/public/interest-rate-loan-quota'
|
147
|
-
UNDERLYING = '/api/v5/public/underlying'
|
148
|
-
VIP_INTEREST_RATE_LOAN_QUOTA = '/api/v5/public/vip-interest-rate-loan-quota'
|
149
|
-
INSURANCE_FUND = '/api/v5/public/insurance-fund'
|
150
|
-
CONVERT_CONTRACT_COIN = '/api/v5/public/convert-contract-coin'
|
151
|
-
INSTRUMENT_TICK_BANDS = '/api/v5/public/instrument-tick-bands'
|
152
|
-
OPTION_TRADES = '/api/v5/public/option-trades'
|
132
|
+
# Public Data
|
133
|
+
INSTRUMENT_INFO = '/api/v5/public/instruments'
|
134
|
+
DELIVERY_EXERCISE = '/api/v5/public/delivery-exercise-history'
|
135
|
+
OPEN_INTEREST = '/api/v5/public/open-interest'
|
136
|
+
FUNDING_RATE = '/api/v5/public/funding-rate'
|
137
|
+
FUNDING_RATE_HISTORY = '/api/v5/public/funding-rate-history'
|
138
|
+
PRICE_LIMIT = '/api/v5/public/price-limit'
|
139
|
+
OPT_SUMMARY = '/api/v5/public/opt-summary'
|
140
|
+
ESTIMATED_PRICE = '/api/v5/public/estimated-price'
|
141
|
+
DICCOUNT_INTETEST_INFO = '/api/v5/public/discount-rate-interest-free-quota'
|
142
|
+
SYSTEM_TIME = '/api/v5/public/time'
|
143
|
+
LIQUIDATION_ORDERS = '/api/v5/public/liquidation-orders'
|
144
|
+
MARK_PRICE = '/api/v5/public/mark-price'
|
145
|
+
TIER = '/api/v5/public/position-tiers'
|
146
|
+
INTEREST_LOAN = '/api/v5/public/interest-rate-loan-quota'
|
147
|
+
UNDERLYING = '/api/v5/public/underlying'
|
148
|
+
VIP_INTEREST_RATE_LOAN_QUOTA = '/api/v5/public/vip-interest-rate-loan-quota'
|
149
|
+
INSURANCE_FUND = '/api/v5/public/insurance-fund'
|
150
|
+
CONVERT_CONTRACT_COIN = '/api/v5/public/convert-contract-coin'
|
151
|
+
INSTRUMENT_TICK_BANDS = '/api/v5/public/instrument-tick-bands'
|
152
|
+
OPTION_TRADES = '/api/v5/public/option-trades'
|
153
153
|
|
154
|
-
# TRADING DATA
|
155
|
-
SUPPORT_COIN = '/api/v5/rubik/stat/trading-data/support-coin'
|
156
|
-
TAKER_VOLUME = '/api/v5/rubik/stat/taker-volume'
|
157
|
-
MARGIN_LENDING_RATIO = '/api/v5/rubik/stat/margin/loan-ratio'
|
158
|
-
LONG_SHORT_RATIO = '/api/v5/rubik/stat/contracts/long-short-account-ratio'
|
159
|
-
CONTRACTS_INTEREST_VOLUME = '/api/v5/rubik/stat/contracts/open-interest-volume'
|
160
|
-
OPTIONS_INTEREST_VOLUME = '/api/v5/rubik/stat/option/open-interest-volume'
|
161
|
-
PUT_CALL_RATIO = '/api/v5/rubik/stat/option/open-interest-volume-ratio'
|
162
|
-
OPEN_INTEREST_VOLUME_EXPIRY = '/api/v5/rubik/stat/option/open-interest-volume-expiry'
|
163
|
-
INTEREST_VOLUME_STRIKE = '/api/v5/rubik/stat/option/open-interest-volume-strike'
|
164
|
-
TAKER_FLOW = '/api/v5/rubik/stat/option/taker-block-volume'
|
165
|
-
GET_OPEN_INTEREST_HISTORY = '/api/v5/rubik/stat/contracts/open-interest-history'
|
166
|
-
GET_TAKER_VOLUME_CONTRACT = '/api/v5/rubik/stat/taker-volume-contract'
|
167
|
-
GET_LONG_SHORT_ACCOUNT_RADIO_CONTRACT_TOP_TRADER = '/api/v5/rubik/stat/contracts/long-short-account-ratio-contract-top-trader'
|
168
|
-
GET_LONG_SHORT_POSTION_RADIO_CONTRACT_TOP_TRADER = '/api/v5/rubik/stat/contracts/long-short-position-ratio-contract-top-trader'
|
169
|
-
GET_LONG_SHORT_ACCOUNT_RADIO_CONTRACT = '/api/v5/rubik/stat/contracts/long-short-account-ratio-contract'
|
154
|
+
# TRADING DATA
|
155
|
+
SUPPORT_COIN = '/api/v5/rubik/stat/trading-data/support-coin'
|
156
|
+
TAKER_VOLUME = '/api/v5/rubik/stat/taker-volume'
|
157
|
+
MARGIN_LENDING_RATIO = '/api/v5/rubik/stat/margin/loan-ratio'
|
158
|
+
LONG_SHORT_RATIO = '/api/v5/rubik/stat/contracts/long-short-account-ratio'
|
159
|
+
CONTRACTS_INTEREST_VOLUME = '/api/v5/rubik/stat/contracts/open-interest-volume'
|
160
|
+
OPTIONS_INTEREST_VOLUME = '/api/v5/rubik/stat/option/open-interest-volume'
|
161
|
+
PUT_CALL_RATIO = '/api/v5/rubik/stat/option/open-interest-volume-ratio'
|
162
|
+
OPEN_INTEREST_VOLUME_EXPIRY = '/api/v5/rubik/stat/option/open-interest-volume-expiry'
|
163
|
+
INTEREST_VOLUME_STRIKE = '/api/v5/rubik/stat/option/open-interest-volume-strike'
|
164
|
+
TAKER_FLOW = '/api/v5/rubik/stat/option/taker-block-volume'
|
165
|
+
GET_OPEN_INTEREST_HISTORY = '/api/v5/rubik/stat/contracts/open-interest-history'
|
166
|
+
GET_TAKER_VOLUME_CONTRACT = '/api/v5/rubik/stat/taker-volume-contract'
|
167
|
+
GET_LONG_SHORT_ACCOUNT_RADIO_CONTRACT_TOP_TRADER = '/api/v5/rubik/stat/contracts/long-short-account-ratio-contract-top-trader'
|
168
|
+
GET_LONG_SHORT_POSTION_RADIO_CONTRACT_TOP_TRADER = '/api/v5/rubik/stat/contracts/long-short-position-ratio-contract-top-trader'
|
169
|
+
GET_LONG_SHORT_ACCOUNT_RADIO_CONTRACT = '/api/v5/rubik/stat/contracts/long-short-account-ratio-contract'
|
170
170
|
|
171
|
-
# TRADE
|
172
|
-
PLACR_ORDER = '/api/v5/trade/order'
|
173
|
-
BATCH_ORDERS = '/api/v5/trade/batch-orders'
|
174
|
-
CANAEL_ORDER = '/api/v5/trade/cancel-order'
|
175
|
-
CANAEL_BATCH_ORDERS = '/api/v5/trade/cancel-batch-orders'
|
176
|
-
AMEND_ORDER = '/api/v5/trade/amend-order'
|
177
|
-
AMEND_BATCH_ORDER = '/api/v5/trade/amend-batch-orders'
|
178
|
-
CLOSE_POSITION = '/api/v5/trade/close-position'
|
179
|
-
ORDER_INFO = '/api/v5/trade/order'
|
180
|
-
ORDERS_PENDING = '/api/v5/trade/orders-pending'
|
181
|
-
ORDERS_HISTORY = '/api/v5/trade/orders-history'
|
182
|
-
ORDERS_HISTORY_ARCHIVE = '/api/v5/trade/orders-history-archive'
|
183
|
-
ORDER_FILLS = '/api/v5/trade/fills'
|
184
|
-
ORDERS_FILLS_HISTORY = '/api/v5/trade/fills-history'
|
185
|
-
PLACE_ALGO_ORDER = '/api/v5/trade/order-algo'
|
186
|
-
CANCEL_ALGOS = '/api/v5/trade/cancel-algos'
|
187
|
-
AMEND_ALGOS = '/api/v5/trade/amend-algos'
|
188
|
-
Cancel_Advance_Algos = '/api/v5/trade/cancel-advance-algos'
|
189
|
-
ORDERS_ALGO_OENDING = '/api/v5/trade/orders-algo-pending'
|
190
|
-
ORDERS_ALGO_HISTORY = '/api/v5/trade/orders-algo-history'
|
191
|
-
EASY_CONVERT_CURRENCY_LIST = '/api/v5/trade/easy-convert-currency-list'
|
192
|
-
EASY_CONVERT = '/api/v5/trade/easy-convert'
|
193
|
-
EASY_CONVERT_HISTORY = '/api/v5/trade/easy-convert-history'
|
194
|
-
ONE_CLICK_REPAY_CURRENCY_LIST = '/api/v5/trade/one-click-repay-currency-list'
|
195
|
-
ONE_CLICK_REPAY = '/api/v5/trade/one-click-repay'
|
196
|
-
ONE_CLICK_REPAY_HISTORY = '/api/v5/trade/one-click-repay-history'
|
197
|
-
GET_ORDER_ALGO = '/api/v5/trade/order-algo'
|
198
|
-
MASS_CANCEL = '/api/v5/trade/mass-cancel'
|
199
|
-
CANCEL_ALL_AFTER = '/api/v5/trade/cancel-all-after'
|
200
|
-
FILLS_ARCHIVE = '/api/v5/trade/fills-archive'
|
201
|
-
FILLS_ARCHIVES = '/api/v5/trade/fills-archive'
|
202
|
-
ORDER_PRECHECK = '/api/v5/trade/order-precheck'
|
171
|
+
# TRADE
|
172
|
+
PLACR_ORDER = '/api/v5/trade/order'
|
173
|
+
BATCH_ORDERS = '/api/v5/trade/batch-orders'
|
174
|
+
CANAEL_ORDER = '/api/v5/trade/cancel-order'
|
175
|
+
CANAEL_BATCH_ORDERS = '/api/v5/trade/cancel-batch-orders'
|
176
|
+
AMEND_ORDER = '/api/v5/trade/amend-order'
|
177
|
+
AMEND_BATCH_ORDER = '/api/v5/trade/amend-batch-orders'
|
178
|
+
CLOSE_POSITION = '/api/v5/trade/close-position'
|
179
|
+
ORDER_INFO = '/api/v5/trade/order'
|
180
|
+
ORDERS_PENDING = '/api/v5/trade/orders-pending'
|
181
|
+
ORDERS_HISTORY = '/api/v5/trade/orders-history'
|
182
|
+
ORDERS_HISTORY_ARCHIVE = '/api/v5/trade/orders-history-archive'
|
183
|
+
ORDER_FILLS = '/api/v5/trade/fills'
|
184
|
+
ORDERS_FILLS_HISTORY = '/api/v5/trade/fills-history'
|
185
|
+
PLACE_ALGO_ORDER = '/api/v5/trade/order-algo'
|
186
|
+
CANCEL_ALGOS = '/api/v5/trade/cancel-algos'
|
187
|
+
AMEND_ALGOS = '/api/v5/trade/amend-algos'
|
188
|
+
Cancel_Advance_Algos = '/api/v5/trade/cancel-advance-algos'
|
189
|
+
ORDERS_ALGO_OENDING = '/api/v5/trade/orders-algo-pending'
|
190
|
+
ORDERS_ALGO_HISTORY = '/api/v5/trade/orders-algo-history'
|
191
|
+
EASY_CONVERT_CURRENCY_LIST = '/api/v5/trade/easy-convert-currency-list'
|
192
|
+
EASY_CONVERT = '/api/v5/trade/easy-convert'
|
193
|
+
EASY_CONVERT_HISTORY = '/api/v5/trade/easy-convert-history'
|
194
|
+
ONE_CLICK_REPAY_CURRENCY_LIST = '/api/v5/trade/one-click-repay-currency-list'
|
195
|
+
ONE_CLICK_REPAY = '/api/v5/trade/one-click-repay'
|
196
|
+
ONE_CLICK_REPAY_HISTORY = '/api/v5/trade/one-click-repay-history'
|
197
|
+
GET_ORDER_ALGO = '/api/v5/trade/order-algo'
|
198
|
+
MASS_CANCEL = '/api/v5/trade/mass-cancel'
|
199
|
+
CANCEL_ALL_AFTER = '/api/v5/trade/cancel-all-after'
|
200
|
+
FILLS_ARCHIVE = '/api/v5/trade/fills-archive'
|
201
|
+
FILLS_ARCHIVES = '/api/v5/trade/fills-archive'
|
202
|
+
ORDER_PRECHECK = '/api/v5/trade/order-precheck'
|
203
203
|
|
204
|
-
#
|
205
|
-
SPRD_PLACE_ORDER = '/api/v5/sprd/order'
|
206
|
-
SPRD_CANCEL_ORDER = '/api/v5/sprd/cancel-order'
|
207
|
-
SPRD_MASS_CANCELS = '/api/v5/sprd/mass-cancel'
|
208
|
-
SPRD_AMEND_CANCELS = '/api/v5/sprd/amend-order'
|
209
|
-
SPRD_ORDER = '/api/v5/sprd/order'
|
210
|
-
SPRD_ORDERS_PENDING = '/api/v5/sprd/orders-pending'
|
211
|
-
SPRD_ORDERS_HISTORY = '/api/v5/sprd/orders-history'
|
212
|
-
SPRD_ORDERS_HISTORY_ARCHIVE = '/api/v5/sprd/orders-history-archive'
|
213
|
-
SPRD_TRADES = '/api/v5/sprd/trades'
|
214
|
-
SPRD_SPREADS = '/api/v5/sprd/spreads'
|
215
|
-
SPRD_BOOKS = '/api/v5/sprd/books'
|
216
|
-
SPRD_TICKER = '/api/v5/market/sprd-ticker'
|
217
|
-
SPRD_PUBLIC_TRADES = '/api/v5/sprd/public-trades'
|
218
|
-
SPRD_CANCEL_ALL_AFTER = '/api/v5/sprd/cancel-all-after'
|
219
|
-
GET_SPRD_CANDLES = '/api/v5/market/sprd-candles'
|
220
|
-
GET_SPRD_HISTORY_CANDLES = '/api/v5/market/sprd-history-candles'
|
204
|
+
#Sprd
|
205
|
+
SPRD_PLACE_ORDER = '/api/v5/sprd/order'
|
206
|
+
SPRD_CANCEL_ORDER = '/api/v5/sprd/cancel-order'
|
207
|
+
SPRD_MASS_CANCELS = '/api/v5/sprd/mass-cancel'
|
208
|
+
SPRD_AMEND_CANCELS = '/api/v5/sprd/amend-order'
|
209
|
+
SPRD_ORDER = '/api/v5/sprd/order'
|
210
|
+
SPRD_ORDERS_PENDING = '/api/v5/sprd/orders-pending'
|
211
|
+
SPRD_ORDERS_HISTORY = '/api/v5/sprd/orders-history'
|
212
|
+
SPRD_ORDERS_HISTORY_ARCHIVE = '/api/v5/sprd/orders-history-archive'
|
213
|
+
SPRD_TRADES = '/api/v5/sprd/trades'
|
214
|
+
SPRD_SPREADS = '/api/v5/sprd/spreads'
|
215
|
+
SPRD_BOOKS = '/api/v5/sprd/books'
|
216
|
+
SPRD_TICKER = '/api/v5/market/sprd-ticker'
|
217
|
+
SPRD_PUBLIC_TRADES = '/api/v5/sprd/public-trades'
|
218
|
+
SPRD_CANCEL_ALL_AFTER = '/api/v5/sprd/cancel-all-after'
|
219
|
+
GET_SPRD_CANDLES = '/api/v5/market/sprd-candles'
|
220
|
+
GET_SPRD_HISTORY_CANDLES = '/api/v5/market/sprd-history-candles'
|
221
221
|
|
222
|
-
# SubAccount (子账户相关 API)
|
223
|
-
BALANCE = '/api/v5/account/subaccount/balances' # 获取子账户余额的 API 路径
|
224
|
-
BILLs = '/api/v5/asset/subaccount/bills' # 获取子账户账单的 API 路径
|
225
|
-
DELETE = '/api/v5/users/subaccount/delete-apikey' # 移除此接口 (删除子账户 API Key)
|
226
|
-
RESET = '/api/v5/users/subaccount/modify-apikey' # 移除此接口 (修改子账户 API Key)
|
227
|
-
CREATE = '/api/v5/users/subaccount/apikey' # 移除此接口 (创建子账户 API Key)
|
228
|
-
WATCH = '/api/v5/users/subaccount/apikey' # 移除此接口 (查看子账户 API Key)
|
229
|
-
VIEW_LIST = '/api/v5/users/subaccount/list' # 获取子账户列表的 API 路径
|
230
|
-
SUBACCOUNT_TRANSFER = '/api/v5/asset/subaccount/transfer' # 子账户资金划转的 API 路径
|
231
|
-
ENTRUST_SUBACCOUNT_LIST = '/api/v5/users/entrust-subaccount-list' # 获取受托子账户列表的 API 路径
|
232
|
-
MODIFY_APIKEY = '/api/v5/users/subaccount/modify-apikey' # 修改子账户 API Key 的 API 路径
|
233
|
-
ASSET_BALANCES = '/api/v5/asset/subaccount/balances' # 获取子账户资产余额的 API 路径 (与 BALANCE 重复)
|
234
|
-
PARTNER_IF_REBATE = '/api/v5/users/partner/if-rebate' # 合作伙伴是否返佣的 API 路径
|
235
|
-
MAX_WITHDRAW = '/api/v5/account/subaccount/max-withdrawal' # 获取子账户最大提币数量的 API 路径
|
236
|
-
SUB_BILLS = '/api/v5/asset/subaccount/managed-subaccount-bills' # 获取代管子账户账单的 API 路径
|
237
222
|
|
238
|
-
#
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
DMA_DELETE_APIKEY = '/api/v5/broker/dma/subaccount/delete-apikey' # 删除 DMA 子账户 API Key 的 API 路径
|
254
|
-
GET_REBATE_PER_ORDERS = '/api/v5/broker/nd/rebate-per-orders' # 获取每笔订单返佣的 API 路径
|
255
|
-
REBATE_PER_ORDERS = '/api/v5/broker/nd/rebate-per-orders' # 获取每笔订单返佣的 API 路径 (重复定义)
|
256
|
-
MODIFY_SUBACCOUNT_DEPOSIT_ADDRESS = '/api/v5/asset/broker/dma/modify-subaccount-deposit-address' # 修改经纪商子账户充值地址的 API 路径
|
257
|
-
ND_SUBACCOUNT_WITHDRAWAL_HISTORY = '/api/v5/asset/broker/dma/subaccount-withdrawal-history' # 获取经纪商子账户提币历史的 API 路径
|
258
|
-
SET_SUBACCOUNT_ASSETS = '/api/v5/broker/dma/set-subaccount-assets' # 设置经纪商子账户资产的 API 路径
|
259
|
-
R_SACCOUNT_IP = '/api/v5/broker/dma/report-subaccount-ip' # 报告子账户 IP 的 API 路径
|
260
|
-
IF_REBATE = '/api/v5/broker/nd/if-rebate' # 是否返佣的 API 路径
|
223
|
+
# SubAccount
|
224
|
+
BALANCE = '/api/v5/account/subaccount/balances'
|
225
|
+
BILLs = '/api/v5/asset/subaccount/bills'
|
226
|
+
DELETE = '/api/v5/users/subaccount/delete-apikey' # 移除此接口
|
227
|
+
RESET = '/api/v5/users/subaccount/modify-apikey' # 移除此接口
|
228
|
+
CREATE = '/api/v5/users/subaccount/apikey' # 移除此接口
|
229
|
+
WATCH = '/api/v5/users/subaccount/apikey' # 移除此接口
|
230
|
+
VIEW_LIST = '/api/v5/users/subaccount/list'
|
231
|
+
SUBACCOUNT_TRANSFER = '/api/v5/asset/subaccount/transfer'
|
232
|
+
ENTRUST_SUBACCOUNT_LIST = '/api/v5/users/entrust-subaccount-list'
|
233
|
+
MODIFY_APIKEY = '/api/v5/users/subaccount/modify-apikey'
|
234
|
+
ASSET_BALANCES = '/api/v5/asset/subaccount/balances'
|
235
|
+
PARTNER_IF_REBATE = '/api/v5/users/partner/if-rebate'
|
236
|
+
MAX_WITHDRAW = '/api/v5/account/subaccount/max-withdrawal'
|
237
|
+
SUB_BILLS = '/api/v5/asset/subaccount/managed-subaccount-bills'
|
261
238
|
|
262
|
-
#
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
239
|
+
# Broker
|
240
|
+
BROKER_INFO = '/api/v5/broker/nd/info'
|
241
|
+
CREATE_SUBACCOUNT = '/api/v5/broker/dma/create-subaccount'
|
242
|
+
DELETE_SUBACCOUNT = '/api/v5/broker/dma/delete-subaccount'
|
243
|
+
SUBACCOUNT_INFO = '/api/v5/broker/dma/subaccount-info'
|
244
|
+
SUBACCOUNT_TRADE_FEE= '/api/v5/broker/dma/subaccount-trade-fee'
|
245
|
+
SET_SUBACCOUNT_LEVEL = '/api/v5/broker/dma/set-subaccount-level'
|
246
|
+
SET_SUBACCOUNT_FEE_REAT = '/api/v5/broker/nd/set-subaccount-fee-rate'
|
247
|
+
SUBACCOUNT_DEPOSIT_ADDRESS = '/api/v5/asset/broker/dma/subaccount-deposit-address'
|
248
|
+
SUBACCOUNT_DEPOSIT_HISTORY = '/api/v5/asset/broker/dma/subaccount-deposit-history'
|
249
|
+
REBATE_DAILY = '/api/v5/broker/nd/rebate-daily'
|
250
|
+
# BROKER_INFO = '/api/v5/broker/nd/info' Broker 获取充值地址文档无法打开,预留位置
|
251
|
+
DMA_CREAET_APIKEY = '/api/v5/broker/dma/subaccount/apikey'
|
252
|
+
DMA_SELECT_APIKEY = '/api/v5/broker/dma/subaccount/apikey'
|
253
|
+
DMA_MODIFY_APIKEY = '/api/v5/broker/dma/subaccount/modify-apikey'
|
254
|
+
DMA_DELETE_APIKEY = '/api/v5/broker/dma/subaccount/delete-apikey'
|
255
|
+
GET_REBATE_PER_ORDERS = '/api/v5/broker/nd/rebate-per-orders'
|
256
|
+
REBATE_PER_ORDERS = '/api/v5/broker/nd/rebate-per-orders'
|
257
|
+
MODIFY_SUBACCOUNT_DEPOSIT_ADDRESS = '/api/v5/asset/broker/dma/modify-subaccount-deposit-address'
|
258
|
+
ND_SUBACCOUNT_WITHDRAWAL_HISTORY = '/api/v5/asset/broker/dma/subaccount-withdrawal-history'
|
259
|
+
SET_SUBACCOUNT_ASSETS = '/api/v5/broker/dma/set-subaccount-assets'
|
260
|
+
R_SACCOUNT_IP = '/api/v5/broker/dma/report-subaccount-ip'
|
261
|
+
IF_REBATE = '/api/v5/broker/nd/if-rebate'
|
268
262
|
|
269
|
-
#
|
270
|
-
|
271
|
-
|
272
|
-
|
263
|
+
# Convert
|
264
|
+
GET_CURRENCIES = '/api/v5/asset/convert/currencies'
|
265
|
+
GET_CURRENCY_PAIR = '/api/v5/asset/convert/currency-pair'
|
266
|
+
ESTIMATE_QUOTE = '/api/v5/asset/convert/estimate-quote'
|
267
|
+
CONVERT_TRADE = '/api/v5/asset/convert/trade'
|
268
|
+
CONVERT_HISTORY = '/api/v5/asset/convert/history'
|
273
269
|
|
274
|
-
#
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
CANCEL_BATCH_RFQS = '/api/v5/rfq/cancel-batch-rfqs' # 批量撤销询价请求的 API 路径
|
279
|
-
CANCEL_ALL_RSQS = '/api/v5/rfq/cancel-all-rfqs' # 撤销所有询价请求的 API 路径
|
280
|
-
EXECUTE_QUOTE = '/api/v5/rfq/execute-quote' # 执行报价的 API 路径
|
281
|
-
CREATE_QUOTE = '/api/v5/rfq/create-quote' # 创建报价的 API 路径
|
282
|
-
CANCEL_QUOTE = '/api/v5/rfq/cancel-quote' # 撤销报价的 API 路径
|
283
|
-
CANCEL_BATCH_QUOTES = '/api/v5/rfq/cancel-batch-quotes' # 批量撤销报价的 API 路径
|
284
|
-
CANCEL_ALL_QUOTES = '/api/v5/rfq/cancel-all-quotes' # 撤销所有报价的 API 路径
|
285
|
-
GET_RFQS = '/api/v5/rfq/rfqs' # 获取询价请求列表的 API 路径
|
286
|
-
GET_QUOTES = '/api/v5/rfq/quotes' # 获取报价列表的 API 路径
|
287
|
-
GET_RFQ_TRADES = '/api/v5/rfq/trades' # 获取询价成交数据的 API 路径
|
288
|
-
GET_PUBLIC_TRADES = '/api/v5/rfq/public-trades' # 获取询价公共成交数据的 API 路径
|
289
|
-
RFQ_CANCEL_ALL_AFTER = '/api/v5/rfq/cancel-all-after' # 设置询价自动撤销所有订单的 API 路径
|
290
|
-
MARKET_INSTRUMENT_SETTINGS = '/api/v5/rfq/maker-instrument-settings' # 获取做市商交易产品设置的 API 路径
|
291
|
-
MMP_RESET = '/api/v5/rfq/mmp-reset' # 询价做市商保护重置的 API 路径
|
292
|
-
MMP_CONFIG = '/api/v5/rfq/mmp-config' # 询价做市商保护配置的 API 路径
|
293
|
-
MMP_CONF = '/api/v5/rfq/mmp-config' # 询价做市商保护配置的 API 路径 (与 MMP_CONFIG 重复)
|
294
|
-
# MMP_CONFIG = '/api/v5/account/mmp-config' # 账户做市商保护配置的 API 路径 (重复定义)
|
295
|
-
MMP = '/api/v5/account/mmp-config' # 账户做市商保护配置的 API 路径 (与 MMP_CONFIG 重复)
|
296
|
-
SET_ACCOUNT_LEVEL = '/api/v5/account/set-account-level' # 设置账户等级的 API 路径
|
297
|
-
GET_MAKER_INSTRUMENT_SETTINGS = '/api/v5/rfq/maker-instrument-settings' # 获取做市商交易产品设置的 API 路径 (与 MARKET_INSTRUMENT_SETTINGS 重复)
|
298
|
-
POSITION_BUILDER = '/api/v5/account/position-builder' # 获取仓位构建器信息的 API 路径
|
270
|
+
# FDBroker
|
271
|
+
FD_GET_REBATE_PER_ORDERS = '/api/v5/broker/fd/rebate-per-orders'
|
272
|
+
FD_REBATE_PER_ORDERS = '/api/v5/broker/fd/rebate-per-orders'
|
273
|
+
FD_IF_REBATE = '/api/v5/broker/fd/if-rebate'
|
299
274
|
|
300
|
-
#
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
275
|
+
# Rfq
|
276
|
+
COUNTERPARTIES = '/api/v5/rfq/counterparties'
|
277
|
+
CREATE_RFQ = '/api/v5/rfq/create-rfq'
|
278
|
+
CANCEL_RFQ = '/api/v5/rfq/cancel-rfq'
|
279
|
+
CANCEL_BATCH_RFQS = '/api/v5/rfq/cancel-batch-rfqs'
|
280
|
+
CANCEL_ALL_RSQS = '/api/v5/rfq/cancel-all-rfqs'
|
281
|
+
EXECUTE_QUOTE = '/api/v5/rfq/execute-quote'
|
282
|
+
CREATE_QUOTE = '/api/v5/rfq/create-quote'
|
283
|
+
CANCEL_QUOTE = '/api/v5/rfq/cancel-quote'
|
284
|
+
CANCEL_BATCH_QUOTES = '/api/v5/rfq/cancel-batch-quotes'
|
285
|
+
CANCEL_ALL_QUOTES = '/api/v5/rfq/cancel-all-quotes'
|
286
|
+
GET_RFQS = '/api/v5/rfq/rfqs'
|
287
|
+
GET_QUOTES = '/api/v5/rfq/quotes'
|
288
|
+
GET_RFQ_TRADES = '/api/v5/rfq/trades'
|
289
|
+
GET_PUBLIC_TRADES = '/api/v5/rfq/public-trades'
|
290
|
+
RFQ_CANCEL_ALL_AFTER = '/api/v5/rfq/cancel-all-after'
|
291
|
+
MARKET_INSTRUMENT_SETTINGS = '/api/v5/rfq/maker-instrument-settings'
|
292
|
+
MMP_RESET = '/api/v5/rfq/mmp-reset'
|
293
|
+
MMP_CONFIG = '/api/v5/rfq/mmp-config'
|
294
|
+
MMP_CONF = '/api/v5/rfq/mmp-config'
|
295
|
+
MMP_CONFIG = '/api/v5/account/mmp-config'
|
296
|
+
MMP = '/api/v5/account/mmp-config'
|
297
|
+
SET_ACCOUNT_LEVEL = '/api/v5/account/set-account-level'
|
298
|
+
GET_MAKER_INSTRUMENT_SETTINGS = '/api/v5/rfq/maker-instrument-settings'
|
299
|
+
POSITION_BUILDER = '/api/v5/account/position-builder'
|
315
300
|
|
316
|
-
#
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
FIXED_LOAN_LENDING_APY_HIS = '/api/v5/finance/fixed-loan/lending-apy-history' # 获取固定借贷年化收益率历史的 API 路径
|
332
|
-
FIXED_LOAN_PENDING_LENDING_VOL = '/api/v5/finance/fixed-loan/pending-lending-volume' # 获取固定借贷待匹配借贷量的 API 路径
|
333
|
-
FIXED_LOAN_LENDING_ORDER = '/api/v5/finance/fixed-loan/lending-order' # 固定借贷下单的 API 路径
|
334
|
-
FIXED_LOAN_AMEND_LENDING_ORDER = '/api/v5/finance/fixed-loan/amend-lending-order' # 修改固定借贷订单的 API 路径
|
335
|
-
FIXED_LOAN_LENDING_ORDERS_LIST = '/api/v5/finance/fixed-loan/lending-orders-list' # 获取固定借贷订单列表的 API 路径
|
336
|
-
FIXED_LOAN_LENDING_SUB_ORDERS = '/api/v5/finance/fixed-loan/lending-sub-orders' # 获取固定借贷子订单的 API 路径
|
337
|
-
STAKING_DEFI_ETH_PRODUCT_INFO = '/api/v5/finance/staking-defi/eth/product-info' # 获取 ETH Staking Defi 产品信息的 API 路径
|
338
|
-
STAKING_DEFI_SOL_PURCASE = '/api/v5/finance/staking-defi/sol/purchase' # 申购 SOL Staking Defi 的 API 路径
|
339
|
-
STAKING_DEFI_SOL_REDEEM = '/api/v5/finance/staking-defi/sol/redeem' # 赎回 SOL Staking Defi 的 API 路径
|
340
|
-
STAKING_DEFI_SOL_BALANCE = '/api/v5/finance/staking-defi/sol/balance' # 获取 SOL Staking Defi 余额的 API 路径
|
341
|
-
STAKING_DEFI_SOL_P_R_HISTORY = '/api/v5/finance/staking-defi/sol/purchase-redeem-history' # 获取 SOL Staking Defi 申赎历史的 API 路径
|
342
|
-
STAKING_DEFI_SOL_APY_HISTORY = '/api/v5/finance/staking-defi/sol/apy-history' # 获取 SOL Staking Defi 年化收益率历史的 API 路径
|
343
|
-
FLEXIBLE_LOAN_BORROW_CURRENCIES = '/api/v5/finance/flexible-loan/borrow-currencies' # 获取活期借贷可借币种的 API 路径
|
344
|
-
FLEXIBLE_LOAN_COLLATERAL_ASSETS = '/api/v5/finance/flexible-loan/collateral-assets' # 获取活期借贷可抵押资产的 API 路径
|
345
|
-
FLEXIBLE_LOAN_MAX_LOAN = '/api/v5/finance/flexible-loan/max-loan' # 获取活期借贷最大可借金额的 API 路径
|
346
|
-
FLEXIBLE_LOAN_MAX_C_R_A = '/api/v5/finance/flexible-loan/max-collateral-redeem-amount' # 获取活期借贷最大可赎回抵押物数量的 API 路径
|
347
|
-
FLEXIBLE_LOAN_ADJ_COLL = '/api/v5/finance/flexible-loan/adjust-collateral' # 调整活期借贷抵押物的 API 路径
|
348
|
-
FLEXIBLE_LOAN_LOAN_INFO = '/api/v5/finance/flexible-loan/loan-info' # 获取活期借贷信息的 API 路径
|
349
|
-
FLEXIBLE_LOAN_LOAN_HISTORY = '/api/v5/finance/flexible-loan/loan-history' # 获取活期借贷历史的 API 路径
|
350
|
-
FLEXIBLE_LOAN_INT_ACC = '/api/v5/finance/flexible-loan/interest-accrued' # 获取活期借贷已产生利息的 API 路径
|
301
|
+
# tradingBot
|
302
|
+
GRID_ORDER_ALGO = '/api/v5/tradingBot/grid/order-algo'
|
303
|
+
GRID_AMEND_ORDER_ALGO = '/api/v5/tradingBot/grid/amend-order-algo'
|
304
|
+
GRID_STOP_ORDER_ALGO = '/api/v5/tradingBot/grid/stop-order-algo'
|
305
|
+
GRID_ORDERS_ALGO_PENDING = '/api/v5/tradingBot/grid/orders-algo-pending'
|
306
|
+
GRID_ORDERS_ALGO_HISTORY = '/api/v5/tradingBot/grid/orders-algo-history'
|
307
|
+
GRID_ORDERS_ALGO_DETAILS = '/api/v5/tradingBot/grid/orders-algo-details'
|
308
|
+
GRID_SUB_ORDERS = '/api/v5/tradingBot/grid/sub-orders'
|
309
|
+
GRID_POSITIONS = '/api/v5/tradingBot/grid/positions'
|
310
|
+
GRID_WITHDRAW_INCOME = '/api/v5/tradingBot/grid/withdraw-income'
|
311
|
+
GRID_COMPUTE_MARGIN_BALANCE = '/api/v5/tradingBot/grid/compute-margin-balance'
|
312
|
+
GRID_MARGIN_BALANCE = '/api/v5/tradingBot/grid/margin-balance'
|
313
|
+
GRID_AI_PARAM = '/api/v5/tradingBot/grid/ai-param'
|
314
|
+
GRID_ADJUST_INVESTMETN = '/api/v5/tradingBot/grid/adjust-investment'
|
315
|
+
GRID_QUANTITY = '/api/v5/tradingBot/grid/grid-quantity'
|
351
316
|
|
352
|
-
#
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
COPY_TRADERS = '/api/v5/copytrading/copy-traders' # 获取跟单交易员的 API 路径
|
388
|
-
PUB_COPY_TRADERS = '/api/v5/copytrading/public-copy-traders' # 获取公开跟单交易员的 API 路径
|
389
|
-
CONFIG = '/api/v5/copytrading/config' # 获取跟单配置的 API 路径
|
390
|
-
TOTAL_UNREA_PRO_SHAR = '/api/v5/copytrading/total-unrealized-profit-sharing' # 获取总未实现分润的 API 路径
|
317
|
+
# finance
|
318
|
+
STAKING_DEFI_OFFERS = '/api/v5/finance/staking-defi/offers'
|
319
|
+
STAKING_DEFI_PURCHASE = '/api/v5/finance/staking-defi/purchase'
|
320
|
+
STAKING_DEFI_REDEEM = '/api/v5/finance/staking-defi/redeem'
|
321
|
+
STAKING_DEFI_CANCEL = '/api/v5/finance/staking-defi/cancel'
|
322
|
+
STAKING_DEFI_ORDERS_ACTIVE = '/api/v5/finance/staking-defi/orders-active'
|
323
|
+
STAKING_DEFI_ORDERS_HISTORY = '/api/v5/finance/staking-defi/orders-history'
|
324
|
+
STAKING_DEFI_ETH_PURCASE = '/api/v5/finance/staking-defi/eth/purchase'
|
325
|
+
STAKING_DEFI_ETH_REDEEM = '/api/v5/finance/staking-defi/eth/redeem'
|
326
|
+
STAKING_DEFI_ETH_BALANCE ='/api/v5/finance/staking-defi/eth/balance'
|
327
|
+
STAKING_DEFI_ETH_P_R_HISTORY= '/api/v5/finance/staking-defi/eth/purchase-redeem-history'
|
328
|
+
STAKING_DEFI_ETH_APY_HISTORY = '/api/v5/finance/staking-defi/eth/apy-history'
|
329
|
+
SAVINGS_LENDING_RATE_SUM = '/api/v5/finance/savings/lending-rate-summary'
|
330
|
+
SAVINGS_LENDING_RATE_HIS = '/api/v5/finance/savings/lending-rate-history'
|
331
|
+
FIXED_LOAN_LENDING_OFFERS = '/api/v5/finance/fixed-loan/lending-offers'
|
332
|
+
FIXED_LOAN_LENDING_APY_HIS = '/api/v5/finance/fixed-loan/lending-apy-history'
|
333
|
+
FIXED_LOAN_PENDING_LENDING_VOL = '/api/v5/finance/fixed-loan/pending-lending-volume'
|
334
|
+
FIXED_LOAN_LENDING_ORDER = '/api/v5/finance/fixed-loan/lending-order'
|
335
|
+
FIXED_LOAN_AMEND_LENDING_ORDER = '/api/v5/finance/fixed-loan/amend-lending-order'
|
336
|
+
FIXED_LOAN_LENDING_ORDERS_LIST = '/api/v5/finance/fixed-loan/lending-orders-list'
|
337
|
+
FIXED_LOAN_LENDING_SUB_ORDERS = '/api/v5/finance/fixed-loan/lending-sub-orders'
|
338
|
+
STAKING_DEFI_ETH_PRODUCT_INFO = '/api/v5/finance/staking-defi/eth/product-info'
|
339
|
+
STAKING_DEFI_SOL_PURCASE = '/api/v5/finance/staking-defi/sol/purchase'
|
340
|
+
STAKING_DEFI_SOL_REDEEM = '/api/v5/finance/staking-defi/sol/redeem'
|
341
|
+
STAKING_DEFI_SOL_BALANCE = '/api/v5/finance/staking-defi/sol/balance'
|
342
|
+
STAKING_DEFI_SOL_P_R_HISTORY = '/api/v5/finance/staking-defi/sol/purchase-redeem-history'
|
343
|
+
STAKING_DEFI_SOL_APY_HISTORY = '/api/v5/finance/staking-defi/sol/apy-history'
|
344
|
+
FLEXIBLE_LOAN_BORROW_CURRENCIES = '/api/v5/finance/flexible-loan/borrow-currencies'
|
345
|
+
FLEXIBLE_LOAN_COLLATERAL_ASSETS = '/api/v5/finance/flexible-loan/collateral-assets'
|
346
|
+
FLEXIBLE_LOAN_MAX_LOAN = '/api/v5/finance/flexible-loan/max-loan'
|
347
|
+
FLEXIBLE_LOAN_MAX_C_R_A = '/api/v5/finance/flexible-loan/max-collateral-redeem-amount'
|
348
|
+
FLEXIBLE_LOAN_ADJ_COLL = '/api/v5/finance/flexible-loan/adjust-collateral'
|
349
|
+
FLEXIBLE_LOAN_LOAN_INFO = '/api/v5/finance/flexible-loan/loan-info'
|
350
|
+
FLEXIBLE_LOAN_LOAN_HISTORY = '/api/v5/finance/flexible-loan/loan-history'
|
351
|
+
FLEXIBLE_LOAN_INT_ACC = '/api/v5/finance/flexible-loan/interest-accrued'
|
391
352
|
|
392
|
-
#
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
353
|
+
# copytrading
|
354
|
+
CURRENT_SUBPOSITIONS = '/api/v5/copytrading/current-subpositions'
|
355
|
+
SUBPOSITIONS_HISTORY = '/api/v5/copytrading/subpositions-history'
|
356
|
+
COPYTRADING_ALGO_ORDER = '/api/v5/copytrading/algo-order'
|
357
|
+
COPYTRADING_CLOSE_POS = '/api/v5/copytrading/close-subposition'
|
358
|
+
COPYTRADING_INSTRUMENTS = '/api/v5/copytrading/instruments'
|
359
|
+
COPYTRADING_SET_INSTRUMENTS = '/api/v5/copytrading/set-instruments'
|
360
|
+
PROFIT_SHARING_DETAILS = '/api/v5/copytrading/profit-sharing-details'
|
361
|
+
TOTAL_PROFIT_SHARING = '/api/v5/copytrading/total-profit-sharing'
|
362
|
+
UNREALIZED_PROFIT_SHARING_DETAILS = '/api/v5/copytrading/unrealized-profit-sharing-details'
|
363
|
+
FIRST_COPY_SETTINGS = '/api/v5/copytrading/first-copy-settings'
|
364
|
+
AMEND_COPY_SETTINGS = '/api/v5/copytrading/amend-copy-settings'
|
365
|
+
STOP_COPY_SETTINGS = 'api/v5/copytrading/stop-copy-trading'
|
366
|
+
COPY_SETTINGS = 'api/v5/copytrading/copy-trading'
|
367
|
+
BATCH_LEVERAGE_INF = '/api/v5/copytrading/batch-leverage-info'
|
368
|
+
BATCH_SET_LEVERAGE = '/api/v5/copytrading/batch-set-leverage'
|
369
|
+
CURRENT_LEAD_TRADERS = '/api/v5/copytrading/current-lead-traders'
|
370
|
+
LEAD_TRADERS_HISTORY = '/api/v5/copytrading/lead-traders-history'
|
371
|
+
PUBLIC_LEAD_TRADERS = '/api/v5/copytrading/public-lead-traders'
|
372
|
+
PUBLIC_WEEKLY_PNL = '/api/v5/copytrading/public-weekly-pnl'
|
373
|
+
PUBLIC_PNL = '/api/v5/copytrading/public-pnl'
|
374
|
+
PUBLIC_STATS = '/api/v5/copytrading/public-stats'
|
375
|
+
PUBLIC_PRE_CURR = '/api/v5/copytrading/public-preference-currency'
|
376
|
+
PUBLIC_CURR_SUBPOS = '/api/v5/copytrading/public-current-subpositions'
|
377
|
+
PUBLIC_SUBPOS_HIS = '/api/v5/copytrading/public-subpositions-history'
|
378
|
+
APP_LEA_TRAD = '/api/v5/copytrading/apply-lead-trading'
|
379
|
+
STOP_LEA_TRAD = '/api/v5/copytrading/stop-lead-trading'
|
380
|
+
AMEDN_PRO_SHAR_RATIO = '/api/v5/copytrading/amend-profit-sharing-ratio'
|
381
|
+
LEAD_TRADERS = '/api/v5/copytrading/lead-traders'
|
382
|
+
WEEKLY_PNL = '/api/v5/copytrading/weekly-pnl'
|
383
|
+
PNL = '/api/v5/copytrading/pnl'
|
384
|
+
STATS = '/api/v5/copytrading/stats'
|
385
|
+
PRE_CURR = '/api/v5/copytrading/preference-currency'
|
386
|
+
PRE_CURR_SUNPOSITION = '/api/v5/copytrading/performance-current-subpositions'
|
387
|
+
PRE_SUNPOSITION_HISTORY = '/api/v5/copytrading/performance-subpositions-history'
|
388
|
+
COPY_TRADERS = '/api/v5/copytrading/copy-traders'
|
389
|
+
PUB_COPY_TRADERS = '/api/v5/copytrading/public-copy-traders'
|
390
|
+
CONFIG = '/api/v5/copytrading/config'
|
391
|
+
TOTAL_UNREA_PRO_SHAR = '/api/v5/copytrading/total-unrealized-profit-sharing'
|
410
392
|
|
411
|
-
#
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
393
|
+
# Signal
|
394
|
+
CREAT_SIGNAL = '/api/v5/tradingBot/signal/create-signal'
|
395
|
+
SIGNALS = '/api/v5/tradingBot/signal/signals'
|
396
|
+
ORDER_ALGO_SIGNAL = '/api/v5/tradingBot/signal/order-algo'
|
397
|
+
SIGNAL_STOP_ORDER_ALGO = '/api/v5/tradingBot/signal/stop-order-algo'
|
398
|
+
SIGNAL_MARGIN_BALANCE = '/api/v5/tradingBot/signal/margin-balance'
|
399
|
+
AMENDTPSL = '/api/v5/tradingBot/signal/amendTPSL'
|
400
|
+
SIGNAL_SET_INSTRUMENTS = '/api/v5/tradingBot/signal/set-instruments'
|
401
|
+
ORDERS_ALGO_DETAILS = '/api/v5/tradingBot/signal/orders-algo-details'
|
402
|
+
ORDERS_ALGO_PENDING = '/api/v5/tradingBot/signal/orders-algo-pending'
|
403
|
+
ORDERS_ALGO_HISTORY = '/api/v5/tradingBot/signal/orders-algo-history'
|
404
|
+
SIGNAL_POSITIONS = '/api/v5/tradingBot/signal/positions'
|
405
|
+
SIGNAL_POSITIONS_HISTORY = '/api/v5/tradingBot/signal/positions-history'
|
406
|
+
SIGNAL_CLOSE_POSITION = '/api/v5/tradingBot/signal/close-position'
|
407
|
+
SUB_ORDER = '/api/v5/tradingBot/signal/sub-order'
|
408
|
+
CANCEL_SUB_ORDER = '/api/v5/tradingBot/signal/cancel-sub-order'
|
409
|
+
SUB_ORDERS = '/api/v5/tradingBot/signal/sub-orders'
|
410
|
+
EVENT_HISTORY = '/api/v5/tradingBot/signal/event-history'
|
419
411
|
|
420
|
-
#
|
421
|
-
|
422
|
-
|
423
|
-
|
412
|
+
# recurring
|
413
|
+
RECURRING_ORDER_ALGO = '/api/v5/tradingBot/recurring/order-algo'
|
414
|
+
RECURRING_AMEND_ORDER_ALGO = '/api/v5/tradingBot/recurring/amend-order-algo'
|
415
|
+
RECURRING_STOP_ORDER_ALGO = '/api/v5/tradingBot/recurring/stop-order-algo'
|
416
|
+
RECURRING_ORDER_ALGO_PENDING = '/api/v5/tradingBot/recurring/orders-algo-pending'
|
417
|
+
RECURRING_ORDER_ALGO_HISTORY = '/api/v5/tradingBot/recurring/orders-algo-history'
|
418
|
+
RECURRING_ORDER_ALGO_DETAILS = '/api/v5/tradingBot/recurring/orders-algo-details'
|
419
|
+
RECURRING_SUB_ORDERS = '/api/v5/tradingBot/recurring/sub-orders'
|
420
|
+
|
421
|
+
# status
|
422
|
+
STATUS = '/api/v5/system/status'
|
423
|
+
GET_ANNOUNCEMENTS = '/api/v5/support/announcements'
|
424
|
+
GET_ANNOUNCEMENTS_TYPES = '/api/v5/support/announcement-types'
|