Binance Trading Signal
/install binance-trading-signal
\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
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install binance-trading-signal - After installation, invoke the skill by name or use
/binance-trading-signal - Provide required inputs per the skill's parameter spec and get structured output
What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 462 downloads so far.
How do I install Binance Trading Signal?
Run "/install binance-trading-signal" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Binance Trading Signal free?
Yes, Binance Trading Signal is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Binance Trading Signal support?
Binance Trading Signal is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Binance Trading Signal?
It is built and maintained by viktor-huang (@viktor-huang); the current version is v1.0.0.