get_options
Retrieve Bitcoin options market data to analyze open interest, volume, put/call ratios, and max pain price for informed trading decisions.
Instructions
Get BTC options market data including total open interest, volume, put/call ratio, and max pain price. A high put/call ratio (>1) suggests bearish hedging; low (<0.7) suggests bullish positioning. Max pain is the strike price at which most options expire worthless — price tends to gravitate toward max pain near expiry dates.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/options.ts:14-16 (handler)The handler function for the get_options tool, which performs an API GET request to retrieve options market data.
export async function handler(_args: z.infer<typeof schema>) { return apiGet("/api/v1/market-intelligence/options"); } - src/tools/options.ts:12-12 (schema)The schema definition for the get_options tool, which accepts no arguments.
export const schema = z.object({}); - src/index.ts:28-46 (registration)The registration of the options tool within the main server entry point.
import * as options from "./tools/options.js"; // Prompts import * as marketBriefing from "./prompts/market-briefing.js"; const tools = [ daily, marketHealth, fearGreed, fundingRates, liquidations, openInterest, btcCycle, coinProfile, searchCoins, macro, stablecoinFlows, etfFlows, options,