From ec217f8a9acf4faff0fb8e7b9e971885e2008ae5 Mon Sep 17 00:00:00 2001 From: Sik Yoon Date: Fri, 9 Feb 2024 07:37:52 +0900 Subject: [PATCH] Off rest strategies --- src/strategy_team/strategy_manager.rs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/strategy_team/strategy_manager.rs b/src/strategy_team/strategy_manager.rs index 979dea4..7a8dbf0 100644 --- a/src/strategy_team/strategy_manager.rs +++ b/src/strategy_team/strategy_manager.rs @@ -31,11 +31,11 @@ struct Record { pub async fn execute_list_up_for_buy( all_data: &AllData, ) -> Result<(), Box> { - crate::strategy_team::strategy_001::list_up_for_buy(all_data).await; - crate::strategy_team::strategy_002::list_up_for_buy(all_data).await; - crate::strategy_team::strategy_003::list_up_for_buy(all_data).await; - crate::strategy_team::strategy_004::list_up_for_buy(all_data).await; - crate::strategy_team::strategy_005::list_up_for_buy(all_data).await; + // crate::strategy_team::strategy_001::list_up_for_buy(all_data).await; + // crate::strategy_team::strategy_002::list_up_for_buy(all_data).await; + // crate::strategy_team::strategy_003::list_up_for_buy(all_data).await; + // crate::strategy_team::strategy_004::list_up_for_buy(all_data).await; + // crate::strategy_team::strategy_005::list_up_for_buy(all_data).await; crate::strategy_team::strategy_006::list_up_for_buy(all_data).await; Ok(()) @@ -46,11 +46,11 @@ pub async fn execute_list_up_for_sell( exchange_info_map: &HashMap, trade_fee_map: &HashMap, ) -> Result<(), Box> { - crate::strategy_team::strategy_001::list_up_for_sell(&all_data, &exchange_info_map, &trade_fee_map).await; - crate::strategy_team::strategy_002::list_up_for_sell(&all_data, &exchange_info_map, &trade_fee_map).await; - crate::strategy_team::strategy_003::list_up_for_sell(&all_data, &exchange_info_map, &trade_fee_map).await; - crate::strategy_team::strategy_004::list_up_for_sell(&all_data, &exchange_info_map, &trade_fee_map).await; - crate::strategy_team::strategy_005::list_up_for_sell(&all_data, &exchange_info_map, &trade_fee_map).await; + // crate::strategy_team::strategy_001::list_up_for_sell(&all_data, &exchange_info_map, &trade_fee_map).await; + // crate::strategy_team::strategy_002::list_up_for_sell(&all_data, &exchange_info_map, &trade_fee_map).await; + // crate::strategy_team::strategy_003::list_up_for_sell(&all_data, &exchange_info_map, &trade_fee_map).await; + // crate::strategy_team::strategy_004::list_up_for_sell(&all_data, &exchange_info_map, &trade_fee_map).await; + // crate::strategy_team::strategy_005::list_up_for_sell(&all_data, &exchange_info_map, &trade_fee_map).await; crate::strategy_team::strategy_006::list_up_for_sell(&all_data, &exchange_info_map, &trade_fee_map).await; Ok(())