.. toctree:: :maxdepth: 1 :hidden: changelog
nasdaq-100-ticker-history
provides the current set and a limited recent history of the stock symbols of
the member companies of the NASDAQ 100 [1] index. As the member companies of this index
change regularly [2], the API is date-centric. Ie, given a calendar date, it will return the
set of ticker symbols (eg, AAPL
) that were in the index on that date.
As of version |release|, accurate coverage is provided from Jan 1, 2015 through at least July 31, 2025. Most likely, the coverage is accurate further into 2025 subject to additional changes being announced by Nasdaq. A new version of the API is released on each update Nasdaq announces, typically with a time lag of a few days to a few weeks. It is the intent of the project maintainers to provide accurate coverage on an ongoing basis.
>>> from nasdaq_100_ticker_history import tickers_as_of
>>> 'AMZN' in tickers_as_of(2020, 6, 1)
True
>>> tuple(('OKTA' in tickers_as_of(y, 1, 1) for y in [2020, 2021, 2022, 2023]))
(False, True, True, False)
.. toctree:: :maxdepth: 1 :glob: api/*
Footnotes
[1] | NASDAQ 100 overview |
[2] | NASDAQ 100 changes |