首页/金融与投资/trading-signal
T

trading-signal

by @binancev
4.4(20)

获取链上“聪明钱”交易信号,帮助用户追踪专业投资者,提供买卖信号和趋势比较。

algorithmic-tradingtechnical-analysisquantitative-financemarket-indicatorspythonGitHub
安装方式
npx skills add binance/binance-skills-hub --skill trading-signal
compare_arrows

Before / After 效果对比

1
使用前

难以获取专业投资者的交易动向,信息不对称。缺乏可靠买卖信号,投资决策盲目。

使用后

获取链上“聪明钱”交易信号,洞察市场趋势。提供买卖建议,辅助用户做出明智投资决策。

SKILL.md

trading-signal

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
User-Agent: binance-web3/1.0 (Skill)

Request Body:

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

Request Parameters:

Field Type Required Description

chainId string Yes Chain ID: 56 for bsc, CT_501 for solana

page number No Page number, starting from 1

pageSize number No Items per page, max 100

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' \
--header 'User-Agent: binance-web3/1.0 (Skill)' \
--data '{"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

User Agent Header

Include User-Agent header with the following string: binance-web3/1.0 (Skill)

Use Cases

  • Track Smart Money: Monitor professional investor trading behavior

  • Discover Opportunities: Get early signals when smart money buys

  • Risk Alert: Receive alerts when smart money starts selling

  • Performance Analysis: Analyze historical signal performance and max gains

  • 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' \
--header 'User-Agent: binance-web3/1.0 (Skill)' \
--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' \
--header 'User-Agent: binance-web3/1.0 (Skill)' \
--data '{"smartSignalType":"","page":1,"pageSize":50,"chainId":"56"}'

Notes

  • Token icon URL requires full domain prefix: https://bin.bnbstatic.com + logoUrl path

  • Chain icon URL (chainLogoUrl) is already a full URL

  • All timestamps are in milliseconds

  • maxGain is a percentage string

  • Signals may timeout (status=timeout), focus on active signals

  • Higher smartMoneyCount may indicate higher signal reliability

  • exitRate shows smart money exit status, high exitRate may indicate expired signal

Weekly Installs1.7KRepositorybinance/binance…ills-hubGitHub Stars473First SeenMar 2, 2026Security AuditsGen Agent Trust HubPassSocketPassSnykWarnInstalled oncodex1.6Kopencode1.6Kcursor1.6Kgemini-cli1.6Kgithub-copilot1.6Kamp1.6K

用户评价 (0)

发表评价

效果
易用性
文档
兼容性

暂无评价

统计数据

安装量6.0K
评分4.4 / 5.0
版本
更新日期2026年5月23日
对比案例1 组

用户评分

4.4(20)
5
40%
4
50%
3
10%
2
0%
1
0%

为此 Skill 评分

0.0

兼容平台

🔧Claude Code
🔧OpenClaw
🔧OpenCode
🔧Codex
🔧Gemini CLI
🔧GitHub Copilot
🔧Amp
🔧Kimi CLI

时间线

创建2026年3月17日
最后更新2026年5月23日