From de5114d67382c9a181713104c8d46ab3d8c9dacd Mon Sep 17 00:00:00 2001 From: dsyoon Date: Sat, 28 Jan 2023 16:17:22 +0900 Subject: [PATCH] init --- Bithumb_minute.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bithumb_minute.py b/Bithumb_minute.py index 3bd1c69..93671f2 100644 --- a/Bithumb_minute.py +++ b/Bithumb_minute.py @@ -615,7 +615,7 @@ class Bithumb_minute(HTS): order_log_df.set_index('datetime', inplace=True) # 한번 매수 후 n시간 이후 매수하기 위함 - buy_history_filename = os.path.join(RESOURCE_PATH, 'order', "bithumb" + "_" + self.TODAY + '.log') + buy_history_filename = os.path.join(RESOURCE_PATH, 'order', "bithumb_buy_" + "_" + self.TODAY + '.log') if os.path.exists(buy_history_filename): buy_history_df = pd.read_csv(buy_history_filename) buy_history_df.columns = ["type", "order0", "order1", "order2", "order3", "slow_k_30", "slow_k_5", "price", "count", "datetime"]