get_btc_cycle
Analyze Bitcoin's market cycle position using eight key indicators including MVRV Z-Score, NUPL, and Puell Multiple to inform long-term positioning and trading strategies.
Instructions
Get all 8 BTC cycle indicators that help determine where Bitcoin is in its market cycle. Includes MVRV Z-Score, NUPL, Puell Multiple, Pi Cycle Top, 200-Week MA Multiple, Reserve Risk, RHODL Ratio, and Thermocap Multiple. Each indicator includes a score (0-100), interpretation, and zone classification (accumulation, neutral, caution, danger). Useful for long-term positioning and cycle-aware trading strategies.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/btc-cycle.ts:15-17 (handler)The handler function that fetches Bitcoin cycle indicators.
export async function handler(_args: z.infer<typeof schema>) { return apiGet("/api/v1/market-intelligence/btc/cycle-indicators"); } - src/tools/btc-cycle.ts:13-13 (schema)The schema definition for the get_btc_cycle tool.
export const schema = z.object({}); - src/tools/btc-cycle.ts:4-4 (registration)Registration/name definition for the get_btc_cycle tool.
export const name = "get_btc_cycle";