Skip to content
Finance
Skill

/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

From plugin
binance-skills-hub
95218 skills
Install
$ npx -y skills add binance/binance-skills-hub --skill binance-trading-signal --agent claude-code

How 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.md
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

Read more
Ships withbinance-skills-hub

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.

Get the whole plugin

Other skills on binance-skills-hub.