AgentSkillsCN

Bankr Dev - Market Research

当用户需要构建市场数据展示、实现价格行情,或添加技术分析功能时,应使用此技能。涵盖价格、市值、技术分析、情绪分析,以及热门代币趋势。

SKILL.md
--- frontmatter
name: Bankr Dev - Market Research
description: 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.
version: 1.0.0

Market Research Capability

Query market data and analysis via natural language prompts.

What You Can Do

OperationExample Prompt
Token priceWhat's the price of ETH?
Market dataShow me BTC market data
Market capWhat's the market cap of SOL?
24h volumeWhat's the 24h volume for ETH?
Holder countHow many holders does BNKR have?
Technical analysisDo technical analysis on BTC
RSIWhat's the RSI for ETH?
Price actionAnalyze SOL price action
SentimentWhat's the sentiment on ETH?
Social mentionsCheck social mentions for DOGE
Price chartShow ETH price chart
Chart with periodShow BTC price chart for 30d
Trending tokensWhat tokens are trending today?
Top gainersShow top gainers today
Top losersShow top losers today
Trending by chainWhat's trending on Base?
Compare tokensCompare ETH vs SOL

Prompt Patterns

code
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

typescript
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

  • bankr-client-patterns - Client setup and execute function
  • bankr-api-basics - API fundamentals
  • bankr-token-trading - Execute trades based on research