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.
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:
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.
Keep reading
All articles- Tutorial 11 min read
24/7 Crypto Monitoring: Building Always-On Analysis Systems
Build a monitoring system that watches crypto markets around the clock, detects significant moves, and sends alerts when conditions match your criteria.
March 28, 2026
- Analysis 9 min read
ADX: How to Measure Trend Strength in Your Trading Bot
Learn how the ADX indicator measures trend strength, not direction, and how to use it as a filter to dramatically improve your bot's signal quality.
March 28, 2026
- Tutorial 12 min read
How to Build an AI Market Analyst That Runs 24/7
Build a production-ready AI market analyst that monitors forex and crypto markets around the clock, generates daily briefings, and alerts you to opportunities via Telegram.
March 28, 2026