Option Stats Realtime

Option Stats Realtime Javascript API Documentation

Returns all option stats (greeks and implied volatility) as well as the underlying factors used to calculate them, for a particular option contract.

API Class:
OptionsApi
Instance Method:
getOptionsStatsRealtime()

Stock Price Code Example

Use my API Key
var intrinioSDK = require('intrinio-sdk');
intrinioSDK.ApiClient.instance.authentications['ApiKeyAuth'].apiKey = "YOUR_API_KEY";
intrinioSDK.ApiClient.instance.enableRetries = true;
var options = new intrinioSDK.OptionsApi();
var identifier = "AAPL230120C00090000";
var opts = {
'source': null,
'showExtendedPrice': null
};
options.getOptionsStatsRealtime(identifier, opts).then(function(data) {
data = JSON.stringify(data, null, 2)
console.log(data);
}, function(error) {
console.error(error);
});
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
identifierStringThe Intrinio ID or code of the options contract to request prices for. 
sourceStringRealtime or 15-minute delayed contracts.[optional]  
showExtendedPriceBooleanWhether to include open close high low type fields.[optional]  


Return Type

object
ApiResponseOptionsStatsRealtime

Properties

NameTypeDescription
statsOptionStatsRealtime 
factorsOptionFactorsRealtime 
optionOptionRealtime 
object
OptionStatsRealtime

Properties

NameTypeDescription
impliedVolatilityNumberThe implied volatility of the contract calculated using the Black-Scholes Model.  
deltaNumberDelta represents the rate of change between the option's price and a $1 change in the underlying asset's price.  
gammaNumberGamma represents the rate of change between an option's delta and the underlying asset's price.  
thetaNumberTheta represents the rate of change between the option price and time, or time sensitivity - sometimes known as an option's time decay.  
vegaNumberVega represents the rate of change between an option's value and the underlying asset's implied volatility.  
underlyingPriceNumberThe most recent trade price of the underlying asset.  
object
OptionFactorsRealtime

Properties

NameTypeDescription
marketPriceNumberThe market price of the options contract  
underlyingPriceNumberThe market price of the underlying asset  
strikePriceNumberThe strike price of the options contract  
daysToExpirationNumberThe number of days to expiration  
riskFreeInterestRateNumberThe current risk-free interest rate, as measured by the 3-month Treasury Bill rate  
dividendYieldNumberThe dividend yield of the underlying asset (if applicable)  
object
OptionRealtime

Properties

NameTypeDescription
codeStringThe Intrinio Code for the Option.  
tickerStringThe ticker symbol of the Security for the Option.  
expirationDateThe date on which the Option expires. The Option becomes invalid after this date and cannot be exercised.  
strikeNumberThe strike price is the fixed price at which a derivative can be exercised, and refers to the price of the derivative's underlying asset. In a call option, the strike price is the price at which the option holder can purchase the underlying security. For a put option, the strike price is the price at which the option holder can sell the underlying security.  
typeStringThe type of Option (put or call).