TickAtlas

Multi-Timeframe API — Confluence in One Round-Trip

Pass timeframe=M1,M5,M15,M30,H1,H4,D1 to fetch RSI (or any indicator) on all seven timeframes at once. Build MTF confluence strategies without sequential requests.

No credit card. $2.50 PAYG credit on sign up.

EURUSD RSI(14) · MTF View
EURUSD RSI(14) — Multi-Timeframe View M1 58.2 neutral M5 52.1 neutral M15 42.1 neutral- M30 40.4 neutral- H1 38.8 neutral- H4 35.4 oversold D1 31.2 oversold Confluence: D1, H4, H1 all approaching oversold — bearish bias confirmed
Confluence: D1+H4+H1 oversold Bearish bias Updated 2s ago

One Request. Instant Data.

REQUEST
curl -X GET \
  "https://tickatlas.com/v1/multi?symbols=EURUSD&indicators=RSI_14&timeframe=M30,H1,H4,D1" \
  -H "X-API-Key: YOUR_API_KEY"

Why Use TickAtlas?

Pre-Calculated, Sub-100ms

Indicator values are computed server-side on every new candle. Your app queries the result — no TA library, no candle history needed.

7 Timeframes

M1, M5, M15, M30, H1, H4, D1 — the same endpoint serves scalpers and position traders alike.

Forex, Crypto, Commodities

EURUSD, GBPUSD, XAUUSD, BTCUSD, USDJPY — data available for all symbols active on connected broker terminals.

Plug into any stack

  • ChatGPT Custom GPTs
  • Claude Tools
  • Python / pandas
  • Node.js
  • Discord bots
  • Slack webhooks
  • n8n
  • Zapier
  • Google Sheets

Code Example — Parallel MTF Query

Python — ThreadPoolExecutor
import requests
from concurrent.futures import ThreadPoolExecutor

TFS = ["M15", "H1", "H4", "D1"]
def fetch(tf):
    return tf, requests.get(
        "https://tickatlas.com/v1/indicator",
        headers={"X-API-Key": "YOUR_API_KEY"},
        params={"symbol": "EURUSD",
                "indicator": "RSI_14",
                "timeframe": tf},
    ).json()["value"]

with ThreadPoolExecutor(max_workers=4) as ex:
    mtf = dict(ex.map(fetch, TFS))
print(mtf)  # {'M15': 58.1, 'H1': 62.5, 'H4': 65.2, 'D1': 71.3}
JSON Response (MTF endpoint)
{
  "success": true,
  "symbol": "EURUSD",
  "indicator": "RSI_14",
  "values": {
    "M15": 58.1,
    "H1":  62.5,
    "H4":  65.2,
    "D1":  71.3
  }
}
cURL (parallel with &)
curl ".../v1/indicator?symbol=EURUSD&indicator=RSI_14&timeframe=M15"      -H "X-API-Key: KEY" & curl ".../v1/indicator?symbol=EURUSD&indicator=RSI_14&timeframe=H1"      -H "X-API-Key: KEY" & curl ".../v1/indicator?symbol=EURUSD&indicator=RSI_14&timeframe=H4"      -H "X-API-Key: KEY" & wait

Multi-Timeframe Strategy Patterns

Top-Down Analysis

Start with D1 trend direction → confirm on H4 → find H1 entry timing → execute on M15.

MTF RSI Confluence

Only trade when RSI is in the same zone on H4 and D1. Filters out noise-level signals.

MTF Divergence Alert

When H1 RSI is oversold but D1 RSI is still neutral — high-probability reversal zone.

ADX Trend Filter

Check ADX on D1 and H4. Only trade in the trend direction when both show ADX > 25.

Bollinger Band Context

D1 BB gives the macro range. H1 BB gives the micro range. Trade BB breakouts with D1 context.

Scalping with HTF Bias

Use D1/H4 for direction, M5/M15 for entry. Never fight the higher timeframe bias.

Every new account gets $2.50 in free API credits

Pricing

Pay-As-You-Go
$2.50 free credit

~$0.001/call per timeframe. Test MTF strategies free.

Start Free
Most Popular
Starter
$29 /month

Unlimited calls across all timeframes for bots and scanners.

Get Started
Pro
$79 /month

Multi-symbol MTF scans, parallel requests across 50+ pairs.

Get Started

Start Building in 5 Minutes

Sign up, grab your API key, make your first request.

Every new account gets $2.50 in free PAYG credits. No card required.