Signal Hub Documentation
Professional trading signals for crypto markets. Real-time analysis from 12 independent modules.
📚 Contents
📡 Статус сервера
What is KAIROS Signal Hub?
KAIROS Signal Hub is a professional service that provides algorithmic trading signals for cryptocurrency markets. Our system analyzes market data using 12 independent analytical modules and delivers BUY/SELL signals in real-time.
✅ 12 Signal Sources
Collegial system voting for maximum accuracy
⚡ Real-Time Delivery
WebSocket with <100ms latency
🎯 Proven Accuracy
51.5% Win Rate on 1500+ paper trades
🔒 Your Control
Use your own API keys, we can't access funds
Tariffs & Plans
| Feature | Paper | Starter | Pro | Enterprise | Custom |
|---|---|---|---|---|---|
| Price | $0 | $29/mo | $99/mo | $199/mo | $29+ |
| Symbols | 1 (Paper) | 1 (Choose) | 3 (Choose) | All 25+ | 1-6 (Choose) |
| Real Signals | ❌ Info only | ✅ | ✅ | ✅ | ✅ |
| Duration | 7 days | Unlimited | Unlimited | Unlimited | Unlimited |
| WebSocket | ❌ | ✅ | ✅ | ✅ | ✅ |
| Telegram | ❌ | ✅ | ✅ | ✅ | ✅ |
| Webhook | ❌ | ✅ | ✅ | ✅ | ✅ |
| Priority Support | ❌ | ❌ | ✅ | ✅ | ✅ |
🎨 Конструктор тарифов
Getting Started
Step 1: Registration
Join our Telegram bot @KAIROS_TS_pro_bot and use the /start command to get your API key.
/startStep 2: Choose Plan
Select your subscription plan using /subscribe or through the website.
Step 3: Connect
Use WebSocket API, REST endpoints, or receive signals via Telegram.
Signal Format
Each signal contains all information needed for trading decisions:
{
"signal_id": "BTCUSDT_1718200000_BUY",
"symbol": "BTCUSDT",
"action": "BUY",
"confidence": 72,
"price": 68.53,
"signal_type": "entry",
"tp_pct": 1.2,
"sl_pct": 0.8,
"component_votes": {
"orderbook": {"action": "BUY", "confidence": 60},
"candle_patterns": {"action": "BUY", "confidence": 74},
"fakeout": {"action": "BUY", "confidence": 80}
},
"timestamp": 1718200000.123
}Signal Fields:
- signal_id - Unique identifier
- symbol - Trading pair (BTCUSDT, SOLUSDT, ADAUSDT, etc)
- action - BUY or SELL
- confidence - 0-100 accuracy score
Trading Levels:
- tp_pct - Take profit %
- sl_pct - Stop loss %
- price - Entry price
- timestamp - Signal time
API Reference
REST API
Base URL: https://hub.kairos.io/api/v1
GET /signals/latest
Get the latest trading signals
GET /subscription/status
Check your subscription status
WebSocket API
Connection: wss://hub.kairos.io/ws/YOUR_CLIENT_ID
Receive real-time signals with <100ms latency. The server sends ping every 30 seconds.
Code Examples
Connect to Signal Hub in your preferred language:
import asyncio
import websockets
import json
async def connect():
async with websockets.connect('wss://hub.kairos.io/ws/YOUR_CLIENT_ID') as ws:
while True:
message = await ws.recv()
data = json.loads(message)
if data['type'] == 'signal':
symbol = data['data']['symbol']
action = data['data']['action']
confidence = data['data']['confidence']
print(f"Сигнал: {symbol} {action} (увер.{confidence}%)")
# Твоя торговая логика
asyncio.run(connect())Exchange Setup & Configuration
Connect your trading account to receive real-time signals. Follow the setup guide for your exchange.
Binance Setup
Step-by-step guide to connect your Binance account
📋 Prerequisites
Step 1: Login to Binance
- Visit https://www.binance.com
- Click "Log In" in the top right corner
- Enter your email and password
- Confirm login with 2FA (Google Authenticator or SMS)
Step 2: Access API Management
- Hover over your profile icon (top right corner)
- Select "API Management" from the dropdown menu
- Or visit directly: Binance API Management
Step 3: Create API Key
- Click "Create API" button
- Select type: "System generated" (recommended)
- Enter label: "KAIROS_HUB_TRADING"
- Click "Next"
🔑 Step 4: Configure Permissions (IMPORTANT!)
In the "Permissions" section, select:
⚠️ Ensure "Enable Withdrawals" is NOT checked! This protects your funds even if API keys are compromised.
🔒 Step 5: IP Whitelist (CRITICAL!)
In "IP Access Restrictions" section:
- Click "Add IP Address"
- Enter: 188.245.88.115
- Click "Save"
✅ Result: API key will ONLY work from this IP address. Even if keys are stolen, they won't work from other IPs!
Step 6: Confirm with 2FA
Enter the code from Google Authenticator and/or SMS, then click "Confirm"
Step 7: Save Your Keys
After creation, you'll see your API Key and Secret Key:
🚨 Secret Key is shown ONLY ONCE! Save it in a secure location.
❌ Never share Secret Key via Telegram, Email, or other unsecured channels!
Step 8: Add Keys to KAIROS Hub
Option A: Via Telegram Bot (Recommended)
Option B: Via Dashboard
Step 9: Test Connection
Send command to Telegram bot: /test_connection
🛡️ Security Checklist
- ☐ IP whitelist enabled (188.245.88.115)
- ☐ Withdrawals disabled
- ☐ 2FA enabled on account
- ☐ Strong password (12+ characters)
- ☐ API keys saved in secure location
- ☐ Secret Key never shared
- ☐ Connection test successful
Bybit Setup
Complete guide coming soon
Bybit API integration guide will be available soon.
We're working on comprehensive setup documentation for Bybit exchange.
⚠️ Common Errors & Solutions
FAQ
How accurate are the signals?
Our historical Win Rate is 51.5% on 1500+ paper trades. Accuracy varies with market conditions and your risk management.
Can I trade automatically?
Yes. Use our WebSocket API with your own trading scripts to automate trades through your Binance account.
Are my funds safe?
Completely safe. You keep your API keys. We only read data, we can't execute or transfer funds.
What symbols are available?
BTCUSDT, SOLUSDT, DOGEUSDT, LINKUSDT, XRPUSDT, ADAUSDT
How do I change my plan?
Use /subscribe in Telegram bot or change it anytime in your account settings.
Support & Contacts
⚠️ Disclaimer
Cryptocurrency trading carries high risk. Signals are recommendations, not financial advice. You are responsible for all trading decisions. Past performance does not guarantee future results.