Skip to content

Commit

Permalink
Merge pull request #233 from Azulinho/next_release
Browse files Browse the repository at this point in the history
add control/BUY flag
  • Loading branch information
Azulinho authored Jan 6, 2024
2 parents 43e24fc + 693347d commit ecddc8c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion lib/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -2049,9 +2049,17 @@ def process_control_flags(self) -> None:
symbol = line.strip()
if symbol in self.wallet:
logging.warning(f"control/SELL contains {symbol}")
self.coins[symbol].status = "CONTROL_FLAG"
self.sell_coin(self.coins[symbol])
unlink("control/SELL")
if exists("control/BUY"):
logging.warning("control/BUY flag found")
with open("control/BUY") as f:
for line in f:
symbol = line.strip()
if symbol not in self.wallet:
logging.warning(f"control/BUY contains {symbol}")
self.buy_coin(self.coins[symbol])
unlink("control/BUY")
if exists("control/STOP"):
logging.warning("control/STOP flag found. Stopping bot.")
self.quit = True
Expand Down

0 comments on commit ecddc8c

Please sign in to comment.