52 lines
1.8 KiB
Python
52 lines
1.8 KiB
Python
from datetime import datetime
|
|
import time
|
|
from config import *
|
|
|
|
from monitor import Monitor
|
|
|
|
class MonitorCoin (Monitor):
|
|
"""자산(코인/주식/ETF) 모니터링 및 매수 실행 클래스"""
|
|
|
|
def __init__(self, cooldown_file: str = 'coins_buy_time.json') -> None:
|
|
super().__init__(cooldown_file)
|
|
|
|
def monitor_coins(self) -> None:
|
|
for symbol in KR_COINS_1:
|
|
print("[{}] {}".format(datetime.now().strftime('%Y-%m-%d %H:%M:%S'), symbol))
|
|
interval = 60
|
|
data = self.get_coin_some_data(symbol, interval)
|
|
if data is not None and not data.empty:
|
|
try:
|
|
inverseData= self.inverse_data(data)
|
|
recent_inverseData = self.check_point(symbol, inverseData)
|
|
if recent_inverseData['point'].iloc[-1] != 1:
|
|
continue
|
|
sell_success = self.sell_ticker(symbol, recent_inverseData)
|
|
if not sell_success:
|
|
continue
|
|
|
|
data = self.calculate_technical_indicators(data)
|
|
recent_data = self.check_point(symbol, data)
|
|
if recent_data['point'].iloc[-1] != 1:
|
|
continue
|
|
buy_success = self.buy_ticker(symbol, recent_data)
|
|
if not buy_success:
|
|
continue
|
|
except Exception as e:
|
|
print(f"Error processing data for {symbol}: {str(e)}")
|
|
else:
|
|
print(f"Data for {symbol} is empty or None.")
|
|
|
|
time.sleep(1)
|
|
|
|
return
|
|
# ------------- Scheduler -------------
|
|
def run_schedule(self) -> None:
|
|
|
|
while True:
|
|
self.monitor_coins()
|
|
time.sleep(3)
|
|
|
|
if __name__ == "__main__":
|
|
MonitorCoin(cooldown_file='coins_buy_time_1.json').run_schedule()
|