Browse Source

sigma = 1.618

skyfffire 1 năm trước cách đây
mục cha
commit
f23eb793f8
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      strategy/src/avellaneda_stoikov.rs

+ 1 - 1
strategy/src/avellaneda_stoikov.rs

@@ -180,7 +180,7 @@ impl AvellanedaStoikov {
     }
 
     pub fn update_sigma_square(&mut self) {
-        self.sigma_square = self.spread_max * dec!(0.5);
+        self.sigma_square = self.spread_max * dec!(1.618);
         self.sigma_square.rescale(10);
     }