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.
One Request. Instant Data.
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
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}
{
"success": true,
"symbol": "EURUSD",
"indicator": "RSI_14",
"values": {
"M15": 58.1,
"H1": 62.5,
"H4": 65.2,
"D1": 71.3
}
}
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.
Pricing
Unlimited calls across all timeframes for bots and scanners.
Get StartedStart 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.