2
Follow
0
Followers
J'aimerais savoir si quelqu'un a des exemples de la commande passive en bybit avec JS, merci !
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