2
Follow
0
Followers
JS를 사용하여 bybit 아래의 수동 주문을 구현하는 방법에 대한 사례가 있으신가요?
Related Recommendations
Advanced Tutorial for FMZ Quant platform Strategy WritingElementary Tutorial for FMZ Quant platform Strategy WritingGet Started with FMZ Quant PlatformSECURITY BUGI keep getting error: Exchange_GetAccount: Invalid ContractTypeWe have an incredibly profitable market making algorithm for sideways markets on Bitmex - but need expert to help eliminate wait times during downward volatility in the marketError with deribitLimitations of the backtesting engineHow to install ta-lib on linux docker?5.5 Trading strategy optimization
Comment
All comments (2)
给你一段实盘用的代码:
params = 'time_in_force=PostOnly&order_type=Limit&price=' + price + '&side=' + (type === 'buy' ? 'Buy' : 'Sell') + '&qty=' + amount + '&symbol=' + this.symbol.replace('_', '');
res = exchange.IO('api', 'POST', '/open-api/order/create', params);
7 years ago
- 1