All URIs are relative to https://api-v2.intrinio.com
Method | HTTP request | Description |
---|---|---|
GetSecurityPriceTechnicalsAdi | GET /securities/{identifier}/prices/technicals/adi | Accumulation/Distribution Index |
GetSecurityPriceTechnicalsAdtv | GET /securities/{identifier}/prices/technicals/adtv | Average Daily Trading Volume |
GetSecurityPriceTechnicalsAdx | GET /securities/{identifier}/prices/technicals/adx | Average Directional Index |
GetSecurityPriceTechnicalsAo | GET /securities/{identifier}/prices/technicals/ao | Awesome Oscillator |
GetSecurityPriceTechnicalsAtr | GET /securities/{identifier}/prices/technicals/atr | Average True Range |
GetSecurityPriceTechnicalsBb | GET /securities/{identifier}/prices/technicals/bb | Bollinger Bands |
GetSecurityPriceTechnicalsCci | GET /securities/{identifier}/prices/technicals/cci | Commodity Channel Index |
GetSecurityPriceTechnicalsCmf | GET /securities/{identifier}/prices/technicals/cmf | Chaikin Money Flow |
GetSecurityPriceTechnicalsDc | GET /securities/{identifier}/prices/technicals/dc | Donchian Channel |
GetSecurityPriceTechnicalsDpo | GET /securities/{identifier}/prices/technicals/dpo | Detrended Price Oscillator |
GetSecurityPriceTechnicalsEom | GET /securities/{identifier}/prices/technicals/eom | Ease of Movement |
GetSecurityPriceTechnicalsFi | GET /securities/{identifier}/prices/technicals/fi | Force Index |
GetSecurityPriceTechnicalsIchimoku | GET /securities/{identifier}/prices/technicals/ichimoku | Ichimoku Kinko Hyo |
GetSecurityPriceTechnicalsKc | GET /securities/{identifier}/prices/technicals/kc | Keltner Channel |
GetSecurityPriceTechnicalsKst | GET /securities/{identifier}/prices/technicals/kst | Know Sure Thing |
GetSecurityPriceTechnicalsMacd | GET /securities/{identifier}/prices/technicals/macd | Moving Average Convergence Divergence |
GetSecurityPriceTechnicalsMfi | GET /securities/{identifier}/prices/technicals/mfi | Money Flow Index |
GetSecurityPriceTechnicalsMi | GET /securities/{identifier}/prices/technicals/mi | Mass Index |
GetSecurityPriceTechnicalsNvi | GET /securities/{identifier}/prices/technicals/nvi | Negative Volume Index |
GetSecurityPriceTechnicalsObv | GET /securities/{identifier}/prices/technicals/obv | On-balance Volume |
GetSecurityPriceTechnicalsObvMean | GET /securities/{identifier}/prices/technicals/obv_mean | On-balance Volume Mean |
GetSecurityPriceTechnicalsRsi | GET /securities/{identifier}/prices/technicals/rsi | Relative Strength Index |
GetSecurityPriceTechnicalsSma | GET /securities/{identifier}/prices/technicals/sma | Simple Moving Average |
GetSecurityPriceTechnicalsSr | GET /securities/{identifier}/prices/technicals/sr | Stochastic Oscillator |
GetSecurityPriceTechnicalsTrix | GET /securities/{identifier}/prices/technicals/trix | Triple Exponential Average |
GetSecurityPriceTechnicalsTsi | GET /securities/{identifier}/prices/technicals/tsi | True Strength Index |
GetSecurityPriceTechnicalsUo | GET /securities/{identifier}/prices/technicals/uo | Ultimate Oscillator |
GetSecurityPriceTechnicalsVi | GET /securities/{identifier}/prices/technicals/vi | Vortex Indicator |
GetSecurityPriceTechnicalsVpt | GET /securities/{identifier}/prices/technicals/vpt | Volume-price Trend |
GetSecurityPriceTechnicalsVwap | GET /securities/{identifier}/prices/technicals/vwap | Volume Weighted Average Price |
GetSecurityPriceTechnicalsWr | GET /securities/{identifier}/prices/technicals/wr | Williams %R |
View Intrinio API Documentation
ApiResponseSecurityAccumulationDistributionIndex GetSecurityPriceTechnicalsAdi (string identifier, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Accumulation / Distribution Indicator is a volume-based technical indicator which uses the relationship between the stock`s price and volume flow to determine the underlying trend of a stock, up, down, or sideways trend of a stock.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsAdiExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityAccumulationDistributionIndex result = technicalApi.GetSecurityPriceTechnicalsAdi(identifier, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityAccumulationDistributionIndex
View Intrinio API Documentation
ApiResponseSecurityAverageDailyTradingVolume GetSecurityPriceTechnicalsAdtv (string identifier, int? period = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
Average Daily Trading Volume is the average number of shares traded over a given period, usually between 20 to 30 trading days.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsAdtvExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 22;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityAverageDailyTradingVolume result = technicalApi.GetSecurityPriceTechnicalsAdtv(identifier, period, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate Average Daily Trading Volume | [optional] [default to 22] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityAverageDailyTradingVolume
View Intrinio API Documentation
ApiResponseSecurityAverageDirectionalIndex GetSecurityPriceTechnicalsAdx (string identifier, int? period = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Average Directional Index indicator is often used to identify decreasing or increasing price momentum for an underlying security, it is composed of a total of three indicators, the current trendline (adx), a positive directional indicator (di_pos), and a negative directional indicator (di_neg).
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsAdxExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 14;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityAverageDirectionalIndex result = technicalApi.GetSecurityPriceTechnicalsAdx(identifier, period, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate Average Directional Index | [optional] [default to 14] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityAverageDirectionalIndex
View Intrinio API Documentation
ApiResponseSecurityAwesomeOscillator GetSecurityPriceTechnicalsAo (string identifier, int? shortPeriod = null, int? longPeriod = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Awesome Oscillator (ao) is a momentum indicator and is calculated by taking the difference between the latest 5 period simple moving average and the 34 period simple moving average. Rather than using the closing price like other indicators, the Awesome Oscillator uses the latest period`s midpoint value (period_high - period_low / 2). The Awesome Oscillator is useful in identifying and trading, zero-line crossovers, twin-peaks trading, and bullish/bearish saucers - Awesome Oscillator is often aggregated with additional technical indicators.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsAoExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? shortPeriod = 5;
int? longPeriod = 34;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityAwesomeOscillator result = technicalApi.GetSecurityPriceTechnicalsAo(identifier, shortPeriod, longPeriod, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
shortPeriod | int? | The number of observations, per period, to calculate short period Simple Moving Average of the Awesome Oscillator | [optional] [default to 5] |
longPeriod | int? | The number of observations, per period, to calculate long period Simple Moving Average of the Awesome Oscillator | [optional] [default to 34] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityAwesomeOscillator
View Intrinio API Documentation
ApiResponseSecurityAverageTrueRange GetSecurityPriceTechnicalsAtr (string identifier, int? period = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Average True Range (ATR) is a non-directional market volatility indicator often used to generate stop-out or entry indications. An increasing or expanding ATR typically indicates higher volatility, and a decreasing ATR indicates sideways price action and lower volatility.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsAtrExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 14;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityAverageTrueRange result = technicalApi.GetSecurityPriceTechnicalsAtr(identifier, period, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate Average True Range | [optional] [default to 14] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityAverageTrueRange
View Intrinio API Documentation
ApiResponseSecurityBollingerBands GetSecurityPriceTechnicalsBb (string identifier, int? period = null, float? standardDeviations = null, string priceKey = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
Bollinger Bands can be a useful technical analysis tool for generating oversold or overbought indicators. Bollinger Bands are composed of three lines, a simple moving average (middle band) and an upper and lower band – the upper and lower bands are typically 2 standard deviations +/- from a 20-day simple moving average, but can be modified. Traders typically consider an underlying security to be overbought as the underlying`s price moves towards the upper band and oversold as the underlying price moves towards the lower band.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsBbExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 20;
float? standardDeviations = 2.0f;
string priceKey = "close";
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityBollingerBands result = technicalApi.GetSecurityPriceTechnicalsBb(identifier, period, standardDeviations, priceKey, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate Bollinger Bands | [optional] [default to 20] |
standardDeviations | float? | The number of standard deviations to calculate the upper and lower bands of the Bollinger Bands | [optional] [default to 2.0] |
priceKey | string | The Stock Price field to use when calculating Bollinger Bands | [optional] [default to close] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityBollingerBands
View Intrinio API Documentation
ApiResponseSecurityCommodityChannelIndex GetSecurityPriceTechnicalsCci (string identifier, int? period = null, float? constant = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Commodity Channel Index (CCI) is a technical indicator used to generate buy and sell signals by indicating periods of strength and weakness in the market. CCI signals that fall below -100 are often perceived as weakness in the underlying price movement and CCI signals that rise above 100 indicate strength behind the underlying price movement.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsCciExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 20;
float? constant = 0.015f;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityCommodityChannelIndex result = technicalApi.GetSecurityPriceTechnicalsCci(identifier, period, constant, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate Commodity Channel Index | [optional] [default to 20] |
constant | float? | The number of observations, per period, to calculate Commodity Channel Index | [optional] [default to 0.015] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityCommodityChannelIndex
View Intrinio API Documentation
ApiResponseSecurityChaikinMoneyFlow GetSecurityPriceTechnicalsCmf (string identifier, int? period = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Chaikin Money Flow (CMF) utilizes exponential moving averages as an indicator to monitor the flow of money and momentum. The CMF indicator oscillates around a midrange 0-line and ranges between 100 and -100.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsCmfExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 20;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityChaikinMoneyFlow result = technicalApi.GetSecurityPriceTechnicalsCmf(identifier, period, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate Chaikin Money Flow | [optional] [default to 20] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityChaikinMoneyFlow
View Intrinio API Documentation
ApiResponseSecurityDonchianChannel GetSecurityPriceTechnicalsDc (string identifier, int? period = null, string priceKey = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Donchian Channel consists of an Upper Bound (upper_bound) and Lower Bound (lower_bound) that track the recent highs and lows and is often used to signal entry and exit points for a position. As the price of the underlying symbol increases the Upper Bound raises, if the price becomes range bound the Upper Bound will remain flat and if the price begins to decrease, the Upper Bound will fall (and vice-versa for the Lower Bound).
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsDcExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 20;
string priceKey = "close";
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityDonchianChannel result = technicalApi.GetSecurityPriceTechnicalsDc(identifier, period, priceKey, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate Donchian Channel | [optional] [default to 20] |
priceKey | string | The Stock Price field to use when calculating Donchian Channel | [optional] [default to close] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityDonchianChannel
View Intrinio API Documentation
ApiResponseSecurityDetrendedPriceOscillator GetSecurityPriceTechnicalsDpo (string identifier, int? period = null, string priceKey = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Detrended Price Oscillator (DPO) signals the peaks and troughs of the underlying symbol’s price for a set period of time and is often used by traders to estimate future peaks and troughs using this as guidance to enter or exit a position.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsDpoExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 20;
string priceKey = "close";
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityDetrendedPriceOscillator result = technicalApi.GetSecurityPriceTechnicalsDpo(identifier, period, priceKey, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate Detrended Price Oscillator | [optional] [default to 20] |
priceKey | string | The Stock Price field to use when calculating Detrended Price Oscillator | [optional] [default to close] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityDetrendedPriceOscillator
View Intrinio API Documentation
ApiResponseSecurityEaseOfMovement GetSecurityPriceTechnicalsEom (string identifier, int? period = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Ease of Movement (EOM) is a volume based oscillator that fluctuates around a midrange 0-line into positive and negative values. Positive values indicate that the underlying symbols price is rising with relative ease and negative value indicates the underlying symbol
s price is failing with relative ease.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsEomExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 20;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityEaseOfMovement result = technicalApi.GetSecurityPriceTechnicalsEom(identifier, period, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate Ease of Movement | [optional] [default to 20] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityEaseOfMovement
View Intrinio API Documentation
ApiResponseSecurityForceIndex GetSecurityPriceTechnicalsFi (string identifier, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Force Index (FI) is an oscillator that takes into account the intensity of an underlying symbol`s price movement and its corresponding volume. It is used to confirm price breakouts and signal underlying trends.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsFiExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityForceIndex result = technicalApi.GetSecurityPriceTechnicalsFi(identifier, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
View Intrinio API Documentation
ApiResponseSecurityIchimokuKinkoHyo GetSecurityPriceTechnicalsIchimoku (string identifier, int? lowPeriod = null, int? mediumPeriod = null, int? highPeriod = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Ichimoku Kinko Hyo was designed to be an all-in-one trading indicator that could help traders determine momentum, support, and resistance.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsIchimokuExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? lowPeriod = 9;
int? mediumPeriod = 26;
int? highPeriod = 52;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityIchimokuKinkoHyo result = technicalApi.GetSecurityPriceTechnicalsIchimoku(identifier, lowPeriod, mediumPeriod, highPeriod, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
lowPeriod | int? | The number of observations, per period, to calculate Tenkan Sen (Conversion Line) of Ichimoku Kinko Hyo | [optional] [default to 9] |
mediumPeriod | int? | The number of observations, per period, to calculate Kijun Sen (Base Line), Senkou Span A (Leading Span A), and Chikou Span (Lagging Span) of Ichimoku Kinko Hyo | [optional] [default to 26] |
highPeriod | int? | The number of observations, per period, to calculate Senkou Span B (Leading Span B) of Ichimoku Kinko Hyo | [optional] [default to 52] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityIchimokuKinkoHyo
View Intrinio API Documentation
ApiResponseSecurityKeltnerChannel GetSecurityPriceTechnicalsKc (string identifier, int? period = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Keltner Channel is a volatility based signal, with upper, middle, and lower bands. It is often used at market open, when the largest moves tend to occur. In general, traders tend to buy if the price breaks up above the upper band or sell short if the price drops below the lower band.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsKcExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 10;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityKeltnerChannel result = technicalApi.GetSecurityPriceTechnicalsKc(identifier, period, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate Kelter Channel | [optional] [default to 10] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityKeltnerChannel
View Intrinio API Documentation
ApiResponseSecurityKnowSureThing GetSecurityPriceTechnicalsKst (string identifier, int? roc1 = null, int? roc2 = null, int? roc3 = null, int? roc4 = null, int? sma1 = null, int? sma2 = null, int? sma3 = null, int? sma4 = null, string priceKey = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Know Sure Thing indicator (KST) is a momentum based oscillator that is calculated by measuring the momentum of four separate price cycles. KST fluctuates above and below a zero line and is used to identify overbought and oversold conditions, and is often used with additional indicators to boost signal strength.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsKstExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? roc1 = 10;
int? roc2 = 15;
int? roc3 = 20;
int? roc4 = 30;
int? sma1 = 10;
int? sma2 = 10;
int? sma3 = 10;
int? sma4 = 15;
string priceKey = "close";
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityKnowSureThing result = technicalApi.GetSecurityPriceTechnicalsKst(identifier, roc1, roc2, roc3, roc4, sma1, sma2, sma3, sma4, priceKey, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
roc1 | int? | The number of observations, per period, to calculate the rate-of-change for RCMA1 | [optional] [default to 10] |
roc2 | int? | The number of observations, per period, to calculate the rate-of-change for RCMA2 | [optional] [default to 15] |
roc3 | int? | The number of observations, per period, to calculate the rate-of-change for RCMA3 | [optional] [default to 20] |
roc4 | int? | The number of observations, per period, to calculate the rate-of-change for RCMA4 | [optional] [default to 30] |
sma1 | int? | The number of observations, per period, to calculate the Simple Moving Average of the rate-of-change for RCMA1 | [optional] [default to 10] |
sma2 | int? | The number of observations, per period, to calculate the Simple Moving Average of the rate-of-change for RCMA2 | [optional] [default to 10] |
sma3 | int? | The number of observations, per period, to calculate the Simple Moving Average of the rate-of-change for RCMA3 | [optional] [default to 10] |
sma4 | int? | The number of observations, per period, to calculate the Simple Moving Average of the rate-of-change for RCMA4 | [optional] [default to 15] |
priceKey | string | The Stock Price field to use when calculating Know Sure Thing | [optional] [default to close] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityKnowSureThing
View Intrinio API Documentation
ApiResponseSecurityMovingAverageConvergenceDivergence GetSecurityPriceTechnicalsMacd (string identifier, int? fastPeriod = null, int? slowPeriod = null, int? signalPeriod = null, string priceKey = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
Moving average convergence divergence (MACD) is a trend-following momentum oscillator that consists of three indicators: (1) a 12 period short-term exponential moving average (EMA) a 26 period long-term EMA and a 9 period EMA signal line. Traders using MACD often look for signal line crossovers, centerline crossovers, and EMA divergences to indicate the momentum and underlying trend of a security`s price.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsMacdExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? fastPeriod = 12;
int? slowPeriod = 26;
int? signalPeriod = 9;
string priceKey = "close";
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityMovingAverageConvergenceDivergence result = technicalApi.GetSecurityPriceTechnicalsMacd(identifier, fastPeriod, slowPeriod, signalPeriod, priceKey, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
fastPeriod | int? | The number of observations, per period, to calculate the fast moving Exponential Moving Average for Moving Average Convergence Divergence | [optional] [default to 12] |
slowPeriod | int? | The number of observations, per period, to calculate the slow moving Exponential Moving Average for Moving Average Convergence Divergence | [optional] [default to 26] |
signalPeriod | int? | The number of observations, per period, to calculate the signal line for Moving Average Convergence Divergence | [optional] [default to 9] |
priceKey | string | The Stock Price field to use when calculating Moving Average Convergence Divergence | [optional] [default to close] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityMovingAverageConvergenceDivergence
View Intrinio API Documentation
ApiResponseSecurityMoneyFlowIndex GetSecurityPriceTechnicalsMfi (string identifier, int? period = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Money Flow Index (MFI) is a technical oscillator that incorporates both price and volume, moving between 0 and 100. Traders often consider a MFI above 80 as overbought conditions and below 20 as oversold conditions.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsMfiExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 14;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityMoneyFlowIndex result = technicalApi.GetSecurityPriceTechnicalsMfi(identifier, period, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate Money Flow Index | [optional] [default to 14] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityMoneyFlowIndex
View Intrinio API Documentation
ApiResponseSecurityMassIndex GetSecurityPriceTechnicalsMi (string identifier, int? emaPeriod = null, int? sumPeriod = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The mass index (MI) is a technical indicator used by traders to predict trend reversals. A trend reversal signal is said to occur when the 25-day MI reaches 27.0 and then falls below 26.0.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsMiExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? emaPeriod = 9;
int? sumPeriod = 25;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityMassIndex result = technicalApi.GetSecurityPriceTechnicalsMi(identifier, emaPeriod, sumPeriod, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
emaPeriod | int? | The number of observations, per period, to calculate the single Exponential Moving Average and the Double Exponential Moving Average for Mass Index | [optional] [default to 9] |
sumPeriod | int? | The number of observations, per period, to calculate the sum of the Exponetinal Moving Average Ratios for Mass Index | [optional] [default to 25] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
View Intrinio API Documentation
ApiResponseSecurityNegativeVolumeIndex GetSecurityPriceTechnicalsNvi (string identifier, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The negative volume index (NVI) is often referred to as the smart money indicator.
It works by the assumption that smart money (institutional money) is at work when volume decreases and vice versa when volume increases. NVI starts at 1000 and increases in regard to the percentage price change when volume decreases over a 255-day EMA period. Traders often use this technical indicator when researching broder markets and indices.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsNviExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityNegativeVolumeIndex result = technicalApi.GetSecurityPriceTechnicalsNvi(identifier, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityNegativeVolumeIndex
View Intrinio API Documentation
ApiResponseSecurityOnBalanceVolume GetSecurityPriceTechnicalsObv (string identifier, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
On-balance volume (OBV) is a leading momentum indicator that uses the increase/decrease flow in volume to predict upcoming stock price changes. When both OBV and a security`s price are making higher highs, it is presumed the upward trend is likely to continue and vice versa.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsObvExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityOnBalanceVolume result = technicalApi.GetSecurityPriceTechnicalsObv(identifier, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityOnBalanceVolume
View Intrinio API Documentation
ApiResponseSecurityOnBalanceVolumeMean GetSecurityPriceTechnicalsObvMean (string identifier, int? period = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
On-balance volume mean (OBVM) is a leading momentum indicator that uses the increase/decrease flow in volume to predict upcoming stock price changes. The difference between OBV and OBVM is that OBVM takes the mean average of a provided period. When both OBVM and a security`s price are making higher highs, it is presumed the upward trend is likely to continue and vice versa.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsObvMeanExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 10;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityOnBalanceVolumeMean result = technicalApi.GetSecurityPriceTechnicalsObvMean(identifier, period, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate On-balance Volume Mean | [optional] [default to 10] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityOnBalanceVolumeMean
View Intrinio API Documentation
ApiResponseSecurityRelativeStrengthIndex GetSecurityPriceTechnicalsRsi (string identifier, int? period = null, string priceKey = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
Relative strength index (RSI) is a momentum oscillator that ranges between 0 and 100. Traders believe that an RSI value over 70 indicates that a security is overbought and an RSI under 30 indicates that a security is oversold.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsRsiExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 14;
string priceKey = "close";
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityRelativeStrengthIndex result = technicalApi.GetSecurityPriceTechnicalsRsi(identifier, period, priceKey, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate Relative Strength Index | [optional] [default to 14] |
priceKey | string | The Stock Price field to use when calculating Relative Strength Index | [optional] [default to close] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityRelativeStrengthIndex
View Intrinio API Documentation
ApiResponseSecuritySimpleMovingAverage GetSecurityPriceTechnicalsSma (string identifier, int? period = null, string priceKey = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
A simple moving average (SMA) adds recent prices for a specified period and divides the total by that same number of periods. SMA is typically used to indicate whether a security is in an uptrend or downtrend and can also be combined with a long-term moving average to improve the signal`s abilities.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsSmaExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 20;
string priceKey = "close";
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecuritySimpleMovingAverage result = technicalApi.GetSecurityPriceTechnicalsSma(identifier, period, priceKey, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate Simple Moving Average | [optional] [default to 20] |
priceKey | string | The Stock Price field to use when calculating Simple Moving Average | [optional] [default to close] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecuritySimpleMovingAverage
View Intrinio API Documentation
ApiResponseSecurityStochasticOscillator GetSecurityPriceTechnicalsSr (string identifier, int? period = null, int? signalPeriod = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Stochastic Oscillator (SO) is a range-bound momentum indicator that ranges from 0 to 100 and follows the velocity of the momentum itself, not the underlying price or volume. When SO is above 80 it indicates that a security is trading at the high end of its period`s high-low range and vice versa if the reading is below 20.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsSrExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 14;
int? signalPeriod = 3;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityStochasticOscillator result = technicalApi.GetSecurityPriceTechnicalsSr(identifier, period, signalPeriod, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate %K of Stochastic Oscillator | [optional] [default to 14] |
signalPeriod | int? | The number of observations, per period, to calculate the %D (the Simple Moving Average of %K) as a signal line for Stochastic Oscillator | [optional] [default to 3] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityStochasticOscillator
View Intrinio API Documentation
ApiResponseSecurityTripleExponentialAverage GetSecurityPriceTechnicalsTrix (string identifier, int? period = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Triple Exponential Average (TEA) is a momentum indicator used to identify when a security is oversold and overbought. By exponentially smoothing out the underlying security`s moving average, the TEA filters out insignificant price movements. A positive TEA is often believed to indicate momentum is increasing and a negative TEA indicates that momentum is decreasing.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsTrixExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 15;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityTripleExponentialAverage result = technicalApi.GetSecurityPriceTechnicalsTrix(identifier, period, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate Exponential Moving Average for Triple Exponential Average | [optional] [default to 15] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityTripleExponentialAverage
View Intrinio API Documentation
ApiResponseSecurityTrueStrengthIndex GetSecurityPriceTechnicalsTsi (string identifier, int? lowPeriod = null, int? highPeriod = null, string priceKey = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The True Strength Index (TSI) is a momentum oscillator used to identify building trends and trend reversals, typically by signalling overbought and oversold conditions. TSI fluctuates between positive and negative values, and traders typically combine its signal with other momentum oscillators to increase its strength. When TSI crosses the signal line into positive territory it is presumed to be an entrance opportunity and vice versa when the TSI crosses into negative territory.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsTsiExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? lowPeriod = 13;
int? highPeriod = 25;
string priceKey = "close";
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityTrueStrengthIndex result = technicalApi.GetSecurityPriceTechnicalsTsi(identifier, lowPeriod, highPeriod, priceKey, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
lowPeriod | int? | The number of observations, per period, to calculate low period Exponential Moving Average for smoothing in True Strength Index | [optional] [default to 13] |
highPeriod | int? | The number of observations, per period, to calculate high period Exponential Moving Average for smoothing in True Strength Index | [optional] [default to 25] |
priceKey | string | The Stock Price field to use when calculating True Strength Index | [optional] [default to close] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityTrueStrengthIndex
View Intrinio API Documentation
ApiResponseSecurityUltimateOscillator GetSecurityPriceTechnicalsUo (string identifier, int? shortPeriod = null, int? mediumPeriod = null, int? longPeriod = null, float? shortWeight = null, float? mediumWeight = null, float? longWeight = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Ultimate Oscillator (UO) is a range bound technical indicator that moves between 0 and 100 and is calculated with 3 timeframes, typically 7, 14, and 28 day periods. When UOs value is above 70 a security is categorized as overbought and when UO
s value is below 30 a security is categorized as oversold.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsUoExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? shortPeriod = 7;
int? mediumPeriod = 14;
int? longPeriod = 28;
float? shortWeight = 4.0f;
float? mediumWeight = 2.0f;
float? longWeight = 1.0f;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityUltimateOscillator result = technicalApi.GetSecurityPriceTechnicalsUo(identifier, shortPeriod, mediumPeriod, longPeriod, shortWeight, mediumWeight, longWeight, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
shortPeriod | int? | The number of observations, per period, to calculate the short period for Ultimate Oscillator | [optional] [default to 7] |
mediumPeriod | int? | The number of observations, per period, to calculate the medium period for Ultimate Oscillator | [optional] [default to 14] |
longPeriod | int? | The number of observations, per period, to calculate the long period for Ultimate Oscillator | [optional] [default to 28] |
shortWeight | float? | The weight of short Buying Pressure average for Ultimate Oscillator | [optional] [default to 4.0] |
mediumWeight | float? | The weight of medium Buying Pressure average for Ultimate Oscillator | [optional] [default to 2.0] |
longWeight | float? | The weight of long Buying Pressure average for Ultimate Oscillator | [optional] [default to 1.0] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityUltimateOscillator
View Intrinio API Documentation
ApiResponseSecurityVortexIndicator GetSecurityPriceTechnicalsVi (string identifier, int? period = null, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The Vortex Indicator (VI) is composed of an uptrend line (VI+) and a downtrend line (VI-). When VI+ crosses VI- from below it typically indicates an entry into a given security. When VI- crosses VI+ from below it typically triggers an exit and that the current trend is reversing course.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsViExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 14;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityVortexIndicator result = technicalApi.GetSecurityPriceTechnicalsVi(identifier, period, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to calculate Vortex Indicator | [optional] [default to 14] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityVortexIndicator
View Intrinio API Documentation
ApiResponseSecurityVolumePriceTrend GetSecurityPriceTechnicalsVpt (string identifier, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
The volume price trend (VPT) is a technical indicator that uses price & volume to determine whether a trend is established. Typically, when a security is trending upwards, there is more volume on positive days than negative ones, and as a result VPT should be increasing on these days as well. However, if VPT fails to increase past its previous high during an outbreak, this is suggested to indicate the rally is losing strength.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsVptExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityVolumePriceTrend result = technicalApi.GetSecurityPriceTechnicalsVpt(identifier, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityVolumePriceTrend
View Intrinio API Documentation
ApiResponseSecurityVolumeWeightedAveragePrice GetSecurityPriceTechnicalsVwap (string identifier, string startDate = null, string endDate = null, int? pageSize = null, string nextPage = null)
Volume Weighted Average Price (VWAP) is a lagging technical indicator that is used in combination with a security`s price. When the underlying price rises above its VWAP, it is often interpreted as a bullish signal, and vice versa in the opposite direction.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsVwapExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
string startDate = "2018-01-01";
string endDate = "2019-01-01";
int? pageSize = 100;
string nextPage = null;
ApiResponseSecurityVolumeWeightedAveragePrice result = technicalApi.GetSecurityPriceTechnicalsVwap(identifier, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | int? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |
ApiResponseSecurityVolumeWeightedAveragePrice
View Intrinio API Documentation
ApiResponseSecurityWilliamsR GetSecurityPriceTechnicalsWr (string identifier, int? period = null, string startDate = null, string endDate = null, decimal? pageSize = null, string nextPage = null)
Williams %R is a momentum indicator used to determine overbought and oversold environments for a security and fluctuates between 0 and -100. When Williams %R is above -20 the security is considered to be overbought and when Williams %R is under -80 the security is considered to be oversold.
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetSecurityPriceTechnicalsWrExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var technicalApi = new TechnicalApi();
string identifier = "AAPL";
int? period = 14;
string startDate = "2018-01-01";
string endDate = "2019-01-01";
decimal? pageSize = 100;
string nextPage = null;
ApiResponseSecurityWilliamsR result = technicalApi.GetSecurityPriceTechnicalsWr(identifier, period, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
identifier | string | A Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) | |
period | int? | The number of observations, per period, to look-back when calculating Williams %R | [optional] [default to 14] |
startDate | string | Return technical indicator values on or after the date | [optional] |
endDate | string | Return technical indicator values on or before the date | [optional] |
pageSize | decimal? | The number of results to return | [optional] [default to 100] |
nextPage | string | Gets the next page of data from a previous API call | [optional] |