1Finance::Quote::ASX(3)User Contributed Perl DocumentationFinance::Quote::ASX(3)
2
3
4
6 Finance::Quote::ASX - Obtain quotes from the Australian Stock Exchange.
7
9 use Finance::Quote;
10
11 $q = Finance::Quote->new;
12
13 %stockinfo = $q->fetch("asx","BHP"); # Only query ASX.
14 %stockinfo = $q->fetch("australia","BHP"); # Failover to other sources OK.
15
17 This module obtains information from the Australian Stock Exchange
18 http://www.asx.com.au/. All Australian stocks and indicies are
19 available. Indexes start with the letter 'X'. For example, the All
20 Ordinaries is "XAO".
21
22 This module is loaded by default on a Finance::Quote object. It's also
23 possible to load it explicity by placing "ASX" in the argument list to
24 Finance::Quote->new().
25
26 This module provides both the "asx" and "australia" fetch methods.
27 Please use the "australia" fetch method if you wish to have failover
28 with other sources for Australian stocks (such as Yahoo). Using the
29 "asx" method will guarantee that your information only comes from the
30 Australian Stock Exchange.
31
32 Information returned by this module is governed by the Australian Stock
33 Exchange's terms and conditions.
34
36 The following labels may be returned by Finance::Quote::ASX: date, bid,
37 ask, open, high, low, last, close, p_change, volume, net and price.
38
40 Australian Stock Exchange, http://www.asx.com.au/
41
42 Finance::Quote::Yahoo::Australia.
43
44
45
46perl v5.28.1 2017-11-12 Finance::Quote::ASX(3)