Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Real-time crypto trading signal generator using WebSocket price feeds. Connects to Bybit (or any exchange) WebSocket, runs configurable strategies on live ca...
Real-time crypto trading signal generator using WebSocket price feeds. Connects to Bybit (or any exchange) WebSocket, runs configurable strategies on live ca...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Real-time signal generator: WebSocket price feed โ strategy engine โ Telegram alerts.
pip install websockets ccxt requests cp scripts/config_template.py config.py # Edit with your keys python scripts/signal_bot.py
Bybit WebSocket โโโ Price Updates โโโ SL/TP Check (every tick) โโโ Kline Close โโโ Strategy Signal โโโ Telegram Alert Connects to exchange WebSocket (public, no API key needed) Subscribes to ticker (real-time prices) + kline (candle data) On each tick: checks stop-loss/take-profit for open signals On candle close: runs strategy indicators, generates buy/sell signals Sends formatted alerts to Telegram with entry/SL/TP levels
Edit config.py: SYMBOLS = ["ETH/USDT:USDT", "SOL/USDT:USDT", "BTC/USDT:USDT"] STRATEGIES = { "ETHUSDT": {"type": "ema", "fast": 12, "slow": 26}, "SOLUSDT": {"type": "rsi", "period": 14, "oversold": 30, "overbought": 70}, "BTCUSDT": {"type": "macd", "fast": 12, "slow": 26, "signal": 9}, } TG_BOT_TOKEN = "your-bot-token" TG_CHAT_ID = "your-chat-id"
Multi-symbol: Monitor unlimited pairs simultaneously Multi-strategy: Different strategy per symbol Auto-reconnect: 5s retry on disconnect State persistence: Saves every 5 minutes, survives restarts Cooldown: Configurable signal cooldown to avoid spam Telegram formatting: Rich HTML messages with emoji
# systemd service sudo tee /etc/systemd/system/signal-bot.service << 'EOF' [Unit] Description=Trading Signal Bot After=network.target [Service] Type=simple WorkingDirectory=/root/signals ExecStart=/usr/bin/python3 signal_bot.py Restart=always RestartSec=10 [Install] WantedBy=multi-user.target EOF sudo systemctl enable --now signal-bot
Don't want to run your own bot? Subscribe to our hosted signal service: # Free tier (15-min delayed) curl https://api.tinyore.com/signals/free # Get API key (7-day free trial) curl -X POST https://api.tinyore.com/subscribe -H "Content-Type: application/json" -d '{"email":"you@example.com"}' # Pro tier (real-time, $5/mo) curl https://api.tinyore.com/signals/live -H "X-API-Key: YOUR_KEY" # Market status curl https://api.tinyore.com/status Strategies: ETH EMA(12/26) + SOL RSI(14,30/70) on 1h timeframe. Top performers: HYPE RSI 73% win rate, PEPE RSI 53% win rate (90-day backtest). Contact @SunnyZhou on Telegram to upgrade to Pro.
scripts/signal_bot.py โ Main WebSocket signal bot scripts/config_template.py โ Configuration template references/telegram_setup.md โ How to create a Telegram bot and get chat ID
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.