{
  "schemaVersion": "1.0",
  "item": {
    "slug": "binance-spot-trader",
    "name": "Binance Spot Trader",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/srikanthbellary/binance-spot-trader",
    "canonicalUrl": "https://clawhub.ai/srikanthbellary/binance-spot-trader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/binance-spot-trader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=binance-spot-trader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/binance-api.md",
      "references/indicators.md",
      "scripts/portfolio.py",
      "scripts/setup.sh",
      "scripts/trader.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/binance-spot-trader"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/binance-spot-trader",
    "agentPageUrl": "https://openagent3.xyz/skills/binance-spot-trader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/binance-spot-trader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/binance-spot-trader/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Binance Spot Trader",
        "body": "Autonomous spot trading bot for Binance. Combines technical indicators with LLM-powered market sentiment analysis to execute trades on any Binance spot pair."
      },
      {
        "title": "Prerequisites",
        "body": "Binance account with API keys (spot trading enabled, withdrawal DISABLED)\nAnthropic API key (uses Haiku ~$0.001/eval)\nPython 3.10+"
      },
      {
        "title": "1. Install",
        "body": "bash {baseDir}/scripts/setup.sh"
      },
      {
        "title": "2. Configure",
        "body": "Create .env:\n\nBINANCE_API_KEY=<your-api-key>\nBINANCE_SECRET_KEY=<your-secret-key>\nLLM_API_KEY=<anthropic-api-key>\nPAIRS=BTCUSDT,ETHUSDT,SOLUSDT\nSTRATEGY=momentum\nTRADE_SIZE_PCT=5\nMAX_POSITIONS=5"
      },
      {
        "title": "3. Run",
        "body": "python3 {baseDir}/scripts/trader.py\n\nOr via cron:\n\n*/5 * * * * cd /opt/trader && python3 trader.py >> trader.log 2>&1"
      },
      {
        "title": "Momentum (default)",
        "body": "Buys when price crosses above 20-EMA with volume spike\nSells when price crosses below 20-EMA or hits TP/SL\nBest for trending markets (BTC, ETH, SOL)"
      },
      {
        "title": "Mean Reversion",
        "body": "Buys when RSI < 30 (oversold) and price near Bollinger Band lower\nSells when RSI > 70 (overbought) or price near upper band\nBest for range-bound markets"
      },
      {
        "title": "DCA (Dollar Cost Average)",
        "body": "Buys fixed amount at regular intervals regardless of price\nConfigurable interval (hourly, daily, weekly)\nLowest risk strategy for long-term accumulation"
      },
      {
        "title": "LLM-Enhanced (all strategies)",
        "body": "Before each trade, asks Claude Haiku for market sentiment\nEvaluates: recent news, price action, volume patterns, market structure\nCan veto a trade signal if sentiment is strongly against"
      },
      {
        "title": "Trading Parameters",
        "body": "ParameterDefaultDescriptionPAIRSBTCUSDTComma-separated trading pairsSTRATEGYmomentummomentum, mean_reversion, or dcaTRADE_SIZE_PCT5% of portfolio per tradeMAX_POSITIONS5Max concurrent open positionsTAKE_PROFIT_PCT5Take profit %STOP_LOSS_PCT3Stop loss %DCA_INTERVALdailyFor DCA: hourly, daily, weeklyDCA_AMOUNT_USDT50USDT per DCA buyUSE_LLMtrueEnable LLM sentiment filter"
      },
      {
        "title": "Monitoring",
        "body": "# Check portfolio\npython3 {baseDir}/scripts/portfolio.py\n\n# View trade history\ntail -50 trades.jsonl\n\n# Check logs\ntail -f trader.log"
      },
      {
        "title": "⚠️ Security Considerations",
        "body": "NEVER enable withdrawal on API keys — trading only\nIP-restrict your API keys on Binance\nUse a sub-account with limited funds for bot trading\nStart with tiny amounts ($50-100) and paper trade first\nMonitor actively during first 24 hours\nSet up Binance email alerts for all trades\nAPI keys on disk — secure your server (SSH keys only, firewall, chmod 600)"
      },
      {
        "title": "References",
        "body": "See references/binance-api.md for REST API docs\nSee references/indicators.md for technical analysis details"
      }
    ],
    "body": "Binance Spot Trader\n\nAutonomous spot trading bot for Binance. Combines technical indicators with LLM-powered market sentiment analysis to execute trades on any Binance spot pair.\n\nPrerequisites\nBinance account with API keys (spot trading enabled, withdrawal DISABLED)\nAnthropic API key (uses Haiku ~$0.001/eval)\nPython 3.10+\nSetup\n1. Install\nbash {baseDir}/scripts/setup.sh\n\n2. Configure\n\nCreate .env:\n\nBINANCE_API_KEY=<your-api-key>\nBINANCE_SECRET_KEY=<your-secret-key>\nLLM_API_KEY=<anthropic-api-key>\nPAIRS=BTCUSDT,ETHUSDT,SOLUSDT\nSTRATEGY=momentum\nTRADE_SIZE_PCT=5\nMAX_POSITIONS=5\n\n3. Run\npython3 {baseDir}/scripts/trader.py\n\n\nOr via cron:\n\n*/5 * * * * cd /opt/trader && python3 trader.py >> trader.log 2>&1\n\nStrategies\nMomentum (default)\nBuys when price crosses above 20-EMA with volume spike\nSells when price crosses below 20-EMA or hits TP/SL\nBest for trending markets (BTC, ETH, SOL)\nMean Reversion\nBuys when RSI < 30 (oversold) and price near Bollinger Band lower\nSells when RSI > 70 (overbought) or price near upper band\nBest for range-bound markets\nDCA (Dollar Cost Average)\nBuys fixed amount at regular intervals regardless of price\nConfigurable interval (hourly, daily, weekly)\nLowest risk strategy for long-term accumulation\nLLM-Enhanced (all strategies)\nBefore each trade, asks Claude Haiku for market sentiment\nEvaluates: recent news, price action, volume patterns, market structure\nCan veto a trade signal if sentiment is strongly against\nTrading Parameters\nParameter\tDefault\tDescription\nPAIRS\tBTCUSDT\tComma-separated trading pairs\nSTRATEGY\tmomentum\tmomentum, mean_reversion, or dca\nTRADE_SIZE_PCT\t5\t% of portfolio per trade\nMAX_POSITIONS\t5\tMax concurrent open positions\nTAKE_PROFIT_PCT\t5\tTake profit %\nSTOP_LOSS_PCT\t3\tStop loss %\nDCA_INTERVAL\tdaily\tFor DCA: hourly, daily, weekly\nDCA_AMOUNT_USDT\t50\tUSDT per DCA buy\nUSE_LLM\ttrue\tEnable LLM sentiment filter\nMonitoring\n# Check portfolio\npython3 {baseDir}/scripts/portfolio.py\n\n# View trade history\ntail -50 trades.jsonl\n\n# Check logs\ntail -f trader.log\n\n⚠️ Security Considerations\nNEVER enable withdrawal on API keys — trading only\nIP-restrict your API keys on Binance\nUse a sub-account with limited funds for bot trading\nStart with tiny amounts ($50-100) and paper trade first\nMonitor actively during first 24 hours\nSet up Binance email alerts for all trades\nAPI keys on disk — secure your server (SSH keys only, firewall, chmod 600)\nReferences\nSee references/binance-api.md for REST API docs\nSee references/indicators.md for technical analysis details"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/srikanthbellary/binance-spot-trader",
    "publisherUrl": "https://clawhub.ai/srikanthbellary/binance-spot-trader",
    "owner": "srikanthbellary",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/binance-spot-trader",
    "downloadUrl": "https://openagent3.xyz/downloads/binance-spot-trader",
    "agentUrl": "https://openagent3.xyz/skills/binance-spot-trader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/binance-spot-trader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/binance-spot-trader/agent.md"
  }
}