diff --git a/src/strategy_team/future_strategy_short.rs b/src/strategy_team/future_strategy_short.rs index 0828e01..16284f8 100644 --- a/src/strategy_team/future_strategy_short.rs +++ b/src/strategy_team/future_strategy_short.rs @@ -358,7 +358,7 @@ pub async fn list_up_for_sell(all_data: &AllData, futures_exchange_info_map: &Ha is_sell = true; } else if element.pure_profit_percent <= element.stoploss_percent { is_sell = true; - } else if server_epoch - element.close_time > 1_800_000 { + } else if server_epoch - element.close_time > 7_200_000 { is_sell = true; } else if supertrend_1m_map.get(&element.symbol).is_some_and(|a| a.last().is_some_and(|b| b.close_time > server_epoch && b.area == SuperTrendArea::UP)) { is_sell = true;