I need a Python-based bot that can place futures orders on both MEXC and KCEX even though neither exchange offers a usable public API. My TradingView strategy already fires BUY webhooks; the bot must listen for those incoming JSON payloads, parse the data, then open the corresponding position on the selected exchange automatically. Because official APIs are unavailable, the core challenge is building a reliable workaround—whether that means browser automation, request replication, or another method you can document and keep stable despite site updates. Once logged in, the bot should set leverage, order size, and contract type exactly as provided in the webhook, confirm the order was accepted, and write a concise log entry locally (time stamp, symbol, size, price, status). Deliverables • A clean Python project (source code only, no compiled binaries) • Webhook listener ready to deploy on a VPS (Flask or FastAPI is fine) • Exchange interaction layer that bypasses the missing API yet still lets me modify credentials or cookies without editing code • Plain-language setup guide so I can run tests, update cookies, and restart the service on Ubuntu I will test by sending a sample TradingView BUY webhook and verifying the trade appears in each exchange’s order history and in the local log file.