Complete technical indicators node with 208+ indicators, REST and WebSocket support
npm install n8n-nodes-technical-indicatorsbash
npm install n8n-nodes-technical-indicators
`
Quick Start
1. Add the "Technical Indicators" node to your workflow
2. Select REST or WebSocket mode
3. Choose your data source
4. Enter ticker symbol (e.g., BTC/USDT, AAPL)
5. Select indicators to calculate
6. Customize parameters (optional)
Indicators Included
$3
RSI, MACD, Stochastic, ADX, CCI, MFI, ROC, Aroon, Williams %R, Ultimate Oscillator, and more
$3
SMA, EMA, WMA, DEMA, TEMA, HMA, KAMA, VWMA, Ichimoku, and more
$3
ATR, Bollinger Bands, Keltner Channels, Donchian Channels, Standard Deviation, and more
$3
OBV, VWAP, Chaikin Money Flow, A/D Line, Volume Oscillator, and more
$3
Doji, Hammer, Engulfing, Harami, Morning Star, Evening Star, Three Black Crows, and more
$3
Supertrend, PSAR, Vortex, DMI, Williams Alligator, and more
Example Usage
$3
`json
{
"ticker": "BTC/USDT",
"indicators": ["rsi", "macd"],
"indicatorParams": {
"rsi": {"period": 14},
"macd": {"fastPeriod": 12, "slowPeriod": 26, "signalPeriod": 9}
}
}
`
$3
`json
{
"resource": "websocket",
"ticker": "ETH/USDT",
"duration": 60,
"wsOperation": "streamWithIndicators",
"indicators": ["rsi", "ema", "bbands"]
}
``