get_market_health
Assess cryptocurrency market conditions using a dual-score system that measures long-term trend strength and short-term momentum to determine market regime and sentiment for trading decisions.
Instructions
Get the market health summary — a dual-score system (0-100) measuring long-term trend strength and short-term momentum. Returns total_score, long_term_score, short_term_score, sentiment (bullish/bearish/neutral), and market state (bear_market, early_recovery, early_bull, confirmed_bull, topping_out). Use this to quickly assess the overall market regime before making trading decisions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/market-health.ts:15-17 (handler)The handler for the get_market_health tool, which calls the market-health summary API.
export async function handler(_args: z.infer<typeof schema>) { return apiGet("/api/v1/market-health/summary"); } - src/tools/market-health.ts:13-13 (schema)The schema for get_market_health, which accepts no arguments.
export const schema = z.object({}); - src/index.ts:35-35 (registration)Registration of the marketHealth tool in the server tools list.
marketHealth,