@@ -39,7 +39,6 @@ Currently the following sources are supported:
3939 - :ref: `Eurostat<remote_data.eurostat> `
4040 - :ref: `Thrift Savings Plan<remote_data.tsp> `
4141 - :ref: `Nasdaq Trader symbol definitions<remote_data.nasdaq_symbols> `
42- - :ref: `IEX<remote_data.iex> `
4342 - :ref: `Stooq<remote_data.stooq> `
4443 - :ref: `MOEX<remote_data.moex> `
4544
@@ -70,7 +69,9 @@ Google Finance
7069IEX
7170===
7271
73- Historical stock prices from `IEX <https://iextrading.com/developer/ >`__,
72+ The Investors Exchange (IEX) provides a wide range of data through an
73+ `API <https://iextrading.com/developer/docs/ >`__. Historical stock
74+ prices are available for up to 5 years:
7475
7576.. ipython :: python
7677
@@ -81,8 +82,16 @@ Historical stock prices from `IEX <https://iextrading.com/developer/>`__,
8182 f = web.DataReader(' F' , ' iex' , start, end)
8283 f.loc[' 2015-02-09' ]
8384
85+ There are additional interfaces to this API that are
86+ directly exposed: tops (`'iex-tops' `) and last (`'iex-lasts' `).
87+ A third interface to the deep API is exposed through
88+ `Deep ` class or the `get_iex_book ` function.
8489
85- Prices are available up for the past 5 years.
90+ .. ipython :: python
91+
92+ import pandas_datareader.data as web
93+ f = web.DataReader(' gs' , ' iex-tops' )
94+ f[:10 ]
8695
8796 .. _remote_data.enigma :
8897
@@ -422,20 +431,6 @@ available. More information on the `field <http://www.nasdaqtrader.com/trader.as
422431 Name: IBM , dtype: object
423432
424433
425- .. _remote_data.iex:
426-
427- The Investors Exchange (IEX ) provides a wide range of data through an
428- `API < https:// iextrading.com/ developer/ docs/ > ` __. There are two interfaces
429- to this API that are directly exposed: tops (`' iex-tops' ` ) and last
430- (`' iex-lasts' ` ). A third interface to the deep API is exposed through
431- `IEXDeep` class or the `get_iex_book` function.
432-
433- .. ipython:: python
434-
435- import pandas_datareader.data as web
436- f = web.DataReader(' gs' , ' iex-tops' )
437- f[:10 ]
438-
439434.. _remote_data.stooq:
440435
441436Stooq Index Data
0 commit comments