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 $q = Finance::Quote->new;
11 %stockinfo = $q->fetch("asx","BHP"); # Only query ASX.
12 %stockinfo = $q->fetch("australia","BHP"); # Failover to other sources OK.
13
15 This module obtains information from the Australian Stock Exchange
16 http://www.asx.com.au/. Data for all Australian listed securities and
17 indices is available. Indexes start with the letter 'X'. For example,
18 the All Ordinaries is "XAO". But some securities also start with the
19 letter 'X'.
20
21 This module is loaded by default on a Finance::Quote object. It's also
22 possible to load it explicitly by placing "ASX" in the argument list to
23 Finance::Quote->new().
24
25 This module provides both the "asx" and "australia" fetch methods.
26 Please use the "australia" fetch method if you wish to have failover
27 with other sources for Australian stocks (such as Yahoo). Using the
28 "asx" method will guarantee that your information only comes from the
29 Australian Stock Exchange.
30
31 Information returned by this module is governed by the Australian Stock
32 Exchange's terms and conditions.
33
35 The following labels may be returned by Finance::Quote::ASX: bid,
36 offer, open, high, low, last, net, p_change, volume, and price.
37
39 Australian Stock Exchange, http://www.asx.com.au/
40
41 Finance::Quote::Yahoo::Australia.
42
43
44
45perl v5.36.1 2023-08-13 Finance::Quote::ASX(3)