Features Specs How It Works BUY SOURCE — $— Dashboard
Rebirth Trader

Rebirth Trader.

Smartest Trading Engine

Built for Binance Futures — Scalp. Survive. Repeat.

Wallet
Active Pos
Win Rate
Trades
01

High-Frequency Engine

WebSocket streaming across all 500+ USDT and 38 USDC futures pairs — positions read from an in-memory deque buffer with sub-10ms latency. No REST API polling for price data.

Streams: 500+ pairs Buffer: 120 entries Latency: <10ms Fallback: 30s
  • 500+ USDT + 38 USDC simultaneous WebSocket streams (kline, ticker, aggTrade per symbol)
  • 120-entry ring buffer per symbol — zero Binance API calls for monitoring
  • Buffer staleness threshold: 30s before API fallback
  • Stream health validation prevents trading on dead connections
  • Sub-10ms end-to-end latency from WebSocket to position monitor
+ Details
02

Smart Scalping

Multi-factor signal generation combining EMA trend detection, RSI filtering, and volatility assessment. Dynamic leverage from 10x to 30x based on confidence score.

Confidence ≥ 0.20 Max Leverage 30x Default 20x Min 10x EMA 50/100
  • Trend Detection — EMA 50/100 crossover with minimum 0.05% strength threshold
  • RSI 14 Filter — Overbought (>75) and oversold (<25) conditions override EMA trend
  • Volatility Check — Skips entries when volatility exceeds 2.5x threshold
  • Leverage tiers: 30x (confidence > 0.8 + low vol), 20x (confidence > 0.5), 10x (default)
  • Signal evaluated every 5 WebSocket messages per symbol
+ Details
03

Multi-Layer Exits

Five exit layers with strict priority ordering. Each position evaluates exit conditions every second — the first triggered condition wins. Candle-enhanced trailing stop suppresses exit when 5m EMA aligns with position direction.

Stop Loss: 4% Take Profit: 6% Trail: 2.5%/0.092% Loss Trail: 3.5%/1.1% Max Hold: 7d
  • Stop Loss (Priority 1) — Hard stop at 4% loss from entry, always checked first
  • Take Profit (Priority 2) — Target exit at 6% profit
  • Trailing Stop (Priority 3) — Activates at +2.5% peak, trails at 0.092% pullback; suppressed when 5m candle EMA trend matches position direction
  • Loss Recovery Trail (Priority 4) — At 3.5% loss, exits on 1.1% recovery from trough
  • Time Limit (Priority 5) — Auto-exits after 7 days (10,080 min) maximum hold
+ Details
04

Risk Management

Comprehensive risk controls: position sizing, capital caps, hedge mode, trading pause, and symbol blacklist with auto-suspension.

Risk/Trade: 2.7% Max Concurrent: 20 Cap Usage: 90% Pause: 23–02 UTC Capital Cap: $1K
  • 2.7% capital risk per position, max 2.9% capital deployed per position
  • Max 20 concurrent positions (hedge positions exempt from count)
  • Capital Ceiling — Live balance capped at $1,000; 90% total capital utilization ceiling
  • Hedge Mode — Dual-side positions (long + short per symbol) via Binance Hedge Mode
  • Trading Pause — Blocks new entries 23:00–02:00 UTC; existing positions continue monitoring
  • Symbol Blacklist — Auto-suspends after 3 consecutive losses for 24h
  • Emergency Close — 30-second timeout with force-close fallback
+ Details
05

Production Ready

Systemd-managed service with crash-safe state persistence, auto-restart, and headless operation. Survives SSH disconnect, system crashes, and reboots.

  • Auto-installs systemd service on first --persist run (Restart=always, 10s backoff)
  • State persisted to logs/state.jsonl every 60s — crash-safe JSONL append format
  • On restart: restores all positions with monitoring coroutines + hedge pair linking
  • Backward-compatible state loading for config changes
  • Emergency close with 30s timeout and force-close fallback
+ Details
06

Architecture

Position-centric async architecture where each trade runs as an independent coroutine with isolated error handling — failures never cascade.

# Before (centralized loop — one failure crashes all):
for position in active_positions:
    check_and_close(position)

# After (per-position coroutine — fully isolated):
for position in active_positions:
    asyncio.create_task(position.monitor())
  • Up to 20 concurrent positions, each with independent error boundary
  • Callback pattern for shared resource access (price buffer, close API)
  • Placeholder → Order → Position lifecycle prevents ghost positions
  • Singleton configuration — all risk parameters defined once in HFScalper
+ Details
07

Technical Specifications

Full configuration parameters, CLI flags, and log file reference.

Summary

Version3.0.0
LanguagePython 3.13+
Trading Pairs500+ USDT / 38 USDC
Max Concurrent20
Exit Layers5
Persistencesystemd
DeploymentLinux / VPS
Avg Latency<10ms

Default Risk Parameters

Stop Loss4.0%
Take Profit6.0%
Trail Activation2.5%
Trail Distance0.092%
Loss Trail Activation3.5%
Loss Trail Distance1.1%
Time Limit7 days
Max Positions20
Risk Per Trade2.7%
Max Per Position2.9%
Capital Ceiling$1,000
Capital Usage Cap90%
Max Leverage30x
Default Leverage20x
Min Leverage10x
Confidence Threshold≥ 0.20
Volatility Threshold≤ 2.5
Trading Pause23:00–02:00 UTC
Min Notional$5.00

CLI Flags

FlagDescription
--scalpEnable HFScalper trading mode
--liveReal money trading on Binance Futures
--persistSave/restore state + install systemd service
--autoBypass all confirmations (headless operation)
--loghfsEnable JSONL event logging to logs/
--symbolsComma-separated list of trading pairs
--allStream all tradable futures symbols
--blackedSymbol blacklist with auto-suspend

Log Files

FileContents
logs/state.jsonlPosition state & capital — every 60s
logs/hfscalper_*.jsonlAll trading events (~60 types)
logs/raw.jsonlRaw WebSocket data (when --raw)
+ Details

Get the Source

$1,600 + live realized P&L — 6+ months of development. Thousands of trades refined against real capital in live markets. Not a script. A complete production trading infrastructure.

Full codebase. 30 days updates. Ready to deploy on your laptop, server and mobile. Modify, enhance, rebrand ALL at your own risks.

BUY SOURCE — $—

Price tracks the bot's live realized profit.