Snapshot
1 tool in this category.
Overview
Snapshot includes 1 tool for this workflow area.
Available tools: get_market_snapshot.
Use the parameter tables and examples below as the canonical request contract.
get_market_snapshot
Returns a single-call market snapshot for one symbol: current tick (bid/ask/spread) plus a chosen indicator set across up to 4 timeframes. Replaces 5-8 separate tool calls when analysing a symbol. Limits: 4 timeframes x 6 indicators, 10 values per indicator. Defaults: timeframes ["H1"], indicators ["RSI", "ATR", "EMA"]. Indicators use their registry default parameters (e.g. RSI 14). If the 10s deadline is hit, returns the completed components with partial: true and a missing[] list. Values are raw and unlabelled — interpretation is up to the caller. Indicator value arrays are ordered newest-first (index 0 is the most recent completed bar), matching get_indicator's convention; the response includes order: "newest_first" so callers can assert this programmatically. This is the opposite of the oldest-first/chronological convention used by detect_structure, detect_patterns, the get_market_structure family, and get_order_flow. Available at Free+ tier.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
symbol | string | Yes | — | — |
timeframes | array | No | ["H1"] | — |
indicators | array | No | ["RSI","ATR","EMA"] | — |
bars | integer | No | 3 | — |
Example Request
{
"tool": "get_market_snapshot",
"arguments": {
"symbol": "EURUSD"
}
}Usage Notes
- Start with a smaller
count/barsvalue while iterating, then increase once the workflow is stable. - Use one timeframe for quick checks and multiple timeframes only when you need cross-timeframe analysis.