carlosrod723/Quotex-Trading-Bot — reverse-engineered prompt

Reverse engineered prompt

GitHub

Build me a Python trading bot for the Quotex binary options website that can run in demo mode first and optionally live mode later. It should log into Quotex, read the current balance, watch market prices, and only place trades when a strict strategy agrees.

I want the strategy to use RSI, MACD, and Bollinger Bands together, not just one signal. If the signals don’t line up, it should do nothing. Add basic risk controls so each trade uses only a small percentage of the account, with configurable profit and loss limits.

Please make it easy to configure with an env file for my login, demo toggle, stake percentage, and strategy settings. I’d like both a command line mode that can run continuously and a simple web dashboard where I can see status and trigger or monitor trades. Use browser automation for Quotex login and trading, and include tests for the strategy, indicators, risk calculations, and trade executor logic. Look up current docs online if you need to.

Want more depth? Deep Reverse