.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Finance::Quote 3pm" .TH Finance::Quote 3pm 2024-04-21 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME Finance::Quote \- Get stock and mutual fund quotes from various exchanges .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 1 \& use Finance::Quote; \& \& $q = Finance::Quote\->new; \& %quotes = $q\->fetch("nasdaq", @stocks); .Ve .SH DESCRIPTION .IX Header "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: .PP .Vb 3 \& $q = Finance::Quote\->new; \& %info = $q\->fetch("australia", "CML"); \& print "The price of CML is ".$info{"CML", "price"}; .Ve .PP 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. .SS LABELS .IX Subsection "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 \fBrequire_labels()\fR. .PP .Vb 10 \& ask Ask \& avg_vol Average Daily Vol \& bid Bid \& cap Market Capitalization \& close Previous Close \& currency Currency code for the returned data \& date Last Trade Date (MM/DD/YY format) \& day_range Day\*(Aqs Range \& div Dividend per Share \& div_date Dividend Pay Date \& div_yield Dividend Yield \& eps Earnings per Share \& errormsg 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 today \& isin International Securities Identification Number \& isodate ISO 8601 formatted date \& last Last Price \& low Lowest trade today \& method The module (as could be passed to fetch) which found this information. \& name Company or Mutual Fund Name \& nav Net Asset Value \& net Net Change \& open Today\*(Aqs Open \& p_change Percent Change from previous day\*(Aqs close \& pe P/E Ratio \& success Did the stock successfully return information? (true/false) \& time Last Trade Time \& type The type of equity returned \& volume Volume \& year_range 52\-Week Range \& yield Yield (usually 30 day avg) .Ve .PP If all stock lookups fail (possibly because of a failed connection) then the empty list may be returned, or undef in a scalar context. .SH INSTALLATION .IX Header "INSTALLATION" Please note that the Github repository is not meant for general users of Finance::Quote for installation. .PP 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: .PP .Vb 6 \& tar xzf Finance\-Quote\-1.50.tar.gz \& cd Finance\-Quote\-1.50.tar.gz \& perl Makefile.PL \& make \& make test \& make install .Ve .PP If you have the CPAN module installed: Using cpanm (Requires App::cpanminus) .PP .Vb 1 \& cpanm Finance::Quote .Ve .PP or Using CPAN shell .PP .Vb 2 \& perl \-MCPAN \-e shell \& install Finance::Quote .Ve .SH "SUPPORT AND DOCUMENTATION" .IX Header "SUPPORT AND DOCUMENTATION" After installing, you can find documentation for this module with the perldoc command. .PP .Vb 1 \& perldoc Finance::Quote .Ve .PP You can also look for information at: .IP "Finance::Quote GitHub project" 4 .IX Item "Finance::Quote GitHub project" https://github.com/finance\-quote/finance\-quote .IP "Search CPAN" 4 .IX Item "Search CPAN" http://search.cpan.org/dist/Finance\-Quote .IP "The Finance::Quote home page" 4 .IX Item "The Finance::Quote home page" http://finance\-quote.sourceforge.net/ .IP "The Finance::YahooQuote home page" 4 .IX Item "The Finance::YahooQuote home page" http://www.padz.net/~djpadz/YahooQuote/ .IP "The GnuCash home page" 4 .IX Item "The GnuCash home page" http://www.gnucash.org/ .SH "PUBLIC CLASS METHODS" .IX Header "PUBLIC CLASS METHODS" Finance::Quote implements public class methods for constructing a quoter object, getting or setting default class values, and for listing available methods. .SS new .IX Subsection "new" .Vb 7 \& my $q = Finance::Quote\->new() \& my $q = Finance::Quote\->new(\*(Aq\-defaults\*(Aq) \& my $q = Finance::Quote\->new(timeout => 30) \& my $q = Finance::Quote\->new(\*(AqYahooJSON\*(Aq, fetch_currency => \*(AqEUR\*(Aq) \& my $q = Finance::Quote\->new(\*(Aqalphavantage\*(Aq => {API_KEY => \*(Aq...\*(Aq}) \& my $q = Finance::Quote\->new(\*(AqIEXCloud\*(Aq, \*(Aqiexcloud\*(Aq => {API_KEY => \*(Aq...\*(Aq}); \& my $q = Finance::Quote\->new(currency_rates => {order => [\*(AqECB\*(Aq, \*(AqFixer\*(Aq], \*(Aqfixer\*(Aq => {API_KEY => \*(Aq...\*(Aq}}); .Ve .PP 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'. .PP A Finance::Quote object uses one or more methods to fetch quotes for securities. .PP \&\f(CW\*(C`new\*(C'\fR 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. .ie n .IP """timeout ="" T> sets the web request timeout to ""T"" seconds" 4 .el .IP "\f(CWtimeout =\fR T> sets the web request timeout to \f(CWT\fR seconds" 4 .IX Item "timeout = T> sets the web request timeout to T seconds" .PD 0 .ie n .IP """failover ="" B> where ""B"" is a boolean value indicating if failover in fetch is permitted" 4 .el .IP "\f(CWfailover =\fR B> where \f(CWB\fR is a boolean value indicating if failover in fetch is permitted" 4 .IX Item "failover = B> where B is a boolean value indicating if failover in fetch is permitted" .ie n .IP """fetch_currency ="" C> sets the desired currency code to ""C"" for fetch results" 4 .el .IP "\f(CWfetch_currency =\fR C> sets the desired currency code to \f(CWC\fR for fetch results" 4 .IX Item "fetch_currency = C> sets the desired currency code to C for fetch results" .ie n .IP """currency_rates ="" H> configures the order currency rate modules are consulted for exchange rates and currency rate module options" 4 .el .IP "\f(CWcurrency_rates =\fR H> configures the order currency rate modules are consulted for exchange rates and currency rate module options" 4 .IX Item "currency_rates = H> configures the order currency rate modules are consulted for exchange rates and currency rate module options" .ie n .IP """required_labels ="" A> sets the required labels for fetch results to array ""A""" 4 .el .IP "\f(CWrequired_labels =\fR A> sets the required labels for fetch results to array \f(CWA\fR" 4 .IX Item "required_labels = A> sets the required labels for fetch results to array A" .ie n .IP """ as a string is the name of a specific Finance::Quote::Module to load" 4 .el .IP "\f(CW as a string is the name of a specific Finance::Quote::Module to load" 4 .IX Item " as a string is the name of a specific Finance::Quote::Module to load" .ie n .IP """ H> passes hash ""H"" to methodname during fetch to configure the method" 4 .el .IP "\f(CW H> passes hash \f(CWH\fR to methodname during fetch to configure the method" 4 .IX Item " H> passes hash H to methodname during fetch to configure the method" .PD .PP With no arguments, \f(CW\*(C`new\*(C'\fR 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 \f(CW\*(C`new\*(C'\fR or the flag \&'\-defaults' is included in the argument list, then FQ_LOAD_QUOTELET is ignored. .PP When \fBnew()\fR 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. .PP Method names correspond to the Perl module in the Finance::Quote module space. For example, \f(CW\*(C`Finance::Quote\-\*(C'\fRnew('ASX')> will load the module Finance::Quote::ASX, which provides the method "asx". .PP Some methods require API keys or have unique options. Passing 'method => HASH' to \fBnew()\fR enables the caller to provide a configuration HASH to the corresponding method. .PP The key 'currency_rates' configures the Finanace::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. Setting the environment variable FQ_CURRENCY will change the default endpoint used for currency conversion. See the documentation for the individual Finance::Quote::CurrencyRates to learn more. .SS get_default_currency_fields .IX Subsection "get_default_currency_fields" .Vb 1 \& my @fields = Finance::Quote::get_default_currency_fields(); .Ve .PP \&\f(CW\*(C`get_default_currency_fields\*(C'\fR returns the standard list of fields in a quote that are automatically converted during currency conversion. Individual modules may override this list. .SS get_default_timeout .IX Subsection "get_default_timeout" .Vb 1 \& my $value = Finance::Quote::get_default_timeout(); .Ve .PP \&\f(CW\*(C`get_default_timeout\*(C'\fR 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 \f(CW\*(C`set_default_timeout\*(C'\fR was previously called. .SS set_default_timeout .IX Subsection "set_default_timeout" .Vb 1 \& Finance::Quote::set_default_timeout(45); .Ve .PP \&\f(CW\*(C`set_default_timeout\*(C'\fR sets the Finance::Quote default timeout to a new value. .SS get_methods .IX Subsection "get_methods" .Vb 1 \& my @methods = Finance::Quote::get_methods(); .Ve .PP \&\f(CW\*(C`get_methods\*(C'\fR returns the list of methods that can be passed to \f(CW\*(C`new\*(C'\fR when creating a quoter object and as the first argument to \f(CW\*(C`fetch\*(C'\fR. .SS get_features .IX Subsection "get_features" .Vb 1 \& my %features = Finance::Quote::get_features(); .Ve .PP \&\f(CW\*(C`get_features\*(C'\fR returns a hash with three keys: quote_methods, quote_modules, and currency_modules. .PP .Vb 3 \& $features{quote_methods} is a hash with key/value pairs of method_name => [array of module names] \& $features{quote_modules} is a hash with key/value pairs of module_name => [array of parameter names] \& $features{currency_modules} is a hash with key/value pairs of currency_module_name => [array of paramater names] .Ve .PP Parameter names are values that the module needs to function, such as API_KEY. Most modules will have an empty list. Modules with a parameter are configured when creating the Finance::Quote by passing the argument .PP .Vb 1 \& \*(Aqmodule_name_in_lower_case\*(Aq => {paramter => value} .Ve .PP to Finance::Quote\->\fBnew()\fR. .PP The keys of the \f(CW$features\fR{currency_modules} hash are the names of currency modules that can be used for currency conversion and the order in which the modules are used is controlled by the argument .PP .Vb 1 \& currency_rates => {order => [subset of $features{currency_modules}]} .Ve .PP to Finance::Quote\->\fBnew()\fR. By default, only AlphaVantage in used for currency conversion, so "order" must be set to use other currency modules. .SH "PUBLIC OBJECT METHODS" .IX Header "PUBLIC OBJECT METHODS" .SS B_to_billions .IX Subsection "B_to_billions" .Vb 1 \& my $value = $q\->B_to_billions("20B"); .Ve .PP \&\f(CW\*(C`B_to_billions\*(C'\fR is a utility function that expands a numeric string with a "B" suffix to the corresponding multiple of 1000000000. .SS decimal_shiftup .IX Subsection "decimal_shiftup" .Vb 2 \& my $value = $q\->decimal_shiftup("123.45", 1); # returns 1234.5 \& my $value = $q\->decimal_shiftup("0.25", 1); # returns 2.5 .Ve .PP \&\f(CW\*(C`decimal_shiftup\*(C'\fR moves a the decimal point in a numeric string the specified number of places to the right. .SS fetch .IX Subsection "fetch" .Vb 2 \& my %stocks = $q\->fetch("alphavantage", "IBM", "MSFT", "LNUX"); \& my $hashref = $q\->fetch("nasdaq", "IBM", "MSFT", "LNUX"); .Ve .PP \&\f(CW\*(C`fetch\*(C'\fR takes a method as its first argument and the remaining arguments are treated as securities. If the quoter \f(CW$q\fR was constructed with a specific method or methods, then only those methods are available. .PP 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 \&\f(CW\*(C`{SECURITY,LABEL}\*(C'\fR. For the above example call, \f(CW$stocks{"IBM","high"}\fR is the high value for IBM. .PP \&\f(CW$q\fR\->\fBget_methods()\fR returns the list of valid methods for quoter object \f(CW$q\fR. 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. .SS get_failover .IX Subsection "get_failover" .Vb 1 \& my $failover = $q\->get_failover(); .Ve .PP Failover is when the \f(CW\*(C`fetch\*(C'\fR method attempts to retrieve quote information for a security from alternate sources when the requested method fails. \&\f(CW\*(C`get_failover\*(C'\fR returns a boolean value indicating if the quoter object will use failover or not. .SS set_failover .IX Subsection "set_failover" .Vb 1 \& $q\->set_failover(False); .Ve .PP \&\f(CW\*(C`set_failover\*(C'\fR sets the failover flag on the quoter object. .SS get_fetch_currency .IX Subsection "get_fetch_currency" .Vb 1 \& my $currency = $q\->get_fetch_currency(); .Ve .PP \&\f(CW\*(C`get_fetch_currency\*(C'\fR returns either the desired currency code for the quoter object or undef if no target currency was set during construction or with the \&\f(CW\*(C`set_fetch_currency\*(C'\fR function. .SS set_fetch_currency .IX Subsection "set_fetch_currency" .Vb 1 \& $q\->set_fetch_currency("FRF"); # Get results in French Francs. .Ve .PP \&\f(CW\*(C`set_fetch_currency\*(C'\fR 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. .PP See the introduction to this page for information on how to configure the source of currency conversion rates. .SS get_required_labels .IX Subsection "get_required_labels" .Vb 1 \& my @labels = $q\->get_required_labels(); .Ve .PP \&\f(CW\*(C`get_required_labels\*(C'\fR returns the list of labels that must be populated for a security quote to be considered valid and returned by \f(CW\*(C`fetch\*(C'\fR. .SS set_required_labels .IX Subsection "set_required_labels" .Vb 2 \& my $labels = [\*(Aqclose\*(Aq, \*(Aqisodate\*(Aq, \*(Aqlast\*(Aq]; \& $q\->set_required_labels($labels); .Ve .PP \&\f(CW\*(C`set_required_labels\*(C'\fR updates the list of required labels for the quoter object. .SS get_timeout .IX Subsection "get_timeout" .Vb 1 \& my $timeout = $q\->get_timeout(); .Ve .PP \&\f(CW\*(C`get_timeout\*(C'\fR returns the timeout in seconds the quoter object is using for web requests. .SS set_timeout .IX Subsection "set_timeout" .Vb 1 \& $q\->set_timeout(45); .Ve .PP \&\f(CW\*(C`set_timeout\*(C'\fR updated the timeout in seconds for the quoter object. .SS store_date .IX Subsection "store_date" .Vb 1 \& $quoter\->store_date(\e%info, $stocks, {eurodate => \*(Aq06/11/2020\*(Aq}); .Ve .PP \&\f(CW\*(C`store_date\*(C'\fR 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 \f(CW%info\fR for security \f(CW$stock\fR. .SS get_user_agent .IX Subsection "get_user_agent" .Vb 1 \& my $ua = $q\->get_user_agent(); .Ve .PP \&\f(CW\*(C`get_user_agent\*(C'\fR returns the LWP::UserAgent the quoter object is using for web requests. .SS isoTime .IX Subsection "isoTime" .Vb 2 \& $q\->isoTime("11:39PM"); # returns "23:39" \& $q\->isoTime("9:10 AM"); # returns "09:10" .Ve .PP \&\f(CW\*(C`isoTime\*(C'\fR returns an ISO formatted time. .SH "PUBLIC CLASS OR OBJECT METHODS" .IX Header "PUBLIC CLASS OR OBJECT METHODS" The following methods are available as class methods, but can also be called from Finance::Quote objects. .SS scale_field .IX Subsection "scale_field" .Vb 1 \& my $value = Finance::Quote\->scale_field(\*(Aq1023\*(Aq, \*(Aq0.01\*(Aq) .Ve .PP \&\f(CW\*(C`scale_field\*(C'\fR is a utility function that scales the first argument by the second argument. In the above example, \f(CW\*(C`value\*(C'\fR is \f(CW\*(Aq10.23\*(Aq\fR. .SS currency .IX Subsection "currency" .Vb 2 \& my $value = $q\->currency(\*(Aq15.95 USD\*(Aq, \*(AqAUD\*(Aq); \& my $value = Finance::Quote\->currency(\*(Aq23.45 EUR\*(Aq, \*(AqRUB\*(Aq); .Ve .PP \&\f(CW\*(C`currency\*(C'\fR 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 \f(CW$q\fR. 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. .SS currency_lookup .IX Subsection "currency_lookup" .Vb 4 \& 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); .Ve .PP \&\f(CW\*(C`currency_lookup\*(C'\fR 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. .PP 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. .SS parse_csv .IX Subsection "parse_csv" .Vb 1 \& my @list = Finance::Quote::parse_csv($string); .Ve .PP \&\f(CW\*(C`parse_csv\*(C'\fR 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. .SS parse_csv_semicolon .IX Subsection "parse_csv_semicolon" .Vb 1 \& my @list = Finance::Quote::parse_csv_semicolon($string); .Ve .PP \&\f(CW\*(C`parse_csv\*(C'\fR 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. .SH "LEGACY METHODS" .IX Header "LEGACY METHODS" .SS default_currency_fields .IX Subsection "default_currency_fields" Replaced with \fBget_default_currency_fields()\fR. .SS sources .IX Subsection "sources" Replaced with \fBget_methods()\fR. .SS failover .IX Subsection "failover" Replaced with \fBget_failover()\fR and \fBset_failover()\fR. .SS require_labels .IX Subsection "require_labels" Replaced with \fBget_required_labels()\fR and \fBset_required_labels()\fR. .SS user_agent .IX Subsection "user_agent" Replaced with \fBget_user_agent()\fR. .SS set_currency .IX Subsection "set_currency" Replaced with \fBget_fetch_currency()\fR and \fBset_fetch_currency()\fR. .SH ENVIRONMENT .IX Header "ENVIRONMENT" Finance::Quote respects all environment that your installed version of LWP::UserAgent respects. Most importantly, it respects the http_proxy environment variable. .SH BUGS .IX Header "BUGS" The caller cannot control the fetch failover order. .PP The two-dimensional hash is a somewhat unwieldly method of passing around information when compared to references .SH "COPYRIGHT & LICENSE" .IX Header "COPYRIGHT & LICENSE" .Vb 10 \& 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 James Treacy (TD Waterhouse support) \& Copyright 2008 Erik Colson (isoTime) .Ve .PP 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. .PP Currency information fetched through this module is bound by the terms and conditons of the data source. .PP Other copyrights and conditions may apply to data fetched through this module. Please refer to the sub-modules for further information. .SH AUTHORS .IX Header "AUTHORS" .Vb 10 \& Dj Padzensky , PadzNet, Inc. \& Linas Vepstas \& Yannick LE NY \& Paul Fenwick \& Brent Neal \& Volker Stuerzl \& Keith Refson \& Rob Sessink \& Leigh Wedding \& Tobias Vancura \& James Treacy \& Bradley Dean \& Erik Colson .Ve .PP The Finance::Quote home page can be found at http://finance\-quote.sourceforge.net/ .PP The Finance::YahooQuote home page can be found at http://www.padz.net/~djpadz/YahooQuote/ .PP The GnuCash home page can be found at http://www.gnucash.org/ .SH "SEE ALSO" .IX Header "SEE ALSO" .Vb 10 \& Finance::Quote::CurrencyRates::AlphaVantage, \& Finance::Quote::CurrencyRates::ECB, \& Finance::Quote::CurrencyRates::Fixer, \& Finance::Quote::CurrencyRates::OpenExchange, \& Finance::Quote::CurrencyRates::YahooJSON, \& Finance::Quote::AEX, \& Finance::Quote::ASEGR, \& Finance::Quote::ASX, \& Finance::Quote::Bloomberg, \& Finance::Quote::BSEIndia, \& Finance::Quote::Bourso, \& Finance::Quote::BVB, \& Finance::Quote::CSE, \& Finance::Quote::Comdirect, \& Finance::Quote::Consorsbank, \& Finance::Quote::Currencies, \& Finance::Quote::DWS, \& Finance::Quote::Deka, \& Finance::Quote::FTfunds, \& Finance::Quote::Finanzpartner, \& Finance::Quote::Fondsweb, \& Finance::Quote::GoldMoney, \& Finance::Quote::GoogleWeb, \& Finance::Quote::HU, \& Finance::Quote::IEXCloud, \& Finance::Quote::IndiaMutual, \& Finance::Quote::MarketWatch, \& Finance::Quote::MorningstarAU, \& Finance::Quote::MorningstarCH, \& Finance::Quote::MorningstarJP, \& Finance::Quote::MorningstarUK, \& Finance::Quote::NSEIndia, \& Finance::Quote::NZX, \& Finance::Quote::OnVista, \& Finance::Quote::Oslobors, \& Finance::Quote::SEB, \& Finance::Quote::SIX, \& Finance::Quote::TSP, \& Finance::Quote::TMX, \& Finance::Quote::Tiaacref, \& Finance::Quote::TesouroDireto, \& Finance::Quote::TreasuryDirect, \& Finance::Quote::Troweprice, \& Finance::Quote::TwelveData, \& Finance::Quote::Union, \& Finance::Quote::YahooJSON, \& Finance::Quote::YahooWeb, \& Finance::Quote::ZA .Ve .PP 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