From ba36bd59817528f59855e3ec994f2a9e2be2bc40 Mon Sep 17 00:00:00 2001 From: boris Date: Tue, 21 Apr 2026 06:15:31 -0700 Subject: [PATCH] Tighten jq microcap stop-loss trigger --- crates/fidc-core/src/strategy.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/fidc-core/src/strategy.rs b/crates/fidc-core/src/strategy.rs index 9704789..e25f524 100644 --- a/crates/fidc-core/src/strategy.rs +++ b/crates/fidc-core/src/strategy.rs @@ -544,7 +544,8 @@ impl JqMicroCapStrategy { } fn stop_loss_tolerance(&self, market: &crate::data::DailyMarketSnapshot) -> f64 { - market.effective_price_tick() * 6.0 + let _ = market; + 0.0 } fn buy_commission(&self, gross_amount: f64) -> f64 {