Technical Indicators API
Technical Indicators API Database
Tradefeeds is an API data provider of more than 200+ technical analysis indicators. The most popular technical analysis tools requested from the technical analysis indicator API database are: Moving Average, Exponential Moving Average, Stochastic oscillator, Moving average convergence divergence (MACD), Bollinger bands, Relative strength index (RSI), Fibonacci retracement, Ichimoku cloud, Standard deviation, Average directional index. The technical analysis indicator data is available through JSON REST API, excel or CSV files.
Our Customers
Technical indicators data API is widely used by various customers including developers, investors, traders, and researchers. Developers integrate technical analysis indicators API into their web and mobile applications to build products for third-party customers such as investors and traders who would use these applications to follow stock market trends. Researchers use data on technical indicators to develop projects for the academic community.
Obtainment Process for Technical Indicators Data
Tradefeeds provides an API database of stock technical indicators of more than 7000 companies traded at the NYSE, Nasdaq and other stock exchanges. Our REST API support more than 200 technical analysis indicators for stock trading.
The data on technical analysis indicators is obtained through automatic scientific calculations done at candle stick intervals of 1 min, 5 min, 15min, 30 min, 1h, 2h, 4h, 12h, 1day, 1 week, etc. Calculations are made once the historical prices of stocks are plugged in the formulas and a candle stick is chosen.Then, our system calculates the technical indicators data for you and you get it through API or via other forms of data retrieval.
Keep in mind that our system produces data on your technical indicator chosen in the form of candlestick charts. The candlesticks are immediately converted into numbers. The numbers indicate different price points of the stocks such as the open, close, high and low price points.
ready to start?
Get our API key in an instant!
Types of Technical Indicators Data API
- Overview
- Intraday Indicators
- Support & Resistance Indicators
We provide you with accurate technical analysis data API. A big number of customers prefer to use the following technical indicators including: Moving Average Exponential Moving Average, Stochastic oscillator, Moving average convergence divergence (MACD), Bollinger bands , Relative strength index (RSI), Fibonacci retracement, Ichimoku cloud, Standard deviation, Average directional index. These are the most highly demanded technical analysis tools that fall within our two main groups of technical indicators – Intraday Indicators and Support and Resistance Indicators.
- Intraday Indicators help investors and traders keep a daily track of the stock market trends.
- By following nine main intraday indicators, they can quickly find out patterns on the fluctuation of the stock prices. Below you can see the four main categories of most demanded intraday indicators.
- Trend indicators indicate the direction of a market trend while momentum indicators signal for the strength of the market trend.
- The volatility indicators measure the rate of price changes during a particular period.
- The volume indicators indicates the number of stocks traded during a period. When the volume of stocks is high, it is significant to make a market move. If the volume of stocks is low, then it is insignificant to make a market move.
- Support and Resistance Indicators indicate two opposite price points at which a prevailing stock market trend will reverse its direction keeping it steadily from the moment of the turning point.
- A widely used Support and Resistance Indicator is: Fibonacci
- Ratio
- The Equity Multiplier
- Moving average convergence divergence (MACD)
- Exponential Moving Average
- Ichimoku cloud
- Average directional index
- Stochastic oscillator
- Relative strength index (RSI)
- Ichimoku cloud
- Standard deviation
- Bollinger bands
- Chaikin oscillator
- On-balance Volume (OBV)
- Volume rate of change
Developer Documentation
The technical indicators API responses are rapidly returned in JSON format. It takes the system approximately 0.02 ms to return them. The server uptime is measured to be roughly 99.7%. Tradefeeds API support all API programming languages, which satifies the need of all our customers. The technical indicators data API is used by all-sized business and entrepreneurial individuals. Check below the other formats through which you obtain data on technical indicators. Pay attention to the key filtering parameters as well as input and output response examples.
Objects | Description |
stock_ticker_symbol | the ticker symbol of the stocks of a company for which you get an output |
exchange | the stock exchange on which securities are traded |
technical_indicator | select a technical indicator |
interval | select a candle stick interval (1m, 5m, 15m, 30m, 1h, 2h, 4h, 12h, 1d, 1w) |
retrace | starting point back in time from where to check |
checks | the number of candles you want to check, going in the direction from the retrace towards the past |
candle_type | select a candle type: candle / heikinashi / Renko / Kagi |
- /technicalindicators&stock_ticker_symbol=AAPL&technical_indicator=rsi
- /technicalindicators&stock_ticker_symbol=AAPL&technical_indicator=sp
https://data.tradefeeds.com/api/v1/technicalindicators
?key=YOUR-KEY
&stock_ticker_symbol=aapl&technical_indicator=relative_strength_index
{
"status": {
"message": "Success"
},
"results": [
{
"basics": {
"name": "Apple Inc",
"stock_ticker_symbol": "AAPL"
"isin_identifier": "US0378331005"
"exchange": "nasdaq"
},
"output": {
"value": 70.03713323772295,
"backtrack": 0
},
{
"value": 68.55107952179476,
"backtrack": 1
},
{
"value": 72.55100476679559,
"backtrack": 2
},
{
"value": 73.51409814264913,
"backtrack": 3
},
{
"value": 69.91451308499144,
"backtrack": 4
},
{
"value": 65.17308969691057,
"backtrack": 5
},
{
"value": 66.17910755701931,
"backtrack": 6
},
{
"value": 68.41845715627683,
"backtrack": 7
},
{
"value": 64.71596338703083,
"backtrack": 8
},
{
"value": 70.76586249275925,
"backtrack": 9
}
},
}
[
}
https://data.tradefeeds.com/api/v1/technicalindicators
?key=YOUR-KEY
&stock_ticker_symbol=aapl&technical_indicator=stalled_pattern
{
"status": {
"message": "Success"
},
"results": [
{
"basics": {
"name": "Apple Inc",
"stock_ticker_symbol": "AAPL"
"isin_identifier": "US0378331005"
"exchange": "nasdaq"
},
"output": {
{
value: "100" // stalled_pattern pattern found at this candle
}
{
value: "0" // stalled_pattern pattern NOT found at this candle
}
},
}
[
}