diff --git a/src/strategy_team/strategy_008.rs b/src/strategy_team/strategy_008.rs index 9f7b9fe..00d2c3b 100644 --- a/src/strategy_team/strategy_008.rs +++ b/src/strategy_team/strategy_008.rs @@ -284,7 +284,7 @@ pub async fn list_up_for_buy( let current_price = rt_price_vec.last().unwrap().close_price; let difference = (mean - rt_price_vec.last().unwrap().open_price).abs(); - if current_price < rt_price_vec.last().unwrap().open_price + (0.25 * difference) { + if current_price < rt_price_vec.last().unwrap().open_price + (0.5 * difference) { } else { keys_to_remove.insert(symbol.clone()); }