NAME
Finance::Google::Sector::Mean - Perl extension shows you the finance.google.com sectors and there realtime quote+performance grouped in [negative,positive,above average performance]
SYNOPSIS
use Finance::Google::Sector::Mean;
use Data::Dumper;
my @sector = sectorsummary();
print Dumper [@sector];
DESCRIPTION
shows you the finance.google.com sectors and there realtime quote+performance grouped in [negative,positive,above average performance] check out Finance::NASDAQ::Markets which gives additional sectors and indice's
EXPORT
None by default.
SEE ALSO
Finance::Optical::StrongBuy Finance::NASDAQ::Markets
MORE
#!/usr/bin/perl
package main;
use Data::Dumper;
use Finance::Optical::StrongBuy;
use Finance::NASDAQ::Markets;
use Finance::Google::Sector::Mean;
my @sector = sectorsummary();
my @idx = index();
my @sec = sector();
my $new = Finance::Optical::StrongBuy->new("/tmp");
foreach my $symbol (qw/C BAC WFC WM F GE AAPL GOOG/){
$new->callCheck($symbol);
}
print Dumper [@idx,@sec,@sector ,$new];
1;
AUTHOR
Hagen Geissler
COPYRIGHT AND LICENSE
Copyright (C) 2012 by Hagen Geissler
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.12.4 or, at your option, any later version of Perl 5 you may have available.