This commit is contained in:
dsyoon
2023-01-21 23:05:12 +09:00
parent 9110a7b447
commit 2817cc880e
2 changed files with 2 additions and 2 deletions

View File

@@ -620,7 +620,7 @@ class Bithumb_daily(HTS):
data.drop(data.index[:len(data) - analyzed_day], inplace=True)
bsLine, data = self.checkWithEnvelope(data, analyzed_day, isRealTime=isRealTime)
print(ticker, datetime.now().strftime('%Y-%m-%d %H:%M:%S'), data['close'][len(data['close'])-1], data['slow_k'][len(data['slow_k'])-1])
print(ticker, "/", datetime.now().strftime('%Y-%m-%d %H:%M:%S'), "/", data['close'][len(data['close'])-1], "/", data['slow_k'][len(data['slow_k'])-1])
# 그래프를 그린다.
if len(data.index) > 10:

View File

@@ -690,7 +690,7 @@ class Bithumb_minute(HTS):
data.drop(data.index[:len(data) - analyzed_day], inplace=True)
bsLine, data = self.checkWithEnvelope(data, analyzed_day, isRealTime=isRealTime)
print(ticker, datetime.now().strftime('%Y-%m-%d %H:%M:%S'), data['close'][len(data['close'])-1], data['slow_k'][len(data['slow_k'])-1])
print(ticker, "/", datetime.now().strftime('%Y-%m-%d %H:%M:%S'), "/", data['close'][len(data['close'])-1], "/", data['slow_k'][len(data['slow_k'])-1])
# 그래프를 그린다.
if len(data.index) > 10: