← 返回 Skills 市场
viktor-huang

Binance Trading Signal

作者 viktor-huang · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
462
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install binance-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)

\r \r

Trading Signal Skill\r

\r

Overview\r

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

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

API Endpoint\r

\r

Get Smart Money Signals\r

\r Method: POST\r \r URL: \r

https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money\r
```\r
\r
**Request Headers**:\r
```\r
Content-Type: application/json\r
Accept-Encoding: identity\r
```\r
\r
**Request Body**:\r
```json\r
{\r
    "smartSignalType": "",\r
    "page": 1,\r
    "pageSize": 100,\r
    "chainId": "CT_501"\r
}\r
```\r
\r
**Request Parameters**:\r
\r
| Field | Type | Required | Description |\r
|-------|------|----------|-------------|\r
| smartSignalType | string | No | Signal type filter, empty string for all |\r
| page | number | Yes | Page number, starting from 1 |\r
| pageSize | number | Yes | Items per page, max 100 |\r
| chainId | string | Yes | Chain ID: `56` for bsc, `CT_501` for solana |\r
\r
**Example Request**:\r
```bash\r
curl --location 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money' \\r
--header 'Content-Type: application/json' \\r
--header 'Accept-Encoding: identity' \\r
--data '{"smartSignalType":"","page":1,"pageSize":100,"chainId":"CT_501"}'\r
```\r
\r
**Response Example**:\r
```json\r
{\r
    "code": "000000",\r
    "message": null,\r
    "messageDetail": null,\r
    "data": [\r
        {\r
            "signalId": 22179,\r
            "ticker": "symbol of the token",\r
            "chainId": "CT_501",\r
            "contractAddress": "NV...pump",\r
            "logoUrl": "/images/web3-data/public/token/logos/825C62EC6BE6.png",\r
            "chainLogoUrl": "https://bin.bnbstatic.com/image/admin_mgs_image_upload/20250303/42065e0a-3808-400e-b589-61c2dbfc0eac.png",\r
            "tokenDecimals": 6,\r
            "isAlpha": false,\r
            "launchPlatform": "Pumpfun",\r
            "mark": null,\r
            "isExclusiveLaunchpad": false,\r
            "alphaPoint": null,\r
            "tokenTag": {\r
                "Social Events": [\r
                    {"tagName": "DEX Paid", "languageKey": "wmp-label-update-dexscreener-social"}\r
                ],\r
                "Launch Platform": [\r
                    {"tagName": "Pumpfun", "languageKey": "wmp-label-title-pumpfun"}\r
                ],\r
                "Sensitive Events": [\r
                    {"tagName": "Smart Money Add Holdings", "languageKey": "wmp-label-title-smart-money-add-position"}\r
                ]\r
            },\r
            "smartSignalType": "SMART_MONEY",\r
            "smartMoneyCount": 5,\r
            "direction": "buy",\r
            "timeFrame": 883000,\r
            "signalTriggerTime": 1771903462000,\r
            "totalTokenValue": "3436.694044670495772073",\r
            "alertPrice": "0.024505932131088482",\r
            "alertMarketCap": "24505118.720436560690909782",\r
            "currentPrice": "0.025196",\r
            "currentMarketCap": "25135683.751234890220129783671668745",\r
            "highestPrice": "0.027244000000000000",\r
            "highestPriceTime": 1771927760000,\r
            "exitRate": 78,\r
            "status": "timeout",\r
            "maxGain": "5.4034",\r
            "signalCount": 23\r
        }\r
    ],\r
    "success": true\r
}\r
```\r
\r
**Response Fields**:\r
\r
### Basic Information\r
| Field | Type | Description |\r
|-------|------|-------------|\r
| signalId | number | Unique signal ID |\r
| ticker | string | Token symbol/name |\r
| chainId | string | Chain ID |\r
| contractAddress | string | Token contract address |\r
| logoUrl | string | Token icon URL path |\r
| chainLogoUrl | string | Chain icon URL |\r
| tokenDecimals | number | Token decimals |\r
\r
### Tag Information\r
| Field | Type | Description |\r
|-------|------|-------------|\r
| isAlpha | boolean | Whether it's an Alpha token |\r
| launchPlatform | string | Launch platform (e.g., Pumpfun) |\r
| isExclusiveLaunchpad | boolean | Whether it's exclusive launchpad |\r
| alphaPoint | number | Alpha points (can be null) |\r
| tokenTag | object | Token tag categories |\r
\r
### Signal Data\r
| Field | Type | Description |\r
|-------|------|-------------|\r
| smartSignalType | string | Signal type, e.g., `SMART_MONEY` |\r
| smartMoneyCount | number | Number of smart money addresses involved |\r
| direction | string | Trade direction: `buy` / `sell` |\r
| timeFrame | number | Time frame (milliseconds) |\r
| signalTriggerTime | number | Signal trigger timestamp (ms) |\r
| signalCount | number | Total signal count |\r
\r
### Price Data\r
| Field | Type | Description |\r
|-------|------|-------------|\r
| totalTokenValue | string | Total trade value (USD) |\r
| alertPrice | string | Price at signal trigger |\r
| alertMarketCap | string | Market cap at signal trigger |\r
| currentPrice | string | Current price |\r
| currentMarketCap | string | Current market cap |\r
| highestPrice | string | Highest price after signal |\r
| highestPriceTime | number | Highest price timestamp (ms) |\r
\r
### Performance Data\r
| Field | Type | Description |\r
|-------|------|-------------|\r
| exitRate | number | Exit rate (%) |\r
| status | string | Signal status: `active`/`timeout`/`completed` |\r
| maxGain | string | Maximum gain (%) |\r
\r
## Token Tag Types\r
\r
### Social Events\r
| Tag | Description |\r
|-----|-------------|\r
| DEX Paid | DEX paid promotion |\r
\r
### Launch Platform\r
| Tag | Description |\r
|-----|-------------|\r
| Pumpfun | Pump.fun platform |\r
| Moonshot | Moonshot platform |\r
\r
### Sensitive Events\r
| Tag | Description |\r
|-----|-------------|\r
| Smart Money Add Holdings | Smart money accumulating |\r
| Smart Money Reduce Holdings | Smart money reducing |\r
| Whale Buy | Whale buying |\r
| Whale Sell | Whale selling |\r
\r
## Supported Chains\r
\r
| Chain Name | chainId |\r
|------------|---------|\r
| BSC | 56 |\r
| Solana | CT_501 |\r
\r
## Signal Status\r
\r
| Status | Description |\r
|--------|-------------|\r
| active | Active, signal still valid |\r
| timeout | Timed out, exceeded observation period |\r
| completed | Completed, reached target or stop loss |\r
\r
## Use Cases\r
\r
1. **Track Smart Money**: Monitor professional investor trading behavior\r
2. **Discover Opportunities**: Get early signals when smart money buys\r
3. **Risk Alert**: Receive alerts when smart money starts selling\r
4. **Performance Analysis**: Analyze historical signal performance and max gains\r
5. **Strategy Validation**: Evaluate signal quality via exitRate and maxGain\r
\r
## Example Requests\r
\r
### Get Smart Money Signals on Solana\r
```bash\r
curl --location 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money' \\r
--header 'Content-Type: application/json' \\r
--header 'Accept-Encoding: identity' \\r
--data '{"smartSignalType":"","page":1,"pageSize":50,"chainId":"CT_501"}'\r
```\r
\r
### Get Signals on BSC\r
```bash\r
curl --location 'https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money' \\r
--header 'Content-Type: application/json' \\r
--header 'Accept-Encoding: identity' \\r
--data '{"smartSignalType":"","page":1,"pageSize":50,"chainId":"56"}'\r
```\r
\r
## Notes\r
\r
1. Token icon URL requires full domain prefix: `https://bin.bnbstatic.com` + logoUrl path\r
2. Chain icon URL (chainLogoUrl) is already a full URL\r
3. All timestamps are in milliseconds\r
4. maxGain is a percentage string\r
5. Signals may timeout (status=timeout), focus on active signals\r
6. Higher smartMoneyCount may indicate higher signal reliability\r
7. exitRate shows smart money exit status, high exitRate may indicate expired signal\r
安全使用建议
This skill only documents how to call a public Binance Web3 endpoint and requires no credentials or installs. Before using it, verify you trust the endpoint URL (https://web3.binance.com/...), be aware that network requests will be made to that external service, and remember that signals are informational — trading carries financial risk. If you require offline/no-network operation or stricter privacy, do not enable the skill.
功能分析
Type: OpenClaw Skill Name: binance-trading-signal Version: 1.0.0 The skill bundle provides documentation and instructions for an AI agent to fetch on-chain trading signals from a legitimate Binance API endpoint (web3.binance.com). There is no evidence of malicious intent, data exfiltration, or prompt injection; the code and instructions are strictly limited to querying public market data for Solana and BSC chains.
能力评估
Purpose & Capability
The name/description match the runtime instructions: the SKILL.md documents a POST to a Binance Web3 endpoint to retrieve smart-money signals. It does not request unrelated credentials, binaries, or system access.
Instruction Scope
Instructions are narrowly focused on calling the specified public API (example curl provided) and parsing returned fields. The document does not instruct the agent to read local files, access unrelated environment variables, or exfiltrate data to third-party endpoints.
Install Mechanism
There is no install spec and no code files. No downloads, package installs, or archive extraction are present, so there is no install-time risk.
Credentials
The skill declares no required environment variables or credentials. The documented API endpoint appears public (no auth shown), so requested access is proportional to the stated functionality.
Persistence & Privilege
always is false and the skill is user-invocable; it does not request persistent system privileges or modify other skills or global config.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install binance-trading-signal
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /binance-trading-signal 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of the binance-trading-signal skill. - Retrieve and subscribe to on-chain Smart Money trading signals, including buy/sell actions, trigger price, current price, max gain, and exit rate. - Supports filtering signals by chain (BSC and Solana) and various token tags. - Provides detailed signal, token, and performance data for monitoring professional investor activities and discovering new trading opportunities.
元数据
Slug binance-trading-signal
版本 1.0.0
许可证
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Binance 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 插件,目前累计下载 462 次。

如何安装 Binance Trading Signal?

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

Binance Trading Signal 是免费的吗?

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

Binance Trading Signal 支持哪些平台?

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

谁开发了 Binance Trading Signal?

由 viktor-huang(@viktor-huang)开发并维护,当前版本 v1.0.0。

💬 留言讨论