From 3a0a420c5a8345cc56e92a4910e34538e3c8665f Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Sun, 24 Jan 2021 14:34:51 +0000 Subject: [PATCH] default threshold to 0.2 --- rustybot/src/strategy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustybot/src/strategy.rs b/rustybot/src/strategy.rs index 189c5bf..b89fbce 100644 --- a/rustybot/src/strategy.rs +++ b/rustybot/src/strategy.rs @@ -196,7 +196,7 @@ pub struct FastOrderStrategy { impl Default for FastOrderStrategy { fn default() -> Self { - Self { threshold: 0.05 } + Self { threshold: 0.2 } } }