Claude-skill-registry Bankr Dev - Market Research
This skill should be used when building market data displays, implementing price feeds, or adding technical analysis. Covers prices, market caps, technical analysis, sentiment, and trending tokens.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/bankr-market-research" ~/.claude/skills/majiayu000-claude-skill-registry-bankr-dev-market-research && rm -rf "$T"
manifest:
skills/data/bankr-market-research/SKILL.mdsource content
Market Research Capability
Query market data and analysis via natural language prompts.
What You Can Do
| Operation | Example Prompt |
|---|---|
| Token price | |
| Market data | |
| Market cap | |
| 24h volume | |
| Holder count | |
| Technical analysis | |
| RSI | |
| Price action | |
| Sentiment | |
| Social mentions | |
| Price chart | |
| Chart with period | |
| Trending tokens | |
| Top gainers | |
| Top losers | |
| Trending by chain | |
| Compare tokens | |
Prompt Patterns
What's the price of {token}? Show me {token} market data Do technical analysis on {token} What's the sentiment on {token}? Show {token} price chart [for {period}] What tokens are trending today? Compare {token1} vs {token2}
Chart periods: 1d, 7d, 30d, 90d, 1y
Supported chains: All chains (data aggregated from multiple sources)
Usage
import { execute } from "./bankr-client"; // Price check await execute("What's the price of ETH?"); // Technical analysis await execute("Do technical analysis on BTC"); // Sentiment await execute("What's the sentiment on SOL?"); // Trending await execute("What tokens are trending today?");
Related Skills
- Client setup and execute functionbankr-client-patterns
- API fundamentalsbankr-api-basics
- Execute trades based on researchbankr-token-trading