Skip to main content
Glama
usamahassan965

Futures MCP

Range chart

get_range_chart
Read-onlyIdempotent

Generate a TradingView chart showing a detected price range with support/resistance levels, numbered rejections, and a report. Use it to see range setups on futures symbols.

Instructions

The TradingView chart for the window with the detected range drawn on it (support/resistance box, numbered rejections, caption), plus the report. Takes 30-50 seconds.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
daysNoTrading days to scan
modeNoChart to capture on: 'anonymous' (TradingView's public chart) or 'session' (the user's saved layout, e.g. when they say 'on my layout'). Omit for the server default.
symbolNoFutures symbol, e.g. 'GC1!' (aliases: GC, GOLD)GC1!
end_dateNoLast trading day of the window, YYYY-MM-DD. Omit for the current one.
timeframeNoRange detection is calibrated on H1H1

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeYesanonymous (default chart) or session (your saved layout)
pathYes
drawnYesFalse when chart calibration failed and nothing was drawn
reportYes
warningsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint, and the description adds the important behavioral context that a call takes 30-50 seconds and returns both a chart and a report. This goes beyond the structured annotations without contradicting them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences, front-loaded with the core output and ending with the critical latency caveat. Every word earns its place; there is no filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema, safety annotations, and fully described optional parameters, the description is largely complete: it states what is returned and how long it takes. It could add more about report contents or prerequisites, but that is likely covered by the output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3; all parameters already have meaningful descriptions. The tool description itself adds no parameter-level semantics, but little is needed because the schema carries the full burden.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the deliverable: a TradingView chart with the detected range drawn on it, plus a report. This distinguishes it from siblings like analyze_range and capture_chart. It relies on the tool name for the verb and does not explicitly name alternatives, so it just misses the top score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given on when to use this tool versus analyze_range or capture_chart. There are no ordering dependencies, exclusions, or alternative-selection hints. The latency note is behavioral information, not usage guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.