Indicator System - real-time technical indicators
How Barfinex exposes RSI, MACD, ADX and other indicator context through Provider-owned public surfaces.
Overview
Barfinex calculates technical indicators inside the trading runtime and exposes user-facing indicator data through Provider-owned APIs and real-time channels. The public contract is intentionally simple: clients consume Provider. Detector owns indicator-based candidate logic; Advisor is only an internal deterministic admission stage and does not consume indicators.
What the system provides
- Current indicator snapshots for supported symbols and scopes.
- Recent indicator buffers for lightweight charts and dashboards.
- Historical indicator queries where the runtime has persisted data.
- Real-time updates routed through Provider-owned integration surfaces.
Typical indicators include RSI, MACD, ADX, EMA, ATR, Bollinger Bands, OBV, MFI, Stochastic, CCI, Donchian Channel, VWAP, and related market-state features.
Runtime boundary
Public and Studio clients should not connect directly to Detector or Advisor ports for indicator data. Use Provider and the public API reference for the current route set.
Internal storage, queueing, sink configuration, and service-specific event names are maintained in the private runtime documentation for the trading workspace.