Real-time crypto relative strength screener vs BTC — powered by Hyperliquid.
Track how every Hyperliquid perp performs relative to Bitcoin across multiple timeframes. Built for traders who want to see at a glance which coins are outperforming or underperforming BTC.
- vs BTC columns — Shows each coin's % return minus BTC's % return across 5m, 15m, 1h, 4h, 1d, 7d, and 30d timeframes. Positive = outperforming BTC, negative = underperforming.
- Live prices — Real-time mid prices streamed via Hyperliquid WebSocket (allMids subscription).
- Market data — 24h change, volume, open interest, funding rates — refreshed every 60 seconds.
- Volatility — Per-timeframe volatility (standard deviation of log returns) for every coin.
- BTC correlation & beta — How tightly each coin tracks BTC and its sensitivity to BTC moves.
- Sortable & filterable — Click any column header to sort. Filter by name, minimum volume, or minimum volatility.
- Click to trade — Click any coin name to open it directly on Hyperliquid.
- On launch, fetches the full coin list and historical candles from the Hyperliquid REST API
- Prioritizes BTC + top 20 coins by volume for fast initial load
- Connects to the Hyperliquid WebSocket for live price streaming and 5m candle updates
- Background backfills remaining coins and timeframes (rate-limited to stay within API limits)
- Recomputes all metrics every 10 seconds using live prices + stored candle data
- Stores candle history in a local SQLite database with automatic pruning
Download the latest release for your platform from the Releases page.
| Platform | File | Format |
|---|---|---|
| macOS Apple Silicon | vsbtc-macos-aarch64.dmg |
.app in .dmg |
| macOS Intel | vsbtc-macos-x86_64.dmg |
.app in .dmg |
| Windows x86_64 | vsbtc-windows-x86_64.zip |
.exe with icon |
| Linux x86_64 | vsbtc-linux-x86_64.tar.gz |
binary + .desktop |
| Linux aarch64 | vsbtc-linux-aarch64.tar.gz |
binary + .desktop |
No dependencies or API keys needed — connects directly to Hyperliquid's public API.
Open the .dmg and drag vsBTC to Applications. On first launch you may need to right-click > Open to bypass Gatekeeper, or run:
xattr -d com.apple.quarantine /Applications/vsBTC.appExtract and run the binary. To integrate with your desktop, copy the included files:
cp vsbtc ~/.local/bin/
cp vsbtc.png ~/.local/share/icons/
cp vsbtc.desktop ~/.local/share/applications/Requires Rust 1.85+ (edition 2024).
git clone https://github.com/danupsher/vsbtc.git
cd vsbtc
cargo build --release
./target/release/vsbtcCandle data is stored in a SQLite database at your platform's standard data directory:
- Linux:
~/.local/share/vsbtc/data.db - macOS:
~/Library/Application Support/vsbtc/data.db - Windows:
C:\Users\<user>\AppData\Roaming\vsbtc\data.db
Data is automatically pruned based on retention policies (3 days for 5m candles up to unlimited for monthly).
MIT