n8n Forex Automation — No-Code Workflows
Add an HTTP Request node, set the URL to /v1/indicator and the X-API-Key header — that is the entire integration. Build alert pipelines, scheduled scans, and webhook triggers.
No credit card. $2.50 PAYG credit on sign up.
One Request. Instant Data.
// n8n HTTP Request node
{
"method": "GET",
"url": "https://tickatlas.com/v1/indicator",
"authentication": "Header Auth",
"headerName": "X-API-Key",
"headerValue": "YOUR_API_KEY",
"queryParameters": {
"symbol": "EURUSD",
"indicator": "RSI_14",
"timeframe": "H1"
}
} 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
n8n + TickAtlas: What You Can Build
n8n's HTTP Request node calls any REST API. TickAtlas returns clean JSON — exactly what IF nodes, Set nodes, and notification integrations expect. No custom code node needed for basic alert workflows.
HTTP Request Node Config
Copy this into your n8n HTTP Request node. No custom code required.
{
"method": "GET",
"url": "https://tickatlas.com/v1/indicator",
"authentication": "Header Auth",
"headerName": "X-API-Key",
"headerValue": "YOUR_API_KEY",
"queryParameters": {
"symbol": "EURUSD",
"indicator": "RSI_14",
"timeframe": "H1"
},
"responseFormat": "json"
}
Test with cURL first
curl -X GET "https://tickatlas.com/v1/indicator?symbol=EURUSD&indicator=RSI_14&timeframe=H1" -H "X-API-Key: YOUR_API_KEY"
# → { "success": true, "value": 62.48, "signal": "neutral" }
Simple Pricing for Automation
Best for trying the API or low-frequency workflows.
Best for solo developers and small bots.
Best for production apps and teams.
Save 20% on all plans with annual billing. Pay with 100+ cryptocurrencies.
FAQ
Do I need a custom code node to call the API?
No. n8n's built-in HTTP Request node handles everything. Set the URL, add the X-API-Key header, and map the query parameters. No JavaScript code node required for basic alert workflows.
How do I store my API key securely in n8n?
Use n8n's built-in credentials system. Create a Header Auth credential with key X-API-Key and your TickAtlas API key as the value. n8n encrypts this at rest and you select it in the HTTP Request node's credentials dropdown.
Can I scan multiple symbols in one workflow run?
Yes. Use a Split In Batches node to iterate over a list of symbols, calling the HTTP Request node for each. Or use GET /v1/indicators (plural) which returns all 42 values for one symbol in a single call.
Does this work with Zapier and Make (Integromat) too?
Yes. Zapier's Webhooks by Zapier action and Make's HTTP module work identically. The same REST API serves all platforms — set the URL, add the API key header, and map the JSON fields.
Frequently Asked Questions
Do I need a custom code node to call the API?
No. n8n's built-in HTTP Request node handles everything. Set the URL, add the X-API-Key header, and map the query parameters. No JavaScript code node required for basic alert workflows.
How do I store my API key securely in n8n?
Use n8n's built-in credentials system. Create a Header Auth credential with key X-API-Key and your TickAtlas API key as the value. n8n encrypts this at rest and you select it in the HTTP Request node's credentials dropdown.
Can I scan multiple symbols in one workflow run?
Yes. Use a Split In Batches node to iterate over a list of symbols, calling the HTTP Request node for each. Or use GET /v1/indicators (plural) which returns all 42 values for one symbol in a single call.
Does this work with Zapier and Make (Integromat) too?
Yes. Zapier's Webhooks by Zapier action and Make's HTTP module work identically. The same REST API serves all platforms — set the URL, add the API key header, and map the JSON fields.
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.