menu
Data

Data Contexts

DataContexts are objects which provide a set of parameters which describe how to query data. These can be used to provide a common context which can be reused for a number of different data access or manipulation functions. The GS Quant market data apis use DataContext to determine how to query data (e.g. what date range to use) if no specific parameters are provided.

Creating a DataContext

Creating a DataContext is straightforward given a start and end date:

from gs_quant.data import DataContext
from datetime import date

data_ctx = DataContext(start=date(2018, 1, 1), end=date(2018, 12, 31))       # Create data context

This example creates a context covering 2018.

Usage

DataContexts can be used within a scoped block to provide a common reference for subsequent operations. Similar to Sessions, there are two ways to use a DataContext:

  • Set as global
  • Use within a block

Global Context

Any request which is not scoped will use the global data context automatically. The global context can be accessed through current:

current = DataContext.current     # Get current data context
DataContext.current = data_ctx    # Set current data context

Scoped Context

DataContext objects can be used within blocks. This allows the same data query parameters shared by multiple requests within a defined scope.

data_ctx_2017 = DataContext(start=date(2017, 1, 1), end=date(2017, 12, 31))       # Create 2017 data context
data_ctx_2018 = DataContext(start=date(2018, 1, 1), end=date(2018, 12, 31))       # Create 2018 data context

with data_ctx_2017:

    # query data for 2017

with data_ctx_2018:

    # query data for 2018

Example

The following example shows how to access historical implied volatility level for SPX using a DataContext:

info

Note

Requires an initialized GsSession and data subscription. Please refer to Sessions for details.

from datetime import date
from gs_quant.data import DataContext
from gs_quant.markets.securities import SecurityMaster, AssetIdentifier, ExchangeCode
import gs_quant.timeseries as ts

data_ctx = DataContext(start=date(2018, 1, 1), end=date(2018, 12, 31))      # Create a data context covering 2018
spx = SecurityMaster.get_asset('SPX', AssetIdentifier.TICKER, exchange_code=ExchangeCode.NYSE)               # Lookup S&P 500 Index via Security Master

with data_ctx:                                                              # Use the data context we setup
    vol = ts.implied_volatility(spx, '1m', ts.VolReference.DELTA_CALL, 25)  # Get 25 delta call implied volatility

vol.tail()

Output:

Out[1]:
2021-12-20 26.108257
2021-12-21 21.794968
2021-12-22 22.398788
2021-12-23 20.985507
2021-12-24 19.574263
dtype: float64

Related Content


This site is for informational purposes only and does not constitute an offer to sell, or the solicitation of an offer to buy, any security. The Goldman Sachs Marquee® platform is for institutional and professional clients only. Some of the services and products described on this site may not be available in certain jurisdictions or to certain types of client. Please contact your Goldman Sachs sales representative with any questions. Nothing on this site constitutes an offer, or an invitation to make an offer from Goldman Sachs to purchase or sell a product. This site is given for purely indicative purposes and does not create any contractual relationship between you and Goldman Sachs. Any market information contained on the site (including but not limited to pricing levels) is based on data available to Goldman Sachs at a given moment and may change from time to time. There is no representation that any transaction can or could have been effected on such terms or at such prices. Please see https://www.goldmansachs.com/disclaimer/sec-div-disclaimers-for-electronic-comms.html for additional information. © 2023 Goldman Sachs. All rights reserved.
Transaction Banking services are offered by Goldman Sachs Bank USA (“GS Bank”). GS Bank is a New York State chartered bank, a member of the Federal Reserve System and a Member FDIC. © 2023 Goldman Sachs. All rights reserved.
Not all products and functionality mentioned on this website are currently available through our API platform.
All loans and deposit products are provided by Goldman Sachs Bank USA, Salt Lake City Branch. Member FDIC.
Brokerage and investment advisory services offered by our investment products are provided by Goldman Sachs & Co. LLC (`‘GS&CO.`’), which is an SEC registered broker-dealer and investment adviser, and member FINRA/SIPC. Research our firm at FINRA's BrokerCheck. Custody and clearing services are provided by Apex Clearing Corporation, a registered broker-dealer and member FINRA/SIPC. Please consider your objectives before investing. A diversified portfolio does not ensure a profit or protect against a loss. Past performance does not guarantee future results. Investment outcomes and projections are forward-looking statements and hypothetical in nature. Neither this website nor any of its contents shall constitute an offer, solicitation, or advice to buy or sell securities in any jurisdictions where GS&Co. is not registered. Any information provided prior to opening an investment account is on the basis that it will not constitute investment advice and that GS&Co. is not a fiduciary to any person by reason of providing such information. For more information about our investment offerings, visit our Full Disclosures.
Investment products are: NOT FDIC INSURED ∙ NOT A DEPOSIT OR OTHER OBLIGATION OF, OR GUARANTEED BY, GOLDMAN SACHS BANK USA ∙ SUBJECT TO INVESTMENT RISKS, INCLUDING POSSIBLE LOSS OF THE PRINCIPAL AMOUNT INVESTED