romaco_get_indicator_values
Retrieve the current state of an indicator on the chart: last value, previous value, delta, and state classification. Default returns a compressed summary; opt in for raw bar-by-bar series at higher token cost.
Instructions
Read the current state of an indicator on the chart: last value, previous value, delta, and a per-indicator state classification (RSI: oversold/neutral/overbought; MACD: bull_cross/bear_cross/bullish/bearish; BOLL: squeeze/expansion/neutral; default: rising/falling/flat). Cost: compressed by default (<500 B). Set acknowledgeHighTokenCost:true to receive every bar of every series (~10 KB at 500 candles, scales linearly). Only opt in to raw series when the user explicitly asked for bar-by-bar values (e.g. for custom backtesting).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| indicatorId | No | Preferred lookup — the indicator id returned when it was added. | |
| indicatorName | No | Fallback lookup by name (case-insensitive, first match), e.g. "RSI". | |
| acknowledgeHighTokenCost | No | WARNING: setting this true returns the full per-bar series arrays (~10 KB for 500 bars, scales linearly). Only opt in when the USER has explicitly asked for raw indicator values and accepts the token cost. Default (omit) returns a compressed last/prev/delta/state summary. |