1Finance::Quote::TradegaUtsee(r3)Contributed Perl DocumenFtiantainocne::Quote::Tradegate(3)
2
3
4
6 Finance::Quote::Tradegate - Obtain quotes from S-Investor platform.
7
9 use Finance::Quote;
10
11 $q = Finance::Quote->new;
12 or
13 $q = Finance::Quote->new('Tradegate', 'tradegate' => {INST_ID => 'your institute id'});
14
15 %info = Finance::Quote->fetch("Tradegate", "DE000ENAG999"); # Only query Tradegate
16 %info = Finance::Quote->fetch("europe", "brd"); # Failover to other sources OK.
17
19 This module fetches information from https://s-investor.de/, the
20 investment platform of the German Sparkasse banking group. It fetches
21 share prices from tradegate, a major German trading platform.
22
23 Suitable for shares and ETFs that are traded in Germany.
24
25 This module is loaded by default on a Finance::Quote object. It's also
26 possible to load it explicitly by placing "Tradegate" in the argument
27 list to Finance::Quote->new().
28
29 This module provides "Tradegate" and "europe" fetch methods.
30
31 Information obtained by this module may be covered by s-investor.de
32 terms and conditions.
33
35 https://s-investor.de/ supports different institute IDs. The default
36 value "0000057" is used (Krefeld) if no institute ID is provided. A
37 list of institute IDs is provided here:
38 https://web.s-investor.de/app/webauswahl.jsp
39
40 The INST_ID may be set by providing a module specific hash to
41 Finance::Quote->new as in the above example (optional).
42
44 The following labels are returned: currency exchange last method
45 success symbol volume price close change p_change
46
47
48
49perl v5.36.1 2023-08-13 Finance::Quote::Tradegate(3)