{
  "schemaVersion": "1.0",
  "item": {
    "slug": "binance-pro",
    "name": "Binance Pro",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/totaleasy/binance-pro",
    "canonicalUrl": "https://clawhub.ai/totaleasy/binance-pro",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/binance-pro",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=binance-pro",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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-pro"
    },
    "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-pro",
    "agentPageUrl": "https://openagent3.xyz/skills/binance-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/binance-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/binance-pro/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 Pro 🟡",
        "body": "Professional skill for trading on Binance - the world's largest crypto exchange."
      },
      {
        "title": "Setup Credentials",
        "body": "Save to ~/.openclaw/credentials/binance.json:\n\n{\n  \"apiKey\": \"YOUR_API_KEY\",\n  \"secretKey\": \"YOUR_SECRET_KEY\"\n}"
      },
      {
        "title": "Environment Variables (alternative)",
        "body": "export BINANCE_API_KEY=\"your_api_key\"\nexport BINANCE_SECRET=\"your_secret_key\""
      },
      {
        "title": "Check Spot Balance",
        "body": "TIMESTAMP=$(date +%s%3N)\nQUERY=\"timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s \"https://api.binance.com/api/v3/account?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '[.balances[] | select(.free != \"0.00000000\")]'"
      },
      {
        "title": "Get Current Price",
        "body": "curl -s \"https://api.binance.com/api/v3/ticker/price?symbol=BTCUSDT\" | jq '.'"
      },
      {
        "title": "Get All Futures Positions",
        "body": "TIMESTAMP=$(date +%s%3N)\nQUERY=\"timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s \"https://fapi.binance.com/fapi/v2/positionRisk?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '[.[] | select(.positionAmt != \"0\")]'"
      },
      {
        "title": "Open LONG Position (Buy)",
        "body": "SYMBOL=\"BTCUSDT\"\nSIDE=\"BUY\"\nQUANTITY=\"0.001\"\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&side=${SIDE}&type=MARKET&quantity=${QUANTITY}&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X POST \"https://fapi.binance.com/fapi/v1/order?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'"
      },
      {
        "title": "Open SHORT Position (Sell)",
        "body": "SYMBOL=\"BTCUSDT\"\nSIDE=\"SELL\"\nQUANTITY=\"0.001\"\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&side=${SIDE}&type=MARKET&quantity=${QUANTITY}&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X POST \"https://fapi.binance.com/fapi/v1/order?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'"
      },
      {
        "title": "Set Stop Loss",
        "body": "SYMBOL=\"BTCUSDT\"\nSIDE=\"SELL\"  # To close LONG use SELL, to close SHORT use BUY\nSTOP_PRICE=\"75000\"\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&side=${SIDE}&type=STOP_MARKET&stopPrice=${STOP_PRICE}&closePosition=true&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X POST \"https://fapi.binance.com/fapi/v1/order?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'"
      },
      {
        "title": "Set Take Profit",
        "body": "SYMBOL=\"BTCUSDT\"\nSIDE=\"SELL\"  # To close LONG use SELL, to close SHORT use BUY\nTP_PRICE=\"85000\"\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&side=${SIDE}&type=TAKE_PROFIT_MARKET&stopPrice=${TP_PRICE}&closePosition=true&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X POST \"https://fapi.binance.com/fapi/v1/order?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'"
      },
      {
        "title": "Close Position (Market)",
        "body": "# First, get current position quantity\nPOSITION=$(curl -s \"https://fapi.binance.com/fapi/v2/positionRisk?timestamp=${TIMESTAMP}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq -r '.[] | select(.symbol==\"BTCUSDT\") | .positionAmt')\n\n# If POSITION > 0, it's LONG, close with SELL\n# If POSITION < 0, it's SHORT, close with BUY"
      },
      {
        "title": "Change Leverage",
        "body": "SYMBOL=\"BTCUSDT\"\nLEVERAGE=\"10\"  # 1 to 125\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&leverage=${LEVERAGE}&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X POST \"https://fapi.binance.com/fapi/v1/leverage?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'"
      },
      {
        "title": "Buy (Market)",
        "body": "SYMBOL=\"ETHUSDT\"\nQUANTITY=\"0.1\"\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&side=BUY&type=MARKET&quantity=${QUANTITY}&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X POST \"https://api.binance.com/api/v3/order?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'"
      },
      {
        "title": "Sell (Market)",
        "body": "SYMBOL=\"ETHUSDT\"\nQUANTITY=\"0.1\"\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&side=SELL&type=MARKET&quantity=${QUANTITY}&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X POST \"https://api.binance.com/api/v3/order?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'"
      },
      {
        "title": "View Open Orders",
        "body": "TIMESTAMP=$(date +%s%3N)\nQUERY=\"timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\n# Futures\ncurl -s \"https://fapi.binance.com/fapi/v1/openOrders?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'"
      },
      {
        "title": "Cancel Order",
        "body": "SYMBOL=\"BTCUSDT\"\nORDER_ID=\"123456789\"\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&orderId=${ORDER_ID}&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X DELETE \"https://fapi.binance.com/fapi/v1/order?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'"
      },
      {
        "title": "View Trade History",
        "body": "SYMBOL=\"BTCUSDT\"\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s \"https://fapi.binance.com/fapi/v1/userTrades?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.[-10:]'"
      },
      {
        "title": "🏦 Detailed Futures Balance",
        "body": "TIMESTAMP=$(date +%s%3N)\nQUERY=\"timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s \"https://fapi.binance.com/fapi/v2/balance?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '[.[] | select(.balance != \"0\")]'"
      },
      {
        "title": "📋 Popular Pairs",
        "body": "PairDescriptionBTCUSDTBitcoinETHUSDTEthereumBNBUSDTBNBSOLUSDTSolanaXRPUSDTXRPDOGEUSDTDogecoinADAUSDTCardanoAVAXUSDTAvalanche"
      },
      {
        "title": "⚠️ Safety Rules",
        "body": "ALWAYS verify position before closing\nALWAYS set Stop Loss on leveraged trades\nNEVER use leverage higher than 10x without experience\nVERIFY pair and quantity before executing\nCONFIRM with user before executing large orders"
      },
      {
        "title": "🔗 Links",
        "body": "API Documentation\nCreate Account\nTestnet\n\nSkill created by Total Easy Software - Clayton Martins"
      }
    ],
    "body": "Binance Pro 🟡\n\nProfessional skill for trading on Binance - the world's largest crypto exchange.\n\n🚀 Quick Start\nSetup Credentials\n\nSave to ~/.openclaw/credentials/binance.json:\n\n{\n  \"apiKey\": \"YOUR_API_KEY\",\n  \"secretKey\": \"YOUR_SECRET_KEY\"\n}\n\nEnvironment Variables (alternative)\nexport BINANCE_API_KEY=\"your_api_key\"\nexport BINANCE_SECRET=\"your_secret_key\"\n\n📊 Basic Queries\nCheck Spot Balance\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s \"https://api.binance.com/api/v3/account?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '[.balances[] | select(.free != \"0.00000000\")]'\n\nGet Current Price\ncurl -s \"https://api.binance.com/api/v3/ticker/price?symbol=BTCUSDT\" | jq '.'\n\nGet All Futures Positions\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s \"https://fapi.binance.com/fapi/v2/positionRisk?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '[.[] | select(.positionAmt != \"0\")]'\n\n⚡ Futures (Leverage Trading)\nOpen LONG Position (Buy)\nSYMBOL=\"BTCUSDT\"\nSIDE=\"BUY\"\nQUANTITY=\"0.001\"\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&side=${SIDE}&type=MARKET&quantity=${QUANTITY}&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X POST \"https://fapi.binance.com/fapi/v1/order?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'\n\nOpen SHORT Position (Sell)\nSYMBOL=\"BTCUSDT\"\nSIDE=\"SELL\"\nQUANTITY=\"0.001\"\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&side=${SIDE}&type=MARKET&quantity=${QUANTITY}&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X POST \"https://fapi.binance.com/fapi/v1/order?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'\n\nSet Stop Loss\nSYMBOL=\"BTCUSDT\"\nSIDE=\"SELL\"  # To close LONG use SELL, to close SHORT use BUY\nSTOP_PRICE=\"75000\"\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&side=${SIDE}&type=STOP_MARKET&stopPrice=${STOP_PRICE}&closePosition=true&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X POST \"https://fapi.binance.com/fapi/v1/order?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'\n\nSet Take Profit\nSYMBOL=\"BTCUSDT\"\nSIDE=\"SELL\"  # To close LONG use SELL, to close SHORT use BUY\nTP_PRICE=\"85000\"\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&side=${SIDE}&type=TAKE_PROFIT_MARKET&stopPrice=${TP_PRICE}&closePosition=true&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X POST \"https://fapi.binance.com/fapi/v1/order?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'\n\nClose Position (Market)\n# First, get current position quantity\nPOSITION=$(curl -s \"https://fapi.binance.com/fapi/v2/positionRisk?timestamp=${TIMESTAMP}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq -r '.[] | select(.symbol==\"BTCUSDT\") | .positionAmt')\n\n# If POSITION > 0, it's LONG, close with SELL\n# If POSITION < 0, it's SHORT, close with BUY\n\nChange Leverage\nSYMBOL=\"BTCUSDT\"\nLEVERAGE=\"10\"  # 1 to 125\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&leverage=${LEVERAGE}&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X POST \"https://fapi.binance.com/fapi/v1/leverage?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'\n\n📈 Spot Trading\nBuy (Market)\nSYMBOL=\"ETHUSDT\"\nQUANTITY=\"0.1\"\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&side=BUY&type=MARKET&quantity=${QUANTITY}&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X POST \"https://api.binance.com/api/v3/order?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'\n\nSell (Market)\nSYMBOL=\"ETHUSDT\"\nQUANTITY=\"0.1\"\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&side=SELL&type=MARKET&quantity=${QUANTITY}&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X POST \"https://api.binance.com/api/v3/order?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'\n\n🔧 Utilities\nView Open Orders\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\n# Futures\ncurl -s \"https://fapi.binance.com/fapi/v1/openOrders?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'\n\nCancel Order\nSYMBOL=\"BTCUSDT\"\nORDER_ID=\"123456789\"\n\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&orderId=${ORDER_ID}&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s -X DELETE \"https://fapi.binance.com/fapi/v1/order?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.'\n\nView Trade History\nSYMBOL=\"BTCUSDT\"\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"symbol=${SYMBOL}&timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s \"https://fapi.binance.com/fapi/v1/userTrades?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '.[-10:]'\n\n🏦 Detailed Futures Balance\nTIMESTAMP=$(date +%s%3N)\nQUERY=\"timestamp=${TIMESTAMP}\"\nSIGNATURE=$(echo -n \"$QUERY\" | openssl dgst -sha256 -hmac \"$SECRET\" | cut -d' ' -f2)\n\ncurl -s \"https://fapi.binance.com/fapi/v2/balance?${QUERY}&signature=${SIGNATURE}\" \\\n  -H \"X-MBX-APIKEY: ${API_KEY}\" | jq '[.[] | select(.balance != \"0\")]'\n\n📋 Popular Pairs\nPair\tDescription\nBTCUSDT\tBitcoin\nETHUSDT\tEthereum\nBNBUSDT\tBNB\nSOLUSDT\tSolana\nXRPUSDT\tXRP\nDOGEUSDT\tDogecoin\nADAUSDT\tCardano\nAVAXUSDT\tAvalanche\n⚠️ Safety Rules\nALWAYS verify position before closing\nALWAYS set Stop Loss on leveraged trades\nNEVER use leverage higher than 10x without experience\nVERIFY pair and quantity before executing\nCONFIRM with user before executing large orders\n🔗 Links\nAPI Documentation\nCreate Account\nTestnet\n\nSkill created by Total Easy Software - Clayton Martins"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/totaleasy/binance-pro",
    "publisherUrl": "https://clawhub.ai/totaleasy/binance-pro",
    "owner": "totaleasy",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/binance-pro",
    "downloadUrl": "https://openagent3.xyz/downloads/binance-pro",
    "agentUrl": "https://openagent3.xyz/skills/binance-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/binance-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/binance-pro/agent.md"
  }
}