TickAtlas

Technical Analysis API

42 pre-calculated indicators across 7 timeframes. RSI, MACD, Bollinger Bands, Ichimoku, ADX, and more — via simple REST API calls. No computation needed on your end.

42 Indicators 7 Timeframes Pre-Calculated REST JSON Sub-100ms
  • Trend Indicators

    SMA, EMA, MACD, ADX, Ichimoku Cloud, Alligator, Parabolic SAR, TEMA, DEMA

    9 indicators for trend direction and strength

  • Oscillators

    RSI, Stochastic, CCI, Williams %R, Momentum, DeMarker

    6 indicators for overbought/oversold conditions

  • Volatility Indicators

    Bollinger Bands (upper, middle, lower, width), ATR, Standard Deviation

    3 indicators for market volatility assessment

  • Volume Indicators

    On-Balance Volume, Money Flow Index, Accumulation/Distribution, Tick Volume

    4 indicators for volume and flow analysis

Technical Analysis in 3 Lines

javascript
// Get RSI for EURUSD on the H4 timeframe
const resp = await fetch(
  "https://tickatlas.com/v1/indicator?symbol=EURUSD&name=rsi&timeframe=H4",
  { headers: { "X-API-Key": "YOUR_API_KEY" } }
);
const { data } = await resp.json();
console.log(`RSI: ${data.value}`);  // RSI: 62.4

// Batch: get RSI + MACD + Bollinger Bands for 3 symbols
const multi = await fetch(
  "https://tickatlas.com/v1/multi?symbols=EURUSD,GBPUSD,XAUUSD&indicators=rsi,macd,bollinger-bands&timeframe=H4",
  { headers: { "X-API-Key": "YOUR_API_KEY" } }
);
const batch = await multi.json();
// Returns all indicator values for all symbols in one response

Technical Analysis Endpoints

Endpoint Description Best For
/v1/indicator Single indicator for one symbol Quick lookups
/v1/indicators All indicators for one symbol Full technical snapshot
/v1/multi Multiple symbols x indicators Watchlist monitoring
/v1/screener Scan by indicator conditions Signal generation
/v1/summary AI-synthesized analysis Decision support

Frequently Asked Questions

What technical indicators does the API provide?

We provide 42 indicators across 4 categories: Trend (SMA, EMA, MACD, ADX, Ichimoku, Alligator, Parabolic SAR, TEMA, DEMA), Oscillators (RSI, Stochastic, CCI, Williams %R, Momentum, DeMarker), Volatility (Bollinger Bands, ATR, StdDev), and Volume (OBV, MFI, A/D, Tick Volume).

Are the indicators pre-calculated or do I compute them locally?

All 42 indicators are pre-calculated server-side using data from professional market feeds. You receive the computed value via the API — no local indicator library or computation required.

What timeframes are available for technical analysis?

Seven timeframes: M1, M5, M15, M30, H1, H4, and D1. Every indicator is available on every timeframe.

Can I get multiple indicators in one API call?

Yes. The /v1/multi endpoint lets you request multiple symbols and multiple indicators in a single call, reducing round-trips and latency.

How accurate are the indicator calculations?

Indicators are calculated from real OHLCV data ingested from institutional-grade broker feeds using standard formulas. The calculations match industry-standard values.

Skip the Math. Get the Indicators.

14-day free trial. 42 indicators, 7 timeframes, zero computation on your end.