Guides & Tutorials
-
Create a Binance Account
Register at binance.com. Complete KYC (ID verification) to enable Spot trading. -
Generate API Key
Account → API Management → Create API. Official Guide ↗ -
Configure API Permissions
✅ Enable Spot & Margin Trading
✅ Enable Reading
❌ Do NOT enable Futures, Margin Loan, or Withdrawals
✅ Restrict access by IP — add ALL of the server IPs belowBOTTEU server IP (Render) — add to Binance whitelist:74.220.51.252Binance → Account → API Management → Edit → IP Access Restriction → Restrict to Trusted IPs -
Add API Key to BOTTEU
Go to Bots → API Key, paste your Key and Secret, then click Test Connection. -
Create Your First Bot
Go to Bots → Create Bot. Choose a pair, select an algorithm, configure parameters and press Create.
MA Crossover (MA7 × MA25)
Moving Average Crossover compares a fast (MA7) and slow (MA25) simple moving average.
🟢 BUY: Fast MA crosses ABOVE Slow MA (golden cross)
🔴 SELL: Fast MA crosses BELOW Slow MA (death cross)
Suitable for trending markets. Can add optional Stop-Loss and Trailing TP for extra protection.
RSI (Relative Strength Index)
RSI measures momentum on a 0–100 scale.
🟢 BUY: RSI falls below Oversold level (30 or 20) — asset is oversold
🔴 SELL: RSI rises above Overbought level (70 or 80) — asset is overbought
⚠️ Stop-Loss is REQUIRED for RSI since the signal has no inherent price-based exit.
Trailing Take-Profit
Trailing TP locks in profits automatically. After entry, it tracks the highest price reached. When price drops by the configured % from that peak, the bot sells.
Example: Entry at 40,000 USDT, price rises to 42,000, Trailing TP = 1%. Bot sells if price drops to 41,580.
MACD trend
MACD (Moving Average Convergence Divergence) uses three EMAs: fast (12), slow (26), and signal (9).
- 🟢 BUY: MACD line crosses ABOVE signal line
- 🔴 SELL: MACD line crosses BELOW signal line
SuperTrend trend + stop
SuperTrend uses ATR (Average True Range) to build an adaptive band around price. It flips direction when price crosses the band.
- 🟢 BUY: Price crosses above the band (bullish flip)
- 🔴 SELL: Price crosses below the band (bearish flip)
Bollinger Bands Bounce mean reversion
Bollinger Bands surround price with a middle SMA and upper/lower bands at ±2 standard deviations. The Bounce strategy is mean-reversion: it buys oversold dips and sells recoveries.
- 🟢 BUY: Price drops below lower band then bounces back above it
- 🔴 SELL: Price reaches middle band (conservative) or upper band (aggressive)
- Go to the Backtest page.
- Enter a Yahoo Finance symbol (e.g. BTC-USDT, ETH-USDT, AAPL).
- Select a date range and interval (1d recommended for daily).
- Choose your algorithm and configure parameters.
- Press Run Backtest — data loads from Yahoo Finance (works in Germany!).
- Review the chart: green ▲ = BUY, red ▼ = SELL. Check Win Rate and Max Drawdown.
- Go to Bots → Telegram in your cabinet.
- Click "Generate Code" to get your 6-digit link code.
- Open Telegram and search for
@BOTTEU_bot. - Send
/start 123456(replace with your code). - Done! You will receive a confirmation message.
Available commands in Telegram:
/status— List your bots/balance— Check Spot balance/start_bot 1— Start bot #1/stop_bot 1— Stop bot #1