init
This commit is contained in:
@@ -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['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:
|
||||
|
||||
@@ -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['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:
|
||||
|
||||
Reference in New Issue
Block a user