Returns all EOD options contracts and their prices for the given symbol and expiration date.
Name | Type | Description | Notes |
---|---|---|---|
symbol | str | The option symbol, corresponding to the underlying security. | |
expiration | str | The expiration date of the options contract | |
type | str | The option contract type. | [optional] |
strike | float | The strike price of the option contract. This will return options contracts with strike price equal to this price. | [optional] |
strike_greater_than | float | The strike price of the option contract. This will return options contracts with strike prices greater than this price. | [optional] |
strike_less_than | float | The strike price of the option contract. This will return options contracts with strike prices less than this price. | [optional] |
date | date | The date to retrieve prices for | [optional] |
include_related_symbols | bool | Include related symbols that end in a 1 or 2 because of a corporate action. | [optional] |
Name | Type | Description |
---|---|---|
chain | list[OptionChainEod] | A list of realtime options for the provided expiration date their respective option prices. |