NAME

Finance::NASDAQ::Markets - Perl extension to download realtime quotes for all major markets indices sectors

SYNOPSIS

use Finance::NASDAQ::Markets;
use Data::Dumper;
my @idx = Finance::NASDAQ::Markets::index();
my @sec = Finance::NASDAQ::Markets::sector();
print Dumper [@idx,@sec];

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;

DESCRIPTION

Loads the quotes and change pct. information for a wide range of indices and sectors from nasdaq. should be realtime!

EXPORT

None by default.

SEE ALSO

Finance::Optical::StrongBuy Finance::Google::Sector::Mean

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.