Ultimate Oscillator

Ultimate Oscillator Csharp API Documentation

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 UO`s value is above 70 a security is categorized as overbought and when UO`s value is below 30 a security is categorized as oversold.

API Class:
Intrinio.SDK.Api.SecurityApi
Instance Method:
GetSecurityPriceTechnicalsUo()

Stock Price Code Example

Use my API Key
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 securityApi = new SecurityApi();
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 = securityApi.GetSecurityPriceTechnicalsUo(identifier, shortPeriod, mediumPeriod, longPeriod,
        shortWeight, mediumWeight, longWeight, startDate, endDate, pageSize, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
identifierstringA Security identifier (Ticker, FIGI, ISIN, CUSIP, Intrinio ID) 
shortPeriodint?The number of observations, per period, to calculate the short period for Ultimate Oscillator[optional] [default to 7]  
mediumPeriodint?The number of observations, per period, to calculate the medium period for Ultimate Oscillator[optional] [default to 14]  
longPeriodint?The number of observations, per period, to calculate the long period for Ultimate Oscillator[optional] [default to 28]  
shortWeightfloat?The weight of short Buying Pressure average for Ultimate Oscillator[optional] [default to 4.0]  
mediumWeightfloat?The weight of medium Buying Pressure average for Ultimate Oscillator[optional] [default to 2.0]  
longWeightfloat?The weight of long Buying Pressure average for Ultimate Oscillator[optional] [default to 1.0]  
startDatestringReturn technical indicator values on or after the date[optional]  
endDatestringReturn technical indicator values on or before the date[optional]  
pageSizeint?The number of results to return[optional] [default to 100]  
nextPagestringGets the next page of data from a previous API call[optional]  


Return Type

object
Intrinio.SDK.Model.ApiResponseSecurityUltimateOscillator

Properties

NameTypeDescription
TechnicalsList 
IndicatorTechnicalIndicatorThe name and symbol of the technical indicator  
SecuritySecuritySummaryThe Security of the Stock Price  
NextPagestringThe token required to request the next page of the data. If null, no further results are available.  
object
Intrinio.SDK.Model.UltimateOscillatorTechnicalValue

Properties

NameTypeDescription
DateTimeDateTime?The date_time of the observation  
Uofloat?The Ultimate Oscillator calculation value  
object
Intrinio.SDK.Model.TechnicalIndicator

Properties

NameTypeDescription
NamestringThe name of the Technical Indicator  
SymbolstringThe symbol of the Technical Indicator  
object
Intrinio.SDK.Model.SecuritySummary

Properties

NameTypeDescription
IdstringThe Intrinio ID for Security  
CompanyIdstringThe Intrinio ID for the Company for which the Security is issued  
ExchangestringThe exchange's MIC  
ExchangeMicstringThe security's exchange MIC  
StockExchangeIdstringThe exchange's Intrinio ID  
NamestringThe name of the Security  
CodestringA 2-3 digit code classifying the Security (reference)  
CurrencystringThe currency in which the Security is traded on the exchange  
TickerstringThe common/local ticker of the Security  
CompositeTickerstringThe country-composite ticker of the Security  
FigistringThe OpenFIGI identifier  
CompositeFigistringThe country-composite OpenFIGI identifier  
ShareClassFigistringThe global-composite OpenFIGI identifier  
PrimaryListingbool?If true, the Security is the primary issue for the company, otherwise it is a secondary issue on a secondary stock exchange