0
Follow
0
Followers
Concernant les problèmes de fonctionnement après l'annulation de la commande
Created 2020-03-21 13:01:31
2
1316
Si j'avais passé plusieurs commandes et que je les avais retirées dans le délai imparti, comment pourrais-je, après les avoir retirées, revenir sur la même commande ?
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)
if(exchange.GetPosition().length > 0) {
break
}else if (exchange.GetPosition().length <= 0) {
exchange.Sell(Price, Amount)
Sleep(5000)
CancelPendingOrders() //撤销订单
}
这样子么
6 years ago
- 1
