You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no 'SignalBotTrading' functionality in this library yet, and the API Client only has implementations for 4 APIs, none of which are available in okx-client form. Is there a development schedule for this?
There is no 'SignalBotTrading' functionality in this library yet, and the API Client only has implementations for 4 APIs, none of which are available in okx-client form. Is there a development schedule for this?
`
'''
信号交易
https://www.okx.com/docs-v5/zh/#order-book-trading-signal-bot-trading
'''
from paux.param import to_local
from okx.api._client import Client
class _SignalBotTradeEndpoints():
get_orders_algo_details = ['/api/v5/tradingBot/signal/orders-algo-details', 'GET'] # GET / 获取信号策略详情
get_positions = ['/api/v5/tradingBot/grid/positions', 'GET'] # GET / 获取信号策略持仓
get_sub_orders = ['/api/v5/tradingBot/signal/sub-orders', 'GET'] # GET / 获取信号策略子订单信息
get_event_history = ['/api/v5/tradingBot/signal/event-history', 'GET'] # GET / 获取信号策略历史事件`
The text was updated successfully, but these errors were encountered: