This commit is contained in:
dsyoon
2025-08-23 17:48:05 +09:00
parent 1543304536
commit 62771d068c
29 changed files with 232 additions and 4 deletions

View File

@@ -24,6 +24,10 @@ class MonitorCoin (Monitor):
buy_success = self.buy_ticker(symbol, recent_data)
if not buy_success:
continue
sell_success = self.sell_ticker(symbol, recent_data)
if not sell_success:
continue
except Exception as e:
print(f"Error processing data for {symbol}: {str(e)}")
else: