You are viewing a single comment's thread from:
RE: How do I fix a sniper bot that stops executing after a few trades?
Could be a stuck async call or your listener hitting a silent failure. I had something similar where the bot just froze mid-run because a non-critical socket timeout wasn’t handled. Might also be garbage collection kicking in weirdly if you're holding too many references. If you haven’t already, check out a telegram trading bot article I found—it helped me spot config quirks and pointed me to better event handling tricks.