All-in-one crypto dashboard showing Binance portfolio, BTC/ETH/SOL prices, Fear & Greed index, top funding rates, and economic tracking. Beautiful terminal U...
---
name: crypto-daily-dashboard
description: All-in-one crypto dashboard showing Binance portfolio, BTC/ETH/SOL prices, Fear & Greed index, top funding rates, and economic tracking. Beautiful terminal UI. Configurable via environment variables.
metadata:
{
"openclaw": {
"requires": { "bins": ["node"] }
}
}
---
# Crypto Daily Dashboard
A comprehensive cryptocurrency financial dashboard that displays:
- ๐ Binance account balances (spot, futures, total, unrealized PnL)
- ๐ Major crypto prices (BTC, ETH, SOL) with 24h change
- ๐ญ Fear & Greed Index (market sentiment)
- ๐ธ Top funding rates (negative rates = earn by going long)
- ๐ฆ Economic tracking (balance, runway, income/expenses)
## Features
- **Beautiful terminal UI** with box-drawing characters and emojis
- **Zero dependencies** - uses only Node.js built-ins
- **Graceful fallbacks** - works even without API keys (shows prices & sentiment)
- **Multi-source data** - CoinGecko โ Binance fallback for reliability
- **Configurable** - all sensitive data via environment variables
## Installation
No installation needed - just configure and run!
## Configuration
### Required (for Binance balance)
```bash
export BINANCE_API_KEY="your_api_key"
export BINANCE_API_SECRET="your_api_secret"
```
### Optional
The dashboard works without API keys - it will show crypto prices and market sentiment using public APIs.
## Usage
### Basic
```bash
node dashboard.js
```
### From OpenClaw
```bash
exec node ~/.openclaw/workspace/skills/crypto-daily-dashboard/dashboard.js
```
### As a cron job
Add to your OpenClaw cron:
```bash
openclaw cron add "0 9 * * *" "node ~/.openclaw/workspace/skills/crypto-daily-dashboard/dashboard.js" --label "daily-crypto-dashboard"
```
## Output Example
```
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ๐ฐ ๆฏๆฅ่ดขๅกไปช่กจ็ | 2026-02-26 09:00 โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ Binance ่ดฆๆท
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
็ฐ่ดง: $1,234.56
ๅ็บฆ: $5,678.90
ๆป่ฎก: $6,913.46 USDT
ๆชๅฎ็ฐ็ไบ: $123.45
๐ ไธป่ฆๅ ๅฏ่ดงๅธ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
bitcoin $ 65432.10 +2.3%
ethereum $ 3456.78 -1.2%
solana $ 123.45 +5.6%
๐ญ ๅธๅบๆ
็ปช
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ Greed: 67/100
๐ธ Funding Rate (่ด่ดน็=ๅๅค่ต้ฑ)
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
BTC -0.0123% ๅนดๅ(3x): 13%
ETH -0.0089% ๅนดๅ(3x): 9%
๐ฆ ็ปๆต็ถๆ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ข ็ถๆ: THRIVING
๐ฐ ไฝ้ข: $10,000.00
๐ ๆปๆถๅ
ฅ: $15,000.00
๐ ๆปๆฏๅบ: $5,000.00
โณ ่ท้: 365 ๅคฉ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
๐ก ่ฎฐไฝ๏ผไธ่ต้ฑๆ็ฝ็บฟ | ๅฎๅ
จ็ฌฌไธ | ๅคๅฉๅข้ฟ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
```
## Data Sources
- **Binance API** - account balances and funding rates
- **CoinGecko API** - crypto prices (free tier, no key needed)
- **Binance Public API** - fallback for prices
- **Alternative.me API** - Fear & Greed Index (free, no key needed)
## Security
- No hardcoded credentials
- API keys via environment variables only
- Read-only API permissions recommended
- No data sent to third parties
## Troubleshooting
### "ๆ ๆณ่ทๅ" (Cannot fetch)
- Check your internet connection
- Verify Binance API keys are set correctly
- Ensure API keys have read permissions
### Rate limiting
The script uses multiple data sources with fallbacks. If one source is rate-limited, it automatically tries alternatives.
## License
MIT
## Author
Created for OpenClaw agent ecosystem
don't have the plugin yet? install it then click "run inline in claude" again.