TickAtlas
Technical Indicators 8 min read · March 21, 2026

Getting Started with Technical Analysis via API

A comprehensive introduction to using the TickAtlas API for technical analysis, covering the most popular indicators and how to combine them.

CG
By the TickAtlas team

Technical analysis doesn't have to mean staring at charts. With the TickAtlas API, you can programmatically access 42 technical indicators and build automated analysis into any application.

What is Technical Analysis?

Technical analysis is the study of past market data — primarily price and volume — to forecast future price movements. Unlike fundamental analysis, which looks at financial statements and economic indicators, technical analysis focuses entirely on chart patterns and mathematical indicators derived from price data.

The core assumption is that all publicly known information is already reflected in the price, and that price movements tend to follow identifiable patterns and trends.

The Four Indicator Families

Trend Indicators

Identify the direction and strength of the market trend.

SMA, EMA, MACD, ADX, Ichimoku, Parabolic SAR

Oscillators

Measure momentum and identify overbought/oversold conditions.

RSI, Stochastic, CCI, Williams %R, DeMarker

Volatility Indicators

Measure the rate and magnitude of price fluctuations.

Bollinger Bands, ATR, Standard Deviation

Volume Indicators

Confirm trends by analyzing trading volume patterns.

OBV, MFI, Accumulation/Distribution, Tick Volume

Your First API Call

Let's fetch the RSI value for EURUSD on the H1 timeframe. This single call gives you the current RSI reading, its signal interpretation, and the corresponding OHLCV bar:

bash
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://tickatlas.com/v1/indicator?symbol=EURUSD&indicator=RSI_14&timeframe=H1"

The response includes the indicator value, a human-readable signal (overbought, oversold, or neutral), the OHLCV data for that candle, and metadata about data freshness.

Combining Indicators

The real power of technical analysis comes from combining multiple indicators for confirmation. A single indicator can give false signals, but when RSI, MACD, and trend direction all agree, the probability of a successful trade increases significantly.

Use the /v1/multi endpoint to fetch multiple indicators in a single API call, reducing latency and API usage.

Next Steps

Try this with live data

Every account gets $2.50 in free PAYG credits. No card required — paste your API key and run the code above against live broker data.