This commit is contained in:
dsyoon
2025-08-23 18:20:49 +09:00
parent 865a5c8680
commit 6cb939d690
31 changed files with 235 additions and 235 deletions

View File

@@ -47,8 +47,8 @@ class MonitorStock (Monitor):
if data is not None and not data.empty:
try:
data = self.calculate_technical_indicators(data)
recent_data = self.check_buy_point(symbol, data)
if recent_data['buy_point'].iloc[-1] != 1:
recent_data = self.check_point(symbol, data)
if recent_data['point'].iloc[-1] != 1:
continue
print(f" - {US_STOCKS[symbol]} ({symbol}): {recent_data['Close'].iloc[-1]:.2f}")
message_list.append(
@@ -73,8 +73,8 @@ class MonitorStock (Monitor):
if data is not None and not data.empty:
try:
data = self.calculate_technical_indicators(data)
recent_data = self.check_buy_point(symbol, data)
if recent_data['buy_point'].iloc[-1] != 1:
recent_data = self.check_point(symbol, data)
if recent_data['point'].iloc[-1] != 1:
continue
print(f" - {KR_ETFS[symbol]} ({symbol}): {recent_data['Close'].iloc[-1]:.2f}")
message_list.append(