Browse Source

place_order_limit改成i64类型

skyfffire 2 years ago
parent
commit
c937197cf3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      strategy/src/params.rs

+ 1 - 1
strategy/src/params.rs

@@ -45,7 +45,7 @@ pub struct Params {
     // 分批建仓功能 小资金建议1 大资金建议3 默认 1
     pub grid: i8,
     // 允许的每秒下单次数
-    pub place_order_limit: i8,
+    pub place_order_limit: i64,
     // 是否启用colocation技术, 1开启,0关闭 默认0
     pub colo: i8
 }