/usr/share/perl5/Finance/Quote/BSERO.pm is in libfinance-quote-perl 1.38-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | #!/usr/bin/perl -w
# This modules is based on the Finance::Quote::ASEGR module
#
# The code has been modified by Andrei Cipu <strainu@strainu.ro> to be able to
# retrieve stock information from the Bucharest Exchange in Romania.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA
require 5.005;
use strict;
package Finance::Quote::BSERO;
use vars qw( $BSERO_URL);
use LWP::UserAgent;
use HTTP::Request::Common;
use HTML::TableExtract;
our $VERSION = '1.38'; # VERSION
my $BSERO_URL = 'http://www.bvb.ro/mobile/m_SecurityDetails.aspx?';
sub methods { return ( romania => \&bsero,
bsero => \&bsero,
europe => \&bsero); }
{
my @labels = qw/name last date isodate p_change open high low close volume currency method exchange/;
sub labels { return (romania => \@labels,
bsero => \@labels,
europe => \@labels); }
}
sub bsero {
my $quoter = shift;
my @stocks = @_;
my (%info,$reply,$url,$te,$ts,$row,@cells, $ce);
my($my_date,$my_last,$my_p_change,$my_volume,$my_high,$my_low,$my_open);
my $ua = $quoter->user_agent();
$url = $BSERO_URL;
foreach my $stocks (@stocks)
{
$reply = $ua->request(GET $url.join('',"s=",$stocks));
if ($reply->is_success)
{
$te = new HTML::TableExtract();
$te->parse($reply->content);
unless ( $te->tables)
{
$info {$stocks,"success"} = 0;
$info {$stocks,"errormsg"} = "Stock name $stocks not found";
next;
}
$ts = $te->first_table_found();
foreach $row ($ts->rows) {
@cells = @$row;
# The date is not a number, so we don't bother modifying it
if($cells[0] eq 'Data'){
$my_date = $cells[1];
}
#The rest of the data needs to be modified
else {
foreach $ce (@cells) {
next unless $ce;
$ce =~ s/\.//; #remove thouthand separator
$ce =~ s/,/\./g; #replace european decimal separator with american ones
}
#go through each row and get the data
if($cells[0] eq 'Ultimul pret'){
$my_last = $cells[1];
}
if($cells[0] eq 'Var (%)'){
$my_p_change = $cells[1];
}
if($cells[0] eq 'Volum'){
$my_volume = $cells[1];
}
if($cells[0] eq 'Pret maxim'){
$my_high = $cells[1];
}
if($cells[0] eq 'Pret minim'){
$my_low = $cells[1];
}
if($cells[0] eq 'Pret deschidere'){
$my_open = $cells[1];
}
}
}
$info{$stocks, "success"} =1;
$info{$stocks, "exchange"} ="Bucharest Stock Exchange";
$info{$stocks, "method"} ="bsero";
$info{$stocks, "name"} =$stocks;
$info{$stocks, "last"} =$my_last;
$info{$stocks, "close"} =$my_last;
$info{$stocks, "p_change"} =$my_p_change;
$info{$stocks, "volume"} =$my_volume;
$info{$stocks, "high"} =$my_high;
$info{$stocks, "low"} =$my_low;
$info{$stocks, "open"} =$my_open;
$quoter->store_date(\%info, $stocks, {eurodate => $my_date});
$info{$stocks,"currency"} = "RON";
} else {
$info{$stocks, "success"}=0;
$info{$stocks, "errormsg"}="Error retreiving $stocks ";
}
}
return wantarray() ? %info : \%info;
return \%info;
}
1;
=head1 NAME
Finance::Quote::BSERO - Obtain quotes from Bucharest Stock Exchange.
=head1 SYNOPSIS
use Finance::Quote;
$q = Finance::Quote->new;
%info = Finance::Quote->fetch("bsero","tlv"); # Only query BSERO
%info = Finance::Quote->fetch("romania","brd"); # Failover to other sources OK.
=head1 DESCRIPTION
This module fetches information from the "Bucharest Stock Exchange"
(Bursa de Valori Bucuresti), http://www.bvb.ro. All stocks are available.
This module is loaded by default on a Finance::Quote object. It's
also possible to load it explicity by placing "BSERO" in the argument
list to Finance::Quote->new().
This module provides both the "bsero" and "romania" fetch methods.
Please use the "romania" fetch method if you wish to have failover
with future sources for Romanian stocks. Using the "bsero" method will
guarantee that your information only comes from the Bucharest Stock Exchange.
Information obtained by this module may be covered by www.bvb.go
terms and conditions See http://www.bvb.ro/ for details.
=head1 LABELS RETURNED
The following labels may be returned by Finance::Quote::BSERO :
name, last, date, p_change, open, high, low, close,
volume, currency, method, exchange.
=head1 SEE ALSO
Bucharest Stock Exchange, http://www.bvb.ro
=cut
|