TopRank Skills

Home / Claw Skills / Finance / Crypto / crypto-daily-dashboard
Official OpenClaw rules 36%

crypto-daily-dashboard

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.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 crypto-daily-dashboard 技能。 若已安装,则直接安装 crypto-daily-dashboard 技能。

Overview

Skill Key
dagangtj/crypto-daily-dashboard
Author
dagangtj
Source Repo
openclaw/skills
Version
-
Source Path
skills/dagangtj/crypto-daily-dashboard
Latest Commit SHA
c661e9ed4915bf829f58f769e9aa42068f5cb974

Extracted Content

SKILL.md excerpt

# 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 (负费率=做多赚...

Related Claw Skills