Signal Hub Documentation

Professional trading signals for crypto markets. Real-time analysis from 12 independent modules.

📡 Статус сервера

APIОнлайн
WebSocketОнлайн
Задержка42 мс
Активных клиентов127

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

FeaturePaperStarterProEnterpriseCustom
Price$0$29/mo$99/mo$199/mo$29+
Symbols1 (Paper)1 (Choose)3 (Choose)All 25+1-6 (Choose)
Real Signals❌ Info only
Duration7 daysUnlimitedUnlimitedUnlimitedUnlimited
WebSocket
Telegram
Webhook
Priority Support

🎨 Конструктор тарифов

$199/мес

Getting Started

Step 1: Registration

Join our Telegram bot @KAIROS_TS_pro_bot and use the /start command to get your API key.

/start

Step 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

{ "signals": [ { "symbol": "BTCUSDT", "action": "BUY", "confidence": 72, "price": 68.53 } ] }
{ "signals": [ { "symbol": "SOLUSDT", "action": "BUY", "confidence": 72, "price": 68.53 } ] }

GET /subscription/status

Check your subscription status

{ "tier": "pro", "symbols": ["BTCUSDT", "SOLUSDT", "DOGEUSDT"], "unlimited_signals": true, "expires_at": 1750000000 }

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

IP Address:188.245.88.115
Account:Verified Binance account (at least basic level)
2FA:Google Authenticator or SMS

Step 1: Login to Binance

  1. Visit https://www.binance.com
  2. Click "Log In" in the top right corner
  3. Enter your email and password
  4. Confirm login with 2FA (Google Authenticator or SMS)

Step 2: Access API Management

  1. Hover over your profile icon (top right corner)
  2. Select "API Management" from the dropdown menu
  3. Or visit directly: Binance API Management

Step 3: Create API Key

  1. Click "Create API" button
  2. Select type: "System generated" (recommended)
  3. Enter label: "KAIROS_HUB_TRADING"
  4. Click "Next"

🔑 Step 4: Configure Permissions (IMPORTANT!)

In the "Permissions" section, select:

✅ Enable Spot & Margin Trading
✅ Enable Reading
❌ Enable Withdrawals (MUST BE DISABLED)
❌ Enable Futures (disable if not needed)

⚠️ 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:

  1. Click "Add IP Address"
  2. Enter: 188.245.88.115
  3. 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:

API Key: your_api_key_here
Secret Key: your_secret_key_here

🚨 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)

1. Open Telegram
2. Find: @KAIROS_TS_pro_bot
3. Send command: /set_keys
4. Enter your API Key
5. Enter your Secret Key

Option B: Via Dashboard

2. Go to Settings → API Keys
3. Enter API Key and Secret Key
4. Click "Save"

Step 9: Test Connection

Send command to Telegram bot: /test_connection

✅ IP matches: 188.245.88.115
✅ API key active
✅ Balance readable
✅ Trading permissions enabled
📊 Balance: 1000.00 USDT

🛡️ 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

IN DEVELOPMENT

Bybit API integration guide will be available soon.

We're working on comprehensive setup documentation for Bybit exchange.

⚠️ Common Errors & Solutions

"IP not allowed"→ Add 188.245.88.115 to IP whitelist in Binance API settings
"Invalid API key"→ Double-check key spelling, copy from Binance again
"No trading permissions"→ Enable "Spot & Margin Trading" in API permissions
"Connection timeout"→ Check server status at status.kairos.hub or wait a moment

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

📞 Telegram

Main support channel. Use @KAIROS_TS_pro_bot for all inquiries.

Open Bot →

📧 Email

For detailed questions: support@kairos.hub

Send Email →

⚠️ 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.