Scroll to navigation

Finance::Quote::Tradegate(3pm) User Contributed Perl Documentation Finance::Quote::Tradegate(3pm)

NAME

Finance::Quote::Tradegate - Obtain quotes from S-Investor platform.

SYNOPSIS

    use Finance::Quote;
    $q = Finance::Quote->new;
    or
    $q = Finance::Quote->new('Tradegate', 'tradegate' => {INST_ID => 'your institute id'});
    %info = Finance::Quote->fetch("Tradegate", "DE000ENAG999");  # Only query Tradegate
    %info = Finance::Quote->fetch("europe", "brd");     # Failover to other sources OK.

DESCRIPTION

This module fetches information from https://s-investor.de/, the investment platform of the German Sparkasse banking group. It fetches share prices from tradegate, a major German trading platform.

Suitable for shares and ETFs that are traded in Germany.

This module is loaded by default on a Finance::Quote object. It's also possible to load it explicitly by placing "Tradegate" in the argument list to Finance::Quote->new().

This module provides "Tradegate" and "europe" fetch methods.

Information obtained by this module may be covered by s-investor.de terms and conditions.

INST_ID

https://s-investor.de/ supports different institute IDs. The default value "0000057" is used (Krefeld) if no institute ID is provided. A list of institute IDs is provided here: https://web.s-investor.de/app/webauswahl.jsp

The INST_ID may be set by providing a module specific hash to Finance::Quote->new as in the above example (optional).

LABELS RETURNED

The following labels are returned: currency exchange last method success symbol volume price close change p_change

2024-01-01 perl v5.36.0