- Real-time price monitoring
- Technical indicators:
- RSI
- MACD
- Bollinger Bands
- Multi-exchange support:
- Binance
- Coinbase Pro
- Home page ui + settings ui
- sections
- Market Stats
- Logs
- Bot status
- sections
- Telegram Notification send through telegram bot
- Python 3.8+
- Telegram Bot Token
git clone https://github.com/MRIEnan/creepyBot.git
cd creepybotpython -m venv newvenv [optional][ please try to keep the name "newvenv" as given if want to work within an environment]
source newenv/bin/activate # Linux/Mac
or
newenv\Scripts\Activate.ps1 # Windowspip install -r requirements.txtcreate a file name config.csv
TELEGRAM_TOKEN,<value>,
TELEGRAM_CHAT_ID,<value>,
SYMBOL,<value>,
TIMEFRAME,<value>,
INTERVAL,<value>,
RSI_WINDOW,<value>,
SMA_SHORT,<value>,
SMA_LONG,<value>,
BB_WINDOW,<value>,
VOLUME_SPIKE_RATIO,<value>,
EXCHANGE,<value>,
THEME,<value>,
TELEGRAM_TOKEN,<value>
TELEGRAM_CHAT_ID,<value>
SYMBOL,UTK/USDT
TIMEFRAME,1h
INTERVAL,10
RSI_WINDOW,7
SMA_SHORT,7
SMA_LONG,25
BB_WINDOW,20
VOLUME_SPIKE_RATIO,1.5
EXCHANGE,binance
THEME,light
python main.pyThe realtime data of the particular coin pair is fetched from the determined source from the settings of ui. Then we do some calculation based on the Moving Average (MA), RSI relative stress index, macd etc.
❗ By using this software, you agree that:
- You understand cryptocurrency trading risks
- You alone are responsible for any losses
- This is experimental software - no guarantees of profitability
- Always test in sandbox mode first
🛡️ Mandatory precautions:
- Only use testnet API keys during development
- Start with <$10 if testing with real funds
- Monitor bot activity 24/7 in initial deployments
- Implement stop-losses at exchange level
✅ Technical indicators (RSI, MACD, Bollinger Bands)
✅ Multi-exchange support
✅ Telegram alerts
This project is only for educational purpose. And the calculated signal is not precise. So do not follow the signal seriously. And if anyone use this and the signal not matched with the actual status, I means we will not take any credit.
SO USE THIS AT YOUR OWN RISK

