logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

Finance::Quote::BVB - Obtain quotes from Bucharest Stock Exchange.

Description

       This module fetches information from <https://bvb.ro/>.

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

       This module provides "bvb", "tradeville", "romania", and "europe" fetch methods. It was written use
       historical trade data file posted by BVB on their site.

       Information obtained by this module may be covered by Bucharest Stock Exchange terms and conditions.

Labels Returned

       The following labels are returned:

       •   name

       •   symbol

       •   open

       •   high

       •   low

       •   price

       •   bid

       •   ask

       •   date

       •   currency (always RON)

perl v5.40.1                                       2025-05-16                           Finance::Quote::BVB(3pm)

Name

       Finance::Quote::BVB - Obtain quotes from Bucharest Stock Exchange.

Synopsis

           use Finance::Quote;

           $q = Finance::Quote->new;

           %info = $q->fetch("bvb", "tlv");  # Only query bvb

           %info = $q->fetch("romania", "brd");     # Failover to other sources OK.

See Also