Real-time crypto candlestick charts in your terminal, powered by Bybit.
BTCUSDT | 1H ▲ 67,420.00
H: 68,100.00 L: 66,980.00
68100.00 | ▼
67877.77 | █ █ █ █ █ |
67655.55 | | | █ █ █ █ █ █ █ |
...
- Candlestick charts with wick and body rendering
- Volume bars for each candle
- Time axis with date labels
- High and low markers
- Forex-style gold shortcut with
xau/xauusd - ANSI color output for bullish and bearish candles
- Zero config, using Bybit public market data
Recommended with Homebrew:
brew tap devlopersabbir/tview-cli https://github.com/devlopersabbir/tview-cli
brew install --cask devlopersabbir/tview-cli/tview
tview versionIf you installed the older formula before, remove it first:
brew uninstall tview 2>/dev/null || true
brew install --cask devlopersabbir/tview-cli/tviewIf brew install succeeds but tview is not found, add Homebrew to your shell PATH:
# Apple Silicon Macs
eval "$(/opt/homebrew/bin/brew shellenv)"
# Intel Macs
eval "$(/usr/local/bin/brew shellenv)"Manual install without Homebrew:
curl -fsSL https://raw.githubusercontent.com/devlopersabbir/tview-cli/main/scripts/install.sh | shThe manual installer places tview in /usr/local/bin when possible, otherwise in ~/.local/bin, and prints the PATH line to add if needed.
If macOS Gatekeeper blocks a manually downloaded binary, remove the quarantine attribute:
xattr -d com.apple.quarantine "$(command -v tview)" 2>/dev/null || true
xattr -d com.apple.provenance "$(command -v tview)" 2>/dev/null || trueUbuntu or Debian:
curl -fsSL https://raw.githubusercontent.com/devlopersabbir/tview-cli/main/scripts/install.sh | shOr download the .deb package from GitHub Releases, then install it:
sudo apt install ./tview_*_linux_amd64.debRPM and APK packages are also available from GitHub Releases. The installer supports Linux amd64 and arm64.
Recommended with PowerShell:
iwr https://raw.githubusercontent.com/devlopersabbir/tview-cli/main/scripts/install.ps1 -UseBasicParsing | iexOr install with Scoop:
scoop bucket add devlopersabbir-tview https://github.com/devlopersabbir/tview-cli
scoop install tviewYou can also download the Windows .zip from GitHub Releases. Put tview.exe in a folder on your PATH, for example %LOCALAPPDATA%\Programs\tview\bin.
go install github.com/devlopersabbir/tview-cli/cmd/tview@latesttview [symbol] [interval]| Argument | Description | Example |
|---|---|---|
symbol |
Trading pair. USDT is added automatically when omitted. |
btc, eth, SOLUSDT |
interval |
Candle interval. | 1m, 5m, 15m, 1h, 4h, 1d |
Supported intervals:
1m 3m 5m 15m 30m 1h 2h 4h 6h 12h 1d 1w
tview btc 1h
tview eth 15m
tview SOLUSDT 4h
tview ada 1d
tview xau 5m --forex
tview xau 1m --forex --watch
tview xau 1m --fw--forex (or -f) maps xau / xauusd to a public gold market feed and displays it as XAUUSD.
--fw is a shortcut for --forex --watch.
tview --version
tview versiontview --updateOn macOS Homebrew installs, tview --update reinstalls the latest cask. Manual installs use the install script and replace the existing binary in place.
Sabbir Hossain Shuvo
GitHub: @devlopersabbir
MIT © Sabbir Hossain Shuvo