Options
Options

Options API

Overview

The Options API provides access to options market data and analytics. This documentation outlines the available objects and functions to help you integrate options data into your trading algorithms and analysis workflows.

Available Objects

ObjectDescriptionDocumentation
goldengoose.options.ggOptionChainContainer for entire option chains, including puts and calls across multiple strike prices and expirationsggOptionChain Documentation
goldengoose.options.ggOptionIndividual option contract data including pricing, greeks, and underlying informationggOption Documentation

Available Functions

FunctionDescriptionDocumentation
goldengoose.options.list()Returns a list of all available option symbolslist() Documentation
goldengoose.options.get(option)Retrieves data for a specific option or option chainget() Documentation

Getting Started

To begin working with options data:

  1. Import the GoldenGoose library
  2. Use list() to discover available option symbols
  3. Use get() to retrieve data for specific options
  4. Access option chain or individual option data through the returned objects

Example

import goldengoose
 
# Get all available option symbols
available_options = goldengoose.options.list()
 
# Retrieve data for a specific option chain
spy_options = goldengoose.options.get("SPY")
 
# Access the current data point
current_epoch = goldengoose.get_current_epoch()
current_chain = spy_options[current_epoch]
 
# Get a specific option from the chain (e.g., SPY $400 Call expiring on 2023-06-16)
call_option = current_chain.get_option("C", 400.0, "2023-06-16")
 
# Print option data
print(f"SPY $400 Call premium: ${call_option.price}")
print(f"Delta: {call_option.greeks.delta}")