← 返回 Skills 市场
awessh

Trading Signal

作者 Awessh · GitHub ↗ · v0.1.0
cross-platform ✓ 安全检测通过
681
总下载
1
收藏
14
当前安装
1
版本数
在 OpenClaw 中安装
/install trading-signal
功能描述
Subscribe and retrieve on-chain Smart Money signals. Monitor trading activities of smart money addresses, including buy/sell signals, trigger price, current...
使用说明 (SKILL.md)

Trading Signal Skill

Overview

This skill retrieves on-chain Smart Money trading signals to help users track professional investors:

  • Get smart money buy/sell signals
  • Compare signal trigger price with current price
  • Analyze max gain and exit rate of signals
  • Get token tags (e.g., Pumpfun, DEX Paid)

API Endpoint

Get Smart Money Signals

Method: POST

URL:

https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money

Request Headers:

Content-Type: application/json
Accept-Encoding: identity

Request Body:

{
    "smartSignalType": "",
    "page": 1,
    "pageSize": 100,
    "chainId": "CT_501"
}

Request Parameters:

Field Type Required Description
smartSignalType string No Signal type filter, empty string for all
page number Yes Page number, starting from 1
pageSize number Yes Items per page, max 100
chainId string Yes Chain ID: 56 for bsc, CT_501 for solana

Example Request:

curl --location 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money' \
--header 'Content-Type: application/json' \
--header 'Accept-Encoding: identity' \
--data '{"smartSignalType":"","page":1,"pageSize":100,"chainId":"CT_501"}'

Response Example:

{
    "code": "000000",
    "message": null,
    "messageDetail": null,
    "data": [
        {
            "signalId": 22179,
            "ticker": "symbol of the token",
            "chainId": "CT_501",
            "contractAddress": "NV...pump",
            "logoUrl": "/images/web3-data/public/token/logos/825C62EC6BE6.png",
            "chainLogoUrl": "https://bin.bnbstatic.com/image/admin_mgs_image_upload/20250303/42065e0a-3808-400e-b589-61c2dbfc0eac.png",
            "tokenDecimals": 6,
            "isAlpha": false,
            "launchPlatform": "Pumpfun",
            "mark": null,
            "isExclusiveLaunchpad": false,
            "alphaPoint": null,
            "tokenTag": {
                "Social Events": [
                    {"tagName": "DEX Paid", "languageKey": "wmp-label-update-dexscreener-social"}
                ],
                "Launch Platform": [
                    {"tagName": "Pumpfun", "languageKey": "wmp-label-title-pumpfun"}
                ],
                "Sensitive Events": [
                    {"tagName": "Smart Money Add Holdings", "languageKey": "wmp-label-title-smart-money-add-position"}
                ]
            },
            "smartSignalType": "SMART_MONEY",
            "smartMoneyCount": 5,
            "direction": "buy",
            "timeFrame": 883000,
            "signalTriggerTime": 1771903462000,
            "totalTokenValue": "3436.694044670495772073",
            "alertPrice": "0.024505932131088482",
            "alertMarketCap": "24505118.720436560690909782",
            "currentPrice": "0.025196",
            "currentMarketCap": "25135683.751234890220129783671668745",
            "highestPrice": "0.027244000000000000",
            "highestPriceTime": 1771927760000,
            "exitRate": 78,
            "status": "timeout",
            "maxGain": "5.4034",
            "signalCount": 23
        }
    ],
    "success": true
}

Response Fields:

Basic Information

Field Type Description
signalId number Unique signal ID
ticker string Token symbol/name
chainId string Chain ID
contractAddress string Token contract address
logoUrl string Token icon URL path
chainLogoUrl string Chain icon URL
tokenDecimals number Token decimals

Tag Information

Field Type Description
isAlpha boolean Whether it's an Alpha token
launchPlatform string Launch platform (e.g., Pumpfun)
isExclusiveLaunchpad boolean Whether it's exclusive launchpad
alphaPoint number Alpha points (can be null)
tokenTag object Token tag categories

Signal Data

Field Type Description
smartSignalType string Signal type, e.g., SMART_MONEY
smartMoneyCount number Number of smart money addresses involved
direction string Trade direction: buy / sell
timeFrame number Time frame (milliseconds)
signalTriggerTime number Signal trigger timestamp (ms)
signalCount number Total signal count

Price Data

Field Type Description
totalTokenValue string Total trade value (USD)
alertPrice string Price at signal trigger
alertMarketCap string Market cap at signal trigger
currentPrice string Current price
currentMarketCap string Current market cap
highestPrice string Highest price after signal
highestPriceTime number Highest price timestamp (ms)

Performance Data

Field Type Description
exitRate number Exit rate (%)
status string Signal status: active/timeout/completed
maxGain string Maximum gain (%)

Token Tag Types

Social Events

Tag Description
DEX Paid DEX paid promotion

Launch Platform

