/binance-trading-signal
On-chain trading signals and custom signal strategy management on Binance Web3. Three signal sources: smart money (wallet buy/sell events), platform strategies, and user-created strategies (meme / fomo). Four scenario domains: (A) Reports — daily report, monthly backtest review
$ npx -y skills add binance/binance-skills-hub --skill binance-trading-signal --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/binance-trading-signal
Context preview
The summary Claude sees to decide when to auto-load this skill.
On-chain trading signals and custom signal strategy management on Binance Web3. Three signal sources: smart money (wallet buy/sell events), platform strategies, and user-created strategies (meme / fomo). Four scenario domains: (A) Reports — daily report, monthly backtest review
SKILL.md
binance-trading-signal.SKILL.mdname: binance-trading-signal
description: |
On-chain trading signals and custom signal strategy management on Binance Web3. Three signal
sources: smart money (wallet buy/sell events), platform strategies, and user-created strategies
(meme / fomo). Four scenario domains: (A) Reports — daily report, monthly backtest
review (BSC vs Solana, protocol comparison); (B) Signal discovery — feed, sort by maxGain or
multi-strategy hit, token buyability ("can I still buy"); (C) Analysis — backtest interpretation,
strategy comparison by golden/silver/bronze rate, indicator impact (KOL holdings, protocol,
liquidity); (D) Management — create/update/delete strategies, enable/disable strategies,
trigger/schedule backtests, query credits, auto-scan, copy strategies from the strategy hall.
Trigger whenever the user mentions trading signals, smart money, custom signal strategies,
backtesting, strategy management, daily or monthly reports, token buyability, or indicator
impact analysis — even if they don't say "signal" or "strategy".
metadata:
author: binance-web3-team
version: "3.3"
openclaw:
requires:
bins:
- baw
install:
- kind: node
package: '@binance/agentic-wallet@>=1.6.2'
bins: [baw]
label: Install Binance Agentic Wallet CLI (npm)Binance Trading Signal Skill
On-chain trading signals and custom signal strategy management. Two modes:
1. **Smart Money signals** — direct API call, per-trade buy/sell events from tracked wallets 2. **Custom Signal strategies** — via `baw signal` CLI, user-created strategies with backtesting
Prerequisites
This skill requires the `baw` CLI (`@binance/agentic-wallet` npm package). If `baw` is not found:
npm install -g @binance/agentic-wallet
Verify: `baw --version` should print `1.6.2` or higher. If installation fails or the user doesn't have Node.js, inform them that Node.js >= 18 is required.
When to Use
| User intent | Mode | Command | |-------------|------|---------| | Smart money buy/sell signals with gain + exit-rate data | Smart Money | `smart-money` | | Latest signal feed (all sources) | Custom Signal | `baw signal list` | | Filter signals by source (user/meme/smart-money) | Custom Signal | `baw signal list --source` | | Token status from signals ("can I still buy $X?") | Custom Signal | `baw signal list` + `query-token-info` | | Create a strategy | Custom Signal | `baw signal strategy create` | | Update/delete a strategy | Custom Signal | `baw signal strategy update/delete` | | Enable/disable a strategy | Custom Signal | `baw signal strategy follow/unfollow` | | List all your strategies (owned) | Custom Signal | `baw signal strategy list` | | List strategies by type (meme/fomo) | Custom Signal | `baw signal strategy list --type` | | List enabled strategies | Custom Signal | `baw signal strategy list-followed` | | Backtest list / detail / retry | Custom Signal | `baw signal backtest ...` | | Set backtest schedule | Custom Signal | `baw signal backtest schedule` | || Explore platform strategies | Custom Signal | `baw signal explore` | | Query backtest credits | Custom Signal | `baw signal credits` | | Daily signal report | Custom Signal | `baw signal list --time-range 24h` + `baw signal backtest list` |
Supported Chains
| Chain | chainId | |-------|---------| | BSC | `56` | | Solana | `CT_501` | | Base | `8453` | | ETH | `1` |
**Chain isolation**: Strategies are isolated by chain — cross-chain is not possible. Daily and monthly reports fetch BSC + Solana concurrently by default for comparison.
Mode 1: Smart Money Signals
Direct HTTP API call — does not require `baw` CLI.
node <skill-dir>/scripts/cli.mjs smart-money '{"chainId":"CT_501","page":1,"pageSize":50}'Returns per-trade signals: direction (buy/sell), trigger price, current price, max gain, exit rate, smart money count, token tags.
**Response format**: `{ code: "000000", data: [...] }` — note this uses `code` (not `success`), and `code: "000000"` means success. This is a direct API call, not a `baw` CLI command.
**Quality indicators**: `smartMoneyCount ≥ 5` = stronger conviction · `exitRate ≥ 70` = smart money exiting, opportunity may have passed · `status: "timeout"` = stale.
**Icon URL prefix**: `logoUrl` is relative — prepend `https://bin.bnbstatic.com`. `chainLogoUrl` is already a full URL. Timestamps are ms; `maxGain` is a decimal fraction (e.g. `"0.25"` = 25%).
Full field reference: [`references/cli.md`](references/cli.md)
Mode 2: Custom Signal Strategies
All commands go through `baw signal` CLI. Always pass `--json` to get structured output for parsing.
Signal Feed
# All sources (concurrent fetch, merged)
baw signal list -c <chainId> --json
# Filter by source
baw signal list -c <chainId> --source user --json # my strategies only
baw signal list -c <chainId> --source meme --json # platform strategies only
baw signal list -c <chainId> --source smart-money --json # smart money signals only
# Filter by strategy ID (user strategies only; meme/smart-money are system-level)
baw signal list -c <chainId> --strategy-id <strategyId> --json
# Filter by strategy type (my strategies only: meme-rush | fomo-call)
baw signal list -c <chainId> --strategy-type fomo-call --json
# Sort by max gain, time range filter
baw signal list -c <chainId> --sort-by maxGain --time-range 24h --json
**`--strategy-id`**: Filters signals by strategy ID. Only `USER_STRATEGY` signals support this filter (my strategies). `MEME_OFFICIAL` and `SMART_MONEY` are system-level signals not tied to a user strategy, so the filter does not apply to them. Use this when a user asks "which signals did my strategy trigger recently" — first find `strategyId` via `baw signal backtest list --all`, then filter signals.
**`--strategy-type`**: Filters `USER_STRATEGY` signals by type (`meme-rush` / `fomo-call`). Only applies to `USER_STRATEGY` source — `MEME_OFFICIAL` and `SMART_MO
Read more
name: binance-trading-signal
description: |
On-chain trading signals and custom signal strategy management on Binance Web3. Three signal
sources: smart money (wallet buy/sell events), platform strategies, and user-created strategies
(meme / fomo). Four scenario domains: (A) Reports — daily report, monthly backtest
review (BSC vs Solana, protocol comparison); (B) Signal discovery — feed, sort by maxGain or
multi-strategy hit, token buyability ("can I still buy"); (C) Analysis — backtest interpretation,
strategy comparison by golden/silver/bronze rate, indicator impact (KOL holdings, protocol,
liquidity); (D) Management — create/update/delete strategies, enable/disable strategies,
trigger/schedule backtests, query credits, auto-scan, copy strategies from the strategy hall.
Trigger whenever the user mentions trading signals, smart money, custom signal strategies,
backtesting, strategy management, daily or monthly reports, token buyability, or indicator
impact analysis — even if they don't say "signal" or "strategy".
metadata:
author: binance-web3-team
version: "3.3"
openclaw:
requires:
bins:
- baw
install:
- kind: node
package: '@binance/agentic-wallet@>=1.6.2'
bins: [baw]
label: Install Binance Agentic Wallet CLI (npm)Binance Trading Signal Skill
On-chain trading signals and custom signal strategy management. Two modes:
1. **Smart Money signals** — direct API call, per-trade buy/sell events from tracked wallets 2. **Custom Signal strategies** — via `baw signal` CLI, user-created strategies with backtesting
Prerequisites
This skill requires the `baw` CLI (`@binance/agentic-wallet` npm package). If `baw` is not found:
npm install -g @binance/agentic-wallet
Verify: `baw --version` should print `1.6.2` or higher. If installation fails or the user doesn't have Node.js, inform them that Node.js >= 18 is required.
When to Use
| User intent | Mode | Command | |-------------|------|---------| | Smart money buy/sell signals with gain + exit-rate data | Smart Money | `smart-money` | | Latest signal feed (all sources) | Custom Signal | `baw signal list` | | Filter signals by source (user/meme/smart-money) | Custom Signal | `baw signal list --source` | | Token status from signals ("can I still buy $X?") | Custom Signal | `baw signal list` + `query-token-info` | | Create a strategy | Custom Signal | `baw signal strategy create` | | Update/delete a strategy | Custom Signal | `baw signal strategy update/delete` | | Enable/disable a strategy | Custom Signal | `baw signal strategy follow/unfollow` | | List all your strategies (owned) | Custom Signal | `baw signal strategy list` | | List strategies by type (meme/fomo) | Custom Signal | `baw signal strategy list --type` | | List enabled strategies | Custom Signal | `baw signal strategy list-followed` | | Backtest list / detail / retry | Custom Signal | `baw signal backtest ...` | | Set backtest schedule | Custom Signal | `baw signal backtest schedule` | || Explore platform strategies | Custom Signal | `baw signal explore` | | Query backtest credits | Custom Signal | `baw signal credits` | | Daily signal report | Custom Signal | `baw signal list --time-range 24h` + `baw signal backtest list` |
Supported Chains
| Chain | chainId | |-------|---------| | BSC | `56` | | Solana | `CT_501` | | Base | `8453` | | ETH | `1` |
**Chain isolation**: Strategies are isolated by chain — cross-chain is not possible. Daily and monthly reports fetch BSC + Solana concurrently by default for comparison.
Mode 1: Smart Money Signals
Direct HTTP API call — does not require `baw` CLI.
node <skill-dir>/scripts/cli.mjs smart-money '{"chainId":"CT_501","page":1,"pageSize":50}'Returns per-trade signals: direction (buy/sell), trigger price, current price, max gain, exit rate, smart money count, token tags.
**Response format**: `{ code: "000000", data: [...] }` — note this uses `code` (not `success`), and `code: "000000"` means success. This is a direct API call, not a `baw` CLI command.
**Quality indicators**: `smartMoneyCount ≥ 5` = stronger conviction · `exitRate ≥ 70` = smart money exiting, opportunity may have passed · `status: "timeout"` = stale.
**Icon URL prefix**: `logoUrl` is relative — prepend `https://bin.bnbstatic.com`. `chainLogoUrl` is already a full URL. Timestamps are ms; `maxGain` is a decimal fraction (e.g. `"0.25"` = 25%).
Full field reference: [`references/cli.md`](references/cli.md)
Mode 2: Custom Signal Strategies
All commands go through `baw signal` CLI. Always pass `--json` to get structured output for parsing.
Signal Feed
# All sources (concurrent fetch, merged) baw signal list -c <chainId> --json # Filter by source baw signal list -c <chainId> --source user --json # my strategies only baw signal list -c <chainId> --source meme --json # platform strategies only baw signal list -c <chainId> --source smart-money --json # smart money signals only # Filter by strategy ID (user strategies only; meme/smart-money are system-level) baw signal list -c <chainId> --strategy-id <strategyId> --json # Filter by strategy type (my strategies only: meme-rush | fomo-call) baw signal list -c <chainId> --strategy-type fomo-call --json # Sort by max gain, time range filter baw signal list -c <chainId> --sort-by maxGain --time-range 24h --json
**`--strategy-id`**: Filters signals by strategy ID. Only `USER_STRATEGY` signals support this filter (my strategies). `MEME_OFFICIAL` and `SMART_MONEY` are system-level signals not tied to a user strategy, so the filter does not apply to them. Use this when a user asks "which signals did my strategy trigger recently" — first find `strategyId` via `baw signal backtest list --all`, then filter signals.
**`--strategy-type`**: Filters `USER_STRATEGY` signals by type (`meme-rush` / `fomo-call`). Only applies to `USER_STRATEGY` source — `MEME_OFFICIAL` and `SMART_MO
Binance Skills Hub is an open skills marketplace that gives AI agents native access to crypto: both centralized and decentralized. Search tokens, execute trades, track wallets, monitor signals, and interact with DeFi protocols, all through natural language.
Repo: binance/binance-skills-hub
Other skills on binance-skills-hub.
- /binance-agentic-wallet
Use when the user mentions wallet connect/sign in/sign out, check balance, send/transfer tokens, swap/buy/sell tokens, DEX trade, limit/market order, cancel order, get a quote, transaction history, wallet settings, daily limit, slippage, MEV protection, supported chains,
Open skill - /binance-leaderboard
On-chain wallet leaderboard and Gem Hunter analysis on Binance Web3. Query top trader rankings by PnL, win rate, volume, trade count, or token count across BSC/Solana/Base/ETH. Analyze individual wallet addresses with a 6-dimension scoring model (winrate/stability/drawdown/
Open skill - /binance-sports-ai-analyzer
Use when users ask for World Cup or 世界杯 AI match predictions, WC assistant probabilities, World Cup news insights, master analysis, recomputing football match win rates with custom correction signals, or trading a related prediction market after reviewing the AI analysis.
Open skill - /binance-tokenized-securities-info
Query Ondo tokenized US stock data on Binance Web3. Covers: supported stock token list, RWA metadata (company info, attestation reports), market and per-asset trading status (with corporate action codes for earnings, dividends, splits), real-time on-chain data (token price,
Open skill - /binance-wallet-tracker
Wallet tracking and monitoring on Binance Web3. Monitor token/trade activity for private groups or public Smart Money/KOL data. Four domains: (A) Discovery — consensus, pioneer, leaderboard diff, token buyer lookup, time-window summaries, similar wallets; (B) Evaluation — token
Open skill - /crypto-market-rank
Crypto market leaderboards — ranked aggregate feeds across the whole market: social-hype/sentiment rank, trending / top-search / Binance Alpha / tokenized-stocks rank, smart-money net-inflow rank (which tokens received the most inflow), top meme tokens by breakout score on Pulse
Open skill

