2
Follow
0
Followers
Adakah anda tahu bagaimana untuk melaksanakan perintah pasif di bawah bybit dengan menggunakan JS?
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