Commit 0113ef24 by zihan

下卖单频率调整;抢单频率调整

parent 903ad46c
......@@ -41,7 +41,7 @@ class BiboxStrategy3 extends Strategy3 {
retryTime -- ;
setTimeout(()=>{
sellOrder();
},(totalRetryTime-retryTime)*20);
},(totalRetryTime-retryTime)*50);
}else if(!createdSellOrder && createdBuyOrder){
console.log("已没有重试次数,但是买单已创建成功,继续重试");
setTimeout(()=>{
......@@ -100,7 +100,7 @@ class BiboxStrategy3 extends Strategy3 {
if (parseFloat(amount) > 0)
setTimeout(()=>{
sellOrder();
})
},200);
if (parseFloat(returnAmount) > 0)
returnOrder();
else {
......@@ -133,7 +133,7 @@ class BiboxStrategy3 extends Strategy3 {
}
_getMinTradeInterval(){
return 15*1000;
return 20000;
}
_needConsiderDepthCount(){
......
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