# NAME Finance::Quote::IEX - (DEPRECATED) Retrieve stock quotes using the IEX API # VERSION version 0.002000 # SYNOPSIS use Finance::Quote; my $q = Finance::Quote->new('IEX'); my %info = Finance::Quote->fetch( 'iex', 'AAPL' ); # DESCRIPTION This module fetches information from the IEX API. This module is not loaded by default on a Finance::Quote object. It must be loaded explicitly by placing `'IEX'` in the argument list to `Finance::Quote->new()`. This module provides the `iex` fetch method. # DEPRECATED **This module is deprecated. Use [Finance::Quote::IEXCloud](https://metacpan.org/pod/Finance::Quote::IEXCloud) instead.** **The IEX API removed all non-IEX data in June 2019.** # ATTRIBUTION If you redistribute IEX API data: - Cite IEX using the following text and link: "Data provided for free by [IEX](https://iextrading.com/developer)." - Provide a link to [https://iextrading.com/api-exhibit-a](https://iextrading.com/api-exhibit-a) in your terms of service. Additionally, if you display our TOPS price data, cite "[IEX Real-Time Price](https://iextrading.com/developer)" near the price. # LABELS RETURNED The following labels may be returned by `Finance::Quote::IEX`: name, last, date, time, net, p\_change, volume, close, open, year\_range, pe, cap, exchange, method and price. # SEE ALSO - [Finance::Quote](https://metacpan.org/pod/Finance::Quote) - [Finance::Quote::IEXCloud](https://metacpan.org/pod/Finance::Quote::IEXCloud) - [https://iextrading.com/developer/docs/](https://iextrading.com/developer/docs/) # AUTHOR Jeffrey T. Palmer # COPYRIGHT AND LICENSE This software is Copyright (c) 2019 by Jeffrey T. Palmer. This is free software, licensed under: The MIT (X11) License