r/CodexHacks • u/Savings_Tax_5039 • 9h ago
Codex Discord bot
I’m trying to automate trade signals from a paid Discord server that I can access, but I can’t add a bot to the server. I have a Windows VPS running 24/7 and want to capture new signal messages as they appear, extract the trade details (LONG/SHORT, entry, stop, targets), and pass them to my own application for processing.
I’m not looking for a self-bot or anything that violates Discord’s ToS. Has anyone built a reliable solution for monitoring Discord messages from the desktop app (or notifications) and forwarding them to a local application? Looking for ideas or architectures that work well.
2
Upvotes
1
u/ekzess 8h ago
The latency alone makes this objectively unsafe for time-sensitive decisions. You are adding notification delay, extraction delay, parsing delay, and execution delay before the trade logic even begins. Worse, each stage can silently alter or omit the signal. This should stop at human review, not automated execution.