@@ -39,7 +39,6 @@ Currently the following sources are supported:
39
39
- :ref: `Eurostat<remote_data.eurostat> `
40
40
- :ref: `Thrift Savings Plan<remote_data.tsp> `
41
41
- :ref: `Nasdaq Trader symbol definitions<remote_data.nasdaq_symbols> `
42
- - :ref: `IEX<remote_data.iex> `
43
42
- :ref: `Stooq<remote_data.stooq> `
44
43
- :ref: `MOEX<remote_data.moex> `
45
44
@@ -70,7 +69,9 @@ Google Finance
70
69
IEX
71
70
===
72
71
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:
74
75
75
76
.. ipython :: python
76
77
@@ -81,8 +82,16 @@ Historical stock prices from `IEX <https://iextrading.com/developer/>`__,
81
82
f = web.DataReader(' F' , ' iex' , start, end)
82
83
f.loc[' 2015-02-09' ]
83
84
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.
84
89
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 ]
86
95
87
96
.. _remote_data.enigma :
88
97
@@ -422,20 +431,6 @@ available. More information on the `field <http://www.nasdaqtrader.com/trader.as
422
431
Name: IBM , dtype: object
423
432
424
433
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
-
439
434
.. _remote_data.stooq:
440
435
441
436
Stooq Index Data
0 commit comments