← Back to Skills Marketplace
viktor-huang

Binance Trading Signal

by viktor-huang · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
462
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install binance-trading-signal
Description
Subscribe and retrieve on-chain Smart Money signals. Monitor trading activities of smart money addresses, including buy/sell signals, trigger price, current...
README (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
Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install binance-trading-signal
  3. After installation, invoke the skill by name or use /binance-trading-signal
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug binance-trading-signal
Version 1.0.0
License
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

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.

💬 Comments