A simple Binance Futures trading bot that uses RSI signals on the relative price of an altcoin (e.g., XRP) versus BTC to make trading decisions.
- Computes the RSI on the ratio of
SYMBOL/BTCUSDTusing 4-hour candles. - Places market orders when RSI crosses:
- Above the lower threshold β BUY
- Below the upper threshold β SELL
- Each trade includes:
- Fixed Stop Loss (e.g., 3.5%)
- Fixed Take Profit (e.g., 5%)
- Install dependencies:
pip install binance-futures-connector pandas pandas-ta numpy