ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Deepseek Trader

Hybrid crypto analysis combining technical indicators with DeepSeek AI reasoning.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/sa9saq/deepseek-trader
Or

DeepSeek Trader

Cryptocurrency analysis combining technical indicators (RSI, MACD, SMA, Bollinger Bands) with DeepSeek AI interpretation for buy/sell/hold signals.

Quick Start

cd {skill_dir}
npm install && npm run build

# Set API key securely (don't pass on command line — visible in `ps`)
export DEEPSEEK_API_KEY=your_key

# Analyze a coin
node dist/cli.js analyze --coin bitcoin

# Analyze multiple coins
node dist/cli.js analyze --coins bitcoin,ethereum,solana

# Trading signals only
node dist/cli.js signals --coin bitcoin

Output Format

🔍 BTC Analysis — ¥15,234,567

Technical Indicators:
| Indicator | Value | Signal |
|-----------|-------|--------|
| RSI       | 45.2  | Neutral |
| MACD      | +25   | Bullish |
| SMA 20/50 | Above | Bullish |
| Bollinger | Mid   | Neutral |

AI Signal: HOLD (72% confidence)
Risk: Medium
Action: Wait for RSI < 35 for entry

Architecture

CoinGecko → Price Data → Technical Indicators → DeepSeek API → Signal

Security

  • Never pass API keys on command line — use export or .env file
  • Add .env to .gitignore
  • API key is sent only to DeepSeek API endpoint

Edge Cases

  • DeepSeek API down: Fall back to technical-only analysis without AI interpretation
  • CoinGecko rate limit: Cached data used if available; warn user
  • Conflicting signals: AI weighs indicators and provides reasoning for its decision

⚠️ Disclaimer

For informational/educational purposes only. Not financial advice. Always DYOR.

Configuration

VariableRequiredDescription
DEEPSEEK_API_KEYYesDeepSeek API key
COINGECKO_APINoCoinGecko base URL (default: free tier)

Requirements

  • Node.js 18+
  • DeepSeek API key
  • Internet connection

Metadata

Author@sa9saq
Stars1133
Views1
Updated2026-02-18
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-sa9saq-deepseek-trader": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.