Commit 8f2b8958 by zihan

参数调整

parent eec1da3e
......@@ -44,7 +44,7 @@ class BiboxStrategy3 extends Strategy3 {
retryTime--;
setTimeout(() => {
sellOrder();
}, (totalRetryTime - retryTime) * 50);
}, 50);
} else if (!createdSellOrder && createdBuyOrder) {
console.log("已没有重试次数,但是买单已创建成功,继续重试");
setTimeout(() => {
......@@ -119,7 +119,7 @@ class BiboxStrategy3 extends Strategy3 {
for(let i=0;i<2;i++){
setTimeout(()=>{
sellOrder();
},i*50+120);
},i*30+120);
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment