Option Prices EOD

Option Prices EOD Csharp API Documentation

Returns all option prices for a given option contract identifier.

API Class:
Intrinio.SDK.Api.OptionsApi
Instance Method:
GetOptionsPricesEod()

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 GetOptionsPricesEodExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var optionsApi = new OptionsApi();
string identifier = "AAPL230616P00190000";
string nextPage = null;
DateTime? startDate = null;
DateTime? endDate = null;
ApiResponseOptionsPricesEod result = optionsApi.GetOptionsPricesEod(identifier, nextPage, startDate, endDate);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
identifierstringThe Intrinio ID or code of the options contract to request prices for. 
nextPagestringGets the next page of data from a previous API call[optional]  
startDateDateTime?The start date to retrieve prices for[optional]  
endDateDateTime?The end date to retrieve prices for[optional]  


Return Type

object
Intrinio.SDK.Model.ApiResponseOptionsPricesEod

Properties

NameTypeDescription
PricesListA list of options prices with the given symbol  
OptionOptionEod 
NextPagestringThe token required to request the next page of the data. If null, no further results are available.  
object
Intrinio.SDK.Model.OptionPriceEod

Properties

NameTypeDescription
DatestringThe date of the price, in the format YYYY-MM-DD  
Closedecimal?The closing price of the options contract.  
CloseBiddecimal?The closing bid price of the options contract.  
CloseAskdecimal?The closing ask price of the options contract.  
Volumeint?The cumulative volume of this options contract that traded that day.  
Opendecimal?The price at the beginning of the period  
OpenAskdecimal?The ask at the beginning of the period  
OpenBiddecimal?The bid at the beginning of the period  
OpenInterestint?The total number of this options contract that are still open.  
Highdecimal?The highest price over the span of the period  
Lowdecimal?The highest price over the span of the period  
Markdecimal?The mid price between the latest bid and ask spread  
AskHighdecimal?The highest ask over the span of the period  
AskLowdecimal?The lowest ask over the span of the period  
BidHighdecimal?The highest bid over the span of the period  
BidLowdecimal?The lowest bid over the span of the period  
ImpliedVolatilitydecimal?The implied volatility of the contract calculated using the Black-Scholes Model.  
Deltadecimal?Delta represents the rate of change between the option's price and a $1 change in the underlying asset's price.  
Gammadecimal?Gamma represents the rate of change between an option's delta and the underlying asset's price.  
Thetadecimal?Theta represents the rate of change between the option price and time, or time sensitivity - sometimes known as an option's time decay.  
Vegadecimal?Vega represents the rate of change between an option's value and the underlying asset's implied volatility.  
CloseTimeDateTime?The time of the last trade before close.  
CloseSizeint?The size of the last trade before close.  
CloseBidTimeDateTime?The time of the last bid before close.  
CloseBidSizeint?The size of the last bid before close.  
CloseAskTimeDateTime?The time of the last ask before close.  
CloseAskSizeint?The size of the last ask before close.  
ExerciseStylestringThe exercise style.  
object
Intrinio.SDK.Model.OptionEod

Properties

NameTypeDescription
CodestringThe Intrinio Code for the Option.  
TickerstringThe ticker symbol of the Security for the Option.  
ExpirationstringThe date on which the Option expires. The Option becomes invalid after this date and cannot be exercised.  
Strikedecimal?The 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). A put option is an option contract giving the owner the right, but not the obligation, to sell a specified amount of an underlying asset at a specified price before the option's expiration date. A call option gives the holder the right to buy an underlying asset at a specified price, before the option's expiration date.