diff --git a/auto_trade.py b/auto_trade.py index 7a1f8c5..d7f5465 100644 --- a/auto_trade.py +++ b/auto_trade.py @@ -106,6 +106,7 @@ class CryptoTradingStrategy: if current_price <= position["entry_price"] * (1 - self.stop_loss): position["should_exit"] = True position["exit_reason"] = "stop_loss" + print("wegood") # Check take profit elif current_price >= position["entry_price"] * (1 + self.take_profit):