Get the bot running in 5 minutes!
- Python 3.8+ installed
- Git installed
- Binance account with API keys
git clone https://github.com/YOUR_USERNAME/crypto-trading-bot-dashboard.git
cd crypto-trading-bot-dashboardpip install -r requirements.txtpython setup_credentials.pyEnter your Binance API keys when prompted.
python scalping_scanner.py- Scans 15m β 30m β continuous 5m until signals found
- Perfect for quick scalping trades
python strategy_scanner.py- Uses your 4 original strategies: liquidity, momentum, pattern, candlestick
- Better for swing trades
python trading_executor.py- Reads signals from scanner results
- Executes trades with risk management
- Monitors positions automatically
# 1. Get signals
python scalping_scanner.py
# 2. Execute trades
python trading_executor.py
# Choose option 1 for scalping signals
# 3. Monitor (automatic)
# The executor monitors positions and closes them at target/stop loss- β Adaptive scanning - Finds opportunities across timeframes
- β Risk management - Automatic position sizing and stops
- β 24/7 operation - Continuous scanning when needed
- β Trade logging - All trades saved to JSON files
- β Real-time monitoring - Automatic position management
- Testnet by default - Safe testing environment
- Position limits - Max 5 concurrent positions
- Daily limits - Max 10 trades per day, 5% loss limit
- Quality filters - Only high-confidence signals executed
scalping_results.json- Scalping signalsstrategy_results.json- Strategy signalstrade_executions.json- All executed tradesposition_closes.json- All closed positions
Edit config/bot_config.json to customize:
- Risk limits
- Position sizes
- Trading symbols
- Strategy weights
- "python not recognized" β Use
pyinstead ofpython - API errors β Check your Binance API keys and permissions
- No signals found β Normal in some market conditions, try different timeframes
- Permission errors β Run as administrator or check file permissions
- Check the logs in console output
- Review
config/credentials.jsonformat - Ensure API keys have futures trading permissions
Ready to trade? Start with the scalping scanner! π―
python scalping_scanner.py