Tag Description
Pumpfun Pump.fun platform
Moonshot Moonshot platform

Sensitive Events

Tag Description
Smart Money Add Holdings Smart money accumulating
Smart Money Reduce Holdings Smart money reducing
Whale Buy Whale buying
Whale Sell Whale selling

Supported Chains

Chain Name chainId
BSC 56
Solana CT_501

Signal Status

Status Description
active Active, signal still valid
timeout Timed out, exceeded observation period
completed Completed, reached target or stop loss

Use Cases

  1. Track Smart Money: Monitor professional investor trading behavior
  2. Discover Opportunities: Get early signals when smart money buys
  3. Risk Alert: Receive alerts when smart money starts selling
  4. Performance Analysis: Analyze historical signal performance and max gains
  5. Strategy Validation: Evaluate signal quality via exitRate and maxGain

Example Requests

Get Smart Money Signals on Solana

curl --location 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money' \
--header 'Content-Type: application/json' \
--header 'Accept-Encoding: identity' \
--data '{"smartSignalType":"","page":1,"pageSize":50,"chainId":"CT_501"}'

Get Signals on BSC

curl --location 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money' \
--header 'Content-Type: application/json' \
--header 'Accept-Encoding: identity' \
--data '{"smartSignalType":"","page":1,"pageSize":50,"chainId":"56"}'

Notes

  1. Token icon URL requires full domain prefix: https://bin.bnbstatic.com + logoUrl path
  2. Chain icon URL (chainLogoUrl) is already a full URL
  3. All timestamps are in milliseconds
  4. maxGain is a percentage string
  5. Signals may timeout (status=timeout), focus on active signals
  6. Higher smartMoneyCount may indicate higher signal reliability
  7. exitRate shows smart money exit status, high exitRate may indicate expired signal
安全使用建议
This skill appears internally consistent: it tells the agent to call a public Binance Web3 endpoint and parse results, and it asks for no secrets or installs. Before installing, consider: 1) Verify the API endpoint is official (check Binance Web3 docs or the publisher) — the SKILL.md claims author 'binance-web3-team' but the registry source/homepage are absent, so the author string could be copy‑pasted. 2) Understand that every invocation will make network requests to the external URL (your agent’s IP and request metadata may be visible to that endpoint). 3) Ask for the full/untruncated SKILL.md or a publisher homepage if you want to confirm there are no additional instructions not shown. If you need absolute assurance, prefer skills published by known/trusted owners or with a verifiable homepage/documentation.
功能分析
Type: OpenClaw Skill Name: trading-signal Version: 0.1.0 The 'trading-signal' skill is a legitimate tool designed to fetch on-chain smart money trading signals from a public Binance API (web3.binance.com). The SKILL.md file provides clear instructions for an AI agent to perform POST requests to retrieve market data such as token prices, trade directions, and gain percentages, with no evidence of data exfiltration, malicious execution, or prompt injection.
能力评估
Purpose & Capability
Name/description (retrieve smart‑money trading signals) aligns with the runtime instructions (POST to a Binance Web3 public API and parse response). There are no unrelated env vars, binaries, or config paths requested.
Instruction Scope
SKILL.md instructs only to call a single public API endpoint and interpret the returned JSON fields. It does not ask the agent to read files, access secrets, or exfiltrate data. Minor documentation issues: the SKILL.md is truncated in the provided excerpt and contains a small inconsistency about chainId values (mentions both numeric '56' and 'CT_501' for different chains) — not a security problem but worth validating.
Install Mechanism
No install spec and no code files — instruction‑only skill. This is the lowest risk install model; nothing will be written to disk by the skill itself.
Credentials
Skill requests no environment variables, credentials, or config paths. That is proportionate for a public API read-only integration.
Persistence & Privilege
always:false and default autonomy settings. The skill does not request elevated persistence or attempt to modify agent/system configuration.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install trading-signal
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /trading-signal 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
- Initial release of the trading-signal skill for monitoring on-chain Smart Money signals. - Retrieve real-time buy/sell signals, trigger price, current price, max gain, and exit rate. - Supports filtering by chain (BSC and Solana) and paginated results. - Provides detailed token tags, launch platform, and social/sensitive events for each signal. - Includes full API documentation and example requests for easy integration.
元数据
Slug trading-signal
版本 0.1.0
许可证
累计安装 14
当前安装数 14
历史版本数 1
常见问题

Trading Signal 是什么?

Subscribe and retrieve on-chain Smart Money signals. Monitor trading activities of smart money addresses, including buy/sell signals, trigger price, current... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 681 次。

如何安装 Trading Signal?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install trading-signal」即可一键安装,无需额外配置。

Trading Signal 是免费的吗?

是的,Trading Signal 完全免费(开源免费),可自由下载、安装和使用。

Trading Signal 支持哪些平台?

Trading Signal 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Trading Signal?

由 Awessh(@awessh)开发并维护,当前版本 v0.1.0。

💬 留言讨论