gate-info-marketoverview
The crypto market "dashboard" Skill. The user asks about overall market conditions in a single sentence; the system calls 5 MCP Tools in parallel to fetch market-wide data + sector leaderboards + DeFi overview + recent events + macro summary, then the LLM aggregates into a market-briefing-level structured report.
Trigger Scenarios: User asks about overall market conditions — not about a specific coin.
Routing Rules
| User Intent |
Keywords |
Action |
| Market overview |
"how's the market" "market overview" "what's happening in crypto" "are we up or down today" |
Execute this Skill's full workflow |
| Single coin analysis |
"how is BTC" "analyze ETH" |
Route to gate-info-coinanalysis |
| News only |
"what's happening" |
Route to gate-news-briefing |
| DeFi deep-dive |
"which DeFi protocol is best" "TVL rankings" |
Route to gate-info-defianalysis |
| Macro deep-dive |
"how's the jobs report" "any economic data today" |
Route to gate-info-macroimpact |
Execution Workflow
Step 1: Intent Recognition
Confirm the user is asking about overall market conditions (not a single coin). Optionally extract:
time_context: e.g., "today", "this week", "recently" (affects news/event time range)
Step 2: Call 5 MCP Tools in Parallel
| Step |
MCP Tool |
Parameters |
Retrieved Data |
Parallel |
| 1a |
info_marketsnapshot_get_market_overview |
(none) |
Full market: total market cap, 24h volume, BTC dominance, Fear & Greed Index, gainer/loser ratio |
Yes |
| 1b |
info_coin_get_coin_rankings |
ranking_type="gainers", time_range="24h", limit=5 |
Top 5 gainers |
Yes |
| 1c |
info_platformmetrics_get_defi_overview |
category="all" |
DeFi total TVL, DEX 24h volume, stablecoin total market cap |
Yes |
| 1d |
news_events_get_latest_events |
time_range="24h", limit=5 |
Major events in the past 24h |
Yes |
| 1e |
info_macro_get_macro_summary |
(none) |
Macro snapshot (DXY, rates, CPI trend) |
Yes |
All 5 Tools are called in parallel with no dependencies. If a tool is not available, omit that call and mark the corresponding report section as "No data". If info_marketsnapshot_get_market_overview is not available, use info_marketsnapshot_get_market_snapshot for BTC/ETH as fallback.
Step 2b: Optional Supplementary Calls
| Condition |
Supplementary Tool |
Parameters |
Purpose |
| User asks about "this week" or needs trend context |
info_coin_get_coin_rankings |
ranking_type="losers", time_range="24h", limit=5 |
Add top losers |
| User is interested in sector rotation |
info_coin_get_coin_rankings |
ranking_type="hot", limit=10 |
Trending coins |
Step 3: LLM Aggregation
Report Template
## Crypto Market Overview
> Data as of: {timestamp}
### 1. Market Summary
| Metric | Current Value | 24h Change |
|--------|--------------|------------|
| Total Market Cap | ${total_market_cap} | {change}% |
| 24h Volume | ${total_volume_24h} | {change}% |
| BTC Dominance | {btc_dominance}% | {change}pp |
| Fear & Greed Index | {fear_greed_index} | {Extreme Fear/Fear/Neutral/Greed/Extreme Greed} |
| Gainer/Loser Ratio | {gainers}/{losers} | {Bulls/Bears/Balanced} |
**Market Status**: {One-sentence description of the current market state based on the above metrics}
### 2. Sectors & Leaderboard
**24h Top Gainers**
| Rank | Coin | Price | 24h Change |
|------|------|-------|------------|
| 1 | {symbol} | ${price} | +{change}% |
| 2 | ... | ... | ... |
**24h Top Losers** (if data available)
| Rank | Coin | Price | 24h Change |
|------|------|-------|------------|
| 1 | {symbol} | ${price} | {change}% |
| 2 | ... | ... | ... |
{If the leaderboards show sector patterns (e.g., L2s rallying, Memes dumping), flag sector rotation}
### 3. DeFi Overview
| Metric | Value | Change |
|--------|-------|--------|
| DeFi Total TVL | ${defi_tvl} | {change}% |
| DEX 24h Volume | ${dex_volume} | {change}% |
| Stablecoin Total Market Cap | ${stablecoin_cap} | {change}% |
### 4. Recent Major Events
1. 🔴/🟡/🟢 [{event_title}] — {event_summary} ({time})
2. ...
> 🔴 = High impact, 🟡 = Medium impact, 🟢 = Low impact
### 5. Macro Environment
| Metric | Value | Trend |
|--------|-------|-------|
| US Dollar Index (DXY) | {dxy} | {Rising/Falling/Sideways} |
| 10Y Treasury Yield | {yield_10y}% | {Rising/Falling} |
| Fed Funds Rate | {fed_rate}% | {Hiking/Cutting/Paused} |
{If there are upcoming macro events (NFP, CPI, FOMC), briefly mention potential market impact}
### 6. Overall Assessment
{LLM generates a 3-5 sentence assessment:}
- Current market phase (bull / bear / sideways / recovery)
- Primary drivers
- Key risks or opportunities to watch
> The above analysis is data-driven and does not constitute investment advice.
Decision Logic
| Condition |
Label/Assessment |
| fear_greed > 75 |
"Extreme Greed — exercise caution at highs" |
| fear_greed < 25 |
"Extreme Fear — potential opportunity amid panic" |
| BTC dominance > 55% and altcoins broadly declining |
"Capital rotating back to BTC — altcoins under pressure" |
| BTC dominance declining + altcoins broadly rising |
"Potential altcoin season" |
| Gainer/Loser ratio > 3:1 |
"Broad-based rally — bulls in control" |
| Gainer/Loser ratio < 1:3 |
"Broad-based decline — bears in control" |
| DeFi TVL 7d change > +10% |
"Significant capital inflow into DeFi" |
| Stablecoin market cap rising |
"Off-exchange capital flowing in — bullish signal" |
| Any Tool returns empty/error |
Skip that section; note "Data unavailable" |
Error Handling
| Error Type |
Handling |
| get_market_overview or core snapshot fails |
Return degraded version showing only available sections; or use get_market_snapshot for BTC/ETH as fallback |
| Macro data unavailable |
Skip "Macro Environment" section; note "Macro data temporarily unavailable" |
| Event data unavailable |
Skip "Recent Major Events" section |
| All Tools fail |
Return error message; suggest the user try again later |
Cross-Skill Routing
| User Follow-up Intent |
Route To |
| "How is BTC?" / clicks on a specific coin |
gate-info-coinanalysis |
| "Why did XX pump?" |
gate-news-eventexplain |
| "Any recent news?" |
gate-news-briefing |
| "DeFi details" |
gate-info-defianalysis |
| "Macro data impact" |
gate-info-macroimpact |
| "Give me a BTC technical analysis" |
gate-info-trendanalysis |
Safety Rules
- No investment advice: Market assessments are data-driven; must include a "not investment advice" disclaimer
- No trend predictions: Do not output "tomorrow will go up/down" style predictions
- Data transparency: Label data source and update time
- Flag missing data: When any section has no data, explicitly state it — never fabricate data
- Avoid emotional language: Use objective, neutral language to describe market conditions
1---2name: gate-info-marketoverview-23description: Market overview. Use this skill whenever the user asks about overall market. Trigger phrases include: how is the market, market overview, what is happening in crypto. MCP tools: info_marketsnapshot_get_market_overview, info_coin_get_coin_rankings, info_platformmetrics_get_defi_overview, news_events_get_latest_events, info_macro_get_macro_summary.4---56# gate-info-marketoverview78> The crypto market "dashboard" Skill. The user asks about overall market conditions in a single sentence; the system calls 5 MCP Tools in parallel to fetch market-wide data + sector leaderboards + DeFi overview + recent events + macro summary, then the LLM aggregates into a market-briefing-level structured report.910**Trigger Scenarios**: User asks about overall market conditions — not about a specific coin.1112---1314## Routing Rules1516| User Intent | Keywords | Action |17|-------------|----------|--------|18| Market overview | "how's the market" "market overview" "what's happening in crypto" "are we up or down today" | Execute this Skill's full workflow |19| Single coin analysis | "how is BTC" "analyze ETH" | Route to `gate-info-coinanalysis` |20| News only | "what's happening" | Route to `gate-news-briefing` |21| DeFi deep-dive | "which DeFi protocol is best" "TVL rankings" | Route to `gate-info-defianalysis` |22| Macro deep-dive | "how's the jobs report" "any economic data today" | Route to `gate-info-macroimpact` |2324---2526## Execution Workflow2728### Step 1: Intent Recognition2930Confirm the user is asking about overall market conditions (not a single coin). Optionally extract:31- `time_context`: e.g., "today", "this week", "recently" (affects news/event time range)3233### Step 2: Call 5 MCP Tools in Parallel3435| Step | MCP Tool | Parameters | Retrieved Data | Parallel |36|------|----------|------------|----------------|----------|37| 1a | `info_marketsnapshot_get_market_overview` | (none) | Full market: total market cap, 24h volume, BTC dominance, Fear & Greed Index, gainer/loser ratio | Yes |38| 1b | `info_coin_get_coin_rankings` | `ranking_type="gainers", time_range="24h", limit=5` | Top 5 gainers | Yes |39| 1c | `info_platformmetrics_get_defi_overview` | `category="all"` | DeFi total TVL, DEX 24h volume, stablecoin total market cap | Yes |40| 1d | `news_events_get_latest_events` | `time_range="24h", limit=5` | Major events in the past 24h | Yes |41| 1e | `info_macro_get_macro_summary` | (none) | Macro snapshot (DXY, rates, CPI trend) | Yes |4243> All 5 Tools are called in parallel with no dependencies. If a tool is not available, omit that call and mark the corresponding report section as "No data". If `info_marketsnapshot_get_market_overview` is not available, use `info_marketsnapshot_get_market_snapshot` for BTC/ETH as fallback.4445### Step 2b: Optional Supplementary Calls4647| Condition | Supplementary Tool | Parameters | Purpose |48|-----------|--------------------|------------|---------|49| User asks about "this week" or needs trend context | `info_coin_get_coin_rankings` | `ranking_type="losers", time_range="24h", limit=5` | Add top losers |50| User is interested in sector rotation | `info_coin_get_coin_rankings` | `ranking_type="hot", limit=10` | Trending coins |5152### Step 3: LLM Aggregation5354---5556## Report Template5758```markdown59## Crypto Market Overview6061> Data as of: {timestamp}6263### 1. Market Summary6465| Metric | Current Value | 24h Change |66|--------|--------------|------------|67| Total Market Cap | ${total_market_cap} | {change}% |68| 24h Volume | ${total_volume_24h} | {change}% |69| BTC Dominance | {btc_dominance}% | {change}pp |70| Fear & Greed Index | {fear_greed_index} | {Extreme Fear/Fear/Neutral/Greed/Extreme Greed} |71| Gainer/Loser Ratio | {gainers}/{losers} | {Bulls/Bears/Balanced} |7273**Market Status**: {One-sentence description of the current market state based on the above metrics}7475### 2. Sectors & Leaderboard7677**24h Top Gainers**7879| Rank | Coin | Price | 24h Change |80|------|------|-------|------------|81| 1 | {symbol} | ${price} | +{change}% |82| 2 | ... | ... | ... |8384**24h Top Losers** (if data available)8586| Rank | Coin | Price | 24h Change |87|------|------|-------|------------|88| 1 | {symbol} | ${price} | {change}% |89| 2 | ... | ... | ... |9091{If the leaderboards show sector patterns (e.g., L2s rallying, Memes dumping), flag sector rotation}9293### 3. DeFi Overview9495| Metric | Value | Change |96|--------|-------|--------|97| DeFi Total TVL | ${defi_tvl} | {change}% |98| DEX 24h Volume | ${dex_volume} | {change}% |99| Stablecoin Total Market Cap | ${stablecoin_cap} | {change}% |100101### 4. Recent Major Events1021031. 🔴/🟡/🟢 [{event_title}] — {event_summary} ({time})1042. ...105106> 🔴 = High impact, 🟡 = Medium impact, 🟢 = Low impact107108### 5. Macro Environment109110| Metric | Value | Trend |111|--------|-------|-------|112| US Dollar Index (DXY) | {dxy} | {Rising/Falling/Sideways} |113| 10Y Treasury Yield | {yield_10y}% | {Rising/Falling} |114| Fed Funds Rate | {fed_rate}% | {Hiking/Cutting/Paused} |115116{If there are upcoming macro events (NFP, CPI, FOMC), briefly mention potential market impact}117118### 6. Overall Assessment119120{LLM generates a 3-5 sentence assessment:}121- Current market phase (bull / bear / sideways / recovery)122- Primary drivers123- Key risks or opportunities to watch124125> The above analysis is data-driven and does not constitute investment advice.126```127128---129130## Decision Logic131132| Condition | Label/Assessment |133|-----------|-----------------|134| fear_greed > 75 | "Extreme Greed — exercise caution at highs" |135| fear_greed < 25 | "Extreme Fear — potential opportunity amid panic" |136| BTC dominance > 55% and altcoins broadly declining | "Capital rotating back to BTC — altcoins under pressure" |137| BTC dominance declining + altcoins broadly rising | "Potential altcoin season" |138| Gainer/Loser ratio > 3:1 | "Broad-based rally — bulls in control" |139| Gainer/Loser ratio < 1:3 | "Broad-based decline — bears in control" |140| DeFi TVL 7d change > +10% | "Significant capital inflow into DeFi" |141| Stablecoin market cap rising | "Off-exchange capital flowing in — bullish signal" |142| Any Tool returns empty/error | Skip that section; note "Data unavailable" |143144---145146## Error Handling147148| Error Type | Handling |149|------------|----------|150| get_market_overview or core snapshot fails | Return degraded version showing only available sections; or use get_market_snapshot for BTC/ETH as fallback |151| Macro data unavailable | Skip "Macro Environment" section; note "Macro data temporarily unavailable" |152| Event data unavailable | Skip "Recent Major Events" section |153| All Tools fail | Return error message; suggest the user try again later |154155---156157## Cross-Skill Routing158159| User Follow-up Intent | Route To |160|-----------------------|----------|161| "How is BTC?" / clicks on a specific coin | `gate-info-coinanalysis` |162| "Why did XX pump?" | `gate-news-eventexplain` |163| "Any recent news?" | `gate-news-briefing` |164| "DeFi details" | `gate-info-defianalysis` |165| "Macro data impact" | `gate-info-macroimpact` |166| "Give me a BTC technical analysis" | `gate-info-trendanalysis` |167168---169170## Safety Rules1711721. **No investment advice**: Market assessments are data-driven; must include a "not investment advice" disclaimer1732. **No trend predictions**: Do not output "tomorrow will go up/down" style predictions1743. **Data transparency**: Label data source and update time1754. **Flag missing data**: When any section has no data, explicitly state it — never fabricate data1765. **Avoid emotional language**: Use objective, neutral language to describe market conditions