Finance::Quote â Get stock and mutual fund quotes from various exchanges
| Use Case | Command | Description |
|---|---|---|
| đ Fetch quotes for a stock | $q->fetch("nasdaq", "AAPL") | Get stock data from a specific method |
| đą Convert currency | $q->currency('15.95 USD', 'AUD') | Convert value to another currency |
| âąī¸ Set timeout | $q->set_timeout(30) | Set web request timeout in seconds |
| đ Enable failover | $q->set_failover(1) | Allow fallback to alternate sources |
| đˇī¸ Set required labels | $q->set_required_labels(['close','last']) | Ensure certain fields are populated |
| âī¸ Create quoter with options | Finance::Quote->new(timeout => 30, failover => 1) | Construct object with parameters |
use Finance::Quote;
$q = Finance::Quote->new;
%quotes = $q->fetch("nasdaq", @stocks);
This module gets stock quotes from various internet sources all over the world. Quotes are obtained by constructing a quoter object and using the fetch method to gather data, which is returned as a two-dimensional hash (or a reference to such a hash, if called in a scalar context). For example:
$q = Finance::Quote->new;
%info = $q->fetch("australia", "CML");
print "The price of CML is ".$info{"CML", "price"};
The first part of the hash (eg, "CML") is referred to as the stock. The second part (in this case, "price") is referred to as the label.
When information about a stock is returned, the following standard labels may be used. Some custom-written modules may use labels not mentioned here. If you wish to be certain that you obtain a certain set of labels for a given stock, you can specify that using require_labels().
ask â Askavg_vol â Average Daily Volbid â Bidcap â Market Capitalizationclose â Previous Closecurrency â Currency code for the returned datadate â Last Trade Date (MM/DD/YY format)day_range â Day's Rangediv â Dividend per Sharediv_date â Dividend Pay Datediv_yield â Dividend Yieldeps â Earnings per Shareerrormsg â If success is false, this field may contain the reason why.ex_div â Ex-Dividend Date.exchange â The exchange the information was obtained from.high â Highest trade todayisin â International Securities Identification Numberisodate â ISO 8601 formatted datelast â Last Pricelow â Lowest trade todaymethod â The module (as could be passed to fetch) which found this information.name â Company or Mutual Fund Namenav â Net Asset Valuenet â Net Changeopen â Today's Openp_change â Percent Change from previous day's closepe â P/E Ratiosuccess â Did the stock successfully return information? (true/false)time â Last Trade Timetype â The type of equity returnedvolume â Volumeyear_range â 52-Week Rangeyield â Yield (usually 30 day avg)If all stock lookups fail (possibly because of a failed connection) then the empty list may be returned, or undef in a scalar context.
Please note that the Github repository is not meant for general users of Finance::Quote for installation.
If you downloaded the Finance-Quote-N.NN.tar.gz tarball from CPAN (N.NN is the version number, ex: Finance-Quote-1.50.tar.gz), run the following commands:
tar xzf Finance-Quote-1.50.tar.gz
cd Finance-Quote-1.50.tar.gz
perl Makefile.PL
make
make test
make install
If you have the CPAN module installed: Using cpanm (Requires App::cpanminus)
cpanm Finance::Quote
or Using CPAN shell
perl -MCPAN -e shell
install Finance::Quote
After installing, you can find documentation for this module with the perldoc command.
perldoc Finance::Quote
You can also look for information at:
my $q = Finance::Quote->new()
my $q = Finance::Quote->new('-defaults')
my $q = Finance::Quote->new('AEX', 'Fool')
my $q = Finance::Quote->new(timeout => 30)
my $q = Finance::Quote->new('YahooJSON', fetch_currency => 'EUR')
my $q = Finance::Quote->new('alphavantage' => {API_KEY => '...'})
my $q = Finance::Quote->new('IEXCloud', 'iexcloud' => {API_KEY => '...'});
my $q = Finance::Quote->new(currency_rates => {order => ['ECB', 'Fixer'], 'fixer' => {API_KEY => '...'}});
Finance::Quote modules access a wide range of sources to provide quotes. A module provides one or more methods to fetch quotes. One method is usually the name of the module in lower case. Other methods, if provided, are descriptive names, such as 'canada', 'nasdaq', or 'nyse'.
A Finance::Quote object uses one or more methods to fetch quotes for securities.
"new" constructs a Finance::Quote object and enables the caller to load only specific modules, set parameters that control the behavior of the fetch method, and pass method specific parameters.
timeout = T â sets the web request timeout to T secondsfailover = B â where B is a boolean value indicating if failover in fetch is permittedfetch_currency = C â sets the desired currency code to C for fetch resultscurrency_rates = H â configures the order currency rate modules are consulted for exchange rates and currency rate module optionsrequired_labels = A â sets the required labels for fetch results to array A<ModuleName> as a string is the name of a specific Finance::Quote::Module to load<methodname> = H â passes hash H to methodname during fetch to configure the methodWith no arguments, "new" creates a Finance::Quote object with the default methods. If the environment variable FQ_LOAD_QUOTELET is set, then the contents of FQ_LOAD_QUOTELET (split on whitespace) will be used as the argument list. This allows users to load their own custom modules without having to change existing code. If any method names are passed to "new" or the flag '-defaults' is included in the argument list, then FQ_LOAD_QUOTELET is ignored.
When new() is passed one or more class name arguments, an object is created with only the specified modules loaded. If the first argument is '-defaults', then the default modules will be loaded first, followed by any other specified modules. Note that the FQ_LOAD_QUOTELET environment variable must begin with '-defaults' if you wish the default modules to be loaded.
Method names correspond to the Perl module in the Finance::Quote module space. For example, Finance::Quote->new('ASX') will load the module Finance::Quote::ASX, which provides the method "asx".
Some methods require API keys or have unique options. Passing 'method => HASH' to new() enables the caller to provide a configuration HASH to the corresponding method.
The key 'currency_rates' configures the Finance::Quote currency rate conversion. By default, to maintain backward compatibility, Finance::Quote::CurrencyRates::AlphaVantage is used for currency conversion. This end point requires an API key, which can either be set in the environment or included in the configuration hash. To specify a different primary currency conversion method or configure fallback methods, include the 'order' key, which points to an array of Finance::Quote::CurrencyRates module names. See the documentation for the individual Finance::Quote::CurrencyRates to learn more.
my @fields = Finance::Quote::get_default_currency_fields();
"get_default_currency_fields" returns the standard list of fields in a quote that are automatically converted during currency conversion. Individual modules may override this list.
my $value = Finance::Quote::get_default_timeout();
"get_default_timeout" returns the current Finance::Quote default timeout in seconds for web requests. Finance::Quote does not specify a default timeout, deferring to the underlying user agent for web requests. So this function will return undef unless "set_default_timeout" was previously called.
Finance::Quote::set_default_timeout(45);
"set_default_timeout" sets the Finance::Quote default timeout to a new value.
my @methods = Finance::Quote::get_methods();
"get_methods" returns the list of methods that can be passed to "new" when creating a quoter object and as the first argument to "fetch".
my $value = $q->B_to_billions("20B");
"B_to_billions" is a utility function that expands a numeric string with a "B" suffix to the corresponding multiple of 1000000000.
my $value = $q->decimal_shiftup("123.45", 1); # returns 1234.5
my $value = $q->decimal_shiftup("0.25", 1); # returns 2.5
"decimal_shiftup" moves a the decimal point in a numeric string the specified number of places to the right.
my %stocks = $q->fetch("alphavantage", "IBM", "MSFT", "LNUX");
my $hashref = $q->fetch("nasdaq", "IBM", "MSFT", "LNUX");
"fetch" takes a method as its first argument and the remaining arguments are treated as securities. If the quoter $q was constructed with a specific method or methods, then only those methods are available.
When called in an array context, a hash is returned. In a scalar context, a reference to a hash will be returned. The keys for the returned hash are "{SECURITY,LABEL}". For the above example call, $stocks{"IBM","high"} is the high value for IBM.
$q->get_methods() returns the list of valid methods for quoter object $q. Some methods specify a specific Finance::Quote module, such as 'alphavantage'. Other methods are available from multiple Finance::Quote modules, such as 'nasdaq'. The quoter failover over option determines if multiple modules are consulted for methods such as 'nasdaq' that more than one implementation.
my $failover = $q->get_failover();
Failover is when the "fetch" method attempts to retrieve quote information for a security from alternate sources when the requested method fails. "get_failover" returns a boolean value indicating if the quoter object will use failover or not.
$q->set_failover(False);
"set_failover" sets the failover flag on the quoter object.
my $currency = $q->get_fetch_currency();
"get_fetch_currency" returns either the desired currency code for the quoter object or undef if no target currency was set during construction or with the "set_fetch_currency" function.
$q->set_fetch_currency("FRF"); # Get results in French Francs.
"set_fetch_currency" method is used to request that all information be returned in the specified currency. Note that this increases the chance stock-lookup failure, as remote requests must be made to fetch both the stock information and the currency rates. In order to improve reliability and speed performance, currency conversion rates are cached and are assumed not to change for the duration of the Finance::Quote object.
See the introduction to this page for information on how to configure the source of currency conversion rates.
my @labels = $q->get_required_labels();
"get_required_labels" returns the list of labels that must be populated for a security quote to be considered valid and returned by "fetch".
my $labels = ['close', 'isodate', 'last'];
$q->set_required_labels($labels);
"set_required_labels" updates the list of required labels for the quoter object.
my $timeout = $q->get_timeout();
"get_timeout" returns the timeout in seconds the quoter object is using for web requests.
$q->set_timeout(45);
"set_timeout" updated the timeout in seconds for the quoter object.
$quoter->store_date(\%info, $stocks, {eurodate => '06/11/2020'});
"store_date" is used by modules to consistent store date information about securities. Given the various pieces of a date, this function figures out how to construct a ISO date (yyyy-mm-dd) and US date (mm/dd/yyyy) and stores those values in %info for security $stock.
my $ua = $q->get_user_agent();
"get_user_agent" returns the LWP::UserAgent the quoter object is using for web requests.
$q->isoTime("11:39PM"); # returns "23:39"
$q->isoTime("9:10 AM"); # returns "09:10"
"isoTime" returns an ISO formatted time.
The following methods are available as class methods, but can also be called from Finance::Quote objects.
my $value = Finance::Quote->scale_field('1023', '0.01')
"scale_field" is a utility function that scales the first argument by the second argument. In the above example, "value" is '10.23'.
my $value = $q->currency('15.95 USD', 'AUD');
my $value = Finance::Quote->currency('23.45 EUR', 'RUB');
"currency" converts a value with a currency code suffix to another currency using the current exchange rate as determined by the Finance::Quote::CurrencyRates method or methods configured for the quoter $q. When called as a class method, only Finance::Quote::AlphaVantage is used, which requires an API key. See the introduction for information on configuring currency rate conversions and see Finance::Quote::CurrencyRates::AlphaVantage for information about the API key.
my $currency = $quoter->currency_lookup();
my $currency = $quoter->currency_lookup( name => "Caribbean");
my $currency = $quoter->currency_loopup( country => qw/denmark/i );
my $currency = $q->currency_lookup(country => qr/united states/i, number => 840);
"currency_lookup" takes zero or more constraints and filters the list of currencies known to Finance::Quote. It returns a hash reference where the keys are ISO currency codes and the values are hash references containing metadata about the currency.
A constraint is a key name and either a scalar or regular expression. A currency satisfies the constraint if its metadata hash contains the constraint key and the value of that metadata field matches the regular expression or contains the constraint value as a substring. If the metadata field is an array, then it satisfies the constraint if any value in the array satisfies the constraint.
my @list = Finance::Quote::parse_csv($string);
"parse_csv" is a utility function for splitting a comma separated value string into a list of terms, treating double-quoted strings that contain commas as a single value.
my @list = Finance::Quote::parse_csv_semicolon($string);
"parse_csv" is a utility function for splitting a semicolon separated value string into a list of terms, treating double-quoted strings that contain semicolons as a single value.
default_currency_fields â Replaced with get_default_currency_fields().sources â Replaced with get_methods().failover â Replaced with get_failover() and set_failover().require_labels â Replaced with get_required_labels() and set_required_labels().user_agent â Replaced with get_user_agent().set_currency â Replaced with get_fetch_currency() and set_fetch_currency().Finance::Quote respects all environment that your installed version of LWP::UserAgent respects. Most importantly, it respects the http_proxy environment variable.
Copyright 1998, Dj Padzensky
Copyright 1998, 1999 Linas Vepstas
Copyright 2000, Yannick LE NY (update for Yahoo Europe and YahooQuote)
Copyright 2000-2001, Paul Fenwick (updates for ASX, maintenance and release)
Copyright 2000-2001, Brent Neal (update for TIAA-CREF)
Copyright 2000 Volker Stuerzl (DWS)
Copyright 2001 Rob Sessink (AEX support)
Copyright 2001 Leigh Wedding (ASX updates)
Copyright 2001 Tobias Vancura (Fool support)
Copyright 2001 James Treacy (TD Waterhouse support)
Copyright 2008 Erik Colson (isoTime)
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
Currency information fetched through this module is bound by the terms and conditions of the data source.
Other copyrights and conditions may apply to data fetched through this module. Please refer to the sub-modules for further information.
The Finance::Quote home page can be found at http://finance-quote.sourceforge.net/
The Finance::YahooQuote home page can be found at http://www.padz.net/~djpadz/YahooQuote/
The GnuCash home page can be found at http://www.gnucash.org/
You should have received the Finance::Quote hacker's guide with this package. Please read it if you are interested in adding extra methods to this package. The latest hacker's guide can also be found on GitHub at https://github.com/finance-quote/finance-quote/blob/master/Documentation/Hackers-Guide
Generated by phpman v4.9.29 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-07-20 23:53 @2600:1f28:365:80b0:d8a5:c3c6:bf94:28c0
CrawledBy CCBot/2.0 (https://commoncrawl.org/faq/)
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format