perldoc > Finance::Quote

📄 NAME

Finance::Quote — Get stock and mutual fund quotes from various exchanges

🚀 Quick Reference

Use CaseCommandDescription
🔍 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 optionsFinance::Quote->new(timeout => 30, failover => 1)Construct object with parameters

📋 SYNOPSIS

use Finance::Quote;

$q = Finance::Quote->new;
%quotes  = $q->fetch("nasdaq", @stocks);

📖 DESCRIPTION

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.

đŸˇī¸ LABELS

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().

If all stock lookups fail (possibly because of a failed connection) then the empty list may be returned, or undef in a scalar context.

🔧 INSTALLATION

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

📚 SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the perldoc command.

perldoc Finance::Quote

You can also look for information at:

đŸ—ī¸ PUBLIC CLASS METHODS

âš™ī¸ new

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.

With 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.

📄 get_default_currency_fields

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.

âąī¸ get_default_timeout

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.

âąī¸ set_default_timeout

Finance::Quote::set_default_timeout(45);

"set_default_timeout" sets the Finance::Quote default timeout to a new value.

📋 get_methods

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".

đŸ› ī¸ PUBLIC OBJECT METHODS

đŸ”ĸ B_to_billions

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.

đŸ”ĸ decimal_shiftup

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.

đŸ“Ĩ fetch

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.

🔁 get_failover

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.

🔁 set_failover

$q->set_failover(False);

"set_failover" sets the failover flag on the quoter object.

💱 get_fetch_currency

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.

💱 set_fetch_currency

$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.

đŸˇī¸ get_required_labels

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".

đŸˇī¸ set_required_labels

my $labels = ['close', 'isodate', 'last'];
$q->set_required_labels($labels);

"set_required_labels" updates the list of required labels for the quoter object.

âąī¸ get_timeout

my $timeout = $q->get_timeout();

"get_timeout" returns the timeout in seconds the quoter object is using for web requests.

âąī¸ set_timeout

$q->set_timeout(45);

"set_timeout" updated the timeout in seconds for the quoter object.

📅 store_date

$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.

🌐 get_user_agent

my $ua = $q->get_user_agent();

"get_user_agent" returns the LWP::UserAgent the quoter object is using for web requests.

⏰ isoTime

$q->isoTime("11:39PM");    # returns "23:39"
$q->isoTime("9:10 AM");    # returns "09:10"

"isoTime" returns an ISO formatted time.

🔧 PUBLIC CLASS OR OBJECT METHODS

The following methods are available as class methods, but can also be called from Finance::Quote objects.

📏 scale_field

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'.

💱 currency

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.

🔍 currency_lookup

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.

📊 parse_csv

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.

📊 parse_csv_semicolon

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.

đŸ—‚ī¸ LEGACY METHODS

🌍 ENVIRONMENT

Finance::Quote respects all environment that your installed version of LWP::UserAgent respects. Most importantly, it respects the http_proxy environment variable.

🐛 BUGS

ÂŠī¸ COPYRIGHT & LICENSE

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.

👤 AUTHORS

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/

👀 SEE ALSO

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

Finance::Quote
📄 NAME 🚀 Quick Reference 📋 SYNOPSIS 📖 DESCRIPTION
đŸˇī¸ LABELS
🔧 INSTALLATION 📚 SUPPORT AND DOCUMENTATION đŸ—ī¸ PUBLIC CLASS METHODS
âš™ī¸ new 📄 get_default_currency_fields âąī¸ get_default_timeout âąī¸ set_default_timeout 📋 get_methods
đŸ› ī¸ PUBLIC OBJECT METHODS
đŸ”ĸ B_to_billions đŸ”ĸ decimal_shiftup đŸ“Ĩ fetch 🔁 get_failover 🔁 set_failover 💱 get_fetch_currency 💱 set_fetch_currency đŸˇī¸ get_required_labels đŸˇī¸ set_required_labels âąī¸ get_timeout âąī¸ set_timeout 📅 store_date 🌐 get_user_agent ⏰ isoTime
🔧 PUBLIC CLASS OR OBJECT METHODS
📏 scale_field 💱 currency 🔍 currency_lookup 📊 parse_csv 📊 parse_csv_semicolon
đŸ—‚ī¸ LEGACY METHODS 🌍 ENVIRONMENT 🐛 BUGS ÂŠī¸ COPYRIGHT & LICENSE 👤 AUTHORS 👀 SEE ALSO

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/)
Valid XHTML 1.0 Transitional!Valid CSS!
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format

^_top_